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.
 
 
 

58543 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: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. "snivy": {
  2182. name: "Snivy",
  2183. parents: ["pokemon", "snake"]
  2184. },
  2185. }
  2186. //species
  2187. function getSpeciesInfo(speciesList) {
  2188. let result = new Set();
  2189. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2190. result.add(entry)
  2191. });
  2192. return Array.from(result);
  2193. };
  2194. function getSpeciesInfoHelper(species) {
  2195. if (!speciesData[species]) {
  2196. console.warn(species + " doesn't exist");
  2197. return [];
  2198. }
  2199. if (speciesData[species].parents) {
  2200. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2201. } else {
  2202. return [species];
  2203. }
  2204. }
  2205. characterMakers.push(() => makeCharacter(
  2206. {
  2207. name: "Fen",
  2208. species: ["crux"],
  2209. description: {
  2210. title: "Bio",
  2211. text: "Very furry. Sheds on everything."
  2212. },
  2213. tags: [
  2214. "anthro",
  2215. "goo"
  2216. ]
  2217. },
  2218. {
  2219. front: {
  2220. height: math.unit(12, "feet"),
  2221. weight: math.unit(2400, "lb"),
  2222. preyCapacity: math.unit(1, "people"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/fen/front.svg",
  2226. extra: 1804/1562,
  2227. bottom: 205/2009
  2228. },
  2229. extraAttributes: {
  2230. pawSize: {
  2231. name: "Paw Size",
  2232. power: 2,
  2233. type: "area",
  2234. base: math.unit(0.35, "m^2")
  2235. }
  2236. }
  2237. },
  2238. diving: {
  2239. height: math.unit(4.9, "meters"),
  2240. weight: math.unit(2400, "lb"),
  2241. name: "Diving",
  2242. image: {
  2243. source: "./media/characters/fen/diving.svg"
  2244. }
  2245. },
  2246. sleeby: {
  2247. height: math.unit(3.45, "meters"),
  2248. weight: math.unit(2400, "lb"),
  2249. name: "Sleeby",
  2250. image: {
  2251. source: "./media/characters/fen/sleeby.svg"
  2252. }
  2253. },
  2254. goo: {
  2255. height: math.unit(12, "feet"),
  2256. weight: math.unit(3600, "lb"),
  2257. volume: math.unit(1000, "liters"),
  2258. preyCapacity: math.unit(6, "people"),
  2259. name: "Goo",
  2260. image: {
  2261. source: "./media/characters/fen/goo.svg",
  2262. extra: 1307/1071,
  2263. bottom: 134/1441
  2264. }
  2265. },
  2266. gooNsfw: {
  2267. height: math.unit(12, "feet"),
  2268. weight: math.unit(3750, "lb"),
  2269. volume: math.unit(1000, "liters"),
  2270. preyCapacity: math.unit(6, "people"),
  2271. name: "Goo (NSFW)",
  2272. image: {
  2273. source: "./media/characters/fen/goo-nsfw.svg",
  2274. extra: 1875/1734,
  2275. bottom: 122/1997
  2276. }
  2277. },
  2278. maw: {
  2279. height: math.unit(5.03, "feet"),
  2280. name: "Maw",
  2281. image: {
  2282. source: "./media/characters/fen/maw.svg"
  2283. }
  2284. },
  2285. gooCeiling: {
  2286. height: math.unit(6.6, "feet"),
  2287. weight: math.unit(3000, "lb"),
  2288. volume: math.unit(1000, "liters"),
  2289. preyCapacity: math.unit(6, "people"),
  2290. name: "Goo (Ceiling)",
  2291. image: {
  2292. source: "./media/characters/fen/goo-ceiling.svg"
  2293. }
  2294. },
  2295. paw: {
  2296. height: math.unit(3.77, "feet"),
  2297. name: "Paw",
  2298. image: {
  2299. source: "./media/characters/fen/paw.svg"
  2300. },
  2301. extraAttributes: {
  2302. "toeSize": {
  2303. name: "Toe Size",
  2304. power: 2,
  2305. type: "area",
  2306. base: math.unit(0.02875, "m^2")
  2307. },
  2308. "pawSize": {
  2309. name: "Paw Size",
  2310. power: 2,
  2311. type: "area",
  2312. base: math.unit(0.378, "m^2")
  2313. },
  2314. }
  2315. },
  2316. tail: {
  2317. height: math.unit(12.1, "feet"),
  2318. name: "Tail",
  2319. image: {
  2320. source: "./media/characters/fen/tail.svg"
  2321. }
  2322. },
  2323. tailFull: {
  2324. height: math.unit(12.1, "feet"),
  2325. name: "Full Tail",
  2326. image: {
  2327. source: "./media/characters/fen/tail-full.svg"
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(12, "feet"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/fen/back.svg",
  2336. },
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nHe is not currently looking at you."
  2341. }
  2342. }
  2343. },
  2344. full: {
  2345. height: math.unit(1.85, "meter"),
  2346. weight: math.unit(3200, "lb"),
  2347. name: "Full",
  2348. image: {
  2349. source: "./media/characters/fen/full.svg",
  2350. extra: 1133/859,
  2351. bottom: 145/1278
  2352. },
  2353. info: {
  2354. description: {
  2355. mode: "append",
  2356. text: "\n\nMunch."
  2357. }
  2358. }
  2359. },
  2360. gooLounging: {
  2361. height: math.unit(4.53, "feet"),
  2362. weight: math.unit(3000, "lb"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo (Lounging)",
  2365. image: {
  2366. source: "./media/characters/fen/goo-lounging.svg",
  2367. bottom: 116 / 613
  2368. }
  2369. },
  2370. lounging: {
  2371. height: math.unit(10.52, "feet"),
  2372. weight: math.unit(2400, "lb"),
  2373. name: "Lounging",
  2374. image: {
  2375. source: "./media/characters/fen/lounging.svg"
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Small",
  2382. height: math.unit(2.2428, "meter")
  2383. },
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(12, "feet"),
  2387. default: true,
  2388. },
  2389. {
  2390. name: "Big",
  2391. height: math.unit(20, "feet")
  2392. },
  2393. {
  2394. name: "Minimacro",
  2395. height: math.unit(40, "feet"),
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nTOO DAMN BIG"
  2400. }
  2401. }
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(100, "feet"),
  2406. info: {
  2407. description: {
  2408. mode: "append",
  2409. text: "\n\nTOO DAMN BIG"
  2410. }
  2411. }
  2412. },
  2413. {
  2414. name: "Megamacro",
  2415. height: math.unit(2, "miles")
  2416. },
  2417. {
  2418. name: "Gigamacro",
  2419. height: math.unit(10, "earths")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(183, "cm"),
  2428. weight: math.unit(80, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/sofia-fluttertail/front.svg",
  2432. bottom: 0.01,
  2433. extra: 2154 / 2081
  2434. }
  2435. },
  2436. frontAlt: {
  2437. height: math.unit(183, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Front (alt)",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2442. }
  2443. },
  2444. back: {
  2445. height: math.unit(183, "cm"),
  2446. weight: math.unit(80, "kg"),
  2447. name: "Back",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/back.svg"
  2450. }
  2451. },
  2452. kneeling: {
  2453. height: math.unit(125, "cm"),
  2454. weight: math.unit(80, "kg"),
  2455. name: "Kneeling",
  2456. image: {
  2457. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2458. extra: 1033 / 977,
  2459. bottom: 23.7 / 1057
  2460. }
  2461. },
  2462. maw: {
  2463. height: math.unit(183 / 5, "cm"),
  2464. name: "Maw",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/maw.svg"
  2467. }
  2468. },
  2469. mawcloseup: {
  2470. height: math.unit(183 / 5 * 0.41, "cm"),
  2471. name: "Maw (Closeup)",
  2472. image: {
  2473. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2474. }
  2475. },
  2476. paws: {
  2477. height: math.unit(1.17, "feet"),
  2478. name: "Paws",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/paws.svg",
  2481. extra: 851 / 851,
  2482. bottom: 17 / 868
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(1.83, "meter")
  2490. },
  2491. {
  2492. name: "Size Thief",
  2493. height: math.unit(18, "feet")
  2494. },
  2495. {
  2496. name: "50 Foot Collie",
  2497. height: math.unit(50, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(96, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Megamerger",
  2506. height: math.unit(650, "feet")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/march/front.svg",
  2519. extra: 1992/1851,
  2520. bottom: 39/2031
  2521. }
  2522. },
  2523. foot: {
  2524. height: math.unit(0.9, "feet"),
  2525. name: "Foot",
  2526. image: {
  2527. source: "./media/characters/march/foot.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7.9, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(220, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2.98, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(15963, "km")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(2980000000, "km")
  2552. },
  2553. {
  2554. name: "Examacro",
  2555. height: math.unit(250, "parsecs")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(60, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/noir/front.svg",
  2568. extra: 1,
  2569. bottom: 0.032
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(6.6, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(500, "feet")
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(2.5, "km"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Gigamacro",
  2589. height: math.unit(22500, "km")
  2590. },
  2591. {
  2592. name: "Teramacro",
  2593. height: math.unit(2500000000, "km")
  2594. },
  2595. {
  2596. name: "Examacro",
  2597. height: math.unit(200, "parsecs")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(7, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/okuri/front.svg",
  2610. extra: 739/665,
  2611. bottom: 39/778
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/okuri/back.svg",
  2620. extra: 734/653,
  2621. bottom: 13/747
  2622. }
  2623. },
  2624. sitting: {
  2625. height: math.unit(2.95, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Sitting",
  2628. image: {
  2629. source: "./media/characters/okuri/sitting.svg",
  2630. extra: 370/318,
  2631. bottom: 99/469
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Smallest",
  2638. height: math.unit(5 + 2/12, "feet")
  2639. },
  2640. {
  2641. name: "Smaller",
  2642. height: math.unit(300, "feet")
  2643. },
  2644. {
  2645. name: "Small",
  2646. height: math.unit(1000, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(1, "mile")
  2651. },
  2652. {
  2653. name: "Mega Macro (Small)",
  2654. height: math.unit(20, "km")
  2655. },
  2656. {
  2657. name: "Mega Macro (Large)",
  2658. height: math.unit(600, "km")
  2659. },
  2660. {
  2661. name: "Giga Macro",
  2662. height: math.unit(10000, "km")
  2663. },
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(577560, "km"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Large",
  2671. height: math.unit(4, "galaxies")
  2672. },
  2673. {
  2674. name: "Largest",
  2675. height: math.unit(15, "multiverses")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7, "feet"),
  2684. weight: math.unit(100, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/manny/front.svg",
  2688. extra: 1,
  2689. bottom: 0.06
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/manny/back.svg",
  2698. extra: 1,
  2699. bottom: 0.014
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet"),
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(78, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(300, "meters")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(2400, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(5167, "meters")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(41769, "miles")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/adake/front-1.svg"
  2740. }
  2741. },
  2742. frontAlt: {
  2743. height: math.unit(7, "feet"),
  2744. weight: math.unit(100, "kg"),
  2745. name: "Front (Alt)",
  2746. image: {
  2747. source: "./media/characters/adake/front-2.svg",
  2748. extra: 1,
  2749. bottom: 0.01
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(7, "feet"),
  2754. weight: math.unit(100, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/adake/back.svg",
  2758. }
  2759. },
  2760. kneel: {
  2761. height: math.unit(5.385, "feet"),
  2762. weight: math.unit(100, "kg"),
  2763. name: "Kneeling",
  2764. image: {
  2765. source: "./media/characters/adake/kneel.svg",
  2766. bottom: 0.052
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/elijah/front.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/elijah/back.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. frontNsfw: {
  2822. height: math.unit(1.65, "meters"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front (NSFW)",
  2825. image: {
  2826. source: "./media/characters/elijah/front-nsfw.svg",
  2827. extra: 858 / 830,
  2828. bottom: 95.5 / 953.8559
  2829. }
  2830. },
  2831. backNsfw: {
  2832. height: math.unit(1.65, "meters"),
  2833. weight: math.unit(50, "kg"),
  2834. name: "Back (NSFW)",
  2835. image: {
  2836. source: "./media/characters/elijah/back-nsfw.svg",
  2837. extra: 895 / 850,
  2838. bottom: 5.3 / 897.956
  2839. }
  2840. },
  2841. dick: {
  2842. height: math.unit(1, "feet"),
  2843. name: "Dick",
  2844. image: {
  2845. source: "./media/characters/elijah/dick.svg"
  2846. }
  2847. },
  2848. beakOpen: {
  2849. height: math.unit(1.25, "feet"),
  2850. name: "Beak (Open)",
  2851. image: {
  2852. source: "./media/characters/elijah/beak-open.svg"
  2853. }
  2854. },
  2855. beakShut: {
  2856. height: math.unit(1.25, "feet"),
  2857. name: "Beak (Shut)",
  2858. image: {
  2859. source: "./media/characters/elijah/beak-shut.svg"
  2860. }
  2861. },
  2862. footFlexing: {
  2863. height: math.unit(1.61, "feet"),
  2864. name: "Foot (Flexing)",
  2865. image: {
  2866. source: "./media/characters/elijah/foot-flexing.svg"
  2867. }
  2868. },
  2869. footStepping: {
  2870. height: math.unit(1.44, "feet"),
  2871. name: "Foot (Stepping)",
  2872. image: {
  2873. source: "./media/characters/elijah/foot-stepping.svg"
  2874. }
  2875. },
  2876. plantigradeLeg: {
  2877. height: math.unit(2.34, "feet"),
  2878. name: "Plantigrade Leg",
  2879. image: {
  2880. source: "./media/characters/elijah/plantigrade-leg.svg"
  2881. }
  2882. },
  2883. plantigradeFootLeft: {
  2884. height: math.unit(0.9, "feet"),
  2885. name: "Plantigrade Foot (Left)",
  2886. image: {
  2887. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2888. }
  2889. },
  2890. plantigradeFootRight: {
  2891. height: math.unit(0.9, "feet"),
  2892. name: "Plantigrade Foot (Right)",
  2893. image: {
  2894. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(1.65, "meters")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(55, "meters"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Macro+",
  2910. height: math.unit(105, "meters")
  2911. },
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(7 + 2/12, "feet"),
  2919. weight: math.unit(320, "kg"),
  2920. preyCapacity: math.unit(0.276549935, "people"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/rai/front.svg",
  2924. extra: 1802/1696,
  2925. bottom: 68/1870
  2926. },
  2927. form: "anthro",
  2928. default: true
  2929. },
  2930. frontDressed: {
  2931. height: math.unit(7 + 2/12, "feet"),
  2932. weight: math.unit(320, "kg"),
  2933. preyCapacity: math.unit(0.276549935, "people"),
  2934. name: "Front (Dressed)",
  2935. image: {
  2936. source: "./media/characters/rai/front-dressed.svg",
  2937. extra: 1802/1696,
  2938. bottom: 68/1870
  2939. },
  2940. form: "anthro"
  2941. },
  2942. side: {
  2943. height: math.unit(7 + 2/12, "feet"),
  2944. weight: math.unit(320, "kg"),
  2945. preyCapacity: math.unit(0.276549935, "people"),
  2946. name: "Side",
  2947. image: {
  2948. source: "./media/characters/rai/side.svg",
  2949. extra: 1789/1710,
  2950. bottom: 115/1904
  2951. },
  2952. form: "anthro"
  2953. },
  2954. back: {
  2955. height: math.unit(7 + 2/12, "feet"),
  2956. weight: math.unit(320, "kg"),
  2957. preyCapacity: math.unit(0.276549935, "people"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/rai/back.svg",
  2961. extra: 1770/1707,
  2962. bottom: 28/1798
  2963. },
  2964. form: "anthro"
  2965. },
  2966. feral: {
  2967. height: math.unit(9.5, "feet"),
  2968. weight: math.unit(640, "kg"),
  2969. preyCapacity: math.unit(4, "people"),
  2970. name: "Feral",
  2971. image: {
  2972. source: "./media/characters/rai/feral.svg",
  2973. extra: 945/553,
  2974. bottom: 176/1121
  2975. },
  2976. form: "feral",
  2977. default: true
  2978. },
  2979. dragon: {
  2980. height: math.unit(23, "feet"),
  2981. weight: math.unit(50000, "lb"),
  2982. name: "Dragon",
  2983. image: {
  2984. source: "./media/characters/rai/dragon.svg",
  2985. extra: 2498 / 2030,
  2986. bottom: 85.2 / 2584
  2987. },
  2988. form: "dragon",
  2989. default: true
  2990. },
  2991. maw: {
  2992. height: math.unit(1.69, "feet"),
  2993. name: "Maw",
  2994. image: {
  2995. source: "./media/characters/rai/maw.svg"
  2996. },
  2997. form: "anthro"
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(7 + 2/12, "feet"),
  3004. form: "anthro"
  3005. },
  3006. {
  3007. name: "Big",
  3008. height: math.unit(11, "feet"),
  3009. form: "anthro"
  3010. },
  3011. {
  3012. name: "Minimacro",
  3013. height: math.unit(77, "feet"),
  3014. form: "anthro"
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(302, "feet"),
  3019. default: true,
  3020. form: "anthro"
  3021. },
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(9.5, "feet"),
  3025. form: "feral",
  3026. default: true
  3027. },
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(23, "feet"),
  3031. form: "dragon",
  3032. default: true
  3033. }
  3034. ],
  3035. {
  3036. "anthro": {
  3037. name: "Anthro",
  3038. default: true
  3039. },
  3040. "feral": {
  3041. name: "Feral",
  3042. },
  3043. "dragon": {
  3044. name: "Dragon",
  3045. },
  3046. }
  3047. ))
  3048. characterMakers.push(() => makeCharacter(
  3049. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3050. {
  3051. frontDressed: {
  3052. height: math.unit(216, "feet"),
  3053. weight: math.unit(7000000, "lb"),
  3054. preyCapacity: math.unit(1321, "people"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/jazzy/front-dressed.svg",
  3058. extra: 2738 / 2651,
  3059. bottom: 41.8 / 2786
  3060. }
  3061. },
  3062. backDressed: {
  3063. height: math.unit(216, "feet"),
  3064. weight: math.unit(7000000, "lb"),
  3065. preyCapacity: math.unit(1321, "people"),
  3066. name: "Back (Dressed)",
  3067. image: {
  3068. source: "./media/characters/jazzy/back-dressed.svg",
  3069. extra: 2775 / 2673,
  3070. bottom: 36.8 / 2817
  3071. }
  3072. },
  3073. front: {
  3074. height: math.unit(216, "feet"),
  3075. weight: math.unit(7000000, "lb"),
  3076. preyCapacity: math.unit(1321, "people"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/jazzy/front.svg",
  3080. extra: 2738 / 2651,
  3081. bottom: 41.8 / 2786
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(216, "feet"),
  3086. weight: math.unit(7000000, "lb"),
  3087. preyCapacity: math.unit(1321, "people"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/jazzy/back.svg",
  3091. extra: 2775 / 2673,
  3092. bottom: 36.8 / 2817
  3093. }
  3094. },
  3095. maw: {
  3096. height: math.unit(20, "feet"),
  3097. name: "Maw",
  3098. image: {
  3099. source: "./media/characters/jazzy/maw.svg"
  3100. }
  3101. },
  3102. paws: {
  3103. height: math.unit(27.5, "feet"),
  3104. name: "Paws",
  3105. image: {
  3106. source: "./media/characters/jazzy/paws.svg"
  3107. }
  3108. },
  3109. eye: {
  3110. height: math.unit(4.4, "feet"),
  3111. name: "Eye",
  3112. image: {
  3113. source: "./media/characters/jazzy/eye.svg"
  3114. }
  3115. },
  3116. droneOffense: {
  3117. height: math.unit(9.5, "inches"),
  3118. name: "Drone (Offense)",
  3119. image: {
  3120. source: "./media/characters/jazzy/drone-offense.svg"
  3121. }
  3122. },
  3123. droneRecon: {
  3124. height: math.unit(9.5, "inches"),
  3125. name: "Drone (Recon)",
  3126. image: {
  3127. source: "./media/characters/jazzy/drone-recon.svg"
  3128. }
  3129. },
  3130. droneDefense: {
  3131. height: math.unit(9.5, "inches"),
  3132. name: "Drone (Defense)",
  3133. image: {
  3134. source: "./media/characters/jazzy/drone-defense.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(216, "feet"),
  3142. default: true
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(9 + 6/12, "feet"),
  3151. weight: math.unit(700, "lb"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/flamm/front.svg",
  3155. extra: 1736/1596,
  3156. bottom: 93/1829
  3157. }
  3158. },
  3159. buff: {
  3160. height: math.unit(9 + 6/12, "feet"),
  3161. weight: math.unit(950, "lb"),
  3162. name: "Buff",
  3163. image: {
  3164. source: "./media/characters/flamm/buff.svg",
  3165. extra: 3018/2874,
  3166. bottom: 221/3239
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9.5, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(200, "feet"),
  3178. default: true
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/zephiro/front.svg",
  3191. extra: 1873/1761,
  3192. bottom: 147/2020
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(5 + 3/12, "feet"),
  3197. weight: math.unit(60, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/zephiro/side.svg",
  3201. extra: 1929/1827,
  3202. bottom: 65/1994
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(5 + 3/12, "feet"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/zephiro/back.svg",
  3211. extra: 1926/1816,
  3212. bottom: 41/1967
  3213. }
  3214. },
  3215. hand: {
  3216. height: math.unit(0.68, "feet"),
  3217. name: "Hand",
  3218. image: {
  3219. source: "./media/characters/zephiro/hand.svg"
  3220. }
  3221. },
  3222. paw: {
  3223. height: math.unit(1, "feet"),
  3224. name: "Paw",
  3225. image: {
  3226. source: "./media/characters/zephiro/paw.svg"
  3227. }
  3228. },
  3229. beans: {
  3230. height: math.unit(0.93, "feet"),
  3231. name: "Beans",
  3232. image: {
  3233. source: "./media/characters/zephiro/beans.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(3, "inches")
  3241. },
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(5 + 3 / 12, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(118, "feet")
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(5, "feet"),
  3258. weight: math.unit(90, "kg"),
  3259. preyCapacity: math.unit(14, "people"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/fory/front.svg",
  3263. extra: 2862 / 2674,
  3264. bottom: 180 / 3043.8
  3265. },
  3266. form: "weaselbun",
  3267. default: true,
  3268. extraAttributes: {
  3269. "pawSize": {
  3270. name: "Paw Size",
  3271. power: 2,
  3272. type: "area",
  3273. base: math.unit(0.1596, "m^2")
  3274. },
  3275. "pawLength": {
  3276. name: "Paw Length",
  3277. power: 1,
  3278. type: "length",
  3279. base: math.unit(0.7, "m")
  3280. }
  3281. }
  3282. },
  3283. back: {
  3284. height: math.unit(5, "feet"),
  3285. weight: math.unit(90, "kg"),
  3286. preyCapacity: math.unit(14, "people"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/fory/back.svg",
  3290. extra: 1790/1672,
  3291. bottom: 84/1874
  3292. },
  3293. form: "weaselbun",
  3294. extraAttributes: {
  3295. "pawSize": {
  3296. name: "Paw Size",
  3297. power: 2,
  3298. type: "area",
  3299. base: math.unit(0.1596, "m^2")
  3300. },
  3301. "pawLength": {
  3302. name: "Paw Length",
  3303. power: 1,
  3304. type: "length",
  3305. base: math.unit(0.7, "m")
  3306. }
  3307. }
  3308. },
  3309. paw: {
  3310. height: math.unit(2.14, "feet"),
  3311. name: "Paw",
  3312. image: {
  3313. source: "./media/characters/fory/paw.svg"
  3314. },
  3315. form: "weaselbun",
  3316. extraAttributes: {
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.1596, "m^2")
  3322. },
  3323. "pawLength": {
  3324. name: "Paw Length",
  3325. power: 1,
  3326. type: "length",
  3327. base: math.unit(0.48, "m")
  3328. }
  3329. }
  3330. },
  3331. bunBack: {
  3332. height: math.unit(3, "feet"),
  3333. weight: math.unit(20, "kg"),
  3334. preyCapacity: math.unit(3, "people"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/fory/bun-back.svg",
  3338. extra: 1749/1564,
  3339. bottom: 246/1995
  3340. },
  3341. form: "bun",
  3342. default: true,
  3343. extraAttributes: {
  3344. "pawSize": {
  3345. name: "Paw Size",
  3346. power: 2,
  3347. type: "area",
  3348. base: math.unit(0.072, "m^2")
  3349. },
  3350. "pawLength": {
  3351. name: "Paw Length",
  3352. power: 1,
  3353. type: "length",
  3354. base: math.unit(0.45, "m")
  3355. }
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(5, "feet"),
  3363. form: "weaselbun"
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(50, "feet"),
  3368. default: true,
  3369. form: "weaselbun"
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(10, "miles"),
  3374. form: "weaselbun"
  3375. },
  3376. {
  3377. name: "Gigamacro",
  3378. height: math.unit(5, "earths"),
  3379. form: "weaselbun"
  3380. },
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(3, "feet"),
  3384. default: true,
  3385. form: "bun"
  3386. },
  3387. {
  3388. name: "Fun-Size",
  3389. height: math.unit(12, "feet"),
  3390. form: "bun"
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(100, "feet"),
  3395. form: "bun"
  3396. },
  3397. {
  3398. name: "Planetary",
  3399. height: math.unit(3, "earths"),
  3400. form: "bun"
  3401. },
  3402. ],
  3403. {
  3404. "weaselbun": {
  3405. name: "Weaselbun",
  3406. default: true
  3407. },
  3408. "bun": {
  3409. name: "Bun",
  3410. },
  3411. }
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/kurrikage/front.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(7, "feet"),
  3428. weight: math.unit(90, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/kurrikage/back.svg",
  3432. extra: 1790/1677,
  3433. bottom: 61/1851
  3434. }
  3435. },
  3436. dressed: {
  3437. height: math.unit(7, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Dressed",
  3440. image: {
  3441. source: "./media/characters/kurrikage/dressed.svg",
  3442. extra: 1845/1733,
  3443. bottom: 119/1964
  3444. }
  3445. },
  3446. foot: {
  3447. height: math.unit(1.5, "feet"),
  3448. name: "Foot",
  3449. image: {
  3450. source: "./media/characters/kurrikage/foot.svg"
  3451. }
  3452. },
  3453. staff: {
  3454. height: math.unit(6.7, "feet"),
  3455. name: "Staff",
  3456. image: {
  3457. source: "./media/characters/kurrikage/staff.svg"
  3458. }
  3459. },
  3460. peek: {
  3461. height: math.unit(1.05, "feet"),
  3462. name: "Peeking",
  3463. image: {
  3464. source: "./media/characters/kurrikage/peek.svg",
  3465. bottom: 0.08
  3466. }
  3467. },
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(12, "feet"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(20, "feet")
  3478. },
  3479. {
  3480. name: "Macro",
  3481. height: math.unit(500, "feet")
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(20, "miles")
  3486. },
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/shingo/front.svg",
  3498. extra: 1900/1825,
  3499. bottom: 82/1982
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/shingo/side.svg",
  3508. extra: 1930/1865,
  3509. bottom: 16/1946
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/shingo/back.svg",
  3518. extra: 1922/1852,
  3519. bottom: 16/1938
  3520. }
  3521. },
  3522. frontDressed: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lb"),
  3525. name: "Front-dressed",
  3526. image: {
  3527. source: "./media/characters/shingo/front-dressed.svg",
  3528. extra: 1900/1825,
  3529. bottom: 82/1982
  3530. }
  3531. },
  3532. paw: {
  3533. height: math.unit(1.29, "feet"),
  3534. name: "Paw",
  3535. image: {
  3536. source: "./media/characters/shingo/paw.svg"
  3537. }
  3538. },
  3539. hand: {
  3540. height: math.unit(1.07, "feet"),
  3541. name: "Hand",
  3542. image: {
  3543. source: "./media/characters/shingo/hand.svg"
  3544. }
  3545. },
  3546. frontAlt: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (Alt)",
  3550. image: {
  3551. source: "./media/characters/shingo/front-alt.svg",
  3552. extra: 3511 / 3338,
  3553. bottom: 0.005
  3554. }
  3555. },
  3556. frontAlt2: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Front (Alt 2)",
  3560. image: {
  3561. source: "./media/characters/shingo/front-alt-2.svg",
  3562. extra: 706/681,
  3563. bottom: 11/717
  3564. }
  3565. },
  3566. pawAlt: {
  3567. height: math.unit(1, "feet"),
  3568. name: "Paw (Alt)",
  3569. image: {
  3570. source: "./media/characters/shingo/paw-alt.svg"
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Micro",
  3577. height: math.unit(4, "inches")
  3578. },
  3579. {
  3580. name: "Normal",
  3581. height: math.unit(6, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(108, "feet")
  3587. },
  3588. {
  3589. name: "Macro+",
  3590. height: math.unit(1500, "feet")
  3591. },
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3596. {
  3597. side: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/aigey/side.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(200, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(100, "miles")
  3615. },
  3616. ]
  3617. )
  3618. )
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/natasha/front.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. frontNsfw: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Front (NSFW)",
  3636. image: {
  3637. source: "./media/characters/natasha/front-nsfw.svg",
  3638. extra: 859 / 824,
  3639. bottom: 23 / 879.6
  3640. }
  3641. },
  3642. frontErect: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Front (Erect)",
  3646. image: {
  3647. source: "./media/characters/natasha/front-erect.svg",
  3648. extra: 859 / 824,
  3649. bottom: 23 / 879.6
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(5 + 5 / 12, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/natasha/back.svg",
  3658. extra: 887.9 / 852.6,
  3659. bottom: 9.7 / 896.4
  3660. }
  3661. },
  3662. backAlt: {
  3663. height: math.unit(5 + 5 / 12, "feet"),
  3664. weight: math.unit(75, "kg"),
  3665. name: "Back (Alt)",
  3666. image: {
  3667. source: "./media/characters/natasha/back-alt.svg",
  3668. extra: 1236.7 / 1192,
  3669. bottom: 22.3 / 1258.2
  3670. }
  3671. },
  3672. dick: {
  3673. height: math.unit(1.772, "feet"),
  3674. name: "Dick",
  3675. image: {
  3676. source: "./media/characters/natasha/dick.svg"
  3677. }
  3678. },
  3679. paw: {
  3680. height: math.unit(0.250, "meters"),
  3681. name: "Paw",
  3682. image: {
  3683. source: "./media/characters/natasha/paw.svg"
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0024, "m^2")
  3691. },
  3692. "padSize": {
  3693. name: "Pad Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.00889, "m^2")
  3697. },
  3698. "pawSize": {
  3699. name: "Paw Size",
  3700. power: 2,
  3701. type: "area",
  3702. base: math.unit(0.023667, "m^2")
  3703. },
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Shortstack",
  3710. height: math.unit(3, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(5 + 5 / 12, "feet")
  3716. },
  3717. {
  3718. name: "Large",
  3719. height: math.unit(12, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(100, "feet")
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(260, "feet")
  3728. },
  3729. {
  3730. name: "Macro++",
  3731. height: math.unit(1, "mile")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/malik/front.svg",
  3744. extra: 1750/1561,
  3745. bottom: 80/1830
  3746. },
  3747. extraAttributes: {
  3748. "toeSize": {
  3749. name: "Toe Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.0159, "m^2")
  3753. },
  3754. "pawSize": {
  3755. name: "Paw Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.09834, "m^2")
  3759. },
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/malik/side.svg",
  3768. extra: 1802/1685,
  3769. bottom: 42/1844
  3770. },
  3771. extraAttributes: {
  3772. "toeSize": {
  3773. name: "Toe Size",
  3774. power: 2,
  3775. type: "area",
  3776. base: math.unit(0.0159, "m^2")
  3777. },
  3778. "pawSize": {
  3779. name: "Paw Size",
  3780. power: 2,
  3781. type: "area",
  3782. base: math.unit(0.09834, "m^2")
  3783. },
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/malik/back.svg",
  3792. extra: 1803/1607,
  3793. bottom: 33/1836
  3794. },
  3795. extraAttributes: {
  3796. "toeSize": {
  3797. name: "Toe Size",
  3798. power: 2,
  3799. type: "area",
  3800. base: math.unit(0.0159, "m^2")
  3801. },
  3802. "pawSize": {
  3803. name: "Paw Size",
  3804. power: 2,
  3805. type: "area",
  3806. base: math.unit(0.09834, "m^2")
  3807. },
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(156, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(1188, "feet")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/sefer/front.svg",
  3832. extra: 848 / 659,
  3833. bottom: 28.3 / 876.442
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(75, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/sefer/back.svg",
  3842. extra: 864 / 695,
  3843. bottom: 10 / 871
  3844. }
  3845. },
  3846. frontDressed: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(75, "kg"),
  3849. name: "Dressed",
  3850. image: {
  3851. source: "./media/characters/sefer/dressed.svg",
  3852. extra: 839 / 653,
  3853. bottom: 37.6 / 878
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(6, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Big",
  3865. height: math.unit(8, "meters")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3871. {
  3872. body: {
  3873. height: math.unit(2.2428, "meter"),
  3874. weight: math.unit(124.738, "kg"),
  3875. name: "Body",
  3876. image: {
  3877. extra: 1225 / 1050,
  3878. source: "./media/characters/north/front.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Micro",
  3885. height: math.unit(4, "inches")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(63, "meters")
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(101, "miles"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3900. {
  3901. angled: {
  3902. height: math.unit(4, "meter"),
  3903. weight: math.unit(150, "kg"),
  3904. name: "Angled",
  3905. image: {
  3906. source: "./media/characters/talan/angled-sfw.svg",
  3907. bottom: 29 / 3734
  3908. }
  3909. },
  3910. angledNsfw: {
  3911. height: math.unit(4, "meter"),
  3912. weight: math.unit(150, "kg"),
  3913. name: "Angled (NSFW)",
  3914. image: {
  3915. source: "./media/characters/talan/angled-nsfw.svg",
  3916. bottom: 29 / 3734
  3917. }
  3918. },
  3919. frontNsfw: {
  3920. height: math.unit(4, "meter"),
  3921. weight: math.unit(150, "kg"),
  3922. name: "Front (NSFW)",
  3923. image: {
  3924. source: "./media/characters/talan/front-nsfw.svg",
  3925. bottom: 29 / 3734
  3926. }
  3927. },
  3928. sideNsfw: {
  3929. height: math.unit(4, "meter"),
  3930. weight: math.unit(150, "kg"),
  3931. name: "Side (NSFW)",
  3932. image: {
  3933. source: "./media/characters/talan/side-nsfw.svg",
  3934. bottom: 29 / 3734
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(4, "meter"),
  3939. weight: math.unit(150, "kg"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/talan/back.svg"
  3943. }
  3944. },
  3945. dickBottom: {
  3946. height: math.unit(0.621, "meter"),
  3947. name: "Dick (Bottom)",
  3948. image: {
  3949. source: "./media/characters/talan/dick-bottom.svg"
  3950. }
  3951. },
  3952. dickTop: {
  3953. height: math.unit(0.621, "meter"),
  3954. name: "Dick (Top)",
  3955. image: {
  3956. source: "./media/characters/talan/dick-top.svg"
  3957. }
  3958. },
  3959. dickSide: {
  3960. height: math.unit(0.305, "meter"),
  3961. name: "Dick (Side)",
  3962. image: {
  3963. source: "./media/characters/talan/dick-side.svg"
  3964. }
  3965. },
  3966. dickFront: {
  3967. height: math.unit(0.305, "meter"),
  3968. name: "Dick (Front)",
  3969. image: {
  3970. source: "./media/characters/talan/dick-front.svg"
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(4, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(100, "meters")
  3982. },
  3983. {
  3984. name: "Megamacro",
  3985. height: math.unit(2, "miles"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(5000, "miles")
  3991. },
  3992. {
  3993. name: "Teramacro",
  3994. height: math.unit(100, "parsecs")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front.svg"
  4007. }
  4008. },
  4009. frontAlt: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(90, "kg"),
  4012. name: "Front (alt)",
  4013. image: {
  4014. source: "./media/characters/gael'rathus/front-alt.svg"
  4015. }
  4016. },
  4017. frontAlt2: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(90, "kg"),
  4020. name: "Front (alt 2)",
  4021. image: {
  4022. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(9, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(25, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(0.25, "miles")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(10, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4048. {
  4049. side: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(140, "kg"),
  4052. name: "Side",
  4053. image: {
  4054. source: "./media/characters/sosha/side.svg",
  4055. extra: 1170/1006,
  4056. bottom: 94/1264
  4057. }
  4058. },
  4059. maw: {
  4060. height: math.unit(2.87, "feet"),
  4061. name: "Maw",
  4062. image: {
  4063. source: "./media/characters/sosha/maw.svg",
  4064. extra: 966/865,
  4065. bottom: 0/966
  4066. }
  4067. },
  4068. cooch: {
  4069. height: math.unit(5.6, "feet"),
  4070. name: "Cooch",
  4071. image: {
  4072. source: "./media/characters/sosha/cooch.svg"
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(12, "feet"),
  4080. default: true
  4081. }
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4086. {
  4087. side: {
  4088. height: math.unit(5 + 5 / 12, "feet"),
  4089. weight: math.unit(170, "kg"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/runnola/side.svg",
  4093. extra: 741 / 448,
  4094. bottom: 0.05
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Small",
  4101. height: math.unit(3, "feet")
  4102. },
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(5 + 5 / 12, "feet"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Big",
  4110. height: math.unit(10, "feet")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(50, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/kurribird/front.svg",
  4123. bottom: 0.015
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(1.5, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Front (Alt)",
  4130. image: {
  4131. source: "./media/characters/kurribird/front-alt.svg",
  4132. extra: 1.45
  4133. }
  4134. },
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7, "feet")
  4140. },
  4141. {
  4142. name: "Big",
  4143. height: math.unit(12, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(1500, "feet")
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(2, "miles")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/elbial/front.svg",
  4165. extra: 1643 / 1556,
  4166. bottom: 60.2 / 1696
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/elbial/side.svg",
  4175. extra: 1601/1528,
  4176. bottom: 97/1698
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(2, "meter"),
  4181. weight: math.unit(80, "kg"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/elbial/back.svg",
  4185. extra: 1653/1569,
  4186. bottom: 20/1673
  4187. }
  4188. },
  4189. frontDressed: {
  4190. height: math.unit(2, "meter"),
  4191. weight: math.unit(80, "kg"),
  4192. name: "Front (Dressed)",
  4193. image: {
  4194. source: "./media/characters/elbial/front-dressed.svg",
  4195. extra: 1638/1569,
  4196. bottom: 70/1708
  4197. }
  4198. },
  4199. genitals: {
  4200. height: math.unit(2 / 3.367, "meter"),
  4201. name: "Genitals",
  4202. image: {
  4203. source: "./media/characters/elbial/genitals.svg"
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Large",
  4210. height: math.unit(100, "feet")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(500, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(10, "miles")
  4220. },
  4221. {
  4222. name: "Gigamacro",
  4223. height: math.unit(25000, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(8000000, "gigaparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(60, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/noah/front.svg"
  4240. }
  4241. },
  4242. talons: {
  4243. height: math.unit(0.315, "meter"),
  4244. name: "Talons",
  4245. image: {
  4246. source: "./media/characters/noah/talons.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Large",
  4253. height: math.unit(50, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(750, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(50, "miles")
  4263. },
  4264. {
  4265. name: "Gigamacro",
  4266. height: math.unit(100000, "miles")
  4267. },
  4268. {
  4269. name: "Full-Size",
  4270. height: math.unit(3000000000, "miles")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/natalya/front.svg"
  4283. }
  4284. },
  4285. back: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(80, "kg"),
  4288. name: "Back",
  4289. image: {
  4290. source: "./media/characters/natalya/back.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(150, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(5, "miles")
  4303. },
  4304. {
  4305. name: "Full-Size",
  4306. height: math.unit(600, "kiloparsecs")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/erestrebah/front.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(2, "meter"),
  4325. weight: math.unit(50, "kg"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/erestrebah/back.svg",
  4329. extra: 1257/1139,
  4330. bottom: 13/1270
  4331. }
  4332. },
  4333. wing: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Wing",
  4337. image: {
  4338. source: "./media/characters/erestrebah/wing.svg",
  4339. extra: 1262/1162,
  4340. bottom: 96/1358
  4341. }
  4342. },
  4343. mouth: {
  4344. height: math.unit(0.39, "feet"),
  4345. name: "Mouth",
  4346. image: {
  4347. source: "./media/characters/erestrebah/mouth.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. {
  4357. name: "Large",
  4358. height: math.unit(50, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(750, "feet")
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(3, "miles")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/jennifer/front.svg",
  4384. bottom: 0.11,
  4385. extra: 1.16
  4386. }
  4387. },
  4388. frontAlt: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Front (Alt)",
  4392. image: {
  4393. source: "./media/characters/jennifer/front-alt.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Canon Height",
  4400. height: math.unit(120, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(300, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(20000, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meter"),
  4418. weight: math.unit(50, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/kalista/front.svg",
  4422. extra: 1314/1145,
  4423. bottom: 101/1415
  4424. }
  4425. },
  4426. back: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Back",
  4430. image: {
  4431. source: "./media/characters/kalista/back.svg",
  4432. extra: 1366 / 1156,
  4433. bottom: 33.9 / 1362.78
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Uncomfortably Small",
  4440. height: math.unit(10, "feet")
  4441. },
  4442. {
  4443. name: "Small",
  4444. height: math.unit(30, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(100, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(2000, "feet")
  4454. },
  4455. {
  4456. name: "True Form",
  4457. height: math.unit(8924, "miles")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(120, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/ggv/front.svg"
  4470. }
  4471. },
  4472. side: {
  4473. height: math.unit(2, "meter"),
  4474. weight: math.unit(120, "kg"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/ggv/side.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Extremely Puny",
  4484. height: math.unit(9 + 5 / 12, "feet")
  4485. },
  4486. {
  4487. name: "Horribly Small",
  4488. height: math.unit(47.7, "miles"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Reasonably Sized",
  4493. height: math.unit(25000, "parsecs")
  4494. },
  4495. {
  4496. name: "Slightly Uncompressed",
  4497. height: math.unit(7.77e31, "parsecs")
  4498. },
  4499. {
  4500. name: "Omniversal",
  4501. height: math.unit(1e300, "meters")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4507. {
  4508. front: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(75, "lb"),
  4511. name: "Front",
  4512. image: {
  4513. source: "./media/characters/napalm/front.svg"
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(75, "lb"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/napalm/back.svg"
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Standard",
  4528. height: math.unit(55, "feet"),
  4529. default: true
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/asana/front.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. back: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Back",
  4550. image: {
  4551. source: "./media/characters/asana/back.svg",
  4552. extra: 1114 / 1043,
  4553. bottom: 5 / 1120
  4554. }
  4555. },
  4556. dressedDark: {
  4557. height: math.unit(7 + 5 / 6, "feet"),
  4558. weight: math.unit(325, "lb"),
  4559. name: "Dressed (Dark)",
  4560. image: {
  4561. source: "./media/characters/asana/dressed-dark.svg",
  4562. extra: 1133 / 1060,
  4563. bottom: 15.2 / 1148.6
  4564. }
  4565. },
  4566. dressedLight: {
  4567. height: math.unit(7 + 5 / 6, "feet"),
  4568. weight: math.unit(325, "lb"),
  4569. name: "Dressed (Light)",
  4570. image: {
  4571. source: "./media/characters/asana/dressed-light.svg",
  4572. extra: 1133 / 1060,
  4573. bottom: 15.2 / 1148.6
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Standard",
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Large",
  4585. height: math.unit(10, "meters")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(2500, "meters")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5e6, "meters")
  4594. },
  4595. {
  4596. name: "Examacro",
  4597. height: math.unit(5e12, "lightyears")
  4598. },
  4599. {
  4600. name: "Max Size",
  4601. height: math.unit(1e31, "lightyears")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/ebony/front.svg",
  4614. bottom: 0.03,
  4615. extra: 1045 / 810 + 0.03
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(60, "kg"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/ebony/side.svg",
  4624. bottom: 0.03,
  4625. extra: 1045 / 810 + 0.03
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(60, "kg"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/ebony/back.svg",
  4634. bottom: 0.01,
  4635. extra: 1045 / 810 + 0.01
  4636. }
  4637. },
  4638. },
  4639. [
  4640. // TODO check why I did this lol
  4641. {
  4642. name: "Standard",
  4643. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(200, "feet")
  4649. },
  4650. {
  4651. name: "Gigamacro",
  4652. height: math.unit(13000, "km")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(175, "lb"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/mountain/front.svg",
  4665. extra: 972 / 955,
  4666. bottom: 64 / 1036.6
  4667. }
  4668. },
  4669. back: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(175, "lb"),
  4672. name: "Back",
  4673. image: {
  4674. source: "./media/characters/mountain/back.svg",
  4675. extra: 970 / 950,
  4676. bottom: 28.25 / 999
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Large",
  4683. height: math.unit(20, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(300, "meters")
  4688. },
  4689. {
  4690. name: "Gigamacro",
  4691. height: math.unit(10000, "km"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(10e9, "lightyears")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(8, "feet"),
  4705. weight: math.unit(500, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/rick/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(8, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(5, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ona/front.svg"
  4733. }
  4734. },
  4735. frontAlt: {
  4736. height: math.unit(8, "feet"),
  4737. weight: math.unit(120, "lb"),
  4738. name: "Front (Alt)",
  4739. image: {
  4740. source: "./media/characters/ona/front-alt.svg"
  4741. }
  4742. },
  4743. back: {
  4744. height: math.unit(8, "feet"),
  4745. weight: math.unit(120, "lb"),
  4746. name: "Back",
  4747. image: {
  4748. source: "./media/characters/ona/back.svg"
  4749. }
  4750. },
  4751. foot: {
  4752. height: math.unit(1.1, "feet"),
  4753. name: "Foot",
  4754. image: {
  4755. source: "./media/characters/ona/foot.svg"
  4756. }
  4757. }
  4758. },
  4759. [
  4760. {
  4761. name: "Megamacro",
  4762. height: math.unit(70, "km"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Gigamacro",
  4767. height: math.unit(681818, "miles")
  4768. },
  4769. {
  4770. name: "Examacro",
  4771. height: math.unit(3800000, "lightyears")
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(3000, "lb"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/mech/front.svg",
  4784. extra: 2900 / 2770,
  4785. bottom: 110 / 3010
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(3000, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/mech/back.svg",
  4794. extra: 3011 / 2890,
  4795. bottom: 94 / 3105
  4796. }
  4797. },
  4798. maw: {
  4799. height: math.unit(3.07, "feet"),
  4800. name: "Maw",
  4801. image: {
  4802. source: "./media/characters/mech/maw.svg"
  4803. }
  4804. },
  4805. head: {
  4806. height: math.unit(3.07, "feet"),
  4807. name: "Head",
  4808. image: {
  4809. source: "./media/characters/mech/head.svg"
  4810. }
  4811. },
  4812. dick: {
  4813. height: math.unit(1.43, "feet"),
  4814. name: "Dick",
  4815. image: {
  4816. source: "./media/characters/mech/dick.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(12, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(300, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(1500, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(1.3, "meter"),
  4841. weight: math.unit(30, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/gregory/front.svg",
  4845. }
  4846. }
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(1.3, "meter"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(20, "meter")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(2.8, "meter"),
  4865. weight: math.unit(200, "kg"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/elory/front.svg",
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(2.8, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(38, "meter")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(470, "feet"),
  4889. weight: math.unit(924, "tons"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/angelpatamon/front.svg",
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(470, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Deity Size I",
  4904. height: math.unit(28651.2, "km")
  4905. },
  4906. {
  4907. name: "Deity Size II",
  4908. height: math.unit(171907.2, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4914. {
  4915. side: {
  4916. height: math.unit(7.2, "meter"),
  4917. weight: math.unit(8.2, "tons"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/cryae/side.svg",
  4921. extra: 3500 / 1500
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(7.2, "meter"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/xera/front.svg",
  4942. extra: 2377 / 1972,
  4943. bottom: 75.5 / 2452
  4944. }
  4945. },
  4946. side: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/xera/side.svg",
  4952. extra: 2345 / 2019,
  4953. bottom: 39.7 / 2384
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/xera/back.svg",
  4962. extra: 2095 / 1984,
  4963. bottom: 67 / 2166
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Small",
  4970. height: math.unit(10, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(500, "meters"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(10, "km")
  4980. },
  4981. {
  4982. name: "Gigamacro",
  4983. height: math.unit(25000, "km")
  4984. },
  4985. {
  4986. name: "Teramacro",
  4987. height: math.unit(3e6, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(175, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/nebula/front.svg",
  5000. extra: 2566 / 2362,
  5001. bottom: 81 / 2644
  5002. }
  5003. }
  5004. },
  5005. [
  5006. {
  5007. name: "Small",
  5008. height: math.unit(4.5, "meters")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(1500, "meters"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(150, "km")
  5018. },
  5019. {
  5020. name: "Gigamacro",
  5021. height: math.unit(27000, "km")
  5022. }
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/abysgar/front.svg",
  5034. extra: 1739/1614,
  5035. bottom: 71/1810
  5036. }
  5037. },
  5038. frontNsfw: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(225, "lb"),
  5041. name: "Front (NSFW)",
  5042. image: {
  5043. source: "./media/characters/abysgar/front-nsfw.svg",
  5044. extra: 1739/1614,
  5045. bottom: 71/1810
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(4.6, "feet"),
  5050. weight: math.unit(225, "lb"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/abysgar/back.svg",
  5054. extra: 1384/1327,
  5055. bottom: 0/1384
  5056. }
  5057. },
  5058. head: {
  5059. height: math.unit(1.25, "feet"),
  5060. name: "Head",
  5061. image: {
  5062. source: "./media/characters/abysgar/head.svg",
  5063. extra: 669/569,
  5064. bottom: 0/669
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Small",
  5071. height: math.unit(4.5, "meters")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1250, "meters"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megamacro",
  5080. height: math.unit(125, "km")
  5081. },
  5082. {
  5083. name: "Gigamacro",
  5084. height: math.unit(26000, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(180, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/yakuz/front.svg"
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Small",
  5103. height: math.unit(5, "meters")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(1500, "meters"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(200, "km")
  5113. },
  5114. {
  5115. name: "Gigamacro",
  5116. height: math.unit(100000, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(175, "lb"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/mirova/front.svg",
  5129. extra: 3334 / 3071,
  5130. bottom: 42 / 3375.6
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(5, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(900, "meters"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Megamacro",
  5146. height: math.unit(135, "km")
  5147. },
  5148. {
  5149. name: "Gigamacro",
  5150. height: math.unit(20000, "km")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(28.35, "feet"),
  5159. weight: math.unit(99.75, "tons"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/asana-mech/side.svg",
  5163. extra: 923 / 699,
  5164. bottom: 50 / 975
  5165. }
  5166. },
  5167. chaingun: {
  5168. height: math.unit(7, "feet"),
  5169. weight: math.unit(2400, "lb"),
  5170. name: "Chaingun",
  5171. image: {
  5172. source: "./media/characters/asana-mech/chaingun.svg"
  5173. }
  5174. },
  5175. laser: {
  5176. height: math.unit(7.12, "feet"),
  5177. weight: math.unit(2000, "lb"),
  5178. name: "Laser",
  5179. image: {
  5180. source: "./media/characters/asana-mech/laser.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(28.35, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(2500, "feet")
  5193. },
  5194. {
  5195. name: "Megamacro",
  5196. height: math.unit(25, "miles")
  5197. },
  5198. {
  5199. name: "Examacro",
  5200. height: math.unit(6e8, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/asche/front.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontUnderwear: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Underwear)",
  5221. image: {
  5222. source: "./media/characters/asche/front-underwear.svg",
  5223. extra: 1258 / 1190,
  5224. bottom: 47 / 1305
  5225. }
  5226. },
  5227. frontDressed: {
  5228. height: math.unit(5, "meters"),
  5229. weight: math.unit(1000, "kg"),
  5230. name: "Front (Dressed)",
  5231. image: {
  5232. source: "./media/characters/asche/front-dressed.svg",
  5233. extra: 1258 / 1190,
  5234. bottom: 47 / 1305
  5235. }
  5236. },
  5237. frontArmor: {
  5238. height: math.unit(5, "meters"),
  5239. weight: math.unit(1000, "kg"),
  5240. name: "Front (Armored)",
  5241. image: {
  5242. source: "./media/characters/asche/front-armored.svg",
  5243. extra: 1374 / 1308,
  5244. bottom: 23 / 1397
  5245. }
  5246. },
  5247. mp724: {
  5248. height: math.unit(0.96, "meters"),
  5249. weight: math.unit(38, "kg"),
  5250. name: "H&K MP724",
  5251. image: {
  5252. source: "./media/characters/asche/h&k-mp724.svg"
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(5, "meters"),
  5257. weight: math.unit(1000, "kg"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/asche/side.svg",
  5261. extra: 1717 / 1609,
  5262. bottom: 0.005
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(5, "meters"),
  5267. weight: math.unit(1000, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/asche/back.svg",
  5271. extra: 1570 / 1501
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "DEFCON 5",
  5278. height: math.unit(5, "meters")
  5279. },
  5280. {
  5281. name: "DEFCON 4",
  5282. height: math.unit(500, "meters"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "DEFCON 3",
  5287. height: math.unit(5, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 2",
  5291. height: math.unit(500, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 1",
  5295. height: math.unit(500000, "km")
  5296. },
  5297. {
  5298. name: "DEFCON 0",
  5299. height: math.unit(3, "gigaparsecs")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(7, "feet"),
  5308. weight: math.unit(92.7, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/gale/front.svg",
  5312. extra: 977/919,
  5313. bottom: 105/1082
  5314. }
  5315. },
  5316. side: {
  5317. height: math.unit(6.7, "feet"),
  5318. weight: math.unit(92.7, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/gale/side.svg",
  5322. extra: 978/922,
  5323. bottom: 140/1118
  5324. }
  5325. },
  5326. back: {
  5327. height: math.unit(7, "feet"),
  5328. weight: math.unit(92.7, "kg"),
  5329. name: "Back",
  5330. image: {
  5331. source: "./media/characters/gale/back.svg",
  5332. extra: 966/920,
  5333. bottom: 61/1027
  5334. }
  5335. },
  5336. maw: {
  5337. height: math.unit(2.23, "feet"),
  5338. name: "Maw",
  5339. image: {
  5340. source: "./media/characters/gale/maw.svg"
  5341. }
  5342. },
  5343. foot: {
  5344. height: math.unit(2.1, "feet"),
  5345. name: "Foot",
  5346. image: {
  5347. source: "./media/characters/gale/foot.svg"
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(7, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(150, "feet"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Macro+",
  5363. height: math.unit(300, "feet")
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5 + 10/12, "feet"),
  5372. weight: math.unit(67, "kg"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/draylen/front.svg",
  5376. extra: 832/777,
  5377. bottom: 85/917
  5378. }
  5379. }
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(5 + 10/12, "feet")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(150, "feet"),
  5389. default: true
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(7 + 9 / 12, "feet"),
  5398. weight: math.unit(379, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/chez/front.svg"
  5402. }
  5403. },
  5404. side: {
  5405. height: math.unit(7 + 9 / 12, "feet"),
  5406. weight: math.unit(379, "lbs"),
  5407. name: "Side",
  5408. image: {
  5409. source: "./media/characters/chez/side.svg"
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(7 + 9 / 12, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "God King",
  5421. height: math.unit(9750000, "meters")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(275, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/kaylum/front.svg",
  5434. bottom: 0.01,
  5435. extra: 1166 / 1031
  5436. }
  5437. },
  5438. frontWingless: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(275, "lbs"),
  5441. name: "Front (Wingless)",
  5442. image: {
  5443. source: "./media/characters/kaylum/front-wingless.svg",
  5444. bottom: 0.01,
  5445. extra: 1117 / 1031
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(3.05, "meters")
  5453. },
  5454. {
  5455. name: "Master",
  5456. height: math.unit(5.5, "meters")
  5457. },
  5458. {
  5459. name: "Rampage",
  5460. height: math.unit(19, "meters")
  5461. },
  5462. {
  5463. name: "Macro Lite",
  5464. height: math.unit(37, "meters")
  5465. },
  5466. {
  5467. name: "Hyper Predator",
  5468. height: math.unit(61, "meters")
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(138, "meters"),
  5473. default: true
  5474. }
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(5 + 5 / 12, "feet"),
  5482. weight: math.unit(120, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/geta/front.svg",
  5486. extra: 1003/933,
  5487. bottom: 21/1024
  5488. }
  5489. },
  5490. paw: {
  5491. height: math.unit(0.35, "feet"),
  5492. name: "Paw",
  5493. image: {
  5494. source: "./media/characters/geta/paw.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Micro",
  5501. height: math.unit(3, "inches"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(5 + 5 / 12, "feet")
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(300, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/tyrnn/front.svg"
  5519. }
  5520. }
  5521. },
  5522. [
  5523. {
  5524. name: "Main Height",
  5525. height: math.unit(355, "feet"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Fave. Height",
  5530. height: math.unit(2400, "feet")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(300, "lbs"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/appledectomy/front.svg"
  5543. }
  5544. }
  5545. },
  5546. [
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(2500, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(50, "miles"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "Gigamacro",
  5558. height: math.unit(5000, "miles")
  5559. },
  5560. {
  5561. name: "Teramacro",
  5562. height: math.unit(250000, "miles")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(200, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/vulpes/front.svg",
  5575. extra: 573 / 543,
  5576. bottom: 0.033
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(200, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/vulpes/side.svg",
  5585. extra: 577 / 549,
  5586. bottom: 11 / 588
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(200, "lbs"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/vulpes/back.svg",
  5595. extra: 573 / 549,
  5596. bottom: 20 / 593
  5597. }
  5598. },
  5599. feet: {
  5600. height: math.unit(1.276, "feet"),
  5601. name: "Feet",
  5602. image: {
  5603. source: "./media/characters/vulpes/feet.svg"
  5604. }
  5605. },
  5606. maw: {
  5607. height: math.unit(1.18, "feet"),
  5608. name: "Maw",
  5609. image: {
  5610. source: "./media/characters/vulpes/maw.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Micro",
  5617. height: math.unit(2, "inches")
  5618. },
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(6.3, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(850, "feet")
  5626. },
  5627. {
  5628. name: "Megamacro",
  5629. height: math.unit(7500, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Gigamacro",
  5634. height: math.unit(570000, "miles")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(210, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/rain-fallen/front.svg"
  5647. }
  5648. },
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(210, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/rain-fallen/side.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(210, "lbs"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/rain-fallen/back.svg"
  5663. }
  5664. },
  5665. feral: {
  5666. height: math.unit(9, "feet"),
  5667. weight: math.unit(700, "lbs"),
  5668. name: "Feral",
  5669. image: {
  5670. source: "./media/characters/rain-fallen/feral.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Meddling with Mortals",
  5677. height: math.unit(8 + 8/12, "feet")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "meter")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(150, "meter"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(278e6, "meter")
  5691. },
  5692. {
  5693. name: "Gigamacro",
  5694. height: math.unit(2e9, "meter")
  5695. },
  5696. {
  5697. name: "Teramacro",
  5698. height: math.unit(8e12, "meter")
  5699. },
  5700. {
  5701. name: "Devourer",
  5702. height: math.unit(14, "zettameters")
  5703. },
  5704. {
  5705. name: "Scarlet King",
  5706. height: math.unit(18, "yottameters")
  5707. },
  5708. {
  5709. name: "Void",
  5710. height: math.unit(1e88, "yottameters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5716. {
  5717. standing: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(180, "lbs"),
  5720. name: "Standing",
  5721. image: {
  5722. source: "./media/characters/zaakira/standing.svg",
  5723. extra: 1599/1504,
  5724. bottom: 39/1638
  5725. }
  5726. },
  5727. laying: {
  5728. height: math.unit(3.3, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Laying",
  5731. image: {
  5732. source: "./media/characters/zaakira/laying.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(12, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(279, "feet"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. femSfw: {
  5752. height: math.unit(8, "feet"),
  5753. weight: math.unit(350, "lb"),
  5754. name: "Fem",
  5755. image: {
  5756. source: "./media/characters/sigvald/fem-sfw.svg",
  5757. extra: 182 / 164,
  5758. bottom: 8.7 / 190.5
  5759. }
  5760. },
  5761. femNsfw: {
  5762. height: math.unit(8, "feet"),
  5763. weight: math.unit(350, "lb"),
  5764. name: "Fem (NSFW)",
  5765. image: {
  5766. source: "./media/characters/sigvald/fem-nsfw.svg",
  5767. extra: 182 / 164,
  5768. bottom: 8.7 / 190.5
  5769. }
  5770. },
  5771. maleNsfw: {
  5772. height: math.unit(8, "feet"),
  5773. weight: math.unit(350, "lb"),
  5774. name: "Male (NSFW)",
  5775. image: {
  5776. source: "./media/characters/sigvald/male-nsfw.svg",
  5777. extra: 182 / 164,
  5778. bottom: 8.7 / 190.5
  5779. }
  5780. },
  5781. hermNsfw: {
  5782. height: math.unit(8, "feet"),
  5783. weight: math.unit(350, "lb"),
  5784. name: "Herm (NSFW)",
  5785. image: {
  5786. source: "./media/characters/sigvald/herm-nsfw.svg",
  5787. extra: 182 / 164,
  5788. bottom: 8.7 / 190.5
  5789. }
  5790. },
  5791. dick: {
  5792. height: math.unit(2.36, "feet"),
  5793. name: "Dick",
  5794. image: {
  5795. source: "./media/characters/sigvald/dick.svg"
  5796. }
  5797. },
  5798. eye: {
  5799. height: math.unit(0.31, "feet"),
  5800. name: "Eye",
  5801. image: {
  5802. source: "./media/characters/sigvald/eye.svg"
  5803. }
  5804. },
  5805. mouth: {
  5806. height: math.unit(0.92, "feet"),
  5807. name: "Mouth",
  5808. image: {
  5809. source: "./media/characters/sigvald/mouth.svg"
  5810. }
  5811. },
  5812. paws: {
  5813. height: math.unit(2.2, "feet"),
  5814. name: "Paws",
  5815. image: {
  5816. source: "./media/characters/sigvald/paws.svg"
  5817. }
  5818. }
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(8, "feet")
  5824. },
  5825. {
  5826. name: "Large",
  5827. height: math.unit(12, "feet")
  5828. },
  5829. {
  5830. name: "Larger",
  5831. height: math.unit(20, "feet")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(150, "feet")
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(200, "feet"),
  5840. default: true
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5846. {
  5847. side: {
  5848. height: math.unit(12, "feet"),
  5849. weight: math.unit(2000, "kg"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/scott/side.svg",
  5853. extra: 754 / 724,
  5854. bottom: 0.069
  5855. }
  5856. },
  5857. upright: {
  5858. height: math.unit(12, "feet"),
  5859. weight: math.unit(2000, "kg"),
  5860. name: "Upright",
  5861. image: {
  5862. source: "./media/characters/scott/upright.svg",
  5863. extra: 3881 / 3722,
  5864. bottom: 0.05
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(12, "feet"),
  5872. default: true
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5878. {
  5879. side: {
  5880. height: math.unit(8, "meters"),
  5881. weight: math.unit(84755, "lbs"),
  5882. name: "Side",
  5883. image: {
  5884. source: "./media/characters/tobias/side.svg",
  5885. extra: 1474 / 1096,
  5886. bottom: 38.9 / 1513.1235
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(8, "meters"),
  5894. default: true
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5900. {
  5901. front: {
  5902. height: math.unit(5.5, "feet"),
  5903. weight: math.unit(400, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/kieran/front.svg",
  5907. extra: 2694 / 2364,
  5908. bottom: 217 / 2908
  5909. }
  5910. },
  5911. side: {
  5912. height: math.unit(5.5, "feet"),
  5913. weight: math.unit(400, "lbs"),
  5914. name: "Side",
  5915. image: {
  5916. source: "./media/characters/kieran/side.svg",
  5917. extra: 875 / 777,
  5918. bottom: 84.6 / 959
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5.5, "feet"),
  5926. default: true
  5927. },
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5932. {
  5933. side: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(70, "kg"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/sanya/side.svg",
  5939. bottom: 0.02,
  5940. extra: 1.02
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Small",
  5947. height: math.unit(2, "meters")
  5948. },
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(3, "meters")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(16, "meters"),
  5956. default: true
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(2, "meters"),
  5965. weight: math.unit(120, "kg"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/miranda/front.svg",
  5969. extra: 195 / 185,
  5970. bottom: 10.9 / 206.5
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(120, "kg"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/miranda/back.svg",
  5979. extra: 201 / 193,
  5980. bottom: 2.3 / 203.7
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(10, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "James", species: ["deer"], tags: ["anthro"] },
  5994. {
  5995. side: {
  5996. height: math.unit(2, "meters"),
  5997. weight: math.unit(100, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/james/front.svg",
  6001. extra: 10 / 8.5
  6002. }
  6003. },
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(8.5, "feet"),
  6009. default: true
  6010. }
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6015. {
  6016. side: {
  6017. height: math.unit(9.5, "feet"),
  6018. weight: math.unit(2500, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/heather/side.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(9.5, "feet"),
  6029. default: true
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6.5, "feet"),
  6038. weight: math.unit(400, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/lukas/side.svg",
  6042. extra: 7.25 / 6.5
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6.5, "feet"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6056. {
  6057. side: {
  6058. height: math.unit(5, "feet"),
  6059. weight: math.unit(3000, "lbs"),
  6060. name: "Side",
  6061. image: {
  6062. source: "./media/characters/louise/side.svg"
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5, "feet"),
  6070. default: true
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6076. {
  6077. side: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(150, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/ramona/side.svg",
  6083. extra: 871/854,
  6084. bottom: 41/912
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(6 + 4/12, "feet")
  6092. },
  6093. {
  6094. name: "Minimacro",
  6095. height: math.unit(5.3, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(20, "stories")
  6101. },
  6102. {
  6103. name: "Macro+",
  6104. height: math.unit(50, "stories")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6110. {
  6111. standing: {
  6112. height: math.unit(5.75, "feet"),
  6113. weight: math.unit(160, "lbs"),
  6114. name: "Standing",
  6115. image: {
  6116. source: "./media/characters/deerpuff/standing.svg",
  6117. extra: 682 / 624
  6118. }
  6119. },
  6120. sitting: {
  6121. height: math.unit(5.75 / 1.79, "feet"),
  6122. weight: math.unit(160, "lbs"),
  6123. name: "Sitting",
  6124. image: {
  6125. source: "./media/characters/deerpuff/sitting.svg",
  6126. bottom: 44 / 400,
  6127. extra: 1
  6128. }
  6129. },
  6130. taurLaying: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(400, "lbs"),
  6133. name: "Taur (Laying)",
  6134. image: {
  6135. source: "./media/characters/deerpuff/taur-laying.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Puffball",
  6142. height: math.unit(6, "inches")
  6143. },
  6144. {
  6145. name: "Normalpuff",
  6146. height: math.unit(5.75, "feet")
  6147. },
  6148. {
  6149. name: "Macropuff",
  6150. height: math.unit(1500, "feet"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Megapuff",
  6155. height: math.unit(500, "miles")
  6156. },
  6157. {
  6158. name: "Gigapuff",
  6159. height: math.unit(250000, "miles")
  6160. },
  6161. {
  6162. name: "Omegapuff",
  6163. height: math.unit(1000, "lightyears")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6169. {
  6170. stomping: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(170, "lbs"),
  6173. name: "Stomping",
  6174. image: {
  6175. source: "./media/characters/vivian/stomping.svg"
  6176. }
  6177. },
  6178. sitting: {
  6179. height: math.unit(6 / 1.75, "feet"),
  6180. weight: math.unit(170, "lbs"),
  6181. name: "Sitting",
  6182. image: {
  6183. source: "./media/characters/vivian/sitting.svg",
  6184. bottom: 1 / 6.4,
  6185. extra: 1,
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(7, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(10, "stories")
  6198. },
  6199. {
  6200. name: "Macro+",
  6201. height: math.unit(30, "stories")
  6202. },
  6203. {
  6204. name: "Megamacro",
  6205. height: math.unit(10, "miles")
  6206. },
  6207. {
  6208. name: "Megamacro+",
  6209. height: math.unit(2750000, "meters")
  6210. },
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6215. {
  6216. front: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(160, "lbs"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/prince/front.svg",
  6222. extra: 1938/1682,
  6223. bottom: 45/1983
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(160, "lbs"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/prince/back.svg",
  6232. extra: 1955/1726,
  6233. bottom: 6/1961
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(7.75, "feet"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Not cute",
  6245. height: math.unit(17, "feet")
  6246. },
  6247. {
  6248. name: "I said NOT",
  6249. height: math.unit(91, "feet")
  6250. },
  6251. {
  6252. name: "Please stop",
  6253. height: math.unit(560, "feet")
  6254. },
  6255. {
  6256. name: "What have you done",
  6257. height: math.unit(2200, "feet")
  6258. },
  6259. {
  6260. name: "Deer God",
  6261. height: math.unit(3.6, "miles")
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6267. {
  6268. standing: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(300, "lbs"),
  6271. name: "Standing",
  6272. image: {
  6273. source: "./media/characters/psymon/standing.svg",
  6274. extra: 1888 / 1810,
  6275. bottom: 0.05
  6276. }
  6277. },
  6278. slithering: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(300, "lbs"),
  6281. name: "Slithering",
  6282. image: {
  6283. source: "./media/characters/psymon/slithering.svg",
  6284. extra: 1330 / 1224
  6285. }
  6286. },
  6287. slitheringAlt: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(300, "lbs"),
  6290. name: "Slithering (Alt)",
  6291. image: {
  6292. source: "./media/characters/psymon/slithering-alt.svg",
  6293. extra: 1330 / 1224
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(11.25, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Large",
  6305. height: math.unit(27, "feet")
  6306. },
  6307. {
  6308. name: "Giant",
  6309. height: math.unit(87, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(365, "feet")
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(3, "miles")
  6318. },
  6319. {
  6320. name: "World Serpent",
  6321. height: math.unit(8000, "miles")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(180, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/daimos/front.svg",
  6334. extra: 4160 / 3897,
  6335. bottom: 0.021
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(8, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Big Dog",
  6347. height: math.unit(22, "feet")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(127, "feet")
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(3600, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(180, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/blake/side.svg",
  6368. extra: 1212 / 1120,
  6369. bottom: 0.05
  6370. }
  6371. },
  6372. crouched: {
  6373. height: math.unit(6 * 0.57, "feet"),
  6374. weight: math.unit(180, "lbs"),
  6375. name: "Crouched",
  6376. image: {
  6377. source: "./media/characters/blake/crouched.svg",
  6378. extra: 840 / 587,
  6379. bottom: 0.04
  6380. }
  6381. },
  6382. bent: {
  6383. height: math.unit(6 * 0.75, "feet"),
  6384. weight: math.unit(180, "lbs"),
  6385. name: "Bent",
  6386. image: {
  6387. source: "./media/characters/blake/bent.svg",
  6388. extra: 592 / 544,
  6389. bottom: 0.035
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(8 + 1 / 6, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Big Backside",
  6401. height: math.unit(37, "feet")
  6402. },
  6403. {
  6404. name: "Subway Shredder",
  6405. height: math.unit(72, "feet")
  6406. },
  6407. {
  6408. name: "City Carver",
  6409. height: math.unit(1675, "feet")
  6410. },
  6411. {
  6412. name: "Tectonic Tweaker",
  6413. height: math.unit(2300, "miles")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(180, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/guisetto/front.svg",
  6426. extra: 856 / 817,
  6427. bottom: 0.06
  6428. }
  6429. },
  6430. airborne: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Airborne",
  6434. image: {
  6435. source: "./media/characters/guisetto/airborne.svg",
  6436. extra: 584 / 525
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(10 + 11 / 12, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Large",
  6448. height: math.unit(35, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(475, "feet")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/luxor/front.svg",
  6465. extra: 2940 / 2152
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(180, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/luxor/back.svg",
  6474. extra: 1083 / 960
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(5 + 5 / 6, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Lamp",
  6486. height: math.unit(50, "feet")
  6487. },
  6488. {
  6489. name: "Lämp",
  6490. height: math.unit(300, "feet")
  6491. },
  6492. {
  6493. name: "The sun is a lamp",
  6494. height: math.unit(250000, "miles")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(50, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/huoyan/front.svg"
  6507. }
  6508. },
  6509. side: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(180, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/huoyan/side.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Chef",
  6521. height: math.unit(9, "feet")
  6522. },
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(65, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(780, "feet")
  6531. },
  6532. {
  6533. name: "Flaming Mountain",
  6534. height: math.unit(4.8, "miles")
  6535. },
  6536. {
  6537. name: "Celestial",
  6538. height: math.unit(765000, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(5 + 3 / 4, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/tails/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(5 + 3 / 4, "feet"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(4, "feet"),
  6567. weight: math.unit(50, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/rainy/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(800, "feet"),
  6578. default: true
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(150, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/rainier/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "mm"),
  6598. default: true
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(8 + 4/12, "feet"),
  6607. weight: math.unit(450, "kilograms"),
  6608. volume: math.unit(5, "cups"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/andy-renard/front.svg",
  6612. extra: 1839/1726,
  6613. bottom: 134/1973
  6614. }
  6615. },
  6616. back: {
  6617. height: math.unit(8 + 4/12, "feet"),
  6618. weight: math.unit(450, "kilograms"),
  6619. volume: math.unit(5, "cups"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/andy-renard/back.svg",
  6623. extra: 1838/1710,
  6624. bottom: 105/1943
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Tall",
  6631. height: math.unit(8 + 4/12, "feet")
  6632. },
  6633. {
  6634. name: "Mini Macro",
  6635. height: math.unit(15, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(100, "feet")
  6641. },
  6642. {
  6643. name: "Mega Macro",
  6644. height: math.unit(1000, "feet")
  6645. },
  6646. {
  6647. name: "Giga Macro",
  6648. height: math.unit(10, "miles")
  6649. },
  6650. {
  6651. name: "God Macro",
  6652. height: math.unit(1, "multiverse")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(210, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/cimmaron/front-sfw.svg",
  6665. extra: 701 / 676,
  6666. bottom: 0.046
  6667. }
  6668. },
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(210, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/cimmaron/back-sfw.svg",
  6675. extra: 701 / 676,
  6676. bottom: 0.046
  6677. }
  6678. },
  6679. frontNsfw: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(210, "lbs"),
  6682. name: "Front (NSFW)",
  6683. image: {
  6684. source: "./media/characters/cimmaron/front-nsfw.svg",
  6685. extra: 701 / 676,
  6686. bottom: 0.046
  6687. }
  6688. },
  6689. backNsfw: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(210, "lbs"),
  6692. name: "Back (NSFW)",
  6693. image: {
  6694. source: "./media/characters/cimmaron/back-nsfw.svg",
  6695. extra: 701 / 676,
  6696. bottom: 0.046
  6697. }
  6698. },
  6699. dick: {
  6700. height: math.unit(1.714, "feet"),
  6701. name: "Dick",
  6702. image: {
  6703. source: "./media/characters/cimmaron/dick.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(6, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro Mayor",
  6715. height: math.unit(350, "meters")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(200, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/akari/front.svg",
  6728. extra: 962 / 901,
  6729. bottom: 0.04
  6730. }
  6731. }
  6732. },
  6733. [
  6734. {
  6735. name: "Micro",
  6736. height: math.unit(5, "inches"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(7, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(140, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/cynosura/front.svg",
  6754. extra: 437/410,
  6755. bottom: 9/446
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(140, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/cynosura/back.svg",
  6764. extra: 1304/1160,
  6765. bottom: 71/1375
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(4, "inches")
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(5.75, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Tall",
  6781. height: math.unit(10, "feet")
  6782. },
  6783. {
  6784. name: "Big",
  6785. height: math.unit(20, "feet")
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(50, "feet")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(13 + 2/12, "feet"),
  6798. weight: math.unit(800, "kg"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/gin/front.svg",
  6802. extra: 1312/1191,
  6803. bottom: 45/1357
  6804. }
  6805. },
  6806. mouth: {
  6807. height: math.unit(2.39 * 1.8, "feet"),
  6808. name: "Mouth",
  6809. image: {
  6810. source: "./media/characters/gin/mouth.svg"
  6811. }
  6812. },
  6813. hand: {
  6814. height: math.unit(1.57 * 2.19, "feet"),
  6815. name: "Hand",
  6816. image: {
  6817. source: "./media/characters/gin/hand.svg"
  6818. }
  6819. },
  6820. foot: {
  6821. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6822. name: "Foot",
  6823. image: {
  6824. source: "./media/characters/gin/foot.svg"
  6825. }
  6826. },
  6827. sole: {
  6828. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6829. name: "Sole",
  6830. image: {
  6831. source: "./media/characters/gin/sole.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Very Small",
  6838. height: math.unit(13 + 2 / 12, "feet")
  6839. },
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(600, "miles")
  6843. },
  6844. {
  6845. name: "Regular",
  6846. height: math.unit(20, "earths"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(2.2, "solarradii")
  6852. },
  6853. {
  6854. name: "Teramacro",
  6855. height: math.unit(1.2, "galaxies")
  6856. },
  6857. {
  6858. name: "Omegamacro",
  6859. height: math.unit(200, "universes")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6 + 1 / 6, "feet"),
  6868. weight: math.unit(178, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/guy/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6 + 1 / 6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Large",
  6883. height: math.unit(25 + 7 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(60 + 9 / 12, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(246, "feet")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(878, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(9, "feet"),
  6904. weight: math.unit(800, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/tiberius/front.svg",
  6908. extra: 2295 / 2071
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(9, "feet"),
  6913. weight: math.unit(800, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/tiberius/back.svg",
  6917. extra: 2373 / 2160
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(9, "feet"),
  6925. default: true
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(600, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/surgo/front.svg",
  6938. extra: 3591 / 2227
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(600, "lbs"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/surgo/back.svg",
  6947. extra: 3557 / 2228
  6948. }
  6949. },
  6950. laying: {
  6951. height: math.unit(6 * 0.85, "feet"),
  6952. weight: math.unit(600, "lbs"),
  6953. name: "Laying",
  6954. image: {
  6955. source: "./media/characters/surgo/laying.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(6, "feet"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6969. {
  6970. side: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(150, "lbs"),
  6973. name: "Side",
  6974. image: {
  6975. source: "./media/characters/cibus/side.svg",
  6976. extra: 800 / 400
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(6, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(240, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/nibbles/front.svg"
  6997. }
  6998. },
  6999. side: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(240, "lbs"),
  7002. name: "Side",
  7003. image: {
  7004. source: "./media/characters/nibbles/side.svg"
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(9, "feet"),
  7012. default: true
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7018. {
  7019. side: {
  7020. height: math.unit(5 + 1 / 6, "feet"),
  7021. weight: math.unit(130, "lbs"),
  7022. name: "Side",
  7023. image: {
  7024. source: "./media/characters/rikky/side.svg",
  7025. extra: 851 / 801
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(5 + 1 / 6, "feet")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(152, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(7, "miles")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7047. {
  7048. side: {
  7049. height: math.unit(370, "cm"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/malfressa/side.svg"
  7054. }
  7055. },
  7056. walking: {
  7057. height: math.unit(370, "cm"),
  7058. weight: math.unit(350, "lbs"),
  7059. name: "Walking",
  7060. image: {
  7061. source: "./media/characters/malfressa/walking.svg"
  7062. }
  7063. },
  7064. feral: {
  7065. height: math.unit(2500, "cm"),
  7066. weight: math.unit(100000, "lbs"),
  7067. name: "Feral",
  7068. image: {
  7069. source: "./media/characters/malfressa/feral.svg",
  7070. extra: 2108 / 837,
  7071. bottom: 0.02
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(370, "cm")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(300, "meters"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(60, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/jaro/front.svg",
  7096. extra: 845/817,
  7097. bottom: 45/890
  7098. }
  7099. },
  7100. back: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(60, "kg"),
  7103. name: "Back",
  7104. image: {
  7105. source: "./media/characters/jaro/back.svg",
  7106. extra: 847/817,
  7107. bottom: 34/881
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(7, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5.5, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Minimacro",
  7123. height: math.unit(20, "feet")
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(200, "meters")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(195, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/rogue/front.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(90, "feet"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7153. {
  7154. standing: {
  7155. height: math.unit(5 + 8 / 12, "feet"),
  7156. weight: math.unit(140, "lb"),
  7157. name: "Standing",
  7158. image: {
  7159. source: "./media/characters/piper/standing.svg",
  7160. extra: 1440/1284,
  7161. bottom: 66/1506
  7162. }
  7163. },
  7164. running: {
  7165. height: math.unit(5 + 8 / 12, "feet"),
  7166. weight: math.unit(140, "lb"),
  7167. name: "Running",
  7168. image: {
  7169. source: "./media/characters/piper/running.svg",
  7170. extra: 3948/3655,
  7171. bottom: 0/3948
  7172. }
  7173. },
  7174. sole: {
  7175. height: math.unit(0.81, "feet"),
  7176. weight: math.unit(2, "kg"),
  7177. name: "Sole",
  7178. image: {
  7179. source: "./media/characters/piper/sole.svg"
  7180. }
  7181. },
  7182. nipple: {
  7183. height: math.unit(0.25, "feet"),
  7184. weight: math.unit(1.5, "lb"),
  7185. name: "Nipple",
  7186. image: {
  7187. source: "./media/characters/piper/nipple.svg"
  7188. }
  7189. },
  7190. head: {
  7191. height: math.unit(1.1, "feet"),
  7192. name: "Head",
  7193. image: {
  7194. source: "./media/characters/piper/head.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Micro",
  7201. height: math.unit(2, "inches")
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(5 + 8 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(250, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Megamacro",
  7214. height: math.unit(7, "miles")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(220, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/gemini/front.svg"
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(220, "lb"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/gemini/back.svg"
  7235. }
  7236. },
  7237. kneeling: {
  7238. height: math.unit(6 / 1.5, "feet"),
  7239. weight: math.unit(220, "lb"),
  7240. name: "Kneeling",
  7241. image: {
  7242. source: "./media/characters/gemini/kneeling.svg",
  7243. bottom: 0.02
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(6900, "meters")
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7261. {
  7262. anthro: {
  7263. height: math.unit(2.35, "meters"),
  7264. weight: math.unit(73, "kg"),
  7265. name: "Anthro",
  7266. image: {
  7267. source: "./media/characters/alicia/anthro.svg",
  7268. extra: 2571 / 2385,
  7269. bottom: 75 / 2648
  7270. }
  7271. },
  7272. paw: {
  7273. height: math.unit(1.32, "feet"),
  7274. name: "Paw",
  7275. image: {
  7276. source: "./media/characters/alicia/paw.svg"
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(1.69, "meters"),
  7281. weight: math.unit(73, "kg"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/alicia/feral.svg",
  7285. extra: 2123 / 1715,
  7286. bottom: 222 / 2349
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(2.35, "meters")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(10000, "kilometers")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(7, "feet"),
  7311. weight: math.unit(250, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/archy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(1, "inch")
  7322. },
  7323. {
  7324. name: "Shorty",
  7325. height: math.unit(5, "feet")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(600, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Megamacro",
  7338. height: math.unit(1, "mile")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(1.65, "meters"),
  7347. weight: math.unit(74, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/berri/front.svg",
  7351. extra: 857 / 837,
  7352. bottom: 18 / 877
  7353. }
  7354. },
  7355. bum: {
  7356. height: math.unit(1.46, "feet"),
  7357. name: "Bum",
  7358. image: {
  7359. source: "./media/characters/berri/bum.svg"
  7360. }
  7361. },
  7362. mouth: {
  7363. height: math.unit(0.44, "feet"),
  7364. name: "Mouth",
  7365. image: {
  7366. source: "./media/characters/berri/mouth.svg"
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(0.826, "feet"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/berri/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(1.65, "meters")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(60, "m"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Megamacro",
  7389. height: math.unit(9.213, "km")
  7390. },
  7391. {
  7392. name: "Planet Eater",
  7393. height: math.unit(489, "megameters")
  7394. },
  7395. {
  7396. name: "Teramacro",
  7397. height: math.unit(2471635000000, "meters")
  7398. },
  7399. {
  7400. name: "Examacro",
  7401. height: math.unit(8.0624e+26, "meters")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.72, "meters"),
  7410. weight: math.unit(68, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/lexi/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Very Smol",
  7420. height: math.unit(10, "mm")
  7421. },
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(6.8, "cm"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(1.72, "m")
  7430. }
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(1.69, "meters"),
  7438. weight: math.unit(68, "kg"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/martin/front.svg",
  7442. extra: 596 / 581
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(6.85, "cm"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(1.69, "m")
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(1.69, "meters"),
  7463. weight: math.unit(68, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/juno/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(7, "cm")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.89, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(353, "meters"),
  7482. default: true
  7483. }
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(1.93, "meters"),
  7491. weight: math.unit(83, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/samantha/front.svg"
  7495. }
  7496. },
  7497. frontClothed: {
  7498. height: math.unit(1.93, "meters"),
  7499. weight: math.unit(83, "kg"),
  7500. name: "Front (Clothed)",
  7501. image: {
  7502. source: "./media/characters/samantha/front-clothed.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(1.93, "meters"),
  7507. weight: math.unit(83, "kg"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/samantha/back.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.93, "m")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(74, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(223, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(8381, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro+",
  7534. height: math.unit(12000, "kilometers")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.92, "meters"),
  7543. weight: math.unit(80, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/dr-clay/front.svg"
  7547. }
  7548. },
  7549. frontClothed: {
  7550. height: math.unit(1.92, "meters"),
  7551. weight: math.unit(80, "kg"),
  7552. name: "Front (Clothed)",
  7553. image: {
  7554. source: "./media/characters/dr-clay/front-clothed.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(1.92, "m")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(214, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro+",
  7570. height: math.unit(12.237, "meters"),
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(557, "megameters"),
  7575. },
  7576. {
  7577. name: "Unimaginable",
  7578. height: math.unit(120e9, "lightyears")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(80, "kg"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Teramacro",
  7597. height: math.unit(500000, "lightyears"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7604. {
  7605. crux: {
  7606. height: math.unit(2, "meters"),
  7607. weight: math.unit(150, "kg"),
  7608. name: "Crux",
  7609. image: {
  7610. source: "./media/characters/vemus/crux.svg",
  7611. extra: 1074/936,
  7612. bottom: 23/1097
  7613. }
  7614. },
  7615. skunkTanuki: {
  7616. height: math.unit(2, "meters"),
  7617. weight: math.unit(150, "kg"),
  7618. name: "Skunk-Tanuki",
  7619. image: {
  7620. source: "./media/characters/vemus/skunk-tanuki.svg",
  7621. extra: 926/893,
  7622. bottom: 20/946
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(4, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Big",
  7634. height: math.unit(8, "meters")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(100, "meters")
  7639. },
  7640. {
  7641. name: "Macro+",
  7642. height: math.unit(1500, "meters")
  7643. },
  7644. {
  7645. name: "Stellar",
  7646. height: math.unit(14e8, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(2, "meters"),
  7655. weight: math.unit(70, "kg"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/beherit/front.svg",
  7659. extra: 1234/1109,
  7660. bottom: 55/1289
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(6, "feet")
  7668. },
  7669. {
  7670. name: "Lorg",
  7671. height: math.unit(25, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Lorger",
  7676. height: math.unit(75, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(200, "meters")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(2, "meters"),
  7689. weight: math.unit(150, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/everett/front.svg",
  7693. extra: 1017/866,
  7694. bottom: 86/1103
  7695. }
  7696. },
  7697. paw: {
  7698. height: math.unit(2 / 3.6, "meters"),
  7699. name: "Paw",
  7700. image: {
  7701. source: "./media/characters/everett/paw.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(15, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Lorg",
  7713. height: math.unit(70, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Lorger",
  7718. height: math.unit(250, "feet")
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(500, "meters")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(2, "meters"),
  7731. weight: math.unit(86, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/rose/front.svg",
  7735. extra: 1785/1636,
  7736. bottom: 30/1815
  7737. },
  7738. form: "liom",
  7739. default: true
  7740. },
  7741. frontSporty: {
  7742. height: math.unit(2, "meters"),
  7743. weight: math.unit(86, "kg"),
  7744. name: "Front (Sporty)",
  7745. image: {
  7746. source: "./media/characters/rose/front-sporty.svg",
  7747. extra: 350/335,
  7748. bottom: 10/360
  7749. },
  7750. form: "liom"
  7751. },
  7752. frontAlt: {
  7753. height: math.unit(1.6, "meters"),
  7754. weight: math.unit(86, "kg"),
  7755. name: "Front (Alt)",
  7756. image: {
  7757. source: "./media/characters/rose/front-alt.svg",
  7758. extra: 299/283,
  7759. bottom: 3/302
  7760. },
  7761. form: "liom"
  7762. },
  7763. plush: {
  7764. height: math.unit(2, "meters"),
  7765. weight: math.unit(86/3, "kg"),
  7766. name: "Plush",
  7767. image: {
  7768. source: "./media/characters/rose/plush.svg",
  7769. extra: 361/337,
  7770. bottom: 11/372
  7771. },
  7772. form: "plush",
  7773. default: true
  7774. },
  7775. faeStanding: {
  7776. height: math.unit(10, "cm"),
  7777. weight: math.unit(10, "grams"),
  7778. name: "Standing",
  7779. image: {
  7780. source: "./media/characters/rose/fae-standing.svg",
  7781. extra: 1189/1060,
  7782. bottom: 27/1216
  7783. },
  7784. form: "fae",
  7785. default: true
  7786. },
  7787. faeSitting: {
  7788. height: math.unit(5, "cm"),
  7789. weight: math.unit(10, "grams"),
  7790. name: "Sitting",
  7791. image: {
  7792. source: "./media/characters/rose/fae-sitting.svg",
  7793. extra: 737/577,
  7794. bottom: 356/1093
  7795. },
  7796. form: "fae"
  7797. },
  7798. faePaw: {
  7799. height: math.unit(1.35, "cm"),
  7800. name: "Paw",
  7801. image: {
  7802. source: "./media/characters/rose/fae-paw.svg"
  7803. },
  7804. form: "fae"
  7805. },
  7806. },
  7807. [
  7808. {
  7809. name: "True Micro",
  7810. height: math.unit(9, "cm"),
  7811. form: "liom"
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(16, "cm"),
  7816. form: "liom"
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.85, "meters"),
  7821. default: true,
  7822. form: "liom"
  7823. },
  7824. {
  7825. name: "Mini-Macro",
  7826. height: math.unit(5, "meters"),
  7827. form: "liom"
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(15, "meters"),
  7832. form: "liom"
  7833. },
  7834. {
  7835. name: "True Macro",
  7836. height: math.unit(40, "meters"),
  7837. form: "liom"
  7838. },
  7839. {
  7840. name: "City Scale",
  7841. height: math.unit(1, "km"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Plushie",
  7846. height: math.unit(9, "cm"),
  7847. form: "plush",
  7848. default: true
  7849. },
  7850. {
  7851. name: "Fae",
  7852. height: math.unit(10, "cm"),
  7853. form: "fae",
  7854. default: true
  7855. },
  7856. ],
  7857. {
  7858. "liom": {
  7859. name: "Liom"
  7860. },
  7861. "plush": {
  7862. name: "Plush"
  7863. },
  7864. "fae": {
  7865. name: "Fae Fox",
  7866. default: true
  7867. }
  7868. }
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(350, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/regal/front.svg"
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(2, "meters"),
  7883. weight: math.unit(350, "lbs"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/regal/back.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(350, "feet"),
  7894. default: true
  7895. }
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(4 + 11 / 12, "feet"),
  7903. weight: math.unit(100, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/opal/front.svg"
  7907. }
  7908. },
  7909. frontAlt: {
  7910. height: math.unit(4 + 11 / 12, "feet"),
  7911. weight: math.unit(100, "lbs"),
  7912. name: "Front (Alt)",
  7913. image: {
  7914. source: "./media/characters/opal/front-alt.svg"
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Small",
  7921. height: math.unit(4 + 11 / 12, "feet")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(20, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(120, "feet")
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(80, "miles")
  7935. },
  7936. {
  7937. name: "True Size",
  7938. height: math.unit(100000, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(200, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/vector-wuff/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(2.8, "meters")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(450, "meters"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(15, "kilometers")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(256, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/dannik/front.svg"
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(69.57, "meters"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(120, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/azura-saharah/front.svg"
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(120, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/azura-saharah/back.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "feet"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8020. {
  8021. side: {
  8022. height: math.unit(5 + 4 / 12, "feet"),
  8023. weight: math.unit(163, "lbs"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/kennedy/side.svg"
  8027. }
  8028. }
  8029. },
  8030. [
  8031. {
  8032. name: "Standard Doggo",
  8033. height: math.unit(5 + 4 / 12, "feet")
  8034. },
  8035. {
  8036. name: "Big Doggo",
  8037. height: math.unit(25 + 3 / 12, "feet"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 5/12, "feet"),
  8047. weight: math.unit(100, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/odios-de-lunar/front.svg",
  8051. extra: 1468/1323,
  8052. bottom: 22/1490
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(3, "inches")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(5.5, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(100, "feet")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8074. {
  8075. back: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(220, "lbs"),
  8078. name: "Back",
  8079. image: {
  8080. source: "./media/characters/mandake/back.svg"
  8081. }
  8082. }
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(7, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(78, "feet")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(300, "meters")
  8097. },
  8098. {
  8099. name: "Macro++",
  8100. height: math.unit(2400, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(5167, "meters")
  8105. },
  8106. {
  8107. name: "Gigamacro",
  8108. height: math.unit(41769, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(120, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/yozey/front.svg"
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(120, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/yozey/front-alt.svg"
  8129. }
  8130. },
  8131. side: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(120, "lbs"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/yozey/side.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(3, "inches"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(6, "feet")
  8149. }
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(103, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/valeska-voss/front.svg"
  8161. }
  8162. }
  8163. },
  8164. [
  8165. {
  8166. name: "Mini-Sized Sub",
  8167. height: math.unit(3.1, "inches")
  8168. },
  8169. {
  8170. name: "Mid-Sized Sub",
  8171. height: math.unit(6.2, "inches")
  8172. },
  8173. {
  8174. name: "Full-Sized Sub",
  8175. height: math.unit(9.3, "inches")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5 + 2 / 12, "foot"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(160, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/gene-zeta/front.svg",
  8193. extra: 3006 / 2826,
  8194. bottom: 182 / 3188
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(6, "inches")
  8202. },
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(5 + 11 / 12, "foot"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(140, "feet")
  8211. },
  8212. {
  8213. name: "Supercharged",
  8214. height: math.unit(2500, "feet")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(350, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/razinox/front.svg",
  8227. extra: 1686 / 1548,
  8228. bottom: 28.2 / 1868
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(350, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/razinox/back.svg",
  8237. extra: 1660 / 1590,
  8238. bottom: 15 / 1665
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(10 + 8 / 12, "foot")
  8246. },
  8247. {
  8248. name: "Minimacro",
  8249. height: math.unit(15, "foot")
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(60, "foot"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(5, "miles")
  8259. },
  8260. {
  8261. name: "Gigamacro",
  8262. height: math.unit(6000, "miles")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/cobalt/front.svg"
  8275. }
  8276. }
  8277. },
  8278. [
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(8 + 1 / 12, "foot")
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(111, "foot"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Supracosmic",
  8290. height: math.unit(1e42, "feet")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(5, "inches"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/amanda/front.svg",
  8302. extra: 926/791,
  8303. bottom: 38/964
  8304. }
  8305. },
  8306. back: {
  8307. height: math.unit(5, "inches"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/amanda/back.svg",
  8311. extra: 909/805,
  8312. bottom: 43/952
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(5, "inches"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2.75, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/teal/front.svg",
  8333. extra: 2463 / 2320,
  8334. bottom: 166 / 2629
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(2.75, "meters"),
  8339. weight: math.unit(1200, "lb"),
  8340. name: "Back",
  8341. image: {
  8342. source: "./media/characters/teal/back.svg",
  8343. extra: 2580 / 2489,
  8344. bottom: 151 / 2731
  8345. }
  8346. },
  8347. sitting: {
  8348. height: math.unit(1.9, "meters"),
  8349. weight: math.unit(1200, "lb"),
  8350. name: "Sitting",
  8351. image: {
  8352. source: "./media/characters/teal/sitting.svg",
  8353. extra: 623 / 590,
  8354. bottom: 121 / 744
  8355. }
  8356. },
  8357. standing: {
  8358. height: math.unit(2.75, "meters"),
  8359. weight: math.unit(1200, "lb"),
  8360. name: "Standing",
  8361. image: {
  8362. source: "./media/characters/teal/standing.svg",
  8363. extra: 923 / 893,
  8364. bottom: 60 / 983
  8365. }
  8366. },
  8367. stretching: {
  8368. height: math.unit(3.65, "meters"),
  8369. weight: math.unit(1200, "lb"),
  8370. name: "Stretching",
  8371. image: {
  8372. source: "./media/characters/teal/stretching.svg",
  8373. extra: 1276 / 1244,
  8374. bottom: 0 / 1276
  8375. }
  8376. },
  8377. legged: {
  8378. height: math.unit(1.3, "meters"),
  8379. weight: math.unit(100, "lb"),
  8380. name: "Legged",
  8381. image: {
  8382. source: "./media/characters/teal/legged.svg",
  8383. extra: 462 / 437,
  8384. bottom: 24 / 486
  8385. }
  8386. },
  8387. naga: {
  8388. height: math.unit(5.4, "meters"),
  8389. weight: math.unit(4000, "lb"),
  8390. name: "Naga",
  8391. image: {
  8392. source: "./media/characters/teal/naga.svg",
  8393. extra: 1902 / 1858,
  8394. bottom: 0 / 1902
  8395. }
  8396. },
  8397. hand: {
  8398. height: math.unit(0.52, "meters"),
  8399. name: "Hand",
  8400. image: {
  8401. source: "./media/characters/teal/hand.svg"
  8402. }
  8403. },
  8404. maw: {
  8405. height: math.unit(0.43, "meters"),
  8406. name: "Maw",
  8407. image: {
  8408. source: "./media/characters/teal/maw.svg"
  8409. }
  8410. },
  8411. slit: {
  8412. height: math.unit(0.25, "meters"),
  8413. name: "Slit",
  8414. image: {
  8415. source: "./media/characters/teal/slit.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.75, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(300, "feet")
  8428. },
  8429. {
  8430. name: "Macro+",
  8431. height: math.unit(2000, "feet")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8437. {
  8438. frontCat: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(180, "lbs"),
  8441. name: "Front (Cat)",
  8442. image: {
  8443. source: "./media/characters/ravin-amulet/front-cat.svg"
  8444. }
  8445. },
  8446. frontCatAlt: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(180, "lbs"),
  8449. name: "Front (Alt, Cat)",
  8450. image: {
  8451. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8452. }
  8453. },
  8454. frontWerewolf: {
  8455. height: math.unit(6 * 1.2, "feet"),
  8456. weight: math.unit(225, "lbs"),
  8457. name: "Front (Werewolf)",
  8458. image: {
  8459. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8460. }
  8461. },
  8462. backWerewolf: {
  8463. height: math.unit(6 * 1.2, "feet"),
  8464. weight: math.unit(225, "lbs"),
  8465. name: "Back (Werewolf)",
  8466. image: {
  8467. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Nano",
  8474. height: math.unit(1, "micrometer")
  8475. },
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(1, "inch")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(6, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(60, "feet")
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(165, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/fluoresce/front.svg"
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(6, "cm")
  8507. },
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 7 / 12, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(56, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(1.9, "miles")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(9 + 6 / 12, "feet"),
  8528. weight: math.unit(523, "lbs"),
  8529. name: "Side",
  8530. image: {
  8531. source: "./media/characters/aurora/side.svg",
  8532. extra: 474/393,
  8533. bottom: 5/479
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(9 + 6 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(96, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro+",
  8549. height: math.unit(243, "feet")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(194, "cm"),
  8558. weight: math.unit(90, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/ranek/front.svg",
  8562. extra: 1862/1791,
  8563. bottom: 80/1942
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(194, "cm"),
  8568. weight: math.unit(90, "kg"),
  8569. name: "Back",
  8570. image: {
  8571. source: "./media/characters/ranek/back.svg",
  8572. extra: 1853/1787,
  8573. bottom: 74/1927
  8574. }
  8575. },
  8576. feral: {
  8577. height: math.unit(30, "cm"),
  8578. weight: math.unit(1.6, "lbs"),
  8579. name: "Feral",
  8580. image: {
  8581. source: "./media/characters/ranek/feral.svg",
  8582. extra: 990/631,
  8583. bottom: 29/1019
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(194, "cm"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(100, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(5 + 6 / 12, "feet"),
  8604. weight: math.unit(153, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/andrew-cooper/front.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Nano",
  8614. height: math.unit(1, "mm")
  8615. },
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 6 / 12, "feet"),
  8623. default: true
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/akane-sato/front.svg",
  8636. extra: 1219 / 1140
  8637. }
  8638. },
  8639. back: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(180, "lbs"),
  8642. name: "Back",
  8643. image: {
  8644. source: "./media/characters/akane-sato/back.svg",
  8645. extra: 1219 / 1170
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(2.5, "meters")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(250, "meters"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(25, "km")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(65, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rook/front.svg",
  8674. extra: 960 / 950
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(8.8, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(88, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(8, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(12 + 2 / 12, "feet"),
  8699. weight: math.unit(808, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/prodigy/front.svg"
  8703. }
  8704. }
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12 + 2 / 12, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(143, "feet")
  8715. },
  8716. {
  8717. name: "Macro+",
  8718. height: math.unit(400, "feet")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(225, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/daniel/front.svg"
  8731. }
  8732. },
  8733. leaning: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(225, "lbs"),
  8736. name: "Leaning",
  8737. image: {
  8738. source: "./media/characters/daniel/leaning.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(1000, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(88, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/chiros/front.svg",
  8759. extra: 306 / 226
  8760. }
  8761. },
  8762. side: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(88, "lbs"),
  8765. name: "Side",
  8766. image: {
  8767. source: "./media/characters/chiros/side.svg",
  8768. extra: 306 / 226
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(6, "cm"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(100, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/selka/front.svg",
  8789. extra: 947 / 887
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5, "cm"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(8 + 3 / 12, "feet"),
  8806. weight: math.unit(424, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/verin/front.svg",
  8810. extra: 1845 / 1550
  8811. }
  8812. },
  8813. frontArmored: {
  8814. height: math.unit(8 + 3 / 12, "feet"),
  8815. weight: math.unit(424, "lbs"),
  8816. name: "Front (Armored)",
  8817. image: {
  8818. source: "./media/characters/verin/front-armor.svg",
  8819. extra: 1845 / 1550,
  8820. bottom: 0.01
  8821. }
  8822. },
  8823. back: {
  8824. height: math.unit(8 + 3 / 12, "feet"),
  8825. weight: math.unit(424, "lbs"),
  8826. name: "Back",
  8827. image: {
  8828. source: "./media/characters/verin/back.svg",
  8829. bottom: 0.1,
  8830. extra: 1
  8831. }
  8832. },
  8833. foot: {
  8834. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8835. name: "Foot",
  8836. image: {
  8837. source: "./media/characters/verin/foot.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(8 + 3 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Minimacro",
  8848. height: math.unit(21, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(626, "feet")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(2.718, "meters"),
  8862. weight: math.unit(150, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/front.svg",
  8866. extra: 1752/1689,
  8867. bottom: 36/1788
  8868. }
  8869. },
  8870. back: {
  8871. height: math.unit(2.718, "meters"),
  8872. weight: math.unit(150, "lbs"),
  8873. name: "Back",
  8874. image: {
  8875. source: "./media/characters/sovrim-terraquian/back.svg",
  8876. extra: 1698/1657,
  8877. bottom: 58/1756
  8878. }
  8879. },
  8880. tongue: {
  8881. height: math.unit(2.865, "feet"),
  8882. name: "Tongue",
  8883. image: {
  8884. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8885. }
  8886. },
  8887. hand: {
  8888. height: math.unit(1.61, "feet"),
  8889. name: "Hand",
  8890. image: {
  8891. source: "./media/characters/sovrim-terraquian/hand.svg"
  8892. }
  8893. },
  8894. foot: {
  8895. height: math.unit(1.05, "feet"),
  8896. name: "Foot",
  8897. image: {
  8898. source: "./media/characters/sovrim-terraquian/foot.svg"
  8899. }
  8900. },
  8901. footAlt: {
  8902. height: math.unit(0.88, "feet"),
  8903. name: "Foot (Alt)",
  8904. image: {
  8905. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Micro",
  8912. height: math.unit(2, "inches")
  8913. },
  8914. {
  8915. name: "Small",
  8916. height: math.unit(1, "meter")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(Math.E, "meters"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(20, "meters")
  8926. },
  8927. {
  8928. name: "Macro+",
  8929. height: math.unit(400, "meters")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(7, "feet"),
  8938. weight: math.unit(489, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/reece-silvermane/front.svg",
  8942. bottom: 0.02,
  8943. extra: 1
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(1.5, "miles"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(78, "kg"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/kane/front.svg",
  8964. extra: 978 / 899
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(2.1, "m"),
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(1, "km"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "kg"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tegon/front.svg",
  8989. bottom: 0.01,
  8990. extra: 1
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(1, "inch")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(6 + 3 / 12, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(300, "feet")
  9007. },
  9008. {
  9009. name: "Megamacro",
  9010. height: math.unit(69, "miles")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9016. {
  9017. side: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(2304, "lbs"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/arcturax/side.svg",
  9023. extra: 790 / 376,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(2, "inch")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(39, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Megamacro",
  9044. height: math.unit(7, "miles")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(50, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/sentri/front.svg",
  9057. extra: 1750 / 1570,
  9058. bottom: 0.025
  9059. }
  9060. },
  9061. frontAlt: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(50, "lbs"),
  9064. name: "Front (Alt)",
  9065. image: {
  9066. source: "./media/characters/sentri/front-alt.svg",
  9067. extra: 1750 / 1570,
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(15, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(2500, "feet")
  9081. }
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 8 / 12, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/corvin/front.svg",
  9093. extra: 1803 / 1629
  9094. }
  9095. },
  9096. frontShirt: {
  9097. height: math.unit(5 + 8 / 12, "feet"),
  9098. weight: math.unit(130, "lbs"),
  9099. name: "Front (Shirt)",
  9100. image: {
  9101. source: "./media/characters/corvin/front-shirt.svg",
  9102. extra: 1803 / 1629
  9103. }
  9104. },
  9105. frontPoncho: {
  9106. height: math.unit(5 + 8 / 12, "feet"),
  9107. weight: math.unit(130, "lbs"),
  9108. name: "Front (Poncho)",
  9109. image: {
  9110. source: "./media/characters/corvin/front-poncho.svg",
  9111. extra: 1803 / 1629
  9112. }
  9113. },
  9114. side: {
  9115. height: math.unit(5 + 8 / 12, "feet"),
  9116. weight: math.unit(130, "lbs"),
  9117. name: "Side",
  9118. image: {
  9119. source: "./media/characters/corvin/side.svg",
  9120. extra: 1012 / 945
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(5 + 8 / 12, "feet"),
  9125. weight: math.unit(130, "lbs"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/corvin/back.svg",
  9129. extra: 1803 / 1629
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(3, "inches")
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 8 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(300, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Megamacro",
  9149. height: math.unit(500, "miles")
  9150. }
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(135, "lbs"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/q/front.svg",
  9162. extra: 854 / 752,
  9163. bottom: 0.005
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/q/back.svg",
  9172. extra: 854 / 752
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(90, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Extra Macro",
  9184. height: math.unit(300, "feet"),
  9185. },
  9186. {
  9187. name: "BIG WALF",
  9188. height: math.unit(750, "feet"),
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(3, "feet"),
  9197. weight: math.unit(28, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/citrine/front.svg"
  9201. }
  9202. }
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(3, "feet"),
  9208. default: true
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9214. {
  9215. front: {
  9216. height: math.unit(14, "feet"),
  9217. weight: math.unit(1450, "kg"),
  9218. preyCapacity: math.unit(15, "people"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/aura-starwind/front.svg",
  9222. extra: 1440/1327,
  9223. bottom: 11/1451
  9224. }
  9225. },
  9226. side: {
  9227. height: math.unit(14, "feet"),
  9228. weight: math.unit(1450, "kg"),
  9229. preyCapacity: math.unit(15, "people"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/aura-starwind/side.svg",
  9233. extra: 1654 / 1497
  9234. }
  9235. },
  9236. taur: {
  9237. height: math.unit(18, "feet"),
  9238. weight: math.unit(5500, "kg"),
  9239. preyCapacity: math.unit(50, "people"),
  9240. name: "Taur",
  9241. image: {
  9242. source: "./media/characters/aura-starwind/taur.svg",
  9243. extra: 1760 / 1650
  9244. }
  9245. },
  9246. feral: {
  9247. height: math.unit(46, "feet"),
  9248. weight: math.unit(25000, "kg"),
  9249. preyCapacity: math.unit(120, "people"),
  9250. name: "Feral",
  9251. image: {
  9252. source: "./media/characters/aura-starwind/feral.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(14, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(50, "meters")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(5000, "meters")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(100000, "kilometers")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(2 + 7 / 12, "feet"),
  9281. weight: math.unit(32, "lbs"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/rivet/front.svg",
  9285. extra: 1716 / 1658,
  9286. bottom: 0.03
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(0.551, "feet"),
  9291. name: "Rivet's Foot",
  9292. image: {
  9293. source: "./media/characters/rivet/foot.svg"
  9294. },
  9295. rename: true
  9296. }
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(1.5, "inches"),
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(2 + 7 / 12, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(85, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(2.2, "km")
  9315. }
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 9 / 12, "feet"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/coffee/front.svg",
  9327. extra: 946/880,
  9328. bottom: 66/1012
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit(1.29, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/coffee/foot.svg"
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 9 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(800, "feet")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(25, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(200, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/chari-gal/front.svg",
  9368. extra: 1568 / 1385,
  9369. bottom: 0.047
  9370. }
  9371. },
  9372. gigantamax: {
  9373. height: math.unit(6 * 16, "feet"),
  9374. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9375. name: "Gigantamax",
  9376. image: {
  9377. source: "./media/characters/chari-gal/gigantamax.svg",
  9378. extra: 1124 / 888,
  9379. bottom: 0.03
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 7 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(200, "feet"),
  9391. default: true
  9392. }
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(150, "lbs"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/nova/front.svg",
  9404. extra: 5000 / 4722,
  9405. bottom: 0.02
  9406. }
  9407. }
  9408. },
  9409. [
  9410. {
  9411. name: "Micro-",
  9412. height: math.unit(0.8, "inches")
  9413. },
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(2, "inches"),
  9417. default: true
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9423. {
  9424. koboldFront: {
  9425. height: math.unit(3 + 1 / 12, "feet"),
  9426. weight: math.unit(21.7, "lbs"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/argent/kobold-front.svg",
  9430. extra: 1471 / 1331,
  9431. bottom: 100.8 / 1575.5
  9432. },
  9433. form: "kobold",
  9434. default: true
  9435. },
  9436. dragonFront: {
  9437. height: math.unit(75, "inches"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/argent/dragon-front.svg",
  9441. extra: 1389/1248,
  9442. bottom: 54/1443
  9443. },
  9444. form: "dragon",
  9445. },
  9446. dragonBack: {
  9447. height: math.unit(75, "inches"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/argent/dragon-back.svg",
  9451. extra: 1399/1271,
  9452. bottom: 23/1422
  9453. },
  9454. form: "dragon",
  9455. },
  9456. dragonDressed: {
  9457. height: math.unit(75, "inches"),
  9458. name: "Dressed",
  9459. image: {
  9460. source: "./media/characters/argent/dragon-dressed.svg",
  9461. extra: 1350/1215,
  9462. bottom: 26/1376
  9463. },
  9464. form: "dragon"
  9465. },
  9466. dragonHead: {
  9467. height: math.unit(23.5, "inches"),
  9468. name: "Head",
  9469. image: {
  9470. source: "./media/characters/argent/dragon-head.svg"
  9471. },
  9472. form: "dragon",
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(2, "inches"),
  9479. form: "kobold",
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(3 + 1 / 12, "feet"),
  9484. form: "kobold",
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(120, "feet"),
  9490. form: "kobold",
  9491. },
  9492. {
  9493. name: "Speck",
  9494. height: math.unit(1, "mm"),
  9495. form: "dragon",
  9496. },
  9497. {
  9498. name: "Tiny",
  9499. height: math.unit(1, "cm"),
  9500. form: "dragon",
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(5, "cm"),
  9505. form: "dragon",
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(75, "inches"),
  9510. form: "dragon",
  9511. default: true
  9512. },
  9513. {
  9514. name: "Extra Tall",
  9515. height: math.unit(9, "feet"),
  9516. form: "dragon",
  9517. },
  9518. {
  9519. name: "Inconvenient",
  9520. height: math.unit(5, "meters"),
  9521. form: "dragon",
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(70, "meters"),
  9526. form: "dragon",
  9527. },
  9528. {
  9529. name: "Macro+",
  9530. height: math.unit(250, "meters"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(20, "km"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Mountainous",
  9540. height: math.unit(100, "km"),
  9541. form: "dragon",
  9542. },
  9543. {
  9544. name: "Continental",
  9545. height: math.unit(2, "megameters"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Too Big",
  9550. height: math.unit(900, "megameters"),
  9551. form: "dragon",
  9552. },
  9553. ],
  9554. {
  9555. "kobold": {
  9556. name: "Kobold",
  9557. default: true
  9558. },
  9559. "dragon": {
  9560. name: "Dragon",
  9561. },
  9562. }
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9566. {
  9567. lamp: {
  9568. height: math.unit(7 * 1559 / 989, "feet"),
  9569. name: "Magic Lamp",
  9570. image: {
  9571. source: "./media/characters/mira-al-cul/lamp.svg",
  9572. extra: 1617 / 1559
  9573. }
  9574. },
  9575. front: {
  9576. height: math.unit(7, "feet"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/mira-al-cul/front.svg",
  9580. extra: 1044 / 990
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Heavily Restricted",
  9587. height: math.unit(7 * 1559 / 989, "feet")
  9588. },
  9589. {
  9590. name: "Freshly Freed",
  9591. height: math.unit(50 * 1559 / 989, "feet")
  9592. },
  9593. {
  9594. name: "World Encompassing",
  9595. height: math.unit(10000 * 1559 / 989, "miles")
  9596. },
  9597. {
  9598. name: "Galactic",
  9599. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9600. },
  9601. {
  9602. name: "Palmed Universe",
  9603. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Multiversal Matriarch",
  9608. height: math.unit(8.87e10, "yottameters")
  9609. },
  9610. {
  9611. name: "Void Mother",
  9612. height: math.unit(3.14e110, "yottaparsecs")
  9613. },
  9614. {
  9615. name: "Toying with Transcendence",
  9616. height: math.unit(1e307, "meters")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9622. {
  9623. front: {
  9624. height: math.unit(17 + 1 / 12, "feet"),
  9625. weight: math.unit(476.2 * 5, "lbs"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/kuro-shi-uchū/front.svg",
  9629. extra: 2329 / 1835,
  9630. bottom: 0.02
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(2, "inches")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(12, "meters")
  9642. },
  9643. {
  9644. name: "Planetary",
  9645. height: math.unit(0.00929, "AU"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Universal",
  9650. height: math.unit(20, "gigaparsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5 + 2 / 12, "feet"),
  9659. weight: math.unit(120, "lbs"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/katherine/front.svg",
  9663. extra: 2075 / 1969
  9664. }
  9665. },
  9666. dress: {
  9667. height: math.unit(5 + 2 / 12, "feet"),
  9668. weight: math.unit(120, "lbs"),
  9669. name: "Dress",
  9670. image: {
  9671. source: "./media/characters/katherine/dress.svg",
  9672. extra: 2258 / 2064
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(1, "inches"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5 + 2 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(100, "meters")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(80, "miles")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(7 + 8 / 12, "feet"),
  9701. weight: math.unit(250, "lbs"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/yevis/front.svg",
  9705. extra: 1938 / 1755
  9706. }
  9707. }
  9708. },
  9709. [
  9710. {
  9711. name: "Mortal",
  9712. height: math.unit(7 + 8 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Battle",
  9716. height: math.unit(25 + 11 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Wrath",
  9720. height: math.unit(1654 + 11 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Planet Destroyer",
  9724. height: math.unit(12000, "miles")
  9725. },
  9726. {
  9727. name: "Galaxy Conqueror",
  9728. height: math.unit(1.45, "zettameters"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Universal War",
  9733. height: math.unit(184, "gigaparsecs")
  9734. },
  9735. {
  9736. name: "Eternity War",
  9737. height: math.unit(1.98e55, "yottaparsecs")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5 + 8 / 12, "feet"),
  9746. weight: math.unit(63, "kg"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/xavier/front.svg",
  9750. extra: 944 / 883
  9751. }
  9752. },
  9753. frontStretch: {
  9754. height: math.unit(5 + 8 / 12, "feet"),
  9755. weight: math.unit(63, "kg"),
  9756. name: "Stretching",
  9757. image: {
  9758. source: "./media/characters/xavier/front-stretch.svg",
  9759. extra: 962 / 820
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(5 + 8 / 12, "feet")
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(100, "meters"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "McLargeHuge",
  9775. height: math.unit(10, "miles")
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(5 + 5 / 12, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/joshii/front.svg",
  9788. extra: 765 / 653,
  9789. bottom: 51 / 816
  9790. }
  9791. },
  9792. foot: {
  9793. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9794. name: "Foot",
  9795. image: {
  9796. source: "./media/characters/joshii/foot.svg"
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(2, "inches")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 5 / 12, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(785, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(24.5, "miles")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(150, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/goddess-elizabeth/front.svg",
  9829. extra: 1800 / 1525,
  9830. bottom: 0.005
  9831. }
  9832. },
  9833. foot: {
  9834. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9835. name: "Foot",
  9836. image: {
  9837. source: "./media/characters/goddess-elizabeth/foot.svg"
  9838. }
  9839. },
  9840. mouth: {
  9841. height: math.unit(6, "feet"),
  9842. name: "Mouth",
  9843. image: {
  9844. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(12, "feet")
  9852. },
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(80, "miles"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(15000, "parsecs")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(144, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/kara/front.svg"
  9873. }
  9874. },
  9875. feet: {
  9876. height: math.unit(6 / 6.765, "feet"),
  9877. name: "Kara's Feet",
  9878. rename: true,
  9879. image: {
  9880. source: "./media/characters/kara/feet.svg"
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 9 / 12, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(174, "feet"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(18, "feet"),
  9901. weight: math.unit(4050, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/tyrone/front.svg",
  9905. extra: 2405 / 2270,
  9906. bottom: 182 / 2587
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(18, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(300, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(15, "km")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(500, "km")
  9927. },
  9928. {
  9929. name: "Teramacro",
  9930. height: math.unit(0.5, "gigameters")
  9931. },
  9932. {
  9933. name: "Omnimacro",
  9934. height: math.unit(1e252, "yottauniverse")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(7 + 8 / 12, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/danny/front.svg",
  9947. extra: 1490 / 1350
  9948. }
  9949. },
  9950. back: {
  9951. height: math.unit(7 + 8 / 12, "feet"),
  9952. weight: math.unit(120, "lb"),
  9953. name: "Back",
  9954. image: {
  9955. source: "./media/characters/danny/back.svg",
  9956. extra: 1490 / 1350
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(7 + 8 / 12, "feet"),
  9964. default: true
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(3.5, "inches"),
  9973. weight: math.unit(19, "grams"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/mallow/front.svg",
  9977. extra: 471 / 431
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(3.5, "inches"),
  9982. weight: math.unit(19, "grams"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/mallow/back.svg",
  9986. extra: 471 / 431
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(3.5, "inches"),
  9994. default: true
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(9, "feet"),
  10003. weight: math.unit(230, "kg"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/starry-aqua/front.svg"
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(9, "feet"),
  10011. weight: math.unit(230, "kg"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/starry-aqua/back.svg"
  10015. }
  10016. },
  10017. hand: {
  10018. height: math.unit(9 * 0.1168, "feet"),
  10019. name: "Hand",
  10020. image: {
  10021. source: "./media/characters/starry-aqua/hand.svg"
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(9 * 0.18, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/starry-aqua/foot.svg"
  10029. }
  10030. }
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(3, "inches")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(9, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(300, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(3200, "feet")
  10049. }
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(15, "feet"),
  10057. weight: math.unit(5026, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/luka-towers/front.svg",
  10061. extra: 1269/1133,
  10062. bottom: 51/1320
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(15, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Minimacro",
  10074. height: math.unit(25, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(320, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(35000, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(4000, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(15000, "miles")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/natalie-nightring/front.svg",
  10103. extra: 1,
  10104. bottom: 0.06
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Uh Oh",
  10111. height: math.unit(0.1, "mm")
  10112. },
  10113. {
  10114. name: "Small",
  10115. height: math.unit(3, "inches")
  10116. },
  10117. {
  10118. name: "Human Scale",
  10119. height: math.unit(6, "feet")
  10120. },
  10121. {
  10122. name: "Librarian",
  10123. height: math.unit(50, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Immense",
  10128. height: math.unit(200, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(180, "lbs"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/danni-rosie/front.svg",
  10141. extra: 1260 / 1128,
  10142. bottom: 0.022
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(2, "inches"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. weight: math.unit(220, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/samantha-kruse/front.svg",
  10163. extra: (985 / 935),
  10164. bottom: 0.03
  10165. }
  10166. },
  10167. frontUndressed: {
  10168. height: math.unit(5 + 9 / 12, "feet"),
  10169. weight: math.unit(220, "lb"),
  10170. name: "Front (Undressed)",
  10171. image: {
  10172. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10173. extra: (973 / 923),
  10174. bottom: 0.025
  10175. }
  10176. },
  10177. fat: {
  10178. height: math.unit(5 + 9 / 12, "feet"),
  10179. weight: math.unit(900, "lb"),
  10180. name: "Front (Fat)",
  10181. image: {
  10182. source: "./media/characters/samantha-kruse/fat.svg",
  10183. extra: 2688 / 2561
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. default: true
  10192. }
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10197. {
  10198. back: {
  10199. height: math.unit(5 + 4 / 12, "feet"),
  10200. weight: math.unit(4963, "lb"),
  10201. name: "Back",
  10202. image: {
  10203. source: "./media/characters/amelia-rosie/back.svg",
  10204. extra: 1113 / 963,
  10205. bottom: 0.01
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Level 0",
  10212. height: math.unit(5 + 4 / 12, "feet")
  10213. },
  10214. {
  10215. name: "Level 1",
  10216. height: math.unit(164597, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Level 2",
  10221. height: math.unit(956243, "miles")
  10222. },
  10223. {
  10224. name: "Level 3",
  10225. height: math.unit(29421709423, "miles")
  10226. },
  10227. {
  10228. name: "Level 4",
  10229. height: math.unit(154, "lightyears")
  10230. },
  10231. {
  10232. name: "Level 5",
  10233. height: math.unit(4738272, "lightyears")
  10234. },
  10235. {
  10236. name: "Level 6",
  10237. height: math.unit(145787152896, "lightyears")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(5 + 11 / 12, "feet"),
  10246. weight: math.unit(65, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rook-kitara/front.svg",
  10250. extra: 1347 / 1274,
  10251. bottom: 0.005
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Totally Unfair",
  10258. height: math.unit(1.8, "mm")
  10259. },
  10260. {
  10261. name: "Lap Rookie",
  10262. height: math.unit(1.4, "feet")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 11 / 12, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "How Did This Happen",
  10271. height: math.unit(80, "miles")
  10272. }
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(7, "feet"),
  10280. weight: math.unit(300, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/pisces/front.svg",
  10284. extra: 2255 / 2115,
  10285. bottom: 0.03
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7, "feet"),
  10290. weight: math.unit(300, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/pisces/back.svg",
  10294. extra: 2146 / 2055,
  10295. bottom: 0.04
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(7, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Swimming Pool",
  10307. height: math.unit(12.2, "meters")
  10308. },
  10309. {
  10310. name: "Olympic Swimming Pool",
  10311. height: math.unit(56.3, "meters")
  10312. },
  10313. {
  10314. name: "Lake Superior",
  10315. height: math.unit(93900, "meters")
  10316. },
  10317. {
  10318. name: "Mediterranean Sea",
  10319. height: math.unit(644457, "meters")
  10320. },
  10321. {
  10322. name: "World's Oceans",
  10323. height: math.unit(4567491, "meters")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(2.3, "meters"),
  10332. weight: math.unit(120, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/zelas/front.svg"
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(2.3, "meters"),
  10340. weight: math.unit(120, "kg"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/zelas/side.svg"
  10344. }
  10345. },
  10346. back: {
  10347. height: math.unit(2.3, "meters"),
  10348. weight: math.unit(120, "kg"),
  10349. name: "Back",
  10350. image: {
  10351. source: "./media/characters/zelas/back.svg"
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(1.116, "feet"),
  10356. name: "Foot",
  10357. image: {
  10358. source: "./media/characters/zelas/foot.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.3, "meters")
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(30, "meters"),
  10370. default: true
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(1, "inch"),
  10379. weight: math.unit(0.21, "grams"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/talbot/front.svg",
  10383. extra: 594 / 544
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(1, "inch"),
  10391. default: true
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10397. {
  10398. front: {
  10399. height: math.unit(3 + 3 / 12, "feet"),
  10400. weight: math.unit(51.8, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/fliss/front.svg",
  10404. extra: 840 / 640
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Teeny Tiny",
  10411. height: math.unit(1, "mm")
  10412. },
  10413. {
  10414. name: "Small",
  10415. height: math.unit(1, "inch"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Standard Sylveon",
  10420. height: math.unit(3 + 3 / 12, "feet")
  10421. },
  10422. {
  10423. name: "Large Nuisance",
  10424. height: math.unit(33, "feet")
  10425. },
  10426. {
  10427. name: "City Filler",
  10428. height: math.unit(3000, "feet")
  10429. },
  10430. {
  10431. name: "New Horizon",
  10432. height: math.unit(6000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(5, "cm"),
  10441. weight: math.unit(1.94, "g"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/fleta/front.svg",
  10445. extra: 835 / 803
  10446. }
  10447. },
  10448. back: {
  10449. height: math.unit(5, "cm"),
  10450. weight: math.unit(1.94, "g"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/fleta/back.svg",
  10454. extra: 835 / 803
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(5, "cm"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(225, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/dominic/front.svg",
  10475. extra: 1770 / 1620,
  10476. bottom: 0.025
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(225, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/dominic/back.svg",
  10485. extra: 1745 / 1620,
  10486. bottom: 0.065
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Nano",
  10493. height: math.unit(0.1, "mm")
  10494. },
  10495. {
  10496. name: "Micro-",
  10497. height: math.unit(1, "mm")
  10498. },
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(4, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(6 + 4 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(115, "feet")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(955, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(8990, "feet")
  10519. },
  10520. {
  10521. name: "Gigmacro",
  10522. height: math.unit(9310, "miles")
  10523. },
  10524. {
  10525. name: "Teramacro",
  10526. height: math.unit(1567005010, "miles")
  10527. },
  10528. {
  10529. name: "Examacro",
  10530. height: math.unit(1425, "parsecs")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(400, "feet"),
  10539. weight: math.unit(44444444, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/major-colonel/front.svg"
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(400, "feet"),
  10547. weight: math.unit(44444444, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/major-colonel/back.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(400, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10564. {
  10565. catFront: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(120, "lb"),
  10568. name: "Front (Cat Side)",
  10569. image: {
  10570. source: "./media/characters/axel-lycan/cat-front.svg",
  10571. extra: 430 / 402,
  10572. bottom: 43 / 472.35
  10573. }
  10574. },
  10575. catBack: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(120, "lb"),
  10578. name: "Back (Cat Side)",
  10579. image: {
  10580. source: "./media/characters/axel-lycan/cat-back.svg",
  10581. extra: 447 / 419,
  10582. bottom: 23.3 / 469
  10583. }
  10584. },
  10585. wolfFront: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(120, "lb"),
  10588. name: "Front (Wolf Side)",
  10589. image: {
  10590. source: "./media/characters/axel-lycan/wolf-front.svg",
  10591. extra: 485 / 456,
  10592. bottom: 19 / 504
  10593. }
  10594. },
  10595. wolfBack: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(120, "lb"),
  10598. name: "Back (Wolf Side)",
  10599. image: {
  10600. source: "./media/characters/axel-lycan/wolf-back.svg",
  10601. extra: 475 / 438,
  10602. bottom: 39.2 / 514
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(1, "km"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(175, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/vanrel-hyena/front.svg",
  10623. extra: 1086 / 1010,
  10624. bottom: 0.04
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(5 + 9 / 12, "feet"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(103, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/abbott-absol/front.svg",
  10645. extra: 2010 / 1842
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Megamicro",
  10652. height: math.unit(0.1, "mm")
  10653. },
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch")
  10657. },
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(6, "feet"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(264, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/hector/front.svg",
  10674. extra: 2280 / 2130,
  10675. bottom: 0.07
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(12.25, "foot"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(160, "feet")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/sal/front.svg",
  10700. extra: 1846 / 1699,
  10701. bottom: 0.04
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10715. {
  10716. front: {
  10717. height: math.unit(3, "meters"),
  10718. weight: math.unit(450, "kg"),
  10719. name: "front",
  10720. image: {
  10721. source: "./media/characters/ranger/front.svg",
  10722. extra: 2401 / 2243,
  10723. bottom: 0.05
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(3, "meters"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(14, "feet"),
  10740. weight: math.unit(800, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/theresa/front.svg",
  10744. extra: 3575 / 3346,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(14, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(3, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/ine/front.svg",
  10766. extra: 678 / 539,
  10767. bottom: 0.023
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(2.265, "feet"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(5, "feet"),
  10784. weight: math.unit(30, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/vial/front.svg",
  10788. extra: 1365 / 1277,
  10789. bottom: 0.04
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(5, "feet"),
  10797. default: true
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(3.4, "meters"),
  10806. weight: math.unit(1000, "lb"),
  10807. name: "Side",
  10808. image: {
  10809. source: "./media/characters/rovoska/side.svg",
  10810. extra: 4403 / 1515
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(3.4, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(8, "feet"),
  10827. weight: math.unit(315, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/gunner-rotthbauer/front.svg"
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(8, "feet"),
  10835. weight: math.unit(315, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/gunner-rotthbauer/back.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(3.5, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(8, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(250, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(1, "AU")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(5 + 5 / 12, "feet"),
  10867. weight: math.unit(140, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/allatia/front.svg",
  10871. extra: 1227 / 1180,
  10872. bottom: 0.027
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(5 + 5 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(250, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(8, "miles")
  10889. }
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(120, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/tene/front.svg",
  10901. extra: 814/750,
  10902. bottom: 36/850
  10903. }
  10904. },
  10905. stomping: {
  10906. height: math.unit(2.025, "meters"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Stomping",
  10909. image: {
  10910. source: "./media/characters/tene/stomping.svg",
  10911. extra: 885/821,
  10912. bottom: 15/900
  10913. }
  10914. },
  10915. sitting: {
  10916. height: math.unit(1, "meter"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Sitting",
  10919. image: {
  10920. source: "./media/characters/tene/sitting.svg",
  10921. extra: 396/366,
  10922. bottom: 79/475
  10923. }
  10924. },
  10925. smiling: {
  10926. height: math.unit(1.2, "feet"),
  10927. name: "Smiling",
  10928. image: {
  10929. source: "./media/characters/tene/smiling.svg",
  10930. extra: 1364/1071,
  10931. bottom: 0/1364
  10932. }
  10933. },
  10934. smug: {
  10935. height: math.unit(1.3, "feet"),
  10936. name: "Smug",
  10937. image: {
  10938. source: "./media/characters/tene/smug.svg",
  10939. extra: 1323/1082,
  10940. bottom: 0/1323
  10941. }
  10942. },
  10943. feral: {
  10944. height: math.unit(3.9, "feet"),
  10945. weight: math.unit(250, "lb"),
  10946. name: "Feral",
  10947. image: {
  10948. source: "./media/characters/tene/feral.svg",
  10949. extra: 717 / 458,
  10950. bottom: 0.179
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(6, "feet")
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(300, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(5, "miles")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10972. {
  10973. side: {
  10974. height: math.unit(6, "feet"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/evander/side.svg",
  10978. extra: 877 / 477
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(0.83, "meters"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(12, "feet"),
  10995. weight: math.unit(1000, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10999. extra: 1762 / 1611
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(12, "feet"),
  11004. weight: math.unit(1000, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11008. extra: 1762 / 1611
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(12, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Kaiju",
  11020. height: math.unit(150, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/zero-alurus/front.svg"
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/zero-alurus/back.svg"
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(5 + 10 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(60, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro+",
  11056. height: math.unit(450, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(200, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/mega-shi/front.svg",
  11069. extra: 1279 / 1250,
  11070. bottom: 0.02
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(200, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/mega-shi/back.svg",
  11079. extra: 1279 / 1250,
  11080. bottom: 0.02
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(16 + 6 / 12, "feet")
  11088. },
  11089. {
  11090. name: "Third Dimension",
  11091. height: math.unit(40, "meters")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(660, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(10, "miles")
  11101. },
  11102. {
  11103. name: "Planetary Launch",
  11104. height: math.unit(500, "miles")
  11105. },
  11106. {
  11107. name: "Interstellar",
  11108. height: math.unit(1e9, "miles")
  11109. },
  11110. {
  11111. name: "Leaving the Universe",
  11112. height: math.unit(1, "gigaparsec")
  11113. },
  11114. {
  11115. name: "Travelling Universes",
  11116. height: math.unit(30e15, "parsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(5 + 4/12, "feet"),
  11125. weight: math.unit(120, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/odyssey/front.svg",
  11129. extra: 1747/1571,
  11130. bottom: 47/1794
  11131. }
  11132. },
  11133. side: {
  11134. height: math.unit(5.1, "feet"),
  11135. weight: math.unit(120, "lb"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/odyssey/side.svg",
  11139. extra: 1847/1619,
  11140. bottom: 47/1894
  11141. }
  11142. },
  11143. lounging: {
  11144. height: math.unit(1.464, "feet"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Lounging",
  11147. image: {
  11148. source: "./media/characters/odyssey/lounging.svg",
  11149. extra: 1235/837,
  11150. bottom: 551/1786
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(5 + 4 / 12, "feet")
  11158. },
  11159. {
  11160. name: "Macro",
  11161. height: math.unit(1, "km")
  11162. },
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(3000, "km")
  11166. },
  11167. {
  11168. name: "Gigamacro",
  11169. height: math.unit(1, "AU"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Omniversal",
  11174. height: math.unit(100e14, "lightyears")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(5 + 10/12, "feet"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/mekuto/front.svg",
  11186. extra: 875/835,
  11187. bottom: 46/921
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Minimicro",
  11194. height: math.unit(0.2, "inches")
  11195. },
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(1.5, "inches")
  11199. },
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 10 / 12, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Minimacro",
  11207. height: math.unit(17 + 9 / 12, "feet")
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(177.5, "feet")
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(152, "miles")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6.5, "inches"),
  11224. weight: math.unit(13, "oz"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/dafydd-tomos/front.svg",
  11228. extra: 2990 / 2603,
  11229. bottom: 0.03
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Micro",
  11236. height: math.unit(6.5, "inches"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/splinter/front.svg",
  11250. extra: 2990 / 2882,
  11251. bottom: 0.04
  11252. }
  11253. },
  11254. back: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Back",
  11258. image: {
  11259. source: "./media/characters/splinter/back.svg",
  11260. extra: 2990 / 2882,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(6, "feet")
  11269. },
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(230, "meters"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(4 + 10 / 12, "feet"),
  11282. weight: math.unit(480, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/snow-gabumon/front.svg",
  11286. extra: 1140 / 963,
  11287. bottom: 0.058
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(4 + 10 / 12, "feet"),
  11292. weight: math.unit(480, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/snow-gabumon/back.svg",
  11296. extra: 1115 / 962,
  11297. bottom: 0.041
  11298. }
  11299. },
  11300. frontUndresed: {
  11301. height: math.unit(4 + 10 / 12, "feet"),
  11302. weight: math.unit(480, "lb"),
  11303. name: "Front (Undressed)",
  11304. image: {
  11305. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11306. extra: 1061 / 960,
  11307. bottom: 0.045
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(1, "inch")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(4 + 10 / 12, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(200, "feet")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(120, "miles")
  11328. },
  11329. {
  11330. name: "Gigamacro",
  11331. height: math.unit(9800, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(1.7, "meters"),
  11340. weight: math.unit(140, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/moody/front.svg",
  11344. extra: 3226 / 3007,
  11345. bottom: 0.087
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(1, "mm")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(1.7, "meters"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(80, "meters")
  11362. },
  11363. {
  11364. name: "Macro+",
  11365. height: math.unit(500, "meters")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/zyas/front.svg",
  11378. extra: 1180 / 1120,
  11379. bottom: 0.045
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(10, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(500, "feet")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(5, "miles")
  11396. },
  11397. {
  11398. name: "Teramacro",
  11399. height: math.unit(150000, "miles")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(150, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/cuon/front.svg",
  11412. extra: 1390 / 1320,
  11413. bottom: 0.008
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Micro",
  11420. height: math.unit(3, "inches")
  11421. },
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(18 + 9 / 12, "feet"),
  11425. default: true
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(360, "feet")
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(360, "miles")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(2.4, "meters"),
  11442. weight: math.unit(70, "kg"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/nyanuxk/front.svg",
  11446. extra: 1172 / 1084,
  11447. bottom: 0.065
  11448. }
  11449. },
  11450. side: {
  11451. height: math.unit(2.4, "meters"),
  11452. weight: math.unit(70, "kg"),
  11453. name: "Side",
  11454. image: {
  11455. source: "./media/characters/nyanuxk/side.svg",
  11456. extra: 1190 / 1132,
  11457. bottom: 0.007
  11458. }
  11459. },
  11460. back: {
  11461. height: math.unit(2.4, "meters"),
  11462. weight: math.unit(70, "kg"),
  11463. name: "Back",
  11464. image: {
  11465. source: "./media/characters/nyanuxk/back.svg",
  11466. extra: 1200 / 1141,
  11467. bottom: 0.015
  11468. }
  11469. },
  11470. foot: {
  11471. height: math.unit(0.52, "meters"),
  11472. name: "Foot",
  11473. image: {
  11474. source: "./media/characters/nyanuxk/foot.svg"
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Micro",
  11481. height: math.unit(2, "cm")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.4, "meters"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Smaller Macro",
  11490. height: math.unit(120, "meters")
  11491. },
  11492. {
  11493. name: "Bigger Macro",
  11494. height: math.unit(1.2, "km")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(15, "kilometers")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(2000, "km")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(500000, "km")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11512. {
  11513. side: {
  11514. height: math.unit(6, "feet"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/ailbhe/side.svg",
  11518. extra: 757 / 464,
  11519. bottom: 0.041
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(1.07, "meters"),
  11527. default: true
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(120, "kg"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/zevulfius/front.svg",
  11540. extra: 965 / 903
  11541. }
  11542. },
  11543. side: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(120, "kg"),
  11546. name: "Side",
  11547. image: {
  11548. source: "./media/characters/zevulfius/side.svg",
  11549. extra: 939 / 900
  11550. }
  11551. },
  11552. back: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(120, "kg"),
  11555. name: "Back",
  11556. image: {
  11557. source: "./media/characters/zevulfius/back.svg",
  11558. extra: 918 / 854,
  11559. bottom: 0.005
  11560. }
  11561. },
  11562. foot: {
  11563. height: math.unit(6 / 3.72, "feet"),
  11564. name: "Foot",
  11565. image: {
  11566. source: "./media/characters/zevulfius/foot.svg"
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(750, "meters")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(20, "km"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Gigamacro",
  11582. height: math.unit(2000, "km")
  11583. },
  11584. {
  11585. name: "Teramacro",
  11586. height: math.unit(250000, "km")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(100, "feet"),
  11595. weight: math.unit(350, "kg"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/rikes/front.svg",
  11599. extra: 1565 / 1483,
  11600. bottom: 0.017
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(100, "feet"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(8, "feet"),
  11617. weight: math.unit(356, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/adam-silver-mane/front.svg",
  11621. extra: 1036/937,
  11622. bottom: 63/1099
  11623. }
  11624. },
  11625. side: {
  11626. height: math.unit(8, "feet"),
  11627. weight: math.unit(356, "lb"),
  11628. name: "Side",
  11629. image: {
  11630. source: "./media/characters/adam-silver-mane/side.svg",
  11631. extra: 997/901,
  11632. bottom: 59/1056
  11633. }
  11634. },
  11635. frontNsfw: {
  11636. height: math.unit(8, "feet"),
  11637. weight: math.unit(356, "lb"),
  11638. name: "Front (NSFW)",
  11639. image: {
  11640. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11641. extra: 1036/937,
  11642. bottom: 63/1099
  11643. }
  11644. },
  11645. sideNsfw: {
  11646. height: math.unit(8, "feet"),
  11647. weight: math.unit(356, "lb"),
  11648. name: "Side (NSFW)",
  11649. image: {
  11650. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11651. extra: 997/901,
  11652. bottom: 59/1056
  11653. }
  11654. },
  11655. dick: {
  11656. height: math.unit(2.1, "feet"),
  11657. name: "Dick",
  11658. image: {
  11659. source: "./media/characters/adam-silver-mane/dick.svg"
  11660. }
  11661. },
  11662. taur: {
  11663. height: math.unit(16, "feet"),
  11664. weight: math.unit(1500, "kg"),
  11665. name: "Taur",
  11666. image: {
  11667. source: "./media/characters/adam-silver-mane/taur.svg",
  11668. extra: 1713 / 1571,
  11669. bottom: 0.01
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(8, "feet")
  11677. },
  11678. {
  11679. name: "Minimacro",
  11680. height: math.unit(80, "feet")
  11681. },
  11682. {
  11683. name: "MDA",
  11684. height: math.unit(80, "meters")
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(800, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(8000, "feet")
  11694. },
  11695. {
  11696. name: "Gigamacro",
  11697. height: math.unit(800, "miles")
  11698. },
  11699. {
  11700. name: "Teramacro",
  11701. height: math.unit(80000, "miles")
  11702. },
  11703. {
  11704. name: "Celestial",
  11705. height: math.unit(8e6, "miles")
  11706. },
  11707. {
  11708. name: "Star Dragon",
  11709. height: math.unit(800000, "parsecs")
  11710. },
  11711. {
  11712. name: "Godly",
  11713. height: math.unit(800, "teraparsecs")
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/ky'owin/front.svg",
  11726. extra: 3862/3053,
  11727. bottom: 74/3936
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Normal",
  11734. height: math.unit(6 + 8 / 12, "feet")
  11735. },
  11736. {
  11737. name: "Large",
  11738. height: math.unit(68, "feet")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(132, "feet")
  11743. },
  11744. {
  11745. name: "Macro+",
  11746. height: math.unit(340, "feet")
  11747. },
  11748. {
  11749. name: "Macro++",
  11750. height: math.unit(680, "feet"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(1, "mile")
  11756. },
  11757. {
  11758. name: "Megamacro+",
  11759. height: math.unit(10, "miles")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(4, "feet"),
  11768. weight: math.unit(50, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/mal/front.svg",
  11772. extra: 785 / 724,
  11773. bottom: 0.07
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Micro",
  11780. height: math.unit(4, "inches")
  11781. },
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(4, "feet"),
  11785. default: true
  11786. },
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(200, "feet")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/jordan-deware/front.svg",
  11802. extra: 1191 / 1012
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Nano",
  11809. height: math.unit(0.01, "mm")
  11810. },
  11811. {
  11812. name: "Minimicro",
  11813. height: math.unit(1, "mm")
  11814. },
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(0.5, "inches")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(4, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Minimacro",
  11826. height: math.unit(40, "meters")
  11827. },
  11828. {
  11829. name: "Small Macro",
  11830. height: math.unit(400, "meters")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(4, "miles")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(40, "miles")
  11839. },
  11840. {
  11841. name: "Megamacro+",
  11842. height: math.unit(400, "miles")
  11843. },
  11844. {
  11845. name: "Gigamacro",
  11846. height: math.unit(400000, "miles")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11852. {
  11853. side: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Side",
  11857. image: {
  11858. source: "./media/characters/kimiko/side.svg",
  11859. extra: 600 / 358
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(15, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(220, "feet")
  11872. },
  11873. {
  11874. name: "Macro+",
  11875. height: math.unit(1450, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(11500, "feet")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(9500, "miles")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(2208005005, "miles")
  11888. },
  11889. {
  11890. name: "Examacro",
  11891. height: math.unit(2750, "parsecs")
  11892. },
  11893. {
  11894. name: "Zettamacro",
  11895. height: math.unit(101500, "parsecs")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(70, "kg"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/andrew-sleepy/front.svg"
  11908. }
  11909. },
  11910. side: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(70, "kg"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/andrew-sleepy/side.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(1, "mm"),
  11923. default: true
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11929. {
  11930. front: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Front",
  11934. image: {
  11935. source: "./media/characters/judio/front.svg",
  11936. extra: 1258 / 1110
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5 + 6 / 12, "feet")
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(1000, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(10, "miles")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11958. {
  11959. frontDressed: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(68, "kg"),
  11962. name: "Front (Dressed)",
  11963. image: {
  11964. source: "./media/characters/nomaxice/front-dressed.svg",
  11965. extra: 1137/824,
  11966. bottom: 74/1211
  11967. }
  11968. },
  11969. frontShorts: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(68, "kg"),
  11972. name: "Front (Shorts)",
  11973. image: {
  11974. source: "./media/characters/nomaxice/front-shorts.svg",
  11975. extra: 1137/824,
  11976. bottom: 74/1211
  11977. }
  11978. },
  11979. back: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(68, "kg"),
  11982. name: "Back",
  11983. image: {
  11984. source: "./media/characters/nomaxice/back.svg",
  11985. extra: 822/786,
  11986. bottom: 39/861
  11987. }
  11988. },
  11989. hand: {
  11990. height: math.unit(0.565, "feet"),
  11991. name: "Hand",
  11992. image: {
  11993. source: "./media/characters/nomaxice/hand.svg"
  11994. }
  11995. },
  11996. foot: {
  11997. height: math.unit(1, "feet"),
  11998. name: "Foot",
  11999. image: {
  12000. source: "./media/characters/nomaxice/foot.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Micro",
  12007. height: math.unit(8, "cm")
  12008. },
  12009. {
  12010. name: "Norm",
  12011. height: math.unit(1.82, "m")
  12012. },
  12013. {
  12014. name: "Norm+",
  12015. height: math.unit(8.8, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Big",
  12020. height: math.unit(8, "meters")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(18, "meters")
  12025. },
  12026. {
  12027. name: "Macro+",
  12028. height: math.unit(88, "meters")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(12, "feet"),
  12037. weight: math.unit(1.5, "tons"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/dydros/front.svg",
  12041. extra: 863 / 800,
  12042. bottom: 0.015
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(12, "feet"),
  12047. weight: math.unit(1.5, "tons"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/dydros/back.svg",
  12051. extra: 900 / 843,
  12052. bottom: 0.005
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(12, "feet"),
  12060. default: true
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(100, "kg"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/riggi/front.svg",
  12073. extra: 5787 / 5303
  12074. }
  12075. },
  12076. hyper: {
  12077. height: math.unit(6 * 5 / 3, "feet"),
  12078. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12079. name: "Hyper",
  12080. image: {
  12081. source: "./media/characters/riggi/hyper.svg",
  12082. extra: 3595 / 3485
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Small Macro",
  12089. height: math.unit(50, "feet")
  12090. },
  12091. {
  12092. name: "Default",
  12093. height: math.unit(200, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Loom",
  12098. height: math.unit(10000, "feet")
  12099. },
  12100. {
  12101. name: "Cruising Altitude",
  12102. height: math.unit(30000, "feet")
  12103. },
  12104. {
  12105. name: "Megamacro",
  12106. height: math.unit(100, "miles")
  12107. },
  12108. {
  12109. name: "Continent Sized",
  12110. height: math.unit(2800, "miles")
  12111. },
  12112. {
  12113. name: "Earth Sized",
  12114. height: math.unit(8000, "miles")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(250, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/alexi/front.svg",
  12127. extra: 3483 / 3291,
  12128. bottom: 0.04
  12129. }
  12130. },
  12131. back: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(250, "lb"),
  12134. name: "Back",
  12135. image: {
  12136. source: "./media/characters/alexi/back.svg",
  12137. extra: 3533 / 3356,
  12138. bottom: 0.021
  12139. }
  12140. },
  12141. frontTransforming: {
  12142. height: math.unit(8.58, "feet"),
  12143. weight: math.unit(1300, "lb"),
  12144. name: "Transforming",
  12145. image: {
  12146. source: "./media/characters/alexi/front-transforming.svg",
  12147. extra: 437 / 409,
  12148. bottom: 19 / 458.66
  12149. }
  12150. },
  12151. frontTransformed: {
  12152. height: math.unit(12.5, "feet"),
  12153. weight: math.unit(4000, "lb"),
  12154. name: "Transformed",
  12155. image: {
  12156. source: "./media/characters/alexi/front-transformed.svg",
  12157. extra: 639 / 614,
  12158. bottom: 30.55 / 671
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(14, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Minimacro",
  12170. height: math.unit(30, "meters")
  12171. },
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(500, "meters")
  12175. },
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(9000, "km")
  12179. },
  12180. {
  12181. name: "Teramacro",
  12182. height: math.unit(384000, "km")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/kayroo/front.svg",
  12195. extra: 1153 / 1038,
  12196. bottom: 0.06
  12197. }
  12198. },
  12199. foot: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Foot",
  12203. image: {
  12204. source: "./media/characters/kayroo/foot.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(8, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(250, "feet")
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(2800, "feet")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(5200, "feet")
  12225. },
  12226. {
  12227. name: "Gigamacro",
  12228. height: math.unit(27000, "feet")
  12229. },
  12230. {
  12231. name: "Omega",
  12232. height: math.unit(45000, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(18, "feet"),
  12241. weight: math.unit(5800, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/rhys/front.svg",
  12245. extra: 3386 / 3090,
  12246. bottom: 0.07
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(18, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Working Size",
  12258. height: math.unit(200, "feet")
  12259. },
  12260. {
  12261. name: "Demolition Size",
  12262. height: math.unit(2000, "feet")
  12263. },
  12264. {
  12265. name: "Maximum Licensed Size",
  12266. height: math.unit(5, "miles")
  12267. },
  12268. {
  12269. name: "Maximum Observed Size",
  12270. height: math.unit(10, "yottameters")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(250, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/toto/front.svg",
  12283. extra: 527 / 479,
  12284. bottom: 0.05
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(3, "feet")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(10, "feet")
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(150, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(1200, "feet")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "King", species: ["lion"], tags: ["anthro"] },
  12310. {
  12311. back: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Back",
  12315. image: {
  12316. source: "./media/characters/king/back.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Micro",
  12323. height: math.unit(2, "inches")
  12324. },
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(8, "feet")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(200, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(50, "miles")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(11, "feet"),
  12345. weight: math.unit(1400, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/cordite/front.svg",
  12349. extra: 1919/1827,
  12350. bottom: 40/1959
  12351. }
  12352. },
  12353. side: {
  12354. height: math.unit(11, "feet"),
  12355. weight: math.unit(1400, "lb"),
  12356. name: "Side",
  12357. image: {
  12358. source: "./media/characters/cordite/side.svg",
  12359. extra: 1908/1793,
  12360. bottom: 38/1946
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(11, "feet"),
  12365. weight: math.unit(1400, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/cordite/back.svg",
  12369. extra: 1938/1837,
  12370. bottom: 10/1948
  12371. }
  12372. },
  12373. feral: {
  12374. height: math.unit(2, "feet"),
  12375. weight: math.unit(90, "lb"),
  12376. name: "Feral",
  12377. image: {
  12378. source: "./media/characters/cordite/feral.svg",
  12379. extra: 1260 / 755,
  12380. bottom: 0.05
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(11, "feet"),
  12388. default: true
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/pianostrong/front.svg",
  12401. extra: 6577 / 6254,
  12402. bottom: 0.02
  12403. }
  12404. },
  12405. side: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Side",
  12409. image: {
  12410. source: "./media/characters/pianostrong/side.svg",
  12411. extra: 6106 / 5730
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/pianostrong/back.svg",
  12420. extra: 6085 / 5733,
  12421. bottom: 0.01
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(100, "feet")
  12429. },
  12430. {
  12431. name: "Macro+",
  12432. height: math.unit(300, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Macro++",
  12437. height: math.unit(1000, "feet")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(150, "lb"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/kona/front.svg",
  12450. extra: 2960 / 2629,
  12451. bottom: 0.005
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(11 + 8 / 12, "feet")
  12459. },
  12460. {
  12461. name: "Macro",
  12462. height: math.unit(850, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro+",
  12467. height: math.unit(1.5, "km"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(80, "miles")
  12473. },
  12474. {
  12475. name: "Gigamacro",
  12476. height: math.unit(3500, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. side: {
  12484. height: math.unit(1.9, "meters"),
  12485. weight: math.unit(326, "kg"),
  12486. name: "Side",
  12487. image: {
  12488. source: "./media/characters/levi/side.svg",
  12489. extra: 1704 / 1334,
  12490. bottom: 0.02
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.9, "meters"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(20, "meters")
  12503. },
  12504. {
  12505. name: "Macro+",
  12506. height: math.unit(200, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(2, "km")
  12511. },
  12512. {
  12513. name: "Megamacro+",
  12514. height: math.unit(20, "km")
  12515. },
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(2500, "km")
  12519. },
  12520. {
  12521. name: "Gigamacro+",
  12522. height: math.unit(120000, "km")
  12523. },
  12524. {
  12525. name: "Teramacro",
  12526. height: math.unit(7.77e6, "km")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6 + 4/12, "feet"),
  12535. weight: math.unit(190, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/bmc/front.svg",
  12539. extra: 1626/1472,
  12540. bottom: 79/1705
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(6 + 4/12, "feet"),
  12545. weight: math.unit(190, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/bmc/back.svg",
  12549. extra: 1640/1479,
  12550. bottom: 45/1685
  12551. }
  12552. },
  12553. frontArmor: {
  12554. height: math.unit(6 + 4/12, "feet"),
  12555. weight: math.unit(190, "lb"),
  12556. name: "Front-armor",
  12557. image: {
  12558. source: "./media/characters/bmc/front-armor.svg",
  12559. extra: 1538/1468,
  12560. bottom: 79/1617
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Human-sized",
  12567. height: math.unit(6 + 4 / 12, "feet")
  12568. },
  12569. {
  12570. name: "Interactive Size",
  12571. height: math.unit(25, "feet")
  12572. },
  12573. {
  12574. name: "Small",
  12575. height: math.unit(250, "feet")
  12576. },
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(1250, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Good Day",
  12584. height: math.unit(88, "miles")
  12585. },
  12586. {
  12587. name: "Largest Measured Size",
  12588. height: math.unit(105.960, "galaxies")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(20, "feet"),
  12597. weight: math.unit(2016, "kg"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/sven-the-kaiju/front.svg",
  12601. extra: 1277/1250,
  12602. bottom: 35/1312
  12603. }
  12604. },
  12605. mouth: {
  12606. height: math.unit(1.85, "feet"),
  12607. name: "Mouth",
  12608. image: {
  12609. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Fairy",
  12616. height: math.unit(6, "inches")
  12617. },
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(20, "feet"),
  12621. default: true
  12622. },
  12623. {
  12624. name: "Rampage",
  12625. height: math.unit(200, "feet")
  12626. },
  12627. {
  12628. name: "Archfey Forest Guardian",
  12629. height: math.unit(1, "mile")
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12635. {
  12636. front: {
  12637. height: math.unit(4, "meters"),
  12638. weight: math.unit(2, "tons"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/marik/front.svg",
  12642. extra: 1057 / 1003,
  12643. bottom: 0.08
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(4, "meters"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(20, "meters")
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(50, "km")
  12660. },
  12661. {
  12662. name: "Gigamacro",
  12663. height: math.unit(100, "km")
  12664. },
  12665. {
  12666. name: "Alpha Macro",
  12667. height: math.unit(7.88e7, "yottameters")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(110, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/mel/front.svg",
  12680. extra: 736 / 617,
  12681. bottom: 0.017
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Pico",
  12688. height: math.unit(3, "pm")
  12689. },
  12690. {
  12691. name: "Nano",
  12692. height: math.unit(3, "nm")
  12693. },
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(0.3, "mm"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Micro+",
  12701. height: math.unit(3, "mm")
  12702. },
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(5 + 10.5 / 12, "feet")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12711. {
  12712. kaiju: {
  12713. height: math.unit(1.75, "meters"),
  12714. weight: math.unit(55, "kg"),
  12715. name: "Kaiju",
  12716. image: {
  12717. source: "./media/characters/lykonous/kaiju.svg",
  12718. extra: 1055 / 946,
  12719. bottom: 0.135
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(2.5, "meters"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Kaiju Dragon",
  12731. height: math.unit(60, "meters")
  12732. },
  12733. {
  12734. name: "Mega Kaiju",
  12735. height: math.unit(120, "km")
  12736. },
  12737. {
  12738. name: "Giga Kaiju",
  12739. height: math.unit(200, "megameters")
  12740. },
  12741. {
  12742. name: "Terra Kaiju",
  12743. height: math.unit(400, "gigameters")
  12744. },
  12745. {
  12746. name: "Kaiju Dragon God",
  12747. height: math.unit(13000, "exaparsecs")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/blü/front.svg",
  12760. extra: 1883 / 1564,
  12761. bottom: 0.031
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(13, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Big Boi",
  12773. height: math.unit(150, "meters")
  12774. },
  12775. {
  12776. name: "Mini Stomper",
  12777. height: math.unit(300, "meters")
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(1000, "meters")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(11000, "meters")
  12786. },
  12787. {
  12788. name: "Gigamacro",
  12789. height: math.unit(11000, "km")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(420000, "km")
  12794. },
  12795. {
  12796. name: "Examacro",
  12797. height: math.unit(120, "parsecs")
  12798. },
  12799. {
  12800. name: "God Tho",
  12801. height: math.unit(98000000000, "parsecs")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12807. {
  12808. taurFront: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(200, "lb"),
  12811. name: "Taur (Front)",
  12812. image: {
  12813. source: "./media/characters/scales/taur-front.svg",
  12814. extra: 1,
  12815. bottom: 0.05
  12816. }
  12817. },
  12818. taurBack: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(200, "lb"),
  12821. name: "Taur (Back)",
  12822. image: {
  12823. source: "./media/characters/scales/taur-back.svg",
  12824. extra: 1,
  12825. bottom: 0.08
  12826. }
  12827. },
  12828. anthro: {
  12829. height: math.unit(6 * 7 / 12, "feet"),
  12830. weight: math.unit(100, "lb"),
  12831. name: "Anthro",
  12832. image: {
  12833. source: "./media/characters/scales/anthro.svg",
  12834. extra: 1,
  12835. bottom: 0.06
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(12, "feet"),
  12843. default: true
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/koragos/front.svg",
  12856. extra: 841 / 794,
  12857. bottom: 0.035
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(6, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/koragos/back.svg",
  12866. extra: 841 / 810,
  12867. bottom: 0.022
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 11 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(490, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(10, "miles")
  12884. },
  12885. {
  12886. name: "Gigamacro",
  12887. height: math.unit(50, "miles")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(250, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/xylrem/front.svg",
  12900. extra: 3323 / 3050,
  12901. bottom: 0.065
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(4, "feet")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(16, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(2720, "feet")
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(25000, "miles")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(8, "feet"),
  12930. weight: math.unit(250, "kg"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/ikideru/front.svg",
  12934. extra: 930 / 870,
  12935. bottom: 0.087
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(8, "feet"),
  12940. weight: math.unit(250, "kg"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/ikideru/back.svg",
  12944. extra: 919 / 852,
  12945. bottom: 0.055
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Rare",
  12952. height: math.unit(8, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Playful Loom",
  12957. height: math.unit(80, "feet")
  12958. },
  12959. {
  12960. name: "City Leaner",
  12961. height: math.unit(230, "feet")
  12962. },
  12963. {
  12964. name: "Megamacro",
  12965. height: math.unit(2500, "feet")
  12966. },
  12967. {
  12968. name: "Gigamacro",
  12969. height: math.unit(26400, "feet")
  12970. },
  12971. {
  12972. name: "Tectonic Shifter",
  12973. height: math.unit(1.7, "megameters")
  12974. },
  12975. {
  12976. name: "Planet Carer",
  12977. height: math.unit(21, "megameters")
  12978. },
  12979. {
  12980. name: "God",
  12981. height: math.unit(11157.22, "parsecs")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(120, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/neo/front.svg"
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Micro",
  13000. height: math.unit(2, "inches"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Human Size",
  13005. height: math.unit(5 + 8 / 12, "feet")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(13 + 10 / 12, "feet"),
  13014. weight: math.unit(5320, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/chauncey-chantz/front.svg",
  13018. extra: 1587 / 1435,
  13019. bottom: 0.02
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(13 + 10 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(45, "feet")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(250, "miles")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(10000, "miles")
  13040. },
  13041. {
  13042. name: "Galactic",
  13043. height: math.unit(40000, "parsecs")
  13044. },
  13045. {
  13046. name: "Universal",
  13047. height: math.unit(1, "yottameter")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(150, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/epifox/front.svg",
  13060. extra: 1,
  13061. bottom: 0.075
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Micro",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(12, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(3810, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro",
  13081. height: math.unit(500, "miles")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(1.8796, "m"),
  13090. weight: math.unit(230, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/colin-t/front.svg",
  13094. extra: 1272 / 1193,
  13095. bottom: 0.07
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Micro",
  13102. height: math.unit(0.571, "meters")
  13103. },
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(1.8796, "meters"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Tall",
  13111. height: math.unit(4, "meters")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(67.241, "meters")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(371.856, "meters")
  13120. },
  13121. {
  13122. name: "Planetary",
  13123. height: math.unit(12631.5689, "km")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(1.85, "meters"),
  13132. weight: math.unit(80, "kg"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/matvei/front.svg",
  13136. extra: 456/447,
  13137. bottom: 8/464
  13138. }
  13139. },
  13140. back: {
  13141. height: math.unit(1.85, "meters"),
  13142. weight: math.unit(80, "kg"),
  13143. name: "Back",
  13144. image: {
  13145. source: "./media/characters/matvei/back.svg",
  13146. extra: 434/427,
  13147. bottom: 11/445
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(1.85, "meters"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(5 + 9 / 12, "feet"),
  13164. weight: math.unit(70, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/quincy/front.svg",
  13168. extra: 3041 / 2751
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(5 + 9 / 12, "feet"),
  13173. weight: math.unit(70, "lb"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/quincy/back.svg",
  13177. extra: 3041 / 2751
  13178. }
  13179. },
  13180. flying: {
  13181. height: math.unit(5 + 4 / 12, "feet"),
  13182. weight: math.unit(70, "lb"),
  13183. name: "Flying",
  13184. image: {
  13185. source: "./media/characters/quincy/flying.svg",
  13186. extra: 1044 / 930
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(3, "cm")
  13194. },
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(5 + 9 / 12, "feet")
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(200, "meters"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(1000, "meters")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(3 + 11/12, "feet"),
  13215. weight: math.unit(50, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/vanrel/front.svg",
  13219. extra: 1104/949,
  13220. bottom: 52/1156
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(3 + 11/12, "feet"),
  13225. weight: math.unit(50, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/vanrel/back.svg",
  13229. extra: 1119/976,
  13230. bottom: 37/1156
  13231. }
  13232. },
  13233. tome: {
  13234. height: math.unit(1.35, "feet"),
  13235. weight: math.unit(10, "lb"),
  13236. name: "Vanrel's Tome",
  13237. rename: true,
  13238. image: {
  13239. source: "./media/characters/vanrel/tome.svg"
  13240. }
  13241. },
  13242. beans: {
  13243. height: math.unit(0.89, "feet"),
  13244. name: "Beans",
  13245. image: {
  13246. source: "./media/characters/vanrel/beans.svg"
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(3 + 11/12, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(7 + 5 / 12, "feet"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/kuiper-vanrel/front.svg",
  13266. extra: 1219/1169,
  13267. bottom: 69/1288
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(7 + 5 / 12, "feet"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/kuiper-vanrel/back.svg",
  13275. extra: 1236/1193,
  13276. bottom: 27/1263
  13277. }
  13278. },
  13279. foot: {
  13280. height: math.unit(0.55, "meters"),
  13281. name: "Foot",
  13282. image: {
  13283. source: "./media/characters/kuiper-vanrel/foot.svg",
  13284. }
  13285. },
  13286. battle: {
  13287. height: math.unit(6.824, "feet"),
  13288. name: "Battle",
  13289. image: {
  13290. source: "./media/characters/kuiper-vanrel/battle.svg",
  13291. extra: 1466 / 1327,
  13292. bottom: 29 / 1492.5
  13293. }
  13294. },
  13295. meerkui: {
  13296. height: math.unit(18, "inches"),
  13297. name: "Meerkui",
  13298. image: {
  13299. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13300. extra: 1354/1289,
  13301. bottom: 69/1423
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(7 + 5 / 12, "feet"),
  13309. default: true
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(8 + 5 / 12, "feet"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/keset-vanrel/front.svg",
  13321. extra: 1231/1148,
  13322. bottom: 82/1313
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(8 + 5 / 12, "feet"),
  13327. name: "Back",
  13328. image: {
  13329. source: "./media/characters/keset-vanrel/back.svg",
  13330. extra: 1240/1174,
  13331. bottom: 33/1273
  13332. }
  13333. },
  13334. hand: {
  13335. height: math.unit(0.6, "meters"),
  13336. name: "Hand",
  13337. image: {
  13338. source: "./media/characters/keset-vanrel/hand.svg"
  13339. }
  13340. },
  13341. foot: {
  13342. height: math.unit(0.94978, "meters"),
  13343. name: "Foot",
  13344. image: {
  13345. source: "./media/characters/keset-vanrel/foot.svg"
  13346. }
  13347. },
  13348. battle: {
  13349. height: math.unit(7.408, "feet"),
  13350. name: "Battle",
  13351. image: {
  13352. source: "./media/characters/keset-vanrel/battle.svg",
  13353. extra: 1890 / 1386,
  13354. bottom: 73.28 / 1970
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(8 + 5 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/neos/front.svg",
  13375. extra: 1696 / 992,
  13376. bottom: 0.14
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Normal",
  13383. height: math.unit(54, "cm"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(100, "m")
  13389. },
  13390. {
  13391. name: "Megamacro",
  13392. height: math.unit(10, "km")
  13393. },
  13394. {
  13395. name: "Megamacro+",
  13396. height: math.unit(100, "km")
  13397. },
  13398. {
  13399. name: "Gigamacro",
  13400. height: math.unit(100, "Mm")
  13401. },
  13402. {
  13403. name: "Teramacro",
  13404. height: math.unit(100, "Gm")
  13405. },
  13406. {
  13407. name: "Examacro",
  13408. height: math.unit(100, "Em")
  13409. },
  13410. {
  13411. name: "Godly",
  13412. height: math.unit(10000, "Ym")
  13413. },
  13414. {
  13415. name: "Beyond Godly",
  13416. height: math.unit(25, "multiverses")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13422. {
  13423. feminine: {
  13424. height: math.unit(5, "feet"),
  13425. weight: math.unit(100, "lb"),
  13426. name: "Feminine",
  13427. image: {
  13428. source: "./media/characters/sammy-mouse/feminine.svg",
  13429. extra: 2526 / 2425,
  13430. bottom: 0.123
  13431. }
  13432. },
  13433. masculine: {
  13434. height: math.unit(5, "feet"),
  13435. weight: math.unit(100, "lb"),
  13436. name: "Masculine",
  13437. image: {
  13438. source: "./media/characters/sammy-mouse/masculine.svg",
  13439. extra: 2526 / 2425,
  13440. bottom: 0.123
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Micro",
  13447. height: math.unit(5, "inches")
  13448. },
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(5, "feet"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(60, "feet")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(4, "feet"),
  13465. weight: math.unit(50, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/kole/front.svg",
  13469. extra: 1423 / 1303,
  13470. bottom: 0.025
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(4, "feet"),
  13475. weight: math.unit(50, "lb"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/kole/back.svg",
  13479. extra: 1426 / 1280,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(4, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(2.5, "feet"),
  13497. weight: math.unit(32, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/rufran/front.svg",
  13501. extra: 1313/885,
  13502. bottom: 94/1407
  13503. }
  13504. },
  13505. side: {
  13506. height: math.unit(2.5, "feet"),
  13507. weight: math.unit(32, "lb"),
  13508. name: "Side",
  13509. image: {
  13510. source: "./media/characters/rufran/side.svg",
  13511. extra: 1109/852,
  13512. bottom: 118/1227
  13513. }
  13514. },
  13515. back: {
  13516. height: math.unit(2.5, "feet"),
  13517. weight: math.unit(32, "lb"),
  13518. name: "Back",
  13519. image: {
  13520. source: "./media/characters/rufran/back.svg",
  13521. extra: 1280/878,
  13522. bottom: 131/1411
  13523. }
  13524. },
  13525. mouth: {
  13526. height: math.unit(1.13, "feet"),
  13527. name: "Mouth",
  13528. image: {
  13529. source: "./media/characters/rufran/mouth.svg"
  13530. }
  13531. },
  13532. foot: {
  13533. height: math.unit(1.33, "feet"),
  13534. name: "Foot",
  13535. image: {
  13536. source: "./media/characters/rufran/foot.svg"
  13537. }
  13538. },
  13539. koboldFront: {
  13540. height: math.unit(2 + 6 / 12, "feet"),
  13541. weight: math.unit(20, "lb"),
  13542. name: "Front (Kobold)",
  13543. image: {
  13544. source: "./media/characters/rufran/kobold-front.svg",
  13545. extra: 2041 / 1839,
  13546. bottom: 0.055
  13547. }
  13548. },
  13549. koboldBack: {
  13550. height: math.unit(2 + 6 / 12, "feet"),
  13551. weight: math.unit(20, "lb"),
  13552. name: "Back (Kobold)",
  13553. image: {
  13554. source: "./media/characters/rufran/kobold-back.svg",
  13555. extra: 2054 / 1839,
  13556. bottom: 0.01
  13557. }
  13558. },
  13559. koboldHand: {
  13560. height: math.unit(0.2166, "meters"),
  13561. name: "Hand (Kobold)",
  13562. image: {
  13563. source: "./media/characters/rufran/kobold-hand.svg"
  13564. }
  13565. },
  13566. koboldFoot: {
  13567. height: math.unit(0.185, "meters"),
  13568. name: "Foot (Kobold)",
  13569. image: {
  13570. source: "./media/characters/rufran/kobold-foot.svg"
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "inch")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(2 + 6 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Big",
  13586. height: math.unit(60, "feet")
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(325, "feet")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(0.3, "meters"),
  13599. weight: math.unit(3.5, "kg"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/chip/front.svg",
  13603. extra: 748 / 674
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Micro",
  13610. height: math.unit(1, "inch"),
  13611. default: true
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13617. {
  13618. side: {
  13619. height: math.unit(2.3, "meters"),
  13620. weight: math.unit(3500, "lb"),
  13621. name: "Side",
  13622. image: {
  13623. source: "./media/characters/torvid/side.svg",
  13624. extra: 1972 / 722,
  13625. bottom: 0.035
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(2.3, "meters"),
  13633. default: true
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(2, "meters"),
  13642. weight: math.unit(150.5, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/susan/front.svg",
  13646. extra: 693 / 635,
  13647. bottom: 0.05
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(505, "miles"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(6, "feet"),
  13664. weight: math.unit(150, "lb"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/raindrops/front.svg",
  13668. extra: 2655 / 2461,
  13669. bottom: 49 / 2705
  13670. }
  13671. },
  13672. back: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Back",
  13676. image: {
  13677. source: "./media/characters/raindrops/back.svg",
  13678. extra: 2574 / 2400,
  13679. bottom: 65 / 2634
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(6, "inches")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(6 + 2 / 12, "feet")
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(131, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(15, "miles")
  13700. },
  13701. {
  13702. name: "Gigamacro",
  13703. height: math.unit(4000, "miles")
  13704. },
  13705. {
  13706. name: "Teramacro",
  13707. height: math.unit(315000, "miles")
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(2.794, "meters"),
  13716. weight: math.unit(325, "kg"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/tezwa/front.svg",
  13720. extra: 2083 / 1906,
  13721. bottom: 0.031
  13722. }
  13723. },
  13724. foot: {
  13725. height: math.unit(0.687, "meters"),
  13726. name: "Foot",
  13727. image: {
  13728. source: "./media/characters/tezwa/foot.svg"
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(9 + 2 / 12, "feet"),
  13736. default: true
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(58, "feet"),
  13745. weight: math.unit(89000, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/typhus/front.svg",
  13749. extra: 816 / 800,
  13750. bottom: 0.065
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(58, "feet"),
  13758. default: true
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(12, "feet"),
  13767. weight: math.unit(6, "tonnes"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/lyra-von-wulf/front.svg",
  13771. extra: 1,
  13772. bottom: 0.10
  13773. }
  13774. },
  13775. frontMecha: {
  13776. height: math.unit(12, "feet"),
  13777. weight: math.unit(12, "tonnes"),
  13778. name: "Front (Mecha)",
  13779. image: {
  13780. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13781. extra: 1,
  13782. bottom: 0.042
  13783. }
  13784. },
  13785. maw: {
  13786. height: math.unit(2.2, "feet"),
  13787. name: "Maw",
  13788. image: {
  13789. source: "./media/characters/lyra-von-wulf/maw.svg"
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Classic",
  13801. height: math.unit(50, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(500, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro",
  13809. height: math.unit(1, "mile")
  13810. },
  13811. {
  13812. name: "Gigamacro",
  13813. height: math.unit(400, "miles")
  13814. },
  13815. {
  13816. name: "Teramacro",
  13817. height: math.unit(22000, "miles")
  13818. },
  13819. {
  13820. name: "Solarmacro",
  13821. height: math.unit(8600000, "miles")
  13822. },
  13823. {
  13824. name: "Galactic",
  13825. height: math.unit(1057000, "lightyears")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6 + 10 / 12, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/dixon/front.svg",
  13838. extra: 3361 / 3209,
  13839. bottom: 0.01
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6 + 10 / 12, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Big",
  13851. height: math.unit(12, "meters")
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(500, "meters")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(2, "km")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(185, "cm"),
  13868. weight: math.unit(68, "kg"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/kauko/front.svg",
  13872. extra: 1455 / 1421,
  13873. bottom: 0.03
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(185, "cm"),
  13878. weight: math.unit(68, "kg"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/kauko/back.svg",
  13882. extra: 1455 / 1421,
  13883. bottom: 0.004
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(185, "cm"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13897. {
  13898. frontSfw: {
  13899. height: math.unit(5, "meters"),
  13900. weight: math.unit(4250, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/varg/front-sfw.svg",
  13904. extra: 1103/1010,
  13905. bottom: 50/1153
  13906. },
  13907. form: "anthro",
  13908. default: true
  13909. },
  13910. backSfw: {
  13911. height: math.unit(5, "meters"),
  13912. weight: math.unit(4250, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/varg/back-sfw.svg",
  13916. extra: 1038/1022,
  13917. bottom: 36/1074
  13918. },
  13919. form: "anthro"
  13920. },
  13921. frontNsfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(4250, "lb"),
  13924. name: "Front (NSFW)",
  13925. image: {
  13926. source: "./media/characters/varg/front-nsfw.svg",
  13927. extra: 1103/1010,
  13928. bottom: 50/1153
  13929. },
  13930. form: "anthro"
  13931. },
  13932. sheath: {
  13933. height: math.unit(3.8, "feet"),
  13934. weight: math.unit(90, "kilograms"),
  13935. name: "Sheath",
  13936. image: {
  13937. source: "./media/characters/varg/sheath.svg"
  13938. },
  13939. form: "anthro"
  13940. },
  13941. dick: {
  13942. height: math.unit(4.6, "feet"),
  13943. weight: math.unit(451, "kilograms"),
  13944. name: "Dick",
  13945. image: {
  13946. source: "./media/characters/varg/dick.svg"
  13947. },
  13948. form: "anthro"
  13949. },
  13950. feralSfw: {
  13951. height: math.unit(5, "meters"),
  13952. weight: math.unit(100000, "lb"),
  13953. name: "Side",
  13954. image: {
  13955. source: "./media/characters/varg/feral-sfw.svg",
  13956. extra: 1065/511,
  13957. bottom: 211/1276
  13958. },
  13959. form: "feral",
  13960. default: true
  13961. },
  13962. feralNsfw: {
  13963. height: math.unit(5, "meters"),
  13964. weight: math.unit(100000, "lb"),
  13965. name: "Side (NSFW)",
  13966. image: {
  13967. source: "./media/characters/varg/feral-nsfw.svg",
  13968. extra: 1065/511,
  13969. bottom: 211/1276
  13970. },
  13971. form: "feral",
  13972. },
  13973. feralSheath: {
  13974. height: math.unit(9.8, "feet"),
  13975. weight: math.unit(2000, "kilograms"),
  13976. name: "Sheath",
  13977. image: {
  13978. source: "./media/characters/varg/sheath.svg"
  13979. },
  13980. form: "feral"
  13981. },
  13982. feralDick: {
  13983. height: math.unit(13.11, "feet"),
  13984. weight: math.unit(10440, "kilograms"),
  13985. name: "Dick",
  13986. image: {
  13987. source: "./media/characters/varg/dick.svg"
  13988. },
  13989. form: "feral"
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(5, "meters"),
  13996. form: "anthro"
  13997. },
  13998. {
  13999. name: "Macro",
  14000. height: math.unit(200, "meters"),
  14001. form: "anthro"
  14002. },
  14003. {
  14004. name: "Megamacro",
  14005. height: math.unit(20, "kilometers"),
  14006. form: "anthro"
  14007. },
  14008. {
  14009. name: "True Size",
  14010. height: math.unit(211, "km"),
  14011. form: "anthro",
  14012. default: true
  14013. },
  14014. {
  14015. name: "Gigamacro",
  14016. height: math.unit(1000, "km"),
  14017. form: "anthro"
  14018. },
  14019. {
  14020. name: "Gigamacro+",
  14021. height: math.unit(8000, "km"),
  14022. form: "anthro"
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(1000000, "km"),
  14027. form: "anthro"
  14028. },
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(5, "meters"),
  14032. form: "feral"
  14033. },
  14034. {
  14035. name: "Macro",
  14036. height: math.unit(200, "meters"),
  14037. form: "feral"
  14038. },
  14039. {
  14040. name: "Megamacro",
  14041. height: math.unit(20, "kilometers"),
  14042. form: "feral"
  14043. },
  14044. {
  14045. name: "True Size",
  14046. height: math.unit(211, "km"),
  14047. form: "feral",
  14048. default: true
  14049. },
  14050. {
  14051. name: "Gigamacro",
  14052. height: math.unit(1000, "km"),
  14053. form: "feral"
  14054. },
  14055. {
  14056. name: "Gigamacro+",
  14057. height: math.unit(8000, "km"),
  14058. form: "feral"
  14059. },
  14060. {
  14061. name: "Teramacro",
  14062. height: math.unit(1000000, "km"),
  14063. form: "feral"
  14064. },
  14065. ],
  14066. {
  14067. "anthro": {
  14068. name: "Anthro",
  14069. default: true
  14070. },
  14071. "feral": {
  14072. name: "Feral",
  14073. },
  14074. }
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(7 + 7 / 12, "feet"),
  14081. weight: math.unit(267, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/dayza/front.svg",
  14085. extra: 1262 / 1200,
  14086. bottom: 0.035
  14087. }
  14088. },
  14089. side: {
  14090. height: math.unit(7 + 7 / 12, "feet"),
  14091. weight: math.unit(267, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/dayza/side.svg",
  14095. extra: 1295 / 1245,
  14096. bottom: 0.05
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(7 + 7 / 12, "feet"),
  14101. weight: math.unit(267, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/dayza/back.svg",
  14105. extra: 1241 / 1170
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(7 + 7 / 12, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(155, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6 + 5 / 12, "feet"),
  14126. weight: math.unit(160, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/xanthos/front.svg",
  14130. extra: 1,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(6 + 5 / 12, "feet"),
  14136. weight: math.unit(160, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/xanthos/back.svg",
  14140. extra: 1,
  14141. bottom: 0.03
  14142. }
  14143. },
  14144. hand: {
  14145. height: math.unit(0.928, "feet"),
  14146. name: "Hand",
  14147. image: {
  14148. source: "./media/characters/xanthos/hand.svg"
  14149. }
  14150. },
  14151. foot: {
  14152. height: math.unit(1.286, "feet"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/xanthos/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Normal+",
  14167. height: math.unit(6, "meters")
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(40, "feet")
  14172. },
  14173. {
  14174. name: "Macro+",
  14175. height: math.unit(200, "meters")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(20, "km")
  14180. },
  14181. {
  14182. name: "Megamacro+",
  14183. height: math.unit(100, "km")
  14184. },
  14185. {
  14186. name: "Gigamacro",
  14187. height: math.unit(200, "megameters")
  14188. },
  14189. {
  14190. name: "Gigamacro+",
  14191. height: math.unit(1.5, "gigameters")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6 + 3 / 12, "feet"),
  14200. weight: math.unit(215, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/grynn/front.svg",
  14204. extra: 4627 / 4209,
  14205. bottom: 0.047
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Micro",
  14212. height: math.unit(6, "inches")
  14213. },
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(6 + 3 / 12, "feet"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Big",
  14221. height: math.unit(104, "feet")
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(944, "feet")
  14226. },
  14227. {
  14228. name: "Macro+",
  14229. height: math.unit(9480, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(78752, "feet")
  14234. },
  14235. {
  14236. name: "Megamacro+",
  14237. height: math.unit(630128, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro++",
  14241. height: math.unit(3150695, "feet")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(7 + 5 / 12, "feet"),
  14250. weight: math.unit(450, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/mocha-aura/front.svg",
  14254. extra: 1907 / 1817,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. back: {
  14259. height: math.unit(7 + 5 / 12, "feet"),
  14260. weight: math.unit(450, "lb"),
  14261. name: "Back",
  14262. image: {
  14263. source: "./media/characters/mocha-aura/back.svg",
  14264. extra: 1900 / 1825,
  14265. bottom: 0.045
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Nano",
  14272. height: math.unit(1, "nm")
  14273. },
  14274. {
  14275. name: "Megamicro",
  14276. height: math.unit(1, "mm")
  14277. },
  14278. {
  14279. name: "Micro",
  14280. height: math.unit(3, "inches")
  14281. },
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(7 + 5 / 12, "feet"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(30, "feet")
  14290. },
  14291. {
  14292. name: "Megamacro",
  14293. height: math.unit(3500, "feet")
  14294. },
  14295. {
  14296. name: "Teramacro",
  14297. height: math.unit(500000, "miles")
  14298. },
  14299. {
  14300. name: "Petamacro",
  14301. height: math.unit(50000000000000000, "parsecs")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/ilisha-devya/front.svg",
  14314. extra: 1053/1049,
  14315. bottom: 270/1323
  14316. }
  14317. },
  14318. back: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Back",
  14322. image: {
  14323. source: "./media/characters/ilisha-devya/back.svg",
  14324. extra: 1131/1128,
  14325. bottom: 39/1170
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(500, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(10, "miles")
  14338. },
  14339. {
  14340. name: "Gigamacro",
  14341. height: math.unit(100000, "miles")
  14342. },
  14343. {
  14344. name: "Examacro",
  14345. height: math.unit(1e9, "lightyears")
  14346. },
  14347. {
  14348. name: "Omniversal",
  14349. height: math.unit(1e33, "lightyears")
  14350. },
  14351. {
  14352. name: "Beyond Infinite",
  14353. height: math.unit(1e100, "lightyears")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14359. {
  14360. Side: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/mira/side.svg",
  14366. extra: 900 / 799,
  14367. bottom: 0.02
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Human Size",
  14374. height: math.unit(6, "feet")
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(100, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(10, "miles")
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(25000, "miles")
  14388. },
  14389. {
  14390. name: "Teramacro",
  14391. height: math.unit(300, "AU")
  14392. },
  14393. {
  14394. name: "Full Size",
  14395. height: math.unit(4.5e10, "lightyears")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/holly/front.svg",
  14408. extra: 639 / 606
  14409. }
  14410. },
  14411. back: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Back",
  14415. image: {
  14416. source: "./media/characters/holly/back.svg",
  14417. extra: 623 / 598
  14418. }
  14419. },
  14420. frontWorking: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(150, "lb"),
  14423. name: "Front (Working)",
  14424. image: {
  14425. source: "./media/characters/holly/front-working.svg",
  14426. extra: 607 / 577,
  14427. bottom: 0.048
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Normal",
  14434. height: math.unit(12 + 3 / 12, "feet"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/porter/front.svg",
  14448. extra: 1,
  14449. bottom: 0.01
  14450. }
  14451. },
  14452. frontRobes: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front (Robes)",
  14456. image: {
  14457. source: "./media/characters/porter/front-robes.svg",
  14458. extra: 1.01,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(11 + 9 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14473. {
  14474. legendary: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Legendary",
  14478. image: {
  14479. source: "./media/characters/lucy/legendary.svg",
  14480. extra: 1355 / 1100,
  14481. bottom: 0.045
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Legendary",
  14488. height: math.unit(86882 * 2, "miles"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(6, "feet"),
  14498. weight: math.unit(150, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/drusilla/front.svg",
  14502. extra: 678 / 635,
  14503. bottom: 0.03
  14504. }
  14505. },
  14506. back: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Back",
  14510. image: {
  14511. source: "./media/characters/drusilla/back.svg",
  14512. extra: 678 / 635,
  14513. bottom: 0.005
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Macro",
  14520. height: math.unit(100, "feet")
  14521. },
  14522. {
  14523. name: "Canon Height",
  14524. height: math.unit(2000, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(180, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/renard-thatch/front.svg",
  14538. extra: 2411 / 2275,
  14539. bottom: 0.01
  14540. }
  14541. },
  14542. frontPosing: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(180, "lb"),
  14545. name: "Front (Posing)",
  14546. image: {
  14547. source: "./media/characters/renard-thatch/front-posing.svg",
  14548. extra: 2381 / 2261,
  14549. bottom: 0.01
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(180, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/renard-thatch/back.svg",
  14558. extra: 2428 / 2288
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "inches")
  14566. },
  14567. {
  14568. name: "Default",
  14569. height: math.unit(6, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(75, "feet")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(1450, "feet"),
  14583. weight: math.unit(1.21e6, "tons"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/sekvra/front.svg",
  14587. extra: 1193/1190,
  14588. bottom: 78/1271
  14589. }
  14590. },
  14591. side: {
  14592. height: math.unit(1450, "feet"),
  14593. weight: math.unit(1.21e6, "tons"),
  14594. name: "Side",
  14595. image: {
  14596. source: "./media/characters/sekvra/side.svg",
  14597. extra: 1193/1190,
  14598. bottom: 52/1245
  14599. }
  14600. },
  14601. back: {
  14602. height: math.unit(1450, "feet"),
  14603. weight: math.unit(1.21e6, "tons"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/sekvra/back.svg",
  14607. extra: 1219/1216,
  14608. bottom: 21/1240
  14609. }
  14610. },
  14611. frontClothed: {
  14612. height: math.unit(1450, "feet"),
  14613. weight: math.unit(1.21e6, "tons"),
  14614. name: "Front (Clothed)",
  14615. image: {
  14616. source: "./media/characters/sekvra/front-clothed.svg",
  14617. extra: 1192/1189,
  14618. bottom: 79/1271
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(1450, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Megamacro",
  14630. height: math.unit(15000, "feet")
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/carmine/front.svg",
  14643. extra: 1,
  14644. bottom: 0.035
  14645. }
  14646. },
  14647. frontArmor: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front (Armor)",
  14651. image: {
  14652. source: "./media/characters/carmine/front-armor.svg",
  14653. extra: 1,
  14654. bottom: 0.035
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Large",
  14661. height: math.unit(1, "mile")
  14662. },
  14663. {
  14664. name: "Huge",
  14665. height: math.unit(40, "miles"),
  14666. default: true
  14667. },
  14668. {
  14669. name: "Colossal",
  14670. height: math.unit(2500, "miles")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(150, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/elyssia/front.svg",
  14683. extra: 2201 / 2035,
  14684. bottom: 0.05
  14685. }
  14686. },
  14687. frontClothed: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front (Clothed)",
  14691. image: {
  14692. source: "./media/characters/elyssia/front-clothed.svg",
  14693. extra: 2201 / 2035,
  14694. bottom: 0.05
  14695. }
  14696. },
  14697. back: {
  14698. height: math.unit(6, "feet"),
  14699. weight: math.unit(150, "lb"),
  14700. name: "Back",
  14701. image: {
  14702. source: "./media/characters/elyssia/back.svg",
  14703. extra: 2201 / 2035,
  14704. bottom: 0.013
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Smaller",
  14711. height: math.unit(150, "feet")
  14712. },
  14713. {
  14714. name: "Standard",
  14715. height: math.unit(1400, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Distracted",
  14720. height: math.unit(15000, "feet")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(690, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/geno-maxwell/front.svg",
  14733. extra: 984/856,
  14734. bottom: 87/1071
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(7 + 4/12, "feet"),
  14739. weight: math.unit(690, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/geno-maxwell/back.svg",
  14743. extra: 981/854,
  14744. bottom: 57/1038
  14745. }
  14746. },
  14747. frontCostume: {
  14748. height: math.unit(7 + 4/12, "feet"),
  14749. weight: math.unit(690, "lb"),
  14750. name: "Front (Costume)",
  14751. image: {
  14752. source: "./media/characters/geno-maxwell/front-costume.svg",
  14753. extra: 984/856,
  14754. bottom: 87/1071
  14755. }
  14756. },
  14757. backcostume: {
  14758. height: math.unit(7 + 4/12, "feet"),
  14759. weight: math.unit(690, "lb"),
  14760. name: "Back (Costume)",
  14761. image: {
  14762. source: "./media/characters/geno-maxwell/back-costume.svg",
  14763. extra: 981/854,
  14764. bottom: 57/1038
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(3, "inches")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(7 + 4 / 12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(220, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(11, "miles")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(7 + 4/12, "feet"),
  14793. weight: math.unit(750, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/regena-maxwell/front.svg",
  14797. extra: 984/856,
  14798. bottom: 87/1071
  14799. }
  14800. },
  14801. back: {
  14802. height: math.unit(7 + 4/12, "feet"),
  14803. weight: math.unit(750, "lb"),
  14804. name: "Back",
  14805. image: {
  14806. source: "./media/characters/regena-maxwell/back.svg",
  14807. extra: 981/854,
  14808. bottom: 57/1038
  14809. }
  14810. },
  14811. frontCostume: {
  14812. height: math.unit(7 + 4/12, "feet"),
  14813. weight: math.unit(750, "lb"),
  14814. name: "Front (Costume)",
  14815. image: {
  14816. source: "./media/characters/regena-maxwell/front-costume.svg",
  14817. extra: 984/856,
  14818. bottom: 87/1071
  14819. }
  14820. },
  14821. backcostume: {
  14822. height: math.unit(7 + 4/12, "feet"),
  14823. weight: math.unit(750, "lb"),
  14824. name: "Back (Costume)",
  14825. image: {
  14826. source: "./media/characters/regena-maxwell/back-costume.svg",
  14827. extra: 981/854,
  14828. bottom: 57/1038
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(7 + 4 / 12, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(220, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(11, "miles")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14857. extra: 860 / 690,
  14858. bottom: 0.03
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(1.7, "meters"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/quilly/front.svg",
  14879. extra: 890 / 776
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Gigamacro",
  14886. height: math.unit(404090, "miles"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(7 + 8 / 12, "feet"),
  14896. weight: math.unit(350, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/tempest/front.svg",
  14900. extra: 1175 / 1086,
  14901. bottom: 0.02
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(7 + 8 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14915. {
  14916. side: {
  14917. height: math.unit(4 + 5 / 12, "feet"),
  14918. weight: math.unit(80, "lb"),
  14919. name: "Side",
  14920. image: {
  14921. source: "./media/characters/rodger/side.svg",
  14922. extra: 1235 / 1118
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Micro",
  14929. height: math.unit(1, "inch")
  14930. },
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(4 + 5 / 12, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(120, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/danyel/front.svg",
  14951. extra: 1185 / 1123,
  14952. bottom: 0.05
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Shrunken",
  14959. height: math.unit(0.5, "mm")
  14960. },
  14961. {
  14962. name: "Micro",
  14963. height: math.unit(1, "mm"),
  14964. default: true
  14965. },
  14966. {
  14967. name: "Upsized",
  14968. height: math.unit(5 + 5 / 12, "feet")
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 6 / 12, "feet"),
  14977. weight: math.unit(200, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/vivian-bijoux/front.svg",
  14981. extra: 1217/1209,
  14982. bottom: 76/1293
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(5 + 6 / 12, "feet"),
  14987. weight: math.unit(200, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/vivian-bijoux/back.svg",
  14991. extra: 1214/1208,
  14992. bottom: 51/1265
  14993. }
  14994. },
  14995. dressed: {
  14996. height: math.unit(5 + 6 / 12, "feet"),
  14997. weight: math.unit(200, "lb"),
  14998. name: "Dressed",
  14999. image: {
  15000. source: "./media/characters/vivian-bijoux/dressed.svg",
  15001. extra: 1217/1209,
  15002. bottom: 76/1293
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 6 / 12, "feet"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Bad Dream",
  15014. height: math.unit(500, "feet")
  15015. },
  15016. {
  15017. name: "Nightmare",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6 + 1 / 12, "feet"),
  15027. weight: math.unit(260, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/zeta/front.svg",
  15031. extra: 1968 / 1889,
  15032. bottom: 0.06
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6 + 1 / 12, "feet"),
  15037. weight: math.unit(260, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/zeta/back.svg",
  15041. extra: 1944 / 1858,
  15042. bottom: 0.03
  15043. }
  15044. },
  15045. hand: {
  15046. height: math.unit(1.112, "feet"),
  15047. name: "Hand",
  15048. image: {
  15049. source: "./media/characters/zeta/hand.svg"
  15050. }
  15051. },
  15052. foot: {
  15053. height: math.unit(1.48, "feet"),
  15054. name: "Foot",
  15055. image: {
  15056. source: "./media/characters/zeta/foot.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Micro",
  15063. height: math.unit(6, "inches")
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(20, "feet")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(6, "feet"),
  15081. weight: math.unit(150, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/jamie-larsen/front.svg",
  15085. extra: 962 / 933,
  15086. bottom: 0.02
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/jamie-larsen/back.svg",
  15095. extra: 997 / 946
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(28 + 7 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro+",
  15107. height: math.unit(180, "feet")
  15108. },
  15109. {
  15110. name: "Megamacro",
  15111. height: math.unit(10, "miles")
  15112. },
  15113. {
  15114. name: "Gigamacro",
  15115. height: math.unit(200000, "miles")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(120, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/vance/front.svg",
  15128. extra: 1980 / 1890,
  15129. bottom: 0.09
  15130. }
  15131. },
  15132. back: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(120, "lb"),
  15135. name: "Back",
  15136. image: {
  15137. source: "./media/characters/vance/back.svg",
  15138. extra: 2081 / 1994,
  15139. bottom: 0.014
  15140. }
  15141. },
  15142. hand: {
  15143. height: math.unit(0.88, "feet"),
  15144. name: "Hand",
  15145. image: {
  15146. source: "./media/characters/vance/hand.svg"
  15147. }
  15148. },
  15149. foot: {
  15150. height: math.unit(0.64, "feet"),
  15151. name: "Foot",
  15152. image: {
  15153. source: "./media/characters/vance/foot.svg"
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Small",
  15160. height: math.unit(90, "feet"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(100, "meters")
  15166. },
  15167. {
  15168. name: "Megamacro",
  15169. height: math.unit(15, "miles")
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(180, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/xochitl/front.svg",
  15182. extra: 2297 / 2261,
  15183. bottom: 0.065
  15184. }
  15185. },
  15186. back: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(180, "lb"),
  15189. name: "Back",
  15190. image: {
  15191. source: "./media/characters/xochitl/back.svg",
  15192. extra: 2386 / 2354,
  15193. bottom: 0.01
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(6 / 5 * 1.15, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Foot",
  15200. image: {
  15201. source: "./media/characters/xochitl/foot.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(80, "feet")
  15209. },
  15210. {
  15211. name: "Macro+",
  15212. height: math.unit(400, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Gigamacro",
  15217. height: math.unit(80000, "miles")
  15218. },
  15219. {
  15220. name: "Gigamacro+",
  15221. height: math.unit(400000, "miles")
  15222. },
  15223. {
  15224. name: "Teramacro",
  15225. height: math.unit(300, "AU")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/vincent/front.svg",
  15238. extra: 1130 / 1080,
  15239. bottom: 0.055
  15240. }
  15241. },
  15242. beak: {
  15243. height: math.unit(6 * 0.1, "feet"),
  15244. name: "Beak",
  15245. image: {
  15246. source: "./media/characters/vincent/beak.svg"
  15247. }
  15248. },
  15249. hand: {
  15250. height: math.unit(6 * 0.85, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Hand",
  15253. image: {
  15254. source: "./media/characters/vincent/hand.svg"
  15255. }
  15256. },
  15257. foot: {
  15258. height: math.unit(6 * 0.19, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Foot",
  15261. image: {
  15262. source: "./media/characters/vincent/foot.svg"
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Base",
  15269. height: math.unit(6 + 5 / 12, "feet"),
  15270. default: true
  15271. },
  15272. {
  15273. name: "Macro",
  15274. height: math.unit(300, "feet")
  15275. },
  15276. {
  15277. name: "Megamacro",
  15278. height: math.unit(2, "miles")
  15279. },
  15280. {
  15281. name: "Gigamacro",
  15282. height: math.unit(1000, "miles")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(2, "meters"),
  15291. weight: math.unit(500, "kg"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/coatl/front.svg",
  15295. extra: 3948 / 3500,
  15296. bottom: 0.082
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Normal",
  15303. height: math.unit(4, "meters")
  15304. },
  15305. {
  15306. name: "Macro",
  15307. height: math.unit(100, "meters"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macro+",
  15312. height: math.unit(300, "meters")
  15313. },
  15314. {
  15315. name: "Megamacro",
  15316. height: math.unit(3, "gigameters")
  15317. },
  15318. {
  15319. name: "Megamacro+",
  15320. height: math.unit(300, "terameters")
  15321. },
  15322. {
  15323. name: "Megamacro++",
  15324. height: math.unit(3, "lightyears")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(50, "kg"),
  15334. name: "front",
  15335. image: {
  15336. source: "./media/characters/shiroryu/front.svg",
  15337. extra: 1990 / 1935
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Mortal Mingling",
  15344. height: math.unit(3, "meters")
  15345. },
  15346. {
  15347. name: "Kaiju-ish",
  15348. height: math.unit(250, "meters")
  15349. },
  15350. {
  15351. name: "Somewhat Godly",
  15352. height: math.unit(400, "km"),
  15353. default: true
  15354. },
  15355. {
  15356. name: "Planetary",
  15357. height: math.unit(300, "megameters")
  15358. },
  15359. {
  15360. name: "Galaxy-dwarfing",
  15361. height: math.unit(450, "kiloparsecs")
  15362. },
  15363. {
  15364. name: "Universe Eater",
  15365. height: math.unit(150, "gigaparsecs")
  15366. },
  15367. {
  15368. name: "Almost Immeasurable",
  15369. height: math.unit(1.3e266, "yottaparsecs")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/umeko/front.svg",
  15382. extra: 1,
  15383. bottom: 0.019
  15384. }
  15385. },
  15386. frontArmored: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front (Armored)",
  15390. image: {
  15391. source: "./media/characters/umeko/front-armored.svg",
  15392. extra: 1,
  15393. bottom: 0.021
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(220, "feet"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Guardian Dragon",
  15405. height: math.unit(50, "miles")
  15406. },
  15407. {
  15408. name: "Cosmic",
  15409. height: math.unit(800000, "miles")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/cassidy/front.svg",
  15422. extra: 810/808,
  15423. bottom: 41/851
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Canon Height",
  15430. height: math.unit(120, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro+",
  15435. height: math.unit(400, "feet")
  15436. },
  15437. {
  15438. name: "Macro++",
  15439. height: math.unit(4000, "feet")
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(3, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/isaac/front.svg",
  15456. extra: 896 / 815,
  15457. bottom: 0.11
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Human Size",
  15464. height: math.unit(8, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(400, "feet")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(50, "miles")
  15474. },
  15475. {
  15476. name: "Canon Height",
  15477. height: math.unit(200, "AU")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(72, "kg"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/sleekit/front.svg",
  15490. extra: 4693 / 4487,
  15491. bottom: 0.012
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Minimum Height",
  15498. height: math.unit(10, "meters")
  15499. },
  15500. {
  15501. name: "Smaller",
  15502. height: math.unit(25, "meters")
  15503. },
  15504. {
  15505. name: "Larger",
  15506. height: math.unit(38, "meters"),
  15507. default: true
  15508. },
  15509. {
  15510. name: "Maximum height",
  15511. height: math.unit(100, "meters")
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(150, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/nillia/front.svg",
  15524. extra: 2195 / 2037,
  15525. bottom: 0.005
  15526. }
  15527. },
  15528. back: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Back",
  15532. image: {
  15533. source: "./media/characters/nillia/back.svg",
  15534. extra: 2195 / 2037,
  15535. bottom: 0.005
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Canon Height",
  15542. height: math.unit(489, "feet"),
  15543. default: true
  15544. }
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/mesmyriza/front.svg",
  15556. extra: 2067 / 1784,
  15557. bottom: 0.035
  15558. }
  15559. },
  15560. foot: {
  15561. height: math.unit(6 / (250 / 35), "feet"),
  15562. name: "Foot",
  15563. image: {
  15564. source: "./media/characters/mesmyriza/foot.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Macro",
  15571. height: math.unit(457, "meters"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(8, "megameters")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(250, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/saudade/front.svg",
  15589. extra: 1172 / 1139,
  15590. bottom: 0.035
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(3, "inches")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(50, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(2800, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 4 / 12, "feet"),
  15619. weight: math.unit(100, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/keireer/front.svg",
  15623. extra: 716 / 666,
  15624. bottom: 0.05
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 4 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5.5, "feet"),
  15641. weight: math.unit(90, "kg"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/mirja/front.svg",
  15645. extra: 1452/1262,
  15646. bottom: 67/1519
  15647. }
  15648. },
  15649. frontDressed: {
  15650. height: math.unit(5.5, "feet"),
  15651. weight: math.unit(90, "lb"),
  15652. name: "Front (Dressed)",
  15653. image: {
  15654. source: "./media/characters/mirja/dressed.svg",
  15655. extra: 1452/1262,
  15656. bottom: 67/1519
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(90, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/mirja/back.svg",
  15665. extra: 1892/1795,
  15666. bottom: 48/1940
  15667. }
  15668. },
  15669. maw: {
  15670. height: math.unit(1.312, "feet"),
  15671. name: "Maw",
  15672. image: {
  15673. source: "./media/characters/mirja/maw.svg"
  15674. }
  15675. },
  15676. paw: {
  15677. height: math.unit(1.15, "feet"),
  15678. name: "Paw",
  15679. image: {
  15680. source: "./media/characters/mirja/paw.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "\"Incognito\"",
  15687. height: math.unit(3, "meters")
  15688. },
  15689. {
  15690. name: "Strolling Size",
  15691. height: math.unit(15, "km")
  15692. },
  15693. {
  15694. name: "Larger Strolling Size",
  15695. height: math.unit(400, "km")
  15696. },
  15697. {
  15698. name: "Preferred Size",
  15699. height: math.unit(5000, "km"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "True Size",
  15704. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(15, "feet"),
  15713. weight: math.unit(880, "kg"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/nightraver/front.svg",
  15717. extra: 2444 / 2160,
  15718. bottom: 0.027
  15719. }
  15720. },
  15721. back: {
  15722. height: math.unit(15, "feet"),
  15723. weight: math.unit(880, "kg"),
  15724. name: "Back",
  15725. image: {
  15726. source: "./media/characters/nightraver/back.svg",
  15727. extra: 2309 / 2180,
  15728. bottom: 0.005
  15729. }
  15730. },
  15731. sole: {
  15732. height: math.unit(2.878, "feet"),
  15733. name: "Sole",
  15734. image: {
  15735. source: "./media/characters/nightraver/sole.svg"
  15736. }
  15737. },
  15738. foot: {
  15739. height: math.unit(2.285, "feet"),
  15740. name: "Foot",
  15741. image: {
  15742. source: "./media/characters/nightraver/foot.svg"
  15743. }
  15744. },
  15745. maw: {
  15746. height: math.unit(2.67, "feet"),
  15747. name: "Maw",
  15748. image: {
  15749. source: "./media/characters/nightraver/maw.svg"
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Micro",
  15756. height: math.unit(1, "cm")
  15757. },
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(15, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(300, "feet")
  15766. },
  15767. {
  15768. name: "Megamacro",
  15769. height: math.unit(300, "miles")
  15770. },
  15771. {
  15772. name: "Gigamacro",
  15773. height: math.unit(10000, "miles")
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15779. {
  15780. side: {
  15781. height: math.unit(2, "inches"),
  15782. weight: math.unit(5, "grams"),
  15783. name: "Side",
  15784. image: {
  15785. source: "./media/characters/arc/side.svg"
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Micro",
  15792. height: math.unit(2, "inches"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(1.1938, "meters"),
  15802. weight: math.unit(54, "kg"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/nebula-shahar/front.svg",
  15806. extra: 1642 / 1436,
  15807. bottom: 0.06
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Megamicro",
  15814. height: math.unit(0.3, "mm")
  15815. },
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(3, "cm")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(138, "cm"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(30, "m")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5.24, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/shayla/front.svg",
  15840. extra: 1512 / 1414,
  15841. bottom: 0.01
  15842. }
  15843. },
  15844. back: {
  15845. height: math.unit(5.24, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Back",
  15848. image: {
  15849. source: "./media/characters/shayla/back.svg",
  15850. extra: 1512 / 1414
  15851. }
  15852. },
  15853. hand: {
  15854. height: math.unit(0.7781496062992126, "feet"),
  15855. name: "Hand",
  15856. image: {
  15857. source: "./media/characters/shayla/hand.svg"
  15858. }
  15859. },
  15860. foot: {
  15861. height: math.unit(1.4206036745406823, "feet"),
  15862. name: "Foot",
  15863. image: {
  15864. source: "./media/characters/shayla/foot.svg"
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(0.32, "feet")
  15872. },
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(5.24, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(492.12, "feet")
  15881. },
  15882. {
  15883. name: "Megamacro",
  15884. height: math.unit(186.41, "miles")
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15890. {
  15891. front: {
  15892. height: math.unit(2.2, "m"),
  15893. weight: math.unit(120, "kg"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/pia-jr/front.svg",
  15897. extra: 1000 / 970,
  15898. bottom: 0.035
  15899. }
  15900. },
  15901. hand: {
  15902. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15903. name: "Hand",
  15904. image: {
  15905. source: "./media/characters/pia-jr/hand.svg"
  15906. }
  15907. },
  15908. paw: {
  15909. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15910. name: "Paw",
  15911. image: {
  15912. source: "./media/characters/pia-jr/paw.svg"
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Micro",
  15919. height: math.unit(1.2, "cm")
  15920. },
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(2.2, "m"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(180, "m")
  15929. },
  15930. {
  15931. name: "Megamacro",
  15932. height: math.unit(420, "km")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(2, "m"),
  15941. weight: math.unit(115, "kg"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/pia-sr/front.svg",
  15945. extra: 760 / 730,
  15946. bottom: 0.015
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(2, "m"),
  15951. weight: math.unit(115, "kg"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/pia-sr/back.svg",
  15955. extra: 760 / 730,
  15956. bottom: 0.01
  15957. }
  15958. },
  15959. hand: {
  15960. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15961. name: "Hand",
  15962. image: {
  15963. source: "./media/characters/pia-sr/hand.svg"
  15964. }
  15965. },
  15966. foot: {
  15967. height: math.unit(1.83, "feet"),
  15968. name: "Foot",
  15969. image: {
  15970. source: "./media/characters/pia-sr/foot.svg"
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Micro",
  15977. height: math.unit(88, "mm")
  15978. },
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(2, "m"),
  15982. default: true
  15983. },
  15984. {
  15985. name: "Macro",
  15986. height: math.unit(200, "m")
  15987. },
  15988. {
  15989. name: "Megamacro",
  15990. height: math.unit(420, "km")
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(8 + 2 / 12, "feet"),
  15999. weight: math.unit(300, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/kibibyte/front.svg",
  16003. extra: 2221 / 2098,
  16004. bottom: 0.04
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(8 + 2 / 12, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Socialable Macro",
  16016. height: math.unit(50, "feet")
  16017. },
  16018. {
  16019. name: "Macro",
  16020. height: math.unit(300, "feet")
  16021. },
  16022. {
  16023. name: "Megamacro",
  16024. height: math.unit(500, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/felix/front.svg",
  16037. extra: 762 / 722,
  16038. bottom: 0.02
  16039. }
  16040. },
  16041. frontClothed: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front (Clothed)",
  16045. image: {
  16046. source: "./media/characters/felix/front-clothed.svg",
  16047. extra: 762 / 722,
  16048. bottom: 0.02
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 8 / 12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(2600, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(450, "miles")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6 + 1 / 12, "feet"),
  16073. weight: math.unit(250, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/tobo/front.svg",
  16077. extra: 608 / 586,
  16078. bottom: 0.023
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(6 + 1 / 12, "feet"),
  16083. weight: math.unit(250, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/tobo/back.svg",
  16087. extra: 608 / 586
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Nano",
  16094. height: math.unit(2, "nm")
  16095. },
  16096. {
  16097. name: "Megamicro",
  16098. height: math.unit(0.1, "mm")
  16099. },
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(1, "inch"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Human-sized",
  16107. height: math.unit(6 + 1 / 12, "feet")
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(250, "feet")
  16112. },
  16113. {
  16114. name: "Megamacro",
  16115. height: math.unit(75, "miles")
  16116. },
  16117. {
  16118. name: "Texas-sized",
  16119. height: math.unit(750, "miles")
  16120. },
  16121. {
  16122. name: "Teramacro",
  16123. height: math.unit(50000, "miles")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(269, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/danny-kapowsky/front.svg",
  16136. extra: 766 / 736,
  16137. bottom: 0.044
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(6, "feet"),
  16142. weight: math.unit(269, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/danny-kapowsky/back.svg",
  16146. extra: 797 / 760,
  16147. bottom: 0.025
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(150, "feet"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Macro+",
  16159. height: math.unit(200, "feet")
  16160. },
  16161. {
  16162. name: "Macro++",
  16163. height: math.unit(300, "feet")
  16164. },
  16165. {
  16166. name: "Macro+++",
  16167. height: math.unit(400, "feet")
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16173. {
  16174. side: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(170, "lb"),
  16177. name: "Side",
  16178. image: {
  16179. source: "./media/characters/finn/side.svg",
  16180. extra: 1953 / 1807,
  16181. bottom: 0.057
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(14445, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(5 + 6 / 12, "feet"),
  16198. weight: math.unit(125, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/roy/front.svg",
  16202. extra: 1,
  16203. bottom: 0.11
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(3, "inches"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 6 / 12, "feet")
  16216. },
  16217. {
  16218. name: "Lesser Macro",
  16219. height: math.unit(60, "feet")
  16220. },
  16221. {
  16222. name: "Greater Macro",
  16223. height: math.unit(120, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6, "feet"),
  16232. weight: math.unit(100, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/aevsivs/front.svg",
  16236. extra: 1,
  16237. bottom: 0.03
  16238. }
  16239. },
  16240. back: {
  16241. height: math.unit(6, "feet"),
  16242. weight: math.unit(100, "lb"),
  16243. name: "Back",
  16244. image: {
  16245. source: "./media/characters/aevsivs/back.svg"
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Micro",
  16252. height: math.unit(2, "inches"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(5, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(5 + 7 / 12, "feet"),
  16266. weight: math.unit(159, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/hildegard/front.svg",
  16270. extra: 289 / 269,
  16271. bottom: 7.63 / 297.8
  16272. }
  16273. },
  16274. back: {
  16275. height: math.unit(5 + 7 / 12, "feet"),
  16276. weight: math.unit(159, "lb"),
  16277. name: "Back",
  16278. image: {
  16279. source: "./media/characters/hildegard/back.svg",
  16280. extra: 280 / 260,
  16281. bottom: 2.3 / 282
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(5 + 7 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16295. {
  16296. bernard: {
  16297. height: math.unit(2 + 7 / 12, "feet"),
  16298. weight: math.unit(66, "lb"),
  16299. name: "Bernard",
  16300. rename: true,
  16301. image: {
  16302. source: "./media/characters/bernard-wilder/bernard.svg",
  16303. extra: 192 / 128,
  16304. bottom: 0.05
  16305. }
  16306. },
  16307. wilder: {
  16308. height: math.unit(5 + 8 / 12, "feet"),
  16309. weight: math.unit(143, "lb"),
  16310. name: "Wilder",
  16311. rename: true,
  16312. image: {
  16313. source: "./media/characters/bernard-wilder/wilder.svg",
  16314. extra: 361 / 312,
  16315. bottom: 0.02
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(2 + 7 / 12, "feet"),
  16323. default: true
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16329. {
  16330. anthro: {
  16331. height: math.unit(6 + 1 / 12, "feet"),
  16332. weight: math.unit(155, "lb"),
  16333. name: "Anthro",
  16334. image: {
  16335. source: "./media/characters/hearth/anthro.svg",
  16336. extra: 1178/1136,
  16337. bottom: 28/1206
  16338. }
  16339. },
  16340. feral: {
  16341. height: math.unit(3.78, "feet"),
  16342. weight: math.unit(35, "kg"),
  16343. name: "Feral",
  16344. image: {
  16345. source: "./media/characters/hearth/feral.svg",
  16346. extra: 153 / 135,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(6 + 1 / 12, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(182, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/ingrid/front.svg",
  16368. extra: 294 / 268,
  16369. bottom: 0.027
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(6, "feet"),
  16377. default: true
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16383. {
  16384. eevee: {
  16385. height: math.unit(2 + 10 / 12, "feet"),
  16386. weight: math.unit(86, "lb"),
  16387. name: "Malgam",
  16388. image: {
  16389. source: "./media/characters/malgam/eevee.svg",
  16390. extra: 952/784,
  16391. bottom: 38/990
  16392. }
  16393. },
  16394. sylveon: {
  16395. height: math.unit(4, "feet"),
  16396. weight: math.unit(101, "lb"),
  16397. name: "Future Malgam",
  16398. rename: true,
  16399. image: {
  16400. source: "./media/characters/malgam/sylveon.svg",
  16401. extra: 371 / 325,
  16402. bottom: 0.015
  16403. }
  16404. },
  16405. gigantamax: {
  16406. height: math.unit(50, "feet"),
  16407. name: "Gigantamax Malgam",
  16408. rename: true,
  16409. image: {
  16410. source: "./media/characters/malgam/gigantamax.svg"
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(2 + 10 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(5 + 11 / 12, "feet"),
  16427. weight: math.unit(188, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/fleur/front.svg",
  16431. extra: 309 / 283,
  16432. bottom: 0.007
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(5 + 11 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(5 + 4 / 12, "feet"),
  16449. weight: math.unit(122, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/jude/front.svg",
  16453. extra: 288 / 273,
  16454. bottom: 0.03
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(5 + 4 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(5 + 11 / 12, "feet"),
  16471. weight: math.unit(190, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/seara/front.svg",
  16475. extra: 1,
  16476. bottom: 0.05
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(5 + 11 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(16 + 5 / 12, "feet"),
  16493. weight: math.unit(524, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/caspian-lugia/front.svg",
  16497. extra: 1,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(16 + 5 / 12, "feet"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(5 + 7 / 12, "feet"),
  16515. weight: math.unit(170, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/mika/front.svg",
  16519. extra: 1,
  16520. bottom: 0.016
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(5 + 7 / 12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6 + 2 / 12, "feet"),
  16537. weight: math.unit(268, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/sol/front.svg",
  16541. extra: 247 / 231,
  16542. bottom: 0.05
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(6 + 2 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16556. {
  16557. buizel: {
  16558. height: math.unit(2 + 5 / 12, "feet"),
  16559. weight: math.unit(87, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/umiko/buizel.svg",
  16563. extra: 172 / 157,
  16564. bottom: 0.01
  16565. },
  16566. form: "buizel",
  16567. default: true
  16568. },
  16569. floatzel: {
  16570. height: math.unit(5 + 9 / 12, "feet"),
  16571. weight: math.unit(250, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/umiko/floatzel.svg",
  16575. extra: 1076/1006,
  16576. bottom: 15/1091
  16577. },
  16578. form: "floatzel",
  16579. default: true
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(2 + 5 / 12, "feet"),
  16586. form: "buizel",
  16587. default: true
  16588. },
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(5 + 9 / 12, "feet"),
  16592. form: "floatzel",
  16593. default: true
  16594. },
  16595. ],
  16596. {
  16597. "buizel": {
  16598. name: "Buizel"
  16599. },
  16600. "floatzel": {
  16601. name: "Floatzel",
  16602. default: true
  16603. }
  16604. }
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6 + 2 / 12, "feet"),
  16611. weight: math.unit(146, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/iliac/front.svg",
  16615. extra: 389 / 365,
  16616. bottom: 0.035
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(6, "feet"),
  16633. weight: math.unit(170, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/topaz/front.svg",
  16637. extra: 317 / 303,
  16638. bottom: 0.055
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(6, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(5 + 11 / 12, "feet"),
  16655. weight: math.unit(144, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/gabriel/front.svg",
  16659. extra: 285 / 262,
  16660. bottom: 0.004
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(5 + 11 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16674. {
  16675. side: {
  16676. height: math.unit(6 + 5 / 12, "feet"),
  16677. weight: math.unit(300, "lb"),
  16678. name: "Side",
  16679. image: {
  16680. source: "./media/characters/tempest-suicune/side.svg",
  16681. extra: 195 / 154,
  16682. bottom: 0.04
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(6 + 5 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(7 + 2 / 12, "feet"),
  16699. weight: math.unit(322, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/vulcan/front.svg",
  16703. extra: 154 / 147,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(7 + 2 / 12, "feet"),
  16712. default: true
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(5 + 10 / 12, "feet"),
  16721. weight: math.unit(264, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/gault/front.svg",
  16725. extra: 161 / 140,
  16726. bottom: 0.028
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(5 + 10 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/shard/front.svg",
  16747. extra: 273 / 238,
  16748. bottom: 0.02
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(3 + 6 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(5 + 11 / 12, "feet"),
  16765. weight: math.unit(146, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/ashe/front.svg",
  16769. extra: 400 / 373,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(5 + 11 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(5 + 5 / 12, "feet"),
  16787. weight: math.unit(135, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/beatrix/front.svg",
  16791. extra: 392 / 379,
  16792. bottom: 0.01
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(6, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6 + 2/12, "feet"),
  16809. weight: math.unit(135, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/ignatius/front.svg",
  16813. extra: 1380/1259,
  16814. bottom: 27/1407
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(6 + 2/12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. weight: math.unit(138, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/mei-li/front.svg",
  16835. extra: 237 / 229,
  16836. bottom: 0.03
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(6 + 2 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(2 + 4 / 12, "feet"),
  16853. weight: math.unit(62, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/puru/front.svg",
  16857. extra: 206 / 149,
  16858. bottom: 0.06
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(2 + 4 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16872. {
  16873. anthro: {
  16874. height: math.unit(5 + 8/12, "feet"),
  16875. weight: math.unit(200, "lb"),
  16876. energyNeed: math.unit(2000, "kcal"),
  16877. name: "Anthro",
  16878. image: {
  16879. source: "./media/characters/kee/anthro.svg",
  16880. extra: 3251/3184,
  16881. bottom: 250/3501
  16882. }
  16883. },
  16884. taur: {
  16885. height: math.unit(11, "feet"),
  16886. weight: math.unit(500, "lb"),
  16887. energyNeed: math.unit(5000, "kcal"),
  16888. name: "Taur",
  16889. image: {
  16890. source: "./media/characters/kee/taur.svg",
  16891. extra: 1362/1320,
  16892. bottom: 83/1445
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(5 + 8/12, "feet"),
  16900. default: true
  16901. },
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(35, "feet")
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16910. {
  16911. anthro: {
  16912. height: math.unit(7, "feet"),
  16913. weight: math.unit(190, "lb"),
  16914. name: "Anthro",
  16915. image: {
  16916. source: "./media/characters/cobalt-dracha/anthro.svg",
  16917. extra: 231 / 225,
  16918. bottom: 0.04
  16919. }
  16920. },
  16921. feral: {
  16922. height: math.unit(9 + 7 / 12, "feet"),
  16923. weight: math.unit(294, "lb"),
  16924. name: "Feral",
  16925. image: {
  16926. source: "./media/characters/cobalt-dracha/feral.svg",
  16927. extra: 692 / 633,
  16928. bottom: 0.05
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(7, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16942. {
  16943. fallen: {
  16944. height: math.unit(11 + 8 / 12, "feet"),
  16945. weight: math.unit(485, "lb"),
  16946. name: "Java (Fallen)",
  16947. rename: true,
  16948. image: {
  16949. source: "./media/characters/java/fallen.svg",
  16950. extra: 226 / 208,
  16951. bottom: 0.005
  16952. }
  16953. },
  16954. godkin: {
  16955. height: math.unit(10 + 6 / 12, "feet"),
  16956. weight: math.unit(328, "lb"),
  16957. name: "Java (Godkin)",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/java/godkin.svg",
  16961. extra: 1104/1068,
  16962. bottom: 36/1140
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(11 + 8 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(5 + 9 / 12, "feet"),
  16979. weight: math.unit(170, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/purna/front.svg",
  16983. extra: 239 / 229,
  16984. bottom: 0.01
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(5 + 9 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(5 + 9 / 12, "feet"),
  17001. weight: math.unit(142, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/kuva/front.svg",
  17005. extra: 281 / 271,
  17006. bottom: 0.006
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(5 + 9 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17020. {
  17021. anthro: {
  17022. height: math.unit(9 + 2 / 12, "feet"),
  17023. weight: math.unit(270, "lb"),
  17024. name: "Anthro",
  17025. image: {
  17026. source: "./media/characters/embra/anthro.svg",
  17027. extra: 200 / 187,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. feral: {
  17032. height: math.unit(18 + 8 / 12, "feet"),
  17033. weight: math.unit(576, "lb"),
  17034. name: "Feral",
  17035. image: {
  17036. source: "./media/characters/embra/feral.svg",
  17037. extra: 152 / 137,
  17038. bottom: 0.037
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(9 + 2 / 12, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17052. {
  17053. anthro: {
  17054. height: math.unit(10 + 9 / 12, "feet"),
  17055. weight: math.unit(224, "lb"),
  17056. name: "Anthro",
  17057. image: {
  17058. source: "./media/characters/grottos/anthro.svg",
  17059. extra: 350 / 332,
  17060. bottom: 0.045
  17061. }
  17062. },
  17063. feral: {
  17064. height: math.unit(20 + 7 / 12, "feet"),
  17065. weight: math.unit(629, "lb"),
  17066. name: "Feral",
  17067. image: {
  17068. source: "./media/characters/grottos/feral.svg",
  17069. extra: 207 / 190,
  17070. bottom: 0.05
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(10 + 9 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17084. {
  17085. anthro: {
  17086. height: math.unit(9 + 6 / 12, "feet"),
  17087. weight: math.unit(298, "lb"),
  17088. name: "Anthro",
  17089. image: {
  17090. source: "./media/characters/frifna/anthro.svg",
  17091. extra: 282 / 269,
  17092. bottom: 0.015
  17093. }
  17094. },
  17095. feral: {
  17096. height: math.unit(16 + 2 / 12, "feet"),
  17097. weight: math.unit(624, "lb"),
  17098. name: "Feral",
  17099. image: {
  17100. source: "./media/characters/frifna/feral.svg"
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(9 + 6 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6 + 2 / 12, "feet"),
  17117. weight: math.unit(168, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/elise/front.svg",
  17121. extra: 276 / 271
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(6 + 2 / 12, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(5 + 10 / 12, "feet"),
  17138. weight: math.unit(210, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/glade/front.svg",
  17142. extra: 258 / 247,
  17143. bottom: 0.008
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 10 / 12, "feet"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(5 + 10 / 12, "feet"),
  17160. weight: math.unit(129, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/rina/front.svg",
  17164. extra: 266 / 255,
  17165. bottom: 0.005
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(6 + 1 / 12, "feet"),
  17182. weight: math.unit(192, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/veronica/front.svg",
  17186. extra: 319 / 309,
  17187. bottom: 0.005
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(6 + 1 / 12, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(9 + 3 / 12, "feet"),
  17204. weight: math.unit(1100, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/braxton/front.svg",
  17208. extra: 1057 / 984,
  17209. bottom: 0.05
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(9 + 3 / 12, "feet")
  17217. },
  17218. {
  17219. name: "Giant",
  17220. height: math.unit(300, "feet"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(700, "feet")
  17226. },
  17227. {
  17228. name: "Megamacro",
  17229. height: math.unit(6000, "feet")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 7 / 12, "feet"),
  17238. weight: math.unit(150, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/blue-feyonics/front.svg",
  17242. extra: 1403 / 1306,
  17243. bottom: 0.047
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 7 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(1.8, "meters"),
  17260. weight: math.unit(60, "kg"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/maxwell/front.svg",
  17264. extra: 2060 / 1873
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Micro",
  17271. height: math.unit(1, "mm")
  17272. },
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(1.8, "meter"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Macro",
  17280. height: math.unit(30, "meters")
  17281. },
  17282. {
  17283. name: "Megamacro",
  17284. height: math.unit(10, "km")
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/jack/front.svg",
  17297. extra: 1754 / 1640,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(80000, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Max size",
  17310. height: math.unit(10, "lightyears")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17316. {
  17317. urban: {
  17318. height: math.unit(5, "feet"),
  17319. weight: math.unit(240, "lb"),
  17320. name: "Urban",
  17321. image: {
  17322. source: "./media/characters/cafat/urban.svg",
  17323. extra: 1223/1126,
  17324. bottom: 205/1428
  17325. }
  17326. },
  17327. summer: {
  17328. height: math.unit(5, "feet"),
  17329. weight: math.unit(240, "lb"),
  17330. name: "Summer",
  17331. image: {
  17332. source: "./media/characters/cafat/summer.svg",
  17333. extra: 1223/1126,
  17334. bottom: 205/1428
  17335. }
  17336. },
  17337. winter: {
  17338. height: math.unit(5, "feet"),
  17339. weight: math.unit(240, "lb"),
  17340. name: "Winter",
  17341. image: {
  17342. source: "./media/characters/cafat/winter.svg",
  17343. extra: 1223/1126,
  17344. bottom: 205/1428
  17345. }
  17346. },
  17347. lingerie: {
  17348. height: math.unit(5, "feet"),
  17349. weight: math.unit(240, "lb"),
  17350. name: "Lingerie",
  17351. image: {
  17352. source: "./media/characters/cafat/lingerie.svg",
  17353. extra: 1223/1126,
  17354. bottom: 205/1428
  17355. }
  17356. },
  17357. upright: {
  17358. height: math.unit(6.3, "feet"),
  17359. weight: math.unit(240, "lb"),
  17360. name: "Upright",
  17361. image: {
  17362. source: "./media/characters/cafat/upright.svg",
  17363. bottom: 0.01
  17364. }
  17365. },
  17366. uprightFull: {
  17367. height: math.unit(6.3, "feet"),
  17368. weight: math.unit(240, "lb"),
  17369. name: "Upright (Full)",
  17370. image: {
  17371. source: "./media/characters/cafat/upright-full.svg",
  17372. bottom: 0.01
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Small",
  17379. height: math.unit(5, "feet"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Large",
  17384. height: math.unit(13, "feet")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(150, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/verin-raharra/front.svg",
  17397. extra: 5019 / 4835,
  17398. bottom: 0.023
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(7 + 5 / 12, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Upsized",
  17410. height: math.unit(20, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(7, "feet"),
  17419. weight: math.unit(230, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/nakata/front.svg",
  17423. extra: 1.005,
  17424. bottom: 0.01
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7, "feet"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Big",
  17436. height: math.unit(14, "feet")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(400, "feet")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(4.91, "feet"),
  17449. weight: math.unit(100, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/lily/front.svg",
  17453. extra: 1585 / 1415,
  17454. bottom: 0.02
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(4.91, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17468. {
  17469. laying: {
  17470. height: math.unit(4 + 4 / 12, "feet"),
  17471. weight: math.unit(600, "lb"),
  17472. name: "Laying",
  17473. image: {
  17474. source: "./media/characters/sheila/laying.svg",
  17475. extra: 1333 / 1265,
  17476. bottom: 0.16
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(4 + 4 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6, "feet"),
  17493. weight: math.unit(190, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/sax/front.svg",
  17497. extra: 1187 / 973,
  17498. bottom: 0.042
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Micro",
  17505. height: math.unit(4, "inches"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(150, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/pandora/front.svg",
  17519. extra: 2720 / 2556,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/pandora/back.svg",
  17529. extra: 2720 / 2556,
  17530. bottom: 0.01
  17531. }
  17532. },
  17533. beans: {
  17534. height: math.unit(6 / 8, "feet"),
  17535. name: "Beans",
  17536. image: {
  17537. source: "./media/characters/pandora/beans.svg"
  17538. }
  17539. },
  17540. collar: {
  17541. height: math.unit(0.31, "feet"),
  17542. name: "Collar",
  17543. image: {
  17544. source: "./media/characters/pandora/collar.svg"
  17545. }
  17546. },
  17547. skirt: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Skirt",
  17551. image: {
  17552. source: "./media/characters/pandora/skirt.svg",
  17553. extra: 1622 / 1525,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. hoodie: {
  17558. height: math.unit(6, "feet"),
  17559. weight: math.unit(150, "lb"),
  17560. name: "Hoodie",
  17561. image: {
  17562. source: "./media/characters/pandora/hoodie.svg",
  17563. extra: 1622 / 1525,
  17564. bottom: 0.015
  17565. }
  17566. },
  17567. casual: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Casual",
  17571. image: {
  17572. source: "./media/characters/pandora/casual.svg",
  17573. extra: 1622 / 1525,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(6, "feet")
  17582. },
  17583. {
  17584. name: "Big Steppy",
  17585. height: math.unit(1, "km"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Galactic Steppy",
  17590. height: math.unit(2, "gigameters")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17596. {
  17597. side: {
  17598. height: math.unit(10, "feet"),
  17599. weight: math.unit(800, "kg"),
  17600. name: "Side",
  17601. image: {
  17602. source: "./media/characters/venio-darcony/side.svg",
  17603. extra: 1373 / 1003,
  17604. bottom: 0.037
  17605. }
  17606. },
  17607. front: {
  17608. height: math.unit(19, "feet"),
  17609. weight: math.unit(800, "kg"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/venio-darcony/front.svg"
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(19, "feet"),
  17617. weight: math.unit(800, "kg"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/venio-darcony/back.svg"
  17621. }
  17622. },
  17623. sideNsfw: {
  17624. height: math.unit(10, "feet"),
  17625. weight: math.unit(800, "kg"),
  17626. name: "Side (NSFW)",
  17627. image: {
  17628. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17629. extra: 1373 / 1003,
  17630. bottom: 0.037
  17631. }
  17632. },
  17633. frontNsfw: {
  17634. height: math.unit(19, "feet"),
  17635. weight: math.unit(800, "kg"),
  17636. name: "Front (NSFW)",
  17637. image: {
  17638. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17639. }
  17640. },
  17641. backNsfw: {
  17642. height: math.unit(19, "feet"),
  17643. weight: math.unit(800, "kg"),
  17644. name: "Back (NSFW)",
  17645. image: {
  17646. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17647. }
  17648. },
  17649. sideArmored: {
  17650. height: math.unit(10, "feet"),
  17651. weight: math.unit(800, "kg"),
  17652. name: "Side (Armored)",
  17653. image: {
  17654. source: "./media/characters/venio-darcony/side-armored.svg",
  17655. extra: 1373 / 1003,
  17656. bottom: 0.037
  17657. }
  17658. },
  17659. frontArmored: {
  17660. height: math.unit(19, "feet"),
  17661. weight: math.unit(900, "kg"),
  17662. name: "Front (Armored)",
  17663. image: {
  17664. source: "./media/characters/venio-darcony/front-armored.svg"
  17665. }
  17666. },
  17667. backArmored: {
  17668. height: math.unit(19, "feet"),
  17669. weight: math.unit(900, "kg"),
  17670. name: "Back (Armored)",
  17671. image: {
  17672. source: "./media/characters/venio-darcony/back-armored.svg"
  17673. }
  17674. },
  17675. sword: {
  17676. height: math.unit(10, "feet"),
  17677. weight: math.unit(50, "lb"),
  17678. name: "Sword",
  17679. image: {
  17680. source: "./media/characters/venio-darcony/sword.svg"
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(10, "feet")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(130, "feet"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro+",
  17696. height: math.unit(240, "feet")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(150, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/veski/front.svg",
  17709. extra: 1299 / 1225,
  17710. bottom: 0.04
  17711. }
  17712. },
  17713. back: {
  17714. height: math.unit(6, "feet"),
  17715. weight: math.unit(150, "lb"),
  17716. name: "Back",
  17717. image: {
  17718. source: "./media/characters/veski/back.svg",
  17719. extra: 1299 / 1225,
  17720. bottom: 0.008
  17721. }
  17722. },
  17723. maw: {
  17724. height: math.unit(1.5 * 1.21, "feet"),
  17725. name: "Maw",
  17726. image: {
  17727. source: "./media/characters/veski/maw.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(2, "km"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(5 + 7 / 12, "feet"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/isabelle/front.svg",
  17747. extra: 2130 / 1976,
  17748. bottom: 0.05
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Supermicro",
  17755. height: math.unit(10, "micrometers")
  17756. },
  17757. {
  17758. name: "Micro",
  17759. height: math.unit(1, "inch")
  17760. },
  17761. {
  17762. name: "Tiny",
  17763. height: math.unit(5, "inches")
  17764. },
  17765. {
  17766. name: "Standard",
  17767. height: math.unit(5 + 7 / 12, "inches")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(80, "meters"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Megamacro",
  17776. height: math.unit(250, "meters")
  17777. },
  17778. {
  17779. name: "Gigamacro",
  17780. height: math.unit(5, "km")
  17781. },
  17782. {
  17783. name: "Cosmic",
  17784. height: math.unit(2.5e6, "miles")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(6, "feet"),
  17793. weight: math.unit(150, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/hanzo/front.svg",
  17797. extra: 374 / 344,
  17798. bottom: 0.02
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(8, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(7, "feet"),
  17815. weight: math.unit(130, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/anna/front.svg",
  17819. extra: 169 / 145,
  17820. bottom: 0.06
  17821. }
  17822. },
  17823. full: {
  17824. height: math.unit(4.96, "feet"),
  17825. weight: math.unit(220, "lb"),
  17826. name: "Full",
  17827. image: {
  17828. source: "./media/characters/anna/full.svg",
  17829. extra: 138 / 114,
  17830. bottom: 0.15
  17831. }
  17832. },
  17833. tongue: {
  17834. height: math.unit(2.53, "feet"),
  17835. name: "Tongue",
  17836. image: {
  17837. source: "./media/characters/anna/tongue.svg"
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(7, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(7, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/ian-corvid/front.svg",
  17858. extra: 150 / 142,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(7, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/ian-corvid/back.svg",
  17868. extra: 150 / 143,
  17869. bottom: 0.01
  17870. }
  17871. },
  17872. stomping: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(150, "lb"),
  17875. name: "Stomping",
  17876. image: {
  17877. source: "./media/characters/ian-corvid/stomping.svg",
  17878. extra: 76 / 72
  17879. }
  17880. },
  17881. sitting: {
  17882. height: math.unit(7 / 1.8, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Sitting",
  17885. image: {
  17886. source: "./media/characters/ian-corvid/sitting.svg",
  17887. extra: 1400 / 1269,
  17888. bottom: 0.15
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Tiny Microw",
  17895. height: math.unit(1, "inch")
  17896. },
  17897. {
  17898. name: "Microw",
  17899. height: math.unit(6, "inches")
  17900. },
  17901. {
  17902. name: "Crow",
  17903. height: math.unit(7 + 1 / 12, "feet"),
  17904. default: true
  17905. },
  17906. {
  17907. name: "Macrow",
  17908. height: math.unit(176, "feet")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(5 + 7 / 12, "feet"),
  17917. weight: math.unit(147, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/natalie-kellon/front.svg",
  17921. extra: 1214 / 1141,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Micro",
  17929. height: math.unit(1 / 16, "inch")
  17930. },
  17931. {
  17932. name: "Tiny",
  17933. height: math.unit(4, "inches")
  17934. },
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(5 + 7 / 12, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Amazon",
  17942. height: math.unit(12, "feet")
  17943. },
  17944. {
  17945. name: "Giantess",
  17946. height: math.unit(160, "meters")
  17947. },
  17948. {
  17949. name: "Titaness",
  17950. height: math.unit(800, "meters")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(6, "feet"),
  17959. weight: math.unit(150, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/alluria/front.svg",
  17963. extra: 806 / 738,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. side: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/alluria/side.svg",
  17973. extra: 800 / 750,
  17974. }
  17975. },
  17976. back: {
  17977. height: math.unit(6, "feet"),
  17978. weight: math.unit(150, "lb"),
  17979. name: "Back",
  17980. image: {
  17981. source: "./media/characters/alluria/back.svg",
  17982. extra: 806 / 738,
  17983. }
  17984. },
  17985. frontMaid: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(150, "lb"),
  17988. name: "Front (Maid)",
  17989. image: {
  17990. source: "./media/characters/alluria/front-maid.svg",
  17991. extra: 806 / 738,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. sideMaid: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(150, "lb"),
  17998. name: "Side (Maid)",
  17999. image: {
  18000. source: "./media/characters/alluria/side-maid.svg",
  18001. extra: 800 / 750,
  18002. bottom: 0.005
  18003. }
  18004. },
  18005. backMaid: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Back (Maid)",
  18009. image: {
  18010. source: "./media/characters/alluria/back-maid.svg",
  18011. extra: 806 / 738,
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(6, "inches"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/kyle/front.svg",
  18032. extra: 1069 / 962,
  18033. bottom: 77.228 / 1727.45
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(150, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(300, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/duncan/front.svg",
  18054. extra: 1650 / 1482,
  18055. bottom: 0.05
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(100, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(5 + 4 / 12, "feet"),
  18072. weight: math.unit(220, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/memory/front.svg",
  18076. extra: 3641 / 3545,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. back: {
  18081. height: math.unit(5 + 4 / 12, "feet"),
  18082. weight: math.unit(220, "lb"),
  18083. name: "Back",
  18084. image: {
  18085. source: "./media/characters/memory/back.svg",
  18086. extra: 3641 / 3545,
  18087. bottom: 0.025
  18088. }
  18089. },
  18090. frontSkirt: {
  18091. height: math.unit(5 + 4 / 12, "feet"),
  18092. weight: math.unit(220, "lb"),
  18093. name: "Front (Skirt)",
  18094. image: {
  18095. source: "./media/characters/memory/front-skirt.svg",
  18096. extra: 3641 / 3545,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. frontDress: {
  18101. height: math.unit(5 + 4 / 12, "feet"),
  18102. weight: math.unit(220, "lb"),
  18103. name: "Front (Dress)",
  18104. image: {
  18105. source: "./media/characters/memory/front-dress.svg",
  18106. extra: 3641 / 3545,
  18107. bottom: 0.03
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Micro",
  18114. height: math.unit(6, "inches"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(5 + 4 / 12, "feet")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(4 + 11 / 12, "feet"),
  18128. weight: math.unit(100, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/luno/front.svg",
  18132. extra: 1535 / 1487,
  18133. bottom: 0.03
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(3, "inches")
  18141. },
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(4 + 11 / 12, "feet"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(300, "feet")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(700, "miles")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6 + 2 / 12, "feet"),
  18162. weight: math.unit(170, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/jamesy/front.svg",
  18166. extra: 440 / 382,
  18167. bottom: 0.005
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Micro",
  18174. height: math.unit(3, "inches")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(6 + 2 / 12, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(300, "feet")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(700, "miles")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(160, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/mark/front.svg",
  18200. extra: 3300 / 3100,
  18201. bottom: 136.42 / 3440.47
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(120, "meters")
  18209. },
  18210. {
  18211. name: "Bigger Macro",
  18212. height: math.unit(350, "meters")
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(8, "km"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Continental",
  18221. height: math.unit(4550, "km")
  18222. },
  18223. {
  18224. name: "Planetary",
  18225. height: math.unit(65000, "km")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(400, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/mac/front.svg",
  18238. extra: 1048 / 987.7,
  18239. bottom: 60 / 1107.6,
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(500, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(5 + 2 / 12, "feet"),
  18256. weight: math.unit(190, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/bari/front.svg",
  18260. extra: 3156 / 2880,
  18261. bottom: 0.03
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(5 + 2 / 12, "feet"),
  18266. weight: math.unit(190, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/bari/back.svg",
  18270. extra: 3260 / 2834,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. frontPlush: {
  18275. height: math.unit(5 + 2 / 12, "feet"),
  18276. weight: math.unit(190, "lb"),
  18277. name: "Front (Plush)",
  18278. image: {
  18279. source: "./media/characters/bari/front-plush.svg",
  18280. extra: 1112 / 1061,
  18281. bottom: 0.002
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Micro",
  18288. height: math.unit(3, "inches")
  18289. },
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Macro",
  18297. height: math.unit(20, "feet")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(6 + 1 / 12, "feet"),
  18306. weight: math.unit(275, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/hunter-misha-raven/front.svg"
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Mortal",
  18316. height: math.unit(6 + 1 / 12, "feet")
  18317. },
  18318. {
  18319. name: "Divine",
  18320. height: math.unit(1.12134e34, "parsecs"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6 + 3 / 12, "feet"),
  18330. weight: math.unit(220, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/max-calore/front.svg",
  18334. extra: 1700 / 1648,
  18335. bottom: 0.01
  18336. }
  18337. },
  18338. back: {
  18339. height: math.unit(6 + 3 / 12, "feet"),
  18340. weight: math.unit(220, "lb"),
  18341. name: "Back",
  18342. image: {
  18343. source: "./media/characters/max-calore/back.svg",
  18344. extra: 1700 / 1648,
  18345. bottom: 0.01
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6 + 3 / 12, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(2 + 8 / 12, "feet"),
  18362. weight: math.unit(99, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/aspen/side.svg",
  18366. extra: 152 / 138,
  18367. bottom: 0.032
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(2 + 8 / 12, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18381. {
  18382. side: {
  18383. height: math.unit(3 + 2 / 12, "feet"),
  18384. weight: math.unit(224, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/sheila-feral-wolf/side.svg",
  18388. extra: 179 / 166,
  18389. bottom: 0.03
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(3 + 2 / 12, "feet"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18403. {
  18404. side: {
  18405. height: math.unit(1 + 9 / 12, "feet"),
  18406. weight: math.unit(38, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/michelle/side.svg",
  18410. extra: 147 / 136.7,
  18411. bottom: 0.03
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(1 + 9 / 12, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(1.54, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/nino/front.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(1.54, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(1.49, "feet"),
  18448. weight: math.unit(45, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/viola/front.svg"
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(1.49, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 5 / 12, "feet"),
  18468. weight: math.unit(580, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/atlas/front.svg",
  18472. extra: 298.5 / 290,
  18473. bottom: 0.015
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(6 + 5 / 12, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18487. {
  18488. side: {
  18489. height: math.unit(15.6, "inches"),
  18490. weight: math.unit(10, "lb"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/davy/side.svg",
  18494. extra: 200 / 170,
  18495. bottom: 0.01
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(15.6, "inches"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18509. {
  18510. side: {
  18511. height: math.unit(4 + 8 / 12, "feet"),
  18512. weight: math.unit(166, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/fiona/side.svg",
  18516. extra: 232 / 220,
  18517. bottom: 0.03
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(4 + 8 / 12, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18531. {
  18532. front: {
  18533. height: math.unit(26, "inches"),
  18534. weight: math.unit(35, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/lyla/front.svg",
  18538. bottom: 0.1
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(3, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(1.8, "feet"),
  18555. weight: math.unit(44, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/perseus/side.svg",
  18559. bottom: 0.21
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(1.8, "feet"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18573. {
  18574. side: {
  18575. height: math.unit(4 + 2 / 12, "feet"),
  18576. weight: math.unit(20, "lb"),
  18577. name: "Side",
  18578. image: {
  18579. source: "./media/characters/remus/side.svg"
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(4 + 2 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(4 + 11 / 12, "feet"),
  18596. weight: math.unit(114, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/raf/front.svg",
  18600. extra: 1504/1339,
  18601. bottom: 26/1530
  18602. }
  18603. },
  18604. side: {
  18605. height: math.unit(4 + 11 / 12, "feet"),
  18606. weight: math.unit(114, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/raf/side.svg",
  18610. extra: 1466/1316,
  18611. bottom: 29/1495
  18612. }
  18613. },
  18614. paw: {
  18615. height: math.unit(1.45, "feet"),
  18616. name: "Paw",
  18617. image: {
  18618. source: "./media/characters/raf/paw.svg"
  18619. },
  18620. extraAttributes: {
  18621. "toeSize": {
  18622. name: "Toe Size",
  18623. power: 2,
  18624. type: "area",
  18625. base: math.unit(0.004, "m^2")
  18626. },
  18627. "padSize": {
  18628. name: "Pad Size",
  18629. power: 2,
  18630. type: "area",
  18631. base: math.unit(0.04, "m^2")
  18632. },
  18633. "footSize": {
  18634. name: "Foot Size",
  18635. power: 2,
  18636. type: "area",
  18637. base: math.unit(0.08, "m^2")
  18638. },
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(2, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(4 + 11 / 12, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(70, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(1.5, "meters"),
  18663. weight: math.unit(68, "kg"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/liam-einarr/front.svg",
  18667. extra: 2822 / 2666
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(1.5, "meters"),
  18672. weight: math.unit(68, "kg"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/liam-einarr/back.svg",
  18676. extra: 2822 / 2666,
  18677. bottom: 0.015
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(1.5, "meters"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(150, "meters")
  18690. },
  18691. {
  18692. name: "Megamacro",
  18693. height: math.unit(35, "km")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(75, "kg"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/linda/front.svg",
  18706. extra: 930 / 874,
  18707. bottom: 0.004
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(6, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6 + 8 / 12, "feet"),
  18724. weight: math.unit(220, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/caylex/front.svg",
  18728. extra: 821 / 772,
  18729. bottom: 0.07
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(6 + 8 / 12, "feet"),
  18734. weight: math.unit(220, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/caylex/back.svg",
  18738. extra: 821 / 772,
  18739. bottom: 0.022
  18740. }
  18741. },
  18742. hand: {
  18743. height: math.unit(1.25, "feet"),
  18744. name: "Hand",
  18745. image: {
  18746. source: "./media/characters/caylex/hand.svg"
  18747. }
  18748. },
  18749. foot: {
  18750. height: math.unit(1.6, "feet"),
  18751. name: "Foot",
  18752. image: {
  18753. source: "./media/characters/caylex/foot.svg"
  18754. }
  18755. },
  18756. armored: {
  18757. height: math.unit(6 + 8 / 12, "feet"),
  18758. weight: math.unit(250, "lb"),
  18759. name: "Armored",
  18760. image: {
  18761. source: "./media/characters/caylex/armored.svg",
  18762. extra: 1420 / 1310,
  18763. bottom: 0.045
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 8 / 12, "feet"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Normal+",
  18775. height: math.unit(12, "feet")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(7 + 6 / 12, "feet"),
  18784. weight: math.unit(288, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/alana/front.svg",
  18788. extra: 679 / 653,
  18789. bottom: 22.5 / 701
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(7 + 6 / 12, "feet")
  18797. },
  18798. {
  18799. name: "Large",
  18800. height: math.unit(50, "feet")
  18801. },
  18802. {
  18803. name: "Macro",
  18804. height: math.unit(100, "feet"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Macro+",
  18809. height: math.unit(200, "feet")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(210, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/hasani/front.svg",
  18822. extra: 244 / 232,
  18823. bottom: 0.01
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(6 + 1 / 12, "feet"),
  18828. weight: math.unit(210, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/hasani/back.svg",
  18832. extra: 244 / 232,
  18833. bottom: 0.01
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 1 / 12, "feet")
  18841. },
  18842. {
  18843. name: "Macro",
  18844. height: math.unit(175, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(1.82, "meters"),
  18854. weight: math.unit(140, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/nita/front.svg",
  18858. extra: 2473 / 2363,
  18859. bottom: 0.01
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(1.82, "m")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(300, "m")
  18871. },
  18872. {
  18873. name: "Mistake Canon",
  18874. height: math.unit(0.5, "miles"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Big Mistake",
  18879. height: math.unit(13, "miles")
  18880. },
  18881. {
  18882. name: "Playing God",
  18883. height: math.unit(2450, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(4, "feet"),
  18892. weight: math.unit(120, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/shiriko/front.svg",
  18896. extra: 970/934,
  18897. bottom: 5/975
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(4, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(6, "feet"),
  18914. name: "front",
  18915. image: {
  18916. source: "./media/characters/deja/front.svg",
  18917. extra: 926 / 840,
  18918. bottom: 0.07
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Planck Length",
  18925. height: math.unit(1.6e-35, "meters")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(30.48, "meters"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Universal",
  18934. height: math.unit(8.8e26, "meters")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18940. {
  18941. side: {
  18942. height: math.unit(8, "feet"),
  18943. weight: math.unit(6300, "lb"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/anima/side.svg",
  18947. bottom: 0.035
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(8, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(8, "feet"),
  18964. weight: math.unit(350, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/bianca/front.svg",
  18968. extra: 234 / 225,
  18969. bottom: 0.03
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(8, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(11 + 5/12, "feet"),
  18986. weight: math.unit(1200, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/adinia/front.svg",
  18990. extra: 1767/1641,
  18991. bottom: 44/1811
  18992. },
  18993. extraAttributes: {
  18994. "energyIntake": {
  18995. name: "Energy Intake",
  18996. power: 3,
  18997. type: "energy",
  18998. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18999. },
  19000. }
  19001. },
  19002. back: {
  19003. height: math.unit(11 + 5/12, "feet"),
  19004. weight: math.unit(1200, "lb"),
  19005. name: "Back",
  19006. image: {
  19007. source: "./media/characters/adinia/back.svg",
  19008. extra: 1834/1684,
  19009. bottom: 14/1848
  19010. },
  19011. extraAttributes: {
  19012. "energyIntake": {
  19013. name: "Energy Intake",
  19014. power: 3,
  19015. type: "energy",
  19016. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19017. },
  19018. }
  19019. },
  19020. maw: {
  19021. height: math.unit(3.79, "feet"),
  19022. name: "Maw",
  19023. image: {
  19024. source: "./media/characters/adinia/maw.svg"
  19025. }
  19026. },
  19027. rump: {
  19028. height: math.unit(4.6, "feet"),
  19029. name: "Rump",
  19030. image: {
  19031. source: "./media/characters/adinia/rump.svg"
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(11 + 5 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(3, "meters"),
  19048. weight: math.unit(200, "kg"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/lykasa/front.svg",
  19052. extra: 1076 / 976,
  19053. bottom: 0.06
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(3, "meters")
  19061. },
  19062. {
  19063. name: "Kaiju",
  19064. height: math.unit(120, "meters"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Mega Kaiju",
  19069. height: math.unit(240, "km")
  19070. },
  19071. {
  19072. name: "Giga Kaiju",
  19073. height: math.unit(400, "megameters")
  19074. },
  19075. {
  19076. name: "Tera Kaiju",
  19077. height: math.unit(800, "gigameters")
  19078. },
  19079. {
  19080. name: "Kaiju Dragon Goddess",
  19081. height: math.unit(26, "zettaparsecs")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19087. {
  19088. side: {
  19089. height: math.unit(283 / 124 * 6, "feet"),
  19090. weight: math.unit(35000, "lb"),
  19091. name: "Side",
  19092. image: {
  19093. source: "./media/characters/malfaren/side.svg",
  19094. extra: 1310/529,
  19095. bottom: 24/1334
  19096. }
  19097. },
  19098. front: {
  19099. height: math.unit(22.36, "feet"),
  19100. weight: math.unit(35000, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/malfaren/front.svg",
  19104. extra: 1237/1115,
  19105. bottom: 32/1269
  19106. }
  19107. },
  19108. maw: {
  19109. height: math.unit(6.9, "feet"),
  19110. name: "Maw",
  19111. image: {
  19112. source: "./media/characters/malfaren/maw.svg"
  19113. }
  19114. },
  19115. dick: {
  19116. height: math.unit(6.19, "feet"),
  19117. name: "Dick",
  19118. image: {
  19119. source: "./media/characters/malfaren/dick.svg"
  19120. }
  19121. },
  19122. eye: {
  19123. height: math.unit(0.69, "feet"),
  19124. name: "Eye",
  19125. image: {
  19126. source: "./media/characters/malfaren/eye.svg"
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Big",
  19133. height: math.unit(283 / 162 * 6, "feet"),
  19134. },
  19135. {
  19136. name: "Bigger",
  19137. height: math.unit(283 / 124 * 6, "feet")
  19138. },
  19139. {
  19140. name: "Massive",
  19141. height: math.unit(283 / 92 * 6, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "👀💦",
  19146. height: math.unit(283 / 73 * 6, "feet"),
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(1.7, "m"),
  19155. weight: math.unit(70, "kg"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/kernel/front.svg",
  19159. extra: 222 / 210,
  19160. bottom: 0.007
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Nano",
  19167. height: math.unit(17, "micrometers")
  19168. },
  19169. {
  19170. name: "Micro",
  19171. height: math.unit(1.7, "mm")
  19172. },
  19173. {
  19174. name: "Small",
  19175. height: math.unit(1.7, "cm")
  19176. },
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(1.7, "m"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(1.75, "meters"),
  19189. weight: math.unit(65, "kg"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/jayne-folest/front.svg",
  19193. extra: 2115 / 2007,
  19194. bottom: 0.02
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(1.75, "meters"),
  19199. weight: math.unit(65, "kg"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/jayne-folest/back.svg",
  19203. extra: 2115 / 2007,
  19204. bottom: 0.005
  19205. }
  19206. },
  19207. frontClothed: {
  19208. height: math.unit(1.75, "meters"),
  19209. weight: math.unit(65, "kg"),
  19210. name: "Front (Clothed)",
  19211. image: {
  19212. source: "./media/characters/jayne-folest/front-clothed.svg",
  19213. extra: 2115 / 2007,
  19214. bottom: 0.035
  19215. }
  19216. },
  19217. hand: {
  19218. height: math.unit(1 / 1.260, "feet"),
  19219. name: "Hand",
  19220. image: {
  19221. source: "./media/characters/jayne-folest/hand.svg"
  19222. }
  19223. },
  19224. foot: {
  19225. height: math.unit(1 / 0.918, "feet"),
  19226. name: "Foot",
  19227. image: {
  19228. source: "./media/characters/jayne-folest/foot.svg"
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Micro",
  19235. height: math.unit(4, "cm")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(1.75, "meters")
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(47.5, "meters"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(180, "cm"),
  19253. weight: math.unit(70, "kg"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/algier/front.svg",
  19257. extra: 596 / 572,
  19258. bottom: 0.04
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(180, "cm"),
  19263. weight: math.unit(70, "kg"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/algier/back.svg",
  19267. extra: 596 / 572,
  19268. bottom: 0.025
  19269. }
  19270. },
  19271. frontdressed: {
  19272. height: math.unit(180, "cm"),
  19273. weight: math.unit(150, "kg"),
  19274. name: "Front-dressed",
  19275. image: {
  19276. source: "./media/characters/algier/front-dressed.svg",
  19277. extra: 596 / 572,
  19278. bottom: 0.038
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Micro",
  19285. height: math.unit(5, "cm")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(180, "cm"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(64, "m")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19300. {
  19301. upright: {
  19302. height: math.unit(7, "feet"),
  19303. weight: math.unit(300, "lb"),
  19304. name: "Upright",
  19305. image: {
  19306. source: "./media/characters/pretzel/upright.svg",
  19307. extra: 534 / 522,
  19308. bottom: 0.065
  19309. }
  19310. },
  19311. sprawling: {
  19312. height: math.unit(3.75, "feet"),
  19313. weight: math.unit(300, "lb"),
  19314. name: "Sprawling",
  19315. image: {
  19316. source: "./media/characters/pretzel/sprawling.svg",
  19317. extra: 314 / 281,
  19318. bottom: 0.1
  19319. }
  19320. },
  19321. tongue: {
  19322. height: math.unit(2, "feet"),
  19323. name: "Tongue",
  19324. image: {
  19325. source: "./media/characters/pretzel/tongue.svg"
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(7, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Oversized",
  19337. height: math.unit(15, "feet")
  19338. },
  19339. {
  19340. name: "Huge",
  19341. height: math.unit(30, "feet")
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(250, "feet")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19351. {
  19352. sideFront: {
  19353. height: math.unit(5 + 2 / 12, "feet"),
  19354. weight: math.unit(120, "lb"),
  19355. name: "Front Side",
  19356. image: {
  19357. source: "./media/characters/roxi/side-front.svg",
  19358. extra: 2924 / 2717,
  19359. bottom: 0.08
  19360. }
  19361. },
  19362. sideBack: {
  19363. height: math.unit(5 + 2 / 12, "feet"),
  19364. weight: math.unit(120, "lb"),
  19365. name: "Back Side",
  19366. image: {
  19367. source: "./media/characters/roxi/side-back.svg",
  19368. extra: 2904 / 2693,
  19369. bottom: 0.06
  19370. }
  19371. },
  19372. front: {
  19373. height: math.unit(5 + 2 / 12, "feet"),
  19374. weight: math.unit(120, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/roxi/front.svg",
  19378. extra: 2028 / 1907,
  19379. bottom: 0.01
  19380. }
  19381. },
  19382. frontAlt: {
  19383. height: math.unit(5 + 2 / 12, "feet"),
  19384. weight: math.unit(120, "lb"),
  19385. name: "Front (Alt)",
  19386. image: {
  19387. source: "./media/characters/roxi/front-alt.svg",
  19388. extra: 1828 / 1798,
  19389. bottom: 0.01
  19390. }
  19391. },
  19392. sitting: {
  19393. height: math.unit(2.8, "feet"),
  19394. weight: math.unit(120, "lb"),
  19395. name: "Sitting",
  19396. image: {
  19397. source: "./media/characters/roxi/sitting.svg",
  19398. extra: 2660 / 2462,
  19399. bottom: 0.1
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(5 + 2 / 12, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19413. {
  19414. side: {
  19415. height: math.unit(55, "feet"),
  19416. weight: math.unit(153, "tons"),
  19417. name: "Side",
  19418. image: {
  19419. source: "./media/characters/shadow/side.svg",
  19420. extra: 701 / 628,
  19421. bottom: 0.02
  19422. }
  19423. },
  19424. flying: {
  19425. height: math.unit(145, "feet"),
  19426. weight: math.unit(153, "tons"),
  19427. name: "Flying",
  19428. image: {
  19429. source: "./media/characters/shadow/flying.svg"
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(55, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(200, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/marcie/front.svg",
  19450. extra: 960 / 876,
  19451. bottom: 58 / 1017.87
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(1, "mile"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(7, "feet"),
  19468. weight: math.unit(200, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/kachina/front.svg",
  19472. extra: 1290.68 / 1119,
  19473. bottom: 36.5 / 1327.18
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(7, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19487. {
  19488. looking: {
  19489. height: math.unit(2, "meters"),
  19490. weight: math.unit(300, "kg"),
  19491. name: "Looking",
  19492. image: {
  19493. source: "./media/characters/kash/looking.svg",
  19494. extra: 474 / 344,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. side: {
  19499. height: math.unit(2, "meters"),
  19500. weight: math.unit(300, "kg"),
  19501. name: "Side",
  19502. image: {
  19503. source: "./media/characters/kash/side.svg",
  19504. extra: 302 / 251,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. front: {
  19509. height: math.unit(2, "meters"),
  19510. weight: math.unit(300, "kg"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/kash/front.svg",
  19514. extra: 495 / 360,
  19515. bottom: 0.015
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(2, "meters"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Big",
  19527. height: math.unit(3, "meters")
  19528. },
  19529. {
  19530. name: "Large",
  19531. height: math.unit(5, "meters")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19537. {
  19538. feeding: {
  19539. height: math.unit(6.7, "feet"),
  19540. weight: math.unit(350, "lb"),
  19541. name: "Feeding",
  19542. image: {
  19543. source: "./media/characters/lalim/feeding.svg",
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(6.7, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(9.5, "feet"),
  19560. weight: math.unit(600, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/de'vout/front.svg",
  19564. extra: 1443 / 1328,
  19565. bottom: 0.025
  19566. }
  19567. },
  19568. back: {
  19569. height: math.unit(9.5, "feet"),
  19570. weight: math.unit(600, "lb"),
  19571. name: "Back",
  19572. image: {
  19573. source: "./media/characters/de'vout/back.svg",
  19574. extra: 1443 / 1328
  19575. }
  19576. },
  19577. frontDressed: {
  19578. height: math.unit(9.5, "feet"),
  19579. weight: math.unit(600, "lb"),
  19580. name: "Front (Dressed",
  19581. image: {
  19582. source: "./media/characters/de'vout/front-dressed.svg",
  19583. extra: 1443 / 1328,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. backDressed: {
  19588. height: math.unit(9.5, "feet"),
  19589. weight: math.unit(600, "lb"),
  19590. name: "Back (Dressed",
  19591. image: {
  19592. source: "./media/characters/de'vout/back-dressed.svg",
  19593. extra: 1443 / 1328
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(9.5, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(8, "feet"),
  19610. weight: math.unit(225, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/talana/front.svg",
  19614. extra: 1410 / 1300,
  19615. bottom: 0.015
  19616. }
  19617. },
  19618. frontDressed: {
  19619. height: math.unit(8, "feet"),
  19620. weight: math.unit(225, "lb"),
  19621. name: "Front (Dressed",
  19622. image: {
  19623. source: "./media/characters/talana/front-dressed.svg",
  19624. extra: 1410 / 1300,
  19625. bottom: 0.015
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(8, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19639. {
  19640. side: {
  19641. height: math.unit(7.2, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Side",
  19644. image: {
  19645. source: "./media/characters/xeauvok/side.svg",
  19646. extra: 1975 / 1523,
  19647. bottom: 0.07
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(7.2, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19661. {
  19662. side: {
  19663. height: math.unit(4, "meters"),
  19664. weight: math.unit(2200, "kg"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/zara/side.svg",
  19668. extra: 765/744,
  19669. bottom: 156/921
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(4, "meters"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19683. {
  19684. side: {
  19685. height: math.unit(6, "feet"),
  19686. weight: math.unit(150, "lb"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/richard-dragon/side.svg",
  19690. extra: 845 / 340,
  19691. bottom: 0.017
  19692. }
  19693. },
  19694. maw: {
  19695. height: math.unit(2.97, "feet"),
  19696. name: "Maw",
  19697. image: {
  19698. source: "./media/characters/richard-dragon/maw.svg"
  19699. }
  19700. },
  19701. },
  19702. [
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(4, "feet"),
  19710. weight: math.unit(100, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/richard-smeargle/front.svg",
  19714. extra: 2952 / 2820,
  19715. bottom: 0.028
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(4, "feet"),
  19723. default: true
  19724. },
  19725. {
  19726. name: "Dynamax",
  19727. height: math.unit(20, "meters")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(6, "feet"),
  19736. weight: math.unit(110, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/klay/front.svg",
  19740. extra: 962 / 883,
  19741. bottom: 0.04
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(6, "feet"),
  19746. weight: math.unit(110, "lb"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/klay/back.svg",
  19750. extra: 962 / 883
  19751. }
  19752. },
  19753. beans: {
  19754. height: math.unit(1.15, "feet"),
  19755. name: "Beans",
  19756. image: {
  19757. source: "./media/characters/klay/beans.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(6, "inches")
  19765. },
  19766. {
  19767. name: "Mini",
  19768. height: math.unit(3, "feet")
  19769. },
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(6, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Big",
  19777. height: math.unit(25, "feet")
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(100, "feet")
  19782. },
  19783. {
  19784. name: "Megamacro",
  19785. height: math.unit(400, "feet")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(160, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/marcus/front.svg",
  19798. extra: 734 / 676,
  19799. bottom: 0.03
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Little",
  19806. height: math.unit(6, "feet")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(110, "feet"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Macro",
  19815. height: math.unit(250, "feet")
  19816. },
  19817. {
  19818. name: "Megamacro",
  19819. height: math.unit(1000, "feet")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(275, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/claude-delroute/front.svg",
  19832. extra: 902/827,
  19833. bottom: 26/928
  19834. }
  19835. },
  19836. side: {
  19837. height: math.unit(7, "feet"),
  19838. weight: math.unit(275, "lb"),
  19839. name: "Side",
  19840. image: {
  19841. source: "./media/characters/claude-delroute/side.svg",
  19842. extra: 908/853,
  19843. bottom: 16/924
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(7, "feet"),
  19848. weight: math.unit(275, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/claude-delroute/back.svg",
  19852. extra: 911/829,
  19853. bottom: 18/929
  19854. }
  19855. },
  19856. maw: {
  19857. height: math.unit(0.6407, "meters"),
  19858. name: "Maw",
  19859. image: {
  19860. source: "./media/characters/claude-delroute/maw.svg"
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(7, "feet"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Lorge",
  19872. height: math.unit(20, "feet")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(8 + 4 / 12, "feet"),
  19881. weight: math.unit(600, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/dragonien/front.svg",
  19885. extra: 100 / 94,
  19886. bottom: 3.3 / 103.3445
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(8 + 4 / 12, "feet"),
  19891. weight: math.unit(600, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/dragonien/back.svg",
  19895. extra: 776 / 746,
  19896. bottom: 6.4 / 782.0616
  19897. }
  19898. },
  19899. foot: {
  19900. height: math.unit(1.54, "feet"),
  19901. name: "Foot",
  19902. image: {
  19903. source: "./media/characters/dragonien/foot.svg",
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(8 + 4 / 12, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Macro",
  19915. height: math.unit(200, "feet")
  19916. },
  19917. {
  19918. name: "Megamacro",
  19919. height: math.unit(1, "mile")
  19920. },
  19921. {
  19922. name: "Gigamacro",
  19923. height: math.unit(1000, "miles")
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. weight: math.unit(110, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/desta/front.svg",
  19936. extra: 767 / 726,
  19937. bottom: 11.7 / 779
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(5 + 2 / 12, "feet"),
  19942. weight: math.unit(110, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/desta/back.svg",
  19946. extra: 777 / 728,
  19947. bottom: 6 / 784
  19948. }
  19949. },
  19950. frontAlt: {
  19951. height: math.unit(5 + 2 / 12, "feet"),
  19952. weight: math.unit(110, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/desta/front-alt.svg",
  19956. extra: 1482 / 1417
  19957. }
  19958. },
  19959. side: {
  19960. height: math.unit(5 + 2 / 12, "feet"),
  19961. weight: math.unit(110, "lb"),
  19962. name: "Side",
  19963. image: {
  19964. source: "./media/characters/desta/side.svg",
  19965. extra: 2579 / 2491,
  19966. bottom: 0.053
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Micro",
  19973. height: math.unit(6, "inches")
  19974. },
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 2 / 12, "feet"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Macro",
  19982. height: math.unit(62, "feet")
  19983. },
  19984. {
  19985. name: "Megamacro",
  19986. height: math.unit(1800, "feet")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(10, "feet"),
  19995. weight: math.unit(700, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/storm-alystar/front.svg",
  19999. extra: 2112 / 1898,
  20000. bottom: 0.034
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Micro",
  20007. height: math.unit(3.5, "inches")
  20008. },
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(10, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(400, "feet")
  20017. },
  20018. {
  20019. name: "Deific",
  20020. height: math.unit(60, "miles")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(2.35, "meters"),
  20029. weight: math.unit(119, "kg"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/ilia/front.svg",
  20033. extra: 1285 / 1255,
  20034. bottom: 0.06
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(2.35, "meters")
  20042. },
  20043. {
  20044. name: "Macro",
  20045. height: math.unit(140, "meters"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Megamacro",
  20050. height: math.unit(100, "miles")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(6 + 5 / 12, "feet"),
  20059. weight: math.unit(190, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/kingdead/front.svg",
  20063. extra: 1228 / 1177
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Micro",
  20070. height: math.unit(7, "inches")
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 5 / 12, "feet")
  20075. },
  20076. {
  20077. name: "Macro",
  20078. height: math.unit(150, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Megamacro",
  20083. height: math.unit(200, "miles")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(8, "feet"),
  20092. weight: math.unit(600, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/kyrehx/front.svg",
  20096. extra: 1195 / 1095,
  20097. bottom: 0.034
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Micro",
  20104. height: math.unit(2, "inches")
  20105. },
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(8, "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(255, "feet")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20122. weight: math.unit(184, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/xang/front.svg",
  20126. extra: 845 / 755
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(0.935 * 146, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(0.935 * 3, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20148. {
  20149. frontDressed: {
  20150. height: math.unit(5 + 7 / 12, "feet"),
  20151. weight: math.unit(140, "lb"),
  20152. name: "Front (Dressed)",
  20153. image: {
  20154. source: "./media/characters/doc-weardno/front-dressed.svg",
  20155. extra: 263 / 234
  20156. }
  20157. },
  20158. backDressed: {
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. weight: math.unit(140, "lb"),
  20161. name: "Back (Dressed)",
  20162. image: {
  20163. source: "./media/characters/doc-weardno/back-dressed.svg",
  20164. extra: 266 / 238
  20165. }
  20166. },
  20167. front: {
  20168. height: math.unit(5 + 7 / 12, "feet"),
  20169. weight: math.unit(140, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/doc-weardno/front.svg",
  20173. extra: 254 / 233
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Micro",
  20180. height: math.unit(3, "inches")
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 7 / 12, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(25, "feet")
  20190. },
  20191. {
  20192. name: "Megamacro",
  20193. height: math.unit(2, "miles")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(6 + 2 / 12, "feet"),
  20202. weight: math.unit(153, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/seth-whilst/front.svg",
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Micro",
  20213. height: math.unit(5, "inches")
  20214. },
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(6 + 2 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(3, "inches"),
  20227. weight: math.unit(8, "grams"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/pocket-jabari/front.svg",
  20231. extra: 1024 / 974,
  20232. bottom: 0.039
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Minimicro",
  20239. height: math.unit(8, "mm")
  20240. },
  20241. {
  20242. name: "Micro",
  20243. height: math.unit(3, "inches"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(3, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20254. {
  20255. frontDressed: {
  20256. height: math.unit(15, "feet"),
  20257. weight: math.unit(3280, "lb"),
  20258. name: "Front (Dressed)",
  20259. image: {
  20260. source: "./media/characters/sapphy/front-dressed.svg",
  20261. extra: 1951/1654,
  20262. bottom: 194/2145
  20263. },
  20264. form: "anthro",
  20265. default: true
  20266. },
  20267. backDressed: {
  20268. height: math.unit(15, "feet"),
  20269. weight: math.unit(3280, "lb"),
  20270. name: "Back (Dressed)",
  20271. image: {
  20272. source: "./media/characters/sapphy/back-dressed.svg",
  20273. extra: 2058/1918,
  20274. bottom: 125/2183
  20275. },
  20276. form: "anthro"
  20277. },
  20278. frontNude: {
  20279. height: math.unit(15, "feet"),
  20280. weight: math.unit(3280, "lb"),
  20281. name: "Front (Nude)",
  20282. image: {
  20283. source: "./media/characters/sapphy/front-nude.svg",
  20284. extra: 1951/1654,
  20285. bottom: 194/2145
  20286. },
  20287. form: "anthro"
  20288. },
  20289. backNude: {
  20290. height: math.unit(15, "feet"),
  20291. weight: math.unit(3280, "lb"),
  20292. name: "Back (Nude)",
  20293. image: {
  20294. source: "./media/characters/sapphy/back-nude.svg",
  20295. extra: 2058/1918,
  20296. bottom: 125/2183
  20297. },
  20298. form: "anthro"
  20299. },
  20300. full: {
  20301. height: math.unit(15, "feet"),
  20302. weight: math.unit(3280, "lb"),
  20303. name: "Full",
  20304. image: {
  20305. source: "./media/characters/sapphy/full.svg",
  20306. extra: 1396/1317,
  20307. bottom: 44/1440
  20308. },
  20309. form: "anthro"
  20310. },
  20311. dick: {
  20312. height: math.unit(3.8, "feet"),
  20313. name: "Dick",
  20314. image: {
  20315. source: "./media/characters/sapphy/dick.svg"
  20316. },
  20317. form: "anthro"
  20318. },
  20319. feral: {
  20320. height: math.unit(35, "feet"),
  20321. weight: math.unit(160, "tons"),
  20322. name: "Feral",
  20323. image: {
  20324. source: "./media/characters/sapphy/feral.svg",
  20325. extra: 1050/573,
  20326. bottom: 60/1110
  20327. },
  20328. form: "feral",
  20329. default: true
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(15, "feet"),
  20336. form: "anthro"
  20337. },
  20338. {
  20339. name: "Casual Macro",
  20340. height: math.unit(120, "feet"),
  20341. form: "anthro"
  20342. },
  20343. {
  20344. name: "Macro",
  20345. height: math.unit(2150, "feet"),
  20346. default: true,
  20347. form: "anthro"
  20348. },
  20349. {
  20350. name: "Megamacro",
  20351. height: math.unit(8, "miles"),
  20352. form: "anthro"
  20353. },
  20354. {
  20355. name: "Galaxy Mom",
  20356. height: math.unit(6, "megalightyears"),
  20357. form: "anthro"
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(35, "feet"),
  20362. form: "feral",
  20363. default: true
  20364. },
  20365. {
  20366. name: "Macro",
  20367. height: math.unit(300, "feet"),
  20368. form: "feral"
  20369. },
  20370. {
  20371. name: "Galaxy Mom",
  20372. height: math.unit(10, "megalightyears"),
  20373. form: "feral"
  20374. },
  20375. ],
  20376. {
  20377. "anthro": {
  20378. name: "Anthro",
  20379. default: true
  20380. },
  20381. "feral": {
  20382. name: "Feral"
  20383. }
  20384. }
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20388. {
  20389. hyenaFront: {
  20390. height: math.unit(6, "feet"),
  20391. weight: math.unit(190, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/kiro/hyena-front.svg",
  20395. extra: 927/839,
  20396. bottom: 91/1018
  20397. },
  20398. form: "hyena",
  20399. default: true
  20400. },
  20401. front: {
  20402. height: math.unit(6, "feet"),
  20403. weight: math.unit(170, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/kiro/front.svg",
  20407. extra: 1064 / 1012,
  20408. bottom: 0.052
  20409. },
  20410. form: "folf",
  20411. default: true
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Micro",
  20417. height: math.unit(6, "inches"),
  20418. form: "folf"
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(6, "feet"),
  20423. form: "folf",
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(72, "feet"),
  20429. form: "folf"
  20430. },
  20431. {
  20432. name: "Micro",
  20433. height: math.unit(6, "inches"),
  20434. form: "hyena"
  20435. },
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(6, "feet"),
  20439. form: "hyena",
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(72, "feet"),
  20445. form: "hyena"
  20446. },
  20447. ],
  20448. {
  20449. "hyena": {
  20450. name: "Hyena",
  20451. default: true
  20452. },
  20453. "folf": {
  20454. name: "Folf",
  20455. },
  20456. }
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. weight: math.unit(175, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/irishfox/front.svg",
  20467. extra: 1912 / 1680,
  20468. bottom: 0.02
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Nano",
  20475. height: math.unit(1, "mm")
  20476. },
  20477. {
  20478. name: "Micro",
  20479. height: math.unit(2, "inches")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(5 + 9 / 12, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(45, "feet")
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(6 + 1 / 12, "feet"),
  20497. weight: math.unit(75, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/aronai-sieyes/front.svg",
  20501. extra: 1532/1450,
  20502. bottom: 42/1574
  20503. }
  20504. },
  20505. side: {
  20506. height: math.unit(6 + 1 / 12, "feet"),
  20507. weight: math.unit(75, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/aronai-sieyes/side.svg",
  20511. extra: 1422/1365,
  20512. bottom: 148/1570
  20513. }
  20514. },
  20515. back: {
  20516. height: math.unit(6 + 1 / 12, "feet"),
  20517. weight: math.unit(75, "lb"),
  20518. name: "Back",
  20519. image: {
  20520. source: "./media/characters/aronai-sieyes/back.svg",
  20521. extra: 1526/1464,
  20522. bottom: 51/1577
  20523. }
  20524. },
  20525. dressed: {
  20526. height: math.unit(6 + 1 / 12, "feet"),
  20527. weight: math.unit(75, "lb"),
  20528. name: "Dressed",
  20529. image: {
  20530. source: "./media/characters/aronai-sieyes/dressed.svg",
  20531. extra: 1559/1483,
  20532. bottom: 39/1598
  20533. }
  20534. },
  20535. slit: {
  20536. height: math.unit(1.3, "feet"),
  20537. name: "Slit",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/slit.svg"
  20540. }
  20541. },
  20542. slitSpread: {
  20543. height: math.unit(0.9, "feet"),
  20544. name: "Slit (Spread)",
  20545. image: {
  20546. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20547. }
  20548. },
  20549. rump: {
  20550. height: math.unit(1.3, "feet"),
  20551. name: "Rump",
  20552. image: {
  20553. source: "./media/characters/aronai-sieyes/rump.svg"
  20554. }
  20555. },
  20556. maw: {
  20557. height: math.unit(1.25, "feet"),
  20558. name: "Maw",
  20559. image: {
  20560. source: "./media/characters/aronai-sieyes/maw.svg"
  20561. }
  20562. },
  20563. feral: {
  20564. height: math.unit(18, "feet"),
  20565. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20566. name: "Feral",
  20567. image: {
  20568. source: "./media/characters/aronai-sieyes/feral.svg",
  20569. extra: 1530 / 1240,
  20570. bottom: 0.035
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(2, "inches")
  20578. },
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 1 / 12, "feet"),
  20582. default: true
  20583. }
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(12, "feet"),
  20591. weight: math.unit(410, "kg"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/xuna/front.svg",
  20595. extra: 2184 / 1980
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(12, "feet"),
  20600. weight: math.unit(410, "kg"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/xuna/side.svg",
  20604. extra: 2184 / 1980
  20605. }
  20606. },
  20607. back: {
  20608. height: math.unit(12, "feet"),
  20609. weight: math.unit(410, "kg"),
  20610. name: "Back",
  20611. image: {
  20612. source: "./media/characters/xuna/back.svg",
  20613. extra: 2184 / 1980
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Nano glow",
  20620. height: math.unit(10, "nm")
  20621. },
  20622. {
  20623. name: "Micro floof",
  20624. height: math.unit(0.3, "m")
  20625. },
  20626. {
  20627. name: "Huggable softy boi",
  20628. height: math.unit(3.6576, "m"),
  20629. default: true
  20630. },
  20631. {
  20632. name: "Admirable floof",
  20633. height: math.unit(80, "meters")
  20634. },
  20635. {
  20636. name: "Gentle macro",
  20637. height: math.unit(300, "meters")
  20638. },
  20639. {
  20640. name: "Very careful floof",
  20641. height: math.unit(3200, "meters")
  20642. },
  20643. {
  20644. name: "The mega floof",
  20645. height: math.unit(36000, "meters")
  20646. },
  20647. {
  20648. name: "Giga-fur-Wicker",
  20649. height: math.unit(4800000, "meters")
  20650. },
  20651. {
  20652. name: "Licky world",
  20653. height: math.unit(20000000, "meters")
  20654. },
  20655. {
  20656. name: "Floofy cyan sun",
  20657. height: math.unit(1500000000, "meters")
  20658. },
  20659. {
  20660. name: "Milky Wicker",
  20661. height: math.unit(1000000000000000000000, "meters")
  20662. },
  20663. {
  20664. name: "The observing Wicker",
  20665. height: math.unit(999999999999999999999999999, "meters")
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20671. {
  20672. front: {
  20673. height: math.unit(5 + 9 / 12, "feet"),
  20674. weight: math.unit(150, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/arokha-sieyes/front.svg",
  20678. extra: 1425 / 1284,
  20679. bottom: 0.05
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(5 + 9 / 12, "feet")
  20687. },
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(30, "meters"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(6, "feet"),
  20700. weight: math.unit(180, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/arokh-sieyes/front.svg",
  20704. extra: 1830 / 1769,
  20705. bottom: 0.01
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(6, "feet")
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(30, "meters"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20723. {
  20724. side: {
  20725. height: math.unit(13 + 1 / 12, "feet"),
  20726. weight: math.unit(8.5, "tonnes"),
  20727. preyCapacity: math.unit(36, "people"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/goldeneye/side.svg",
  20731. extra: 1139/741,
  20732. bottom: 98/1237
  20733. }
  20734. },
  20735. front: {
  20736. height: math.unit(5.1, "feet"),
  20737. weight: math.unit(8.5, "tonnes"),
  20738. preyCapacity: math.unit(36, "people"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/goldeneye/front.svg",
  20742. extra: 635/365,
  20743. bottom: 598/1233
  20744. }
  20745. },
  20746. maw: {
  20747. height: math.unit(6.6, "feet"),
  20748. name: "Maw",
  20749. image: {
  20750. source: "./media/characters/goldeneye/maw.svg"
  20751. }
  20752. },
  20753. headFront: {
  20754. height: math.unit(8, "feet"),
  20755. name: "Head (Front)",
  20756. image: {
  20757. source: "./media/characters/goldeneye/head-front.svg"
  20758. }
  20759. },
  20760. headSide: {
  20761. height: math.unit(6, "feet"),
  20762. name: "Head (Side)",
  20763. image: {
  20764. source: "./media/characters/goldeneye/head-side.svg"
  20765. }
  20766. },
  20767. headBack: {
  20768. height: math.unit(8, "feet"),
  20769. name: "Head (Back)",
  20770. image: {
  20771. source: "./media/characters/goldeneye/head-back.svg"
  20772. }
  20773. },
  20774. paw: {
  20775. height: math.unit(3.4, "feet"),
  20776. name: "Paw",
  20777. image: {
  20778. source: "./media/characters/goldeneye/paw.svg"
  20779. }
  20780. },
  20781. toering: {
  20782. height: math.unit(0.45, "feet"),
  20783. name: "Toering",
  20784. image: {
  20785. source: "./media/characters/goldeneye/toering.svg"
  20786. }
  20787. },
  20788. eyes: {
  20789. height: math.unit(0.5, "feet"),
  20790. name: "Eyes",
  20791. image: {
  20792. source: "./media/characters/goldeneye/eyes.svg"
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(13 + 1 / 12, "feet"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20806. {
  20807. front: {
  20808. height: math.unit(6 + 1 / 12, "feet"),
  20809. weight: math.unit(210, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/leonardo-lycheborne/front.svg",
  20813. extra: 776/723,
  20814. bottom: 34/810
  20815. }
  20816. },
  20817. side: {
  20818. height: math.unit(6 + 1 / 12, "feet"),
  20819. weight: math.unit(210, "lb"),
  20820. name: "Side",
  20821. image: {
  20822. source: "./media/characters/leonardo-lycheborne/side.svg",
  20823. extra: 780/728,
  20824. bottom: 12/792
  20825. }
  20826. },
  20827. back: {
  20828. height: math.unit(6 + 1 / 12, "feet"),
  20829. weight: math.unit(210, "lb"),
  20830. name: "Back",
  20831. image: {
  20832. source: "./media/characters/leonardo-lycheborne/back.svg",
  20833. extra: 775/721,
  20834. bottom: 17/792
  20835. }
  20836. },
  20837. hand: {
  20838. height: math.unit(1.08, "feet"),
  20839. name: "Hand",
  20840. image: {
  20841. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20842. }
  20843. },
  20844. foot: {
  20845. height: math.unit(1.32, "feet"),
  20846. name: "Foot",
  20847. image: {
  20848. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20849. }
  20850. },
  20851. maw: {
  20852. height: math.unit(1, "feet"),
  20853. name: "Maw",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20856. }
  20857. },
  20858. were: {
  20859. height: math.unit(20, "feet"),
  20860. weight: math.unit(7800, "lb"),
  20861. name: "Were",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/were.svg",
  20864. extra: 1224/1165,
  20865. bottom: 72/1296
  20866. }
  20867. },
  20868. feral: {
  20869. height: math.unit(7.5, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Feral",
  20872. image: {
  20873. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20874. extra: 797/702,
  20875. bottom: 139/936
  20876. }
  20877. },
  20878. taur: {
  20879. height: math.unit(11, "feet"),
  20880. weight: math.unit(3300, "lb"),
  20881. name: "Taur",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20884. extra: 1271/1197,
  20885. bottom: 47/1318
  20886. }
  20887. },
  20888. barghest: {
  20889. height: math.unit(11, "feet"),
  20890. weight: math.unit(1300, "lb"),
  20891. name: "Barghest",
  20892. image: {
  20893. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20894. extra: 1291/1204,
  20895. bottom: 37/1328
  20896. }
  20897. },
  20898. dick: {
  20899. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20900. name: "Dick",
  20901. image: {
  20902. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20903. }
  20904. },
  20905. dickWere: {
  20906. height: math.unit((20) / 3.8, "feet"),
  20907. name: "Dick (Were)",
  20908. image: {
  20909. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(6 + 1 / 12, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(10, "feet"),
  20926. weight: math.unit(350, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/jet/front.svg",
  20930. extra: 2050 / 1980,
  20931. bottom: 0.013
  20932. }
  20933. },
  20934. back: {
  20935. height: math.unit(10, "feet"),
  20936. weight: math.unit(350, "lb"),
  20937. name: "Back",
  20938. image: {
  20939. source: "./media/characters/jet/back.svg",
  20940. extra: 2050 / 1980,
  20941. bottom: 0.013
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Micro",
  20948. height: math.unit(6, "inches")
  20949. },
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(10, "feet"),
  20953. default: true
  20954. },
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(100, "feet")
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(15, "feet"),
  20966. weight: math.unit(2800, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/tanarath/front.svg",
  20970. extra: 2392 / 2220,
  20971. bottom: 0.03
  20972. }
  20973. },
  20974. back: {
  20975. height: math.unit(15, "feet"),
  20976. weight: math.unit(2800, "lb"),
  20977. name: "Back",
  20978. image: {
  20979. source: "./media/characters/tanarath/back.svg",
  20980. extra: 2392 / 2220,
  20981. bottom: 0.03
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(15, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(7 + 1 / 12, "feet"),
  20998. weight: math.unit(175, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/patty-cattybatty/front.svg",
  21002. extra: 908 / 874,
  21003. bottom: 0.025
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Micro",
  21010. height: math.unit(1, "inch")
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(7 + 1 / 12, "feet")
  21015. },
  21016. {
  21017. name: "Mini Macro",
  21018. height: math.unit(155, "feet")
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(1077, "feet")
  21023. },
  21024. {
  21025. name: "Mega Macro",
  21026. height: math.unit(47650, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Giga Macro",
  21031. height: math.unit(440, "miles")
  21032. },
  21033. {
  21034. name: "Tera Macro",
  21035. height: math.unit(8700, "miles")
  21036. },
  21037. {
  21038. name: "Planetary Macro",
  21039. height: math.unit(32700, "miles")
  21040. },
  21041. {
  21042. name: "Solar Macro",
  21043. height: math.unit(550000, "miles")
  21044. },
  21045. {
  21046. name: "Celestial Macro",
  21047. height: math.unit(2.5, "AU")
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(4 + 5 / 12, "feet"),
  21056. weight: math.unit(90, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/cappu/front.svg",
  21060. extra: 1247 / 1152,
  21061. bottom: 0.012
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(4 + 5 / 12, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21075. {
  21076. frontDressed: {
  21077. height: math.unit(70, "cm"),
  21078. weight: math.unit(6, "kg"),
  21079. name: "Front (Dressed)",
  21080. image: {
  21081. source: "./media/characters/sebi/front-dressed.svg",
  21082. extra: 713.5 / 686.5,
  21083. bottom: 0.003
  21084. }
  21085. },
  21086. front: {
  21087. height: math.unit(70, "cm"),
  21088. weight: math.unit(5, "kg"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/sebi/front.svg",
  21092. extra: 713.5 / 686.5,
  21093. bottom: 0.003
  21094. }
  21095. }
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(70, "cm"),
  21101. default: true
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(8, "meters")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(6, "feet"),
  21114. weight: math.unit(150, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/typhek/front.svg",
  21118. extra: 1948 / 1929,
  21119. bottom: 0.025
  21120. }
  21121. },
  21122. side: {
  21123. height: math.unit(6, "feet"),
  21124. weight: math.unit(150, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/typhek/side.svg",
  21128. extra: 2034 / 2010,
  21129. bottom: 0.003
  21130. }
  21131. },
  21132. back: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Back",
  21136. image: {
  21137. source: "./media/characters/typhek/back.svg",
  21138. extra: 2005 / 1978,
  21139. bottom: 0.004
  21140. }
  21141. },
  21142. palm: {
  21143. height: math.unit(1.2, "feet"),
  21144. name: "Palm",
  21145. image: {
  21146. source: "./media/characters/typhek/palm.svg"
  21147. }
  21148. },
  21149. fist: {
  21150. height: math.unit(1.1, "feet"),
  21151. name: "Fist",
  21152. image: {
  21153. source: "./media/characters/typhek/fist.svg"
  21154. }
  21155. },
  21156. foot: {
  21157. height: math.unit(1.57, "feet"),
  21158. name: "Foot",
  21159. image: {
  21160. source: "./media/characters/typhek/foot.svg"
  21161. }
  21162. },
  21163. sole: {
  21164. height: math.unit(2.05, "feet"),
  21165. name: "Sole",
  21166. image: {
  21167. source: "./media/characters/typhek/sole.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(40, "stories"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Megamacro",
  21179. height: math.unit(1, "mile")
  21180. },
  21181. {
  21182. name: "Gigamacro",
  21183. height: math.unit(4000, "solarradii")
  21184. },
  21185. {
  21186. name: "Universal",
  21187. height: math.unit(1.1, "universes")
  21188. }
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21193. {
  21194. side: {
  21195. height: math.unit(5 + 7 / 12, "feet"),
  21196. weight: math.unit(150, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/kassy/side.svg",
  21200. extra: 1280 / 1225,
  21201. bottom: 0.002
  21202. }
  21203. },
  21204. front: {
  21205. height: math.unit(5 + 7 / 12, "feet"),
  21206. weight: math.unit(150, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/kassy/front.svg",
  21210. extra: 1280 / 1225,
  21211. bottom: 0.025
  21212. }
  21213. },
  21214. back: {
  21215. height: math.unit(5 + 7 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Back",
  21218. image: {
  21219. source: "./media/characters/kassy/back.svg",
  21220. extra: 1280 / 1225,
  21221. bottom: 0.002
  21222. }
  21223. },
  21224. foot: {
  21225. height: math.unit(1.266, "feet"),
  21226. name: "Foot",
  21227. image: {
  21228. source: "./media/characters/kassy/foot.svg"
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Normal",
  21235. height: math.unit(5 + 7 / 12, "feet")
  21236. },
  21237. {
  21238. name: "Macro",
  21239. height: math.unit(137, "feet"),
  21240. default: true
  21241. },
  21242. {
  21243. name: "Megamacro",
  21244. height: math.unit(1, "mile")
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(6 + 1 / 12, "feet"),
  21253. weight: math.unit(200, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/neil/front.svg",
  21257. extra: 1326 / 1250,
  21258. bottom: 0.023
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(6 + 1 / 12, "feet"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(200, "feet")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5 + 9 / 12, "feet"),
  21279. weight: math.unit(190, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/atticus/front.svg",
  21283. extra: 2934 / 2785,
  21284. bottom: 0.025
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(5 + 9 / 12, "feet"),
  21292. default: true
  21293. },
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(180, "feet")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21302. {
  21303. side: {
  21304. height: math.unit(9, "feet"),
  21305. weight: math.unit(650, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/milo/side.svg",
  21309. extra: 2644 / 2310,
  21310. bottom: 0.032
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(9, "feet"),
  21318. default: true
  21319. },
  21320. {
  21321. name: "Macro",
  21322. height: math.unit(300, "feet")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21328. {
  21329. side: {
  21330. height: math.unit(8, "meters"),
  21331. weight: math.unit(90000, "kg"),
  21332. name: "Side",
  21333. image: {
  21334. source: "./media/characters/ijzer/side.svg",
  21335. extra: 2756 / 1600,
  21336. bottom: 0.01
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Small",
  21343. height: math.unit(3, "meters")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(8, "meters"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Normal+",
  21352. height: math.unit(10, "meters")
  21353. },
  21354. {
  21355. name: "Bigger",
  21356. height: math.unit(24, "meters")
  21357. },
  21358. {
  21359. name: "Huge",
  21360. height: math.unit(80, "meters")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(6 + 2 / 12, "feet"),
  21369. weight: math.unit(153, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/luca-cervicum/front.svg",
  21373. extra: 370 / 327,
  21374. bottom: 0.015
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(6 + 2 / 12, "feet"),
  21379. weight: math.unit(153, "lb"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/luca-cervicum/back.svg",
  21383. extra: 367 / 333,
  21384. bottom: 0.005
  21385. }
  21386. },
  21387. frontGear: {
  21388. height: math.unit(6 + 2 / 12, "feet"),
  21389. weight: math.unit(173, "lb"),
  21390. name: "Front (Gear)",
  21391. image: {
  21392. source: "./media/characters/luca-cervicum/front-gear.svg",
  21393. extra: 377 / 333,
  21394. bottom: 0.006
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(6 + 2 / 12, "feet"),
  21402. default: true
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21408. {
  21409. front: {
  21410. height: math.unit(6 + 1 / 12, "feet"),
  21411. weight: math.unit(304, "lb"),
  21412. name: "Front",
  21413. image: {
  21414. source: "./media/characters/oliver/front.svg",
  21415. extra: 157 / 143,
  21416. bottom: 0.08
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(6 + 1 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. weight: math.unit(140, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/shane/front.svg",
  21437. extra: 304 / 289,
  21438. bottom: 0.005
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 7 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 9 / 12, "feet"),
  21455. weight: math.unit(178, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/shin/front.svg",
  21459. extra: 159 / 151,
  21460. bottom: 0.015
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(5 + 9 / 12, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(5 + 10 / 12, "feet"),
  21477. weight: math.unit(168, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/xerxes/front.svg",
  21481. extra: 282 / 260,
  21482. bottom: 0.045
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(5 + 10 / 12, "feet"),
  21490. default: true
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(6 + 7 / 12, "feet"),
  21499. weight: math.unit(208, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/chaska/front.svg",
  21503. extra: 332 / 319,
  21504. bottom: 0.015
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(6 + 7 / 12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21518. {
  21519. front: {
  21520. height: math.unit(5 + 8 / 12, "feet"),
  21521. weight: math.unit(208, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/enuk/front.svg",
  21525. extra: 437 / 406,
  21526. bottom: 0.02
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(5 + 8 / 12, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(5 + 10 / 12, "feet"),
  21543. weight: math.unit(252, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/bruun/front.svg",
  21547. extra: 197 / 187,
  21548. bottom: 0.012
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Normal",
  21555. height: math.unit(5 + 10 / 12, "feet"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(6 + 10 / 12, "feet"),
  21565. weight: math.unit(255, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/alexeev/front.svg",
  21569. extra: 213 / 200,
  21570. bottom: 0.05
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(6 + 10 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(2 + 8 / 12, "feet"),
  21587. weight: math.unit(22, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/evelyn/front.svg",
  21591. extra: 208 / 180
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(2 + 8 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 9 / 12, "feet"),
  21608. weight: math.unit(139, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/inca/front.svg",
  21612. extra: 294 / 291,
  21613. bottom: 0.03
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 9 / 12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(6 + 3 / 12, "feet"),
  21630. weight: math.unit(185, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/mera/front.svg",
  21634. extra: 291 / 277,
  21635. bottom: 0.03
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(6 + 3 / 12, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(6 + 7 / 12, "feet"),
  21652. weight: math.unit(160, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/ceres/front.svg",
  21656. extra: 1023 / 950,
  21657. bottom: 0.027
  21658. }
  21659. },
  21660. back: {
  21661. height: math.unit(6 + 7 / 12, "feet"),
  21662. weight: math.unit(160, "lb"),
  21663. name: "Back",
  21664. image: {
  21665. source: "./media/characters/ceres/back.svg",
  21666. extra: 1023 / 950
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 7 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(5 + 10 / 12, "feet"),
  21683. weight: math.unit(150, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/kris/front.svg",
  21687. extra: 885 / 803,
  21688. bottom: 0.03
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 10 / 12, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(7, "feet"),
  21705. weight: math.unit(120, "kg"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/taluthus/front.svg",
  21709. extra: 903 / 833,
  21710. bottom: 0.015
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(7, "feet"),
  21718. default: true
  21719. },
  21720. {
  21721. name: "Macro",
  21722. height: math.unit(300, "feet")
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(5 + 9 / 12, "feet"),
  21731. weight: math.unit(145, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/dawn/front.svg",
  21735. extra: 2094 / 2016,
  21736. bottom: 0.025
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 9 / 12, "feet"),
  21741. weight: math.unit(160, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/dawn/back.svg",
  21745. extra: 2112 / 2080,
  21746. bottom: 0.005
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(6 + 7 / 12, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21760. {
  21761. anthro: {
  21762. height: math.unit(8 + 3 / 12, "feet"),
  21763. weight: math.unit(450, "lb"),
  21764. name: "Anthro",
  21765. image: {
  21766. source: "./media/characters/arador/anthro.svg",
  21767. extra: 1835 / 1718,
  21768. bottom: 0.025
  21769. }
  21770. },
  21771. feral: {
  21772. height: math.unit(4, "feet"),
  21773. weight: math.unit(200, "lb"),
  21774. name: "Feral",
  21775. image: {
  21776. source: "./media/characters/arador/feral.svg",
  21777. extra: 1683 / 1514,
  21778. bottom: 0.07
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(8 + 3 / 12, "feet")
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(82.5, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 10 / 12, "feet"),
  21799. weight: math.unit(125, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/dharsi/front.svg",
  21803. extra: 716 / 630,
  21804. bottom: 0.035
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Nano",
  21811. height: math.unit(100, "nm")
  21812. },
  21813. {
  21814. name: "Micro",
  21815. height: math.unit(2, "inches")
  21816. },
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 10 / 12, "feet"),
  21820. default: true
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(1000, "feet")
  21825. },
  21826. {
  21827. name: "Megamacro",
  21828. height: math.unit(10, "miles")
  21829. },
  21830. {
  21831. name: "Gigamacro",
  21832. height: math.unit(3000, "miles")
  21833. },
  21834. {
  21835. name: "Teramacro",
  21836. height: math.unit(500000, "miles")
  21837. },
  21838. {
  21839. name: "Teramacro+",
  21840. height: math.unit(30, "galaxies")
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(150, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/deathy/front.svg",
  21853. extra: 1552 / 1463,
  21854. bottom: 0.025
  21855. }
  21856. },
  21857. side: {
  21858. height: math.unit(6, "feet"),
  21859. weight: math.unit(150, "lb"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/deathy/side.svg",
  21863. extra: 1604 / 1455,
  21864. bottom: 0.025
  21865. }
  21866. },
  21867. back: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Back",
  21871. image: {
  21872. source: "./media/characters/deathy/back.svg",
  21873. extra: 1580 / 1463,
  21874. bottom: 0.005
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Micro",
  21881. height: math.unit(5, "millimeters")
  21882. },
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(6 + 5 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21892. {
  21893. front: {
  21894. height: math.unit(16, "feet"),
  21895. weight: math.unit(4000, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/juniper/front.svg",
  21899. bottom: 0.04
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(16, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(6, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/hipster/front.svg",
  21920. extra: 1312 / 1209,
  21921. bottom: 0.025
  21922. }
  21923. },
  21924. back: {
  21925. height: math.unit(6, "feet"),
  21926. weight: math.unit(150, "lb"),
  21927. name: "Back",
  21928. image: {
  21929. source: "./media/characters/hipster/back.svg",
  21930. extra: 1281 / 1196,
  21931. bottom: 0.01
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Micro",
  21938. height: math.unit(1, "mm")
  21939. },
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(4, "inches"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(500, "feet")
  21948. },
  21949. {
  21950. name: "Megamacro",
  21951. height: math.unit(1000, "miles")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(6, "feet"),
  21960. weight: math.unit(150, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/tendirmuldr/front.svg",
  21964. extra: 1878 / 1772,
  21965. bottom: 0.015
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(1500, "miles"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21979. {
  21980. front: {
  21981. height: math.unit(14, "feet"),
  21982. weight: math.unit(12000, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/mort/front.svg",
  21986. extra: 365 / 318,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. side: {
  21991. height: math.unit(14, "feet"),
  21992. weight: math.unit(12000, "lb"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/mort/side.svg",
  21996. extra: 365 / 318,
  21997. bottom: 0.052
  21998. },
  21999. default: true
  22000. },
  22001. back: {
  22002. height: math.unit(14, "feet"),
  22003. weight: math.unit(12000, "lb"),
  22004. name: "Back",
  22005. image: {
  22006. source: "./media/characters/mort/back.svg",
  22007. extra: 371 / 332,
  22008. bottom: 0.18
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(14, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22022. {
  22023. front: {
  22024. height: math.unit(8, "feet"),
  22025. weight: math.unit(1, "ton"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/lycoa/front.svg",
  22029. extra: 1836/1728,
  22030. bottom: 81/1917
  22031. }
  22032. },
  22033. back: {
  22034. height: math.unit(8, "feet"),
  22035. weight: math.unit(1, "ton"),
  22036. name: "Back",
  22037. image: {
  22038. source: "./media/characters/lycoa/back.svg",
  22039. extra: 1785/1720,
  22040. bottom: 91/1876
  22041. }
  22042. },
  22043. head: {
  22044. height: math.unit(1.6243, "feet"),
  22045. name: "Head",
  22046. image: {
  22047. source: "./media/characters/lycoa/head.svg",
  22048. extra: 1011/782,
  22049. bottom: 0/1011
  22050. }
  22051. },
  22052. tailmaw: {
  22053. height: math.unit(1.9, "feet"),
  22054. name: "Tailmaw",
  22055. image: {
  22056. source: "./media/characters/lycoa/tailmaw.svg"
  22057. }
  22058. },
  22059. tentacles: {
  22060. height: math.unit(2.1, "feet"),
  22061. name: "Tentacles",
  22062. image: {
  22063. source: "./media/characters/lycoa/tentacles.svg"
  22064. }
  22065. },
  22066. dick: {
  22067. height: math.unit(1.73, "feet"),
  22068. name: "Dick",
  22069. image: {
  22070. source: "./media/characters/lycoa/dick.svg"
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(8, "feet"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Macro",
  22082. height: math.unit(30, "feet")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22088. {
  22089. front: {
  22090. height: math.unit(4 + 2 / 12, "feet"),
  22091. weight: math.unit(70, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/naldara/front.svg",
  22095. extra: 1664/1387,
  22096. bottom: 81/1745
  22097. },
  22098. form: "anthro",
  22099. default: true
  22100. },
  22101. naga: {
  22102. height: math.unit(20, "feet"),
  22103. weight: math.unit(15000, "kg"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/naldara/naga.svg",
  22107. extra: 1590/1396,
  22108. bottom: 285/1875
  22109. },
  22110. form: "naga",
  22111. default: true
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(4 + 2 / 12, "feet"),
  22118. form: "anthro",
  22119. default: true
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(20, "feet"),
  22124. form: "naga",
  22125. default: true
  22126. },
  22127. ],
  22128. {
  22129. "anthro": {
  22130. name: "Anthro",
  22131. default: true
  22132. },
  22133. "naga": {
  22134. name: "Naga"
  22135. }
  22136. }
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(13 + 7 / 12, "feet"),
  22143. weight: math.unit(1500, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/briar/front.svg",
  22147. extra: 1223/1157,
  22148. bottom: 123/1346
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(13 + 7 / 12, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22162. {
  22163. side: {
  22164. height: math.unit(16, "feet"),
  22165. weight: math.unit(500, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/vanguard/side.svg",
  22169. extra: 1022/914,
  22170. bottom: 30/1052
  22171. }
  22172. },
  22173. sideAlt: {
  22174. height: math.unit(10, "feet"),
  22175. weight: math.unit(500, "lb"),
  22176. name: "Side (Alt)",
  22177. image: {
  22178. source: "./media/characters/vanguard/side-alt.svg",
  22179. extra: 502 / 425,
  22180. bottom: 0.087
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Normal",
  22187. height: math.unit(17.71, "feet"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(7.5, "feet"),
  22197. weight: math.unit(2, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/artemis/work-safe-front.svg",
  22201. extra: 1192 / 1075,
  22202. bottom: 0.07
  22203. },
  22204. form: "work-safe",
  22205. default: true
  22206. },
  22207. frontNsfw: {
  22208. height: math.unit(7.5, "feet"),
  22209. weight: math.unit(2, "lb"),
  22210. name: "Front",
  22211. image: {
  22212. source: "./media/characters/artemis/calibrating-front.svg",
  22213. extra: 1192 / 1075,
  22214. bottom: 0.07
  22215. },
  22216. form: "calibrating",
  22217. default: true
  22218. },
  22219. frontNsfwer: {
  22220. height: math.unit(7.5, "feet"),
  22221. weight: math.unit(2, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/artemis/oversize-load-front.svg",
  22225. extra: 1192 / 1075,
  22226. bottom: 0.07
  22227. },
  22228. form: "oversize-load",
  22229. default: true
  22230. },
  22231. side: {
  22232. height: math.unit(7.5, "feet"),
  22233. weight: math.unit(2, "lb"),
  22234. name: "Side",
  22235. image: {
  22236. source: "./media/characters/artemis/work-safe-side.svg",
  22237. extra: 1192 / 1075,
  22238. bottom: 0.07
  22239. },
  22240. form: "work-safe"
  22241. },
  22242. sideNsfw: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/artemis/calibrating-side.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "calibrating"
  22252. },
  22253. sideNsfwer: {
  22254. height: math.unit(7.5, "feet"),
  22255. weight: math.unit(2, "lb"),
  22256. name: "Side",
  22257. image: {
  22258. source: "./media/characters/artemis/oversize-load-side.svg",
  22259. extra: 1192 / 1075,
  22260. bottom: 0.07
  22261. },
  22262. form: "oversize-load"
  22263. },
  22264. maw: {
  22265. height: math.unit(1.1, "feet"),
  22266. name: "Maw",
  22267. image: {
  22268. source: "./media/characters/artemis/maw.svg"
  22269. },
  22270. form: "work-safe"
  22271. },
  22272. stomach: {
  22273. height: math.unit(0.95, "feet"),
  22274. name: "Stomach",
  22275. image: {
  22276. source: "./media/characters/artemis/stomach.svg"
  22277. },
  22278. form: "work-safe"
  22279. },
  22280. dickCanine: {
  22281. height: math.unit(1, "feet"),
  22282. name: "Dick (Canine)",
  22283. image: {
  22284. source: "./media/characters/artemis/dick-canine.svg"
  22285. },
  22286. form: "calibrating"
  22287. },
  22288. dickEquine: {
  22289. height: math.unit(0.85, "feet"),
  22290. name: "Dick (Equine)",
  22291. image: {
  22292. source: "./media/characters/artemis/dick-equine.svg"
  22293. },
  22294. form: "calibrating"
  22295. },
  22296. dickExotic: {
  22297. height: math.unit(0.85, "feet"),
  22298. name: "Dick (Exotic)",
  22299. image: {
  22300. source: "./media/characters/artemis/dick-exotic.svg"
  22301. },
  22302. form: "calibrating"
  22303. },
  22304. dickCanineBigger: {
  22305. height: math.unit(1 * 1.33, "feet"),
  22306. name: "Dick (Canine)",
  22307. image: {
  22308. source: "./media/characters/artemis/dick-canine.svg"
  22309. },
  22310. form: "oversize-load"
  22311. },
  22312. dickEquineBigger: {
  22313. height: math.unit(0.85 * 1.33, "feet"),
  22314. name: "Dick (Equine)",
  22315. image: {
  22316. source: "./media/characters/artemis/dick-equine.svg"
  22317. },
  22318. form: "oversize-load"
  22319. },
  22320. dickExoticBigger: {
  22321. height: math.unit(0.85 * 1.33, "feet"),
  22322. name: "Dick (Exotic)",
  22323. image: {
  22324. source: "./media/characters/artemis/dick-exotic.svg"
  22325. },
  22326. form: "oversize-load"
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(7.5, "feet"),
  22333. form: "work-safe",
  22334. default: true
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(7.5, "feet"),
  22339. form: "calibrating",
  22340. default: true
  22341. },
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(7.5, "feet"),
  22345. form: "oversize-load",
  22346. default: true
  22347. },
  22348. {
  22349. name: "Enlarged",
  22350. height: math.unit(12, "feet"),
  22351. form: "work-safe",
  22352. },
  22353. {
  22354. name: "Enlarged",
  22355. height: math.unit(12, "feet"),
  22356. form: "calibrating",
  22357. },
  22358. {
  22359. name: "Enlarged",
  22360. height: math.unit(12, "feet"),
  22361. form: "oversize-load",
  22362. },
  22363. ],
  22364. {
  22365. "work-safe": {
  22366. name: "Work-Safe",
  22367. default: true
  22368. },
  22369. "calibrating": {
  22370. name: "Calibrating"
  22371. },
  22372. "oversize-load": {
  22373. name: "Oversize Load"
  22374. }
  22375. }
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 3 / 12, "feet"),
  22382. weight: math.unit(160, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/kira/front.svg",
  22386. extra: 906 / 786,
  22387. bottom: 0.01
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(5 + 3 / 12, "feet"),
  22392. weight: math.unit(160, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/kira/back.svg",
  22396. extra: 882 / 757,
  22397. bottom: 0.005
  22398. }
  22399. },
  22400. frontDressed: {
  22401. height: math.unit(5 + 3 / 12, "feet"),
  22402. weight: math.unit(160, "lb"),
  22403. name: "Front (Dressed)",
  22404. image: {
  22405. source: "./media/characters/kira/front-dressed.svg",
  22406. extra: 906 / 786,
  22407. bottom: 0.01
  22408. }
  22409. },
  22410. beans: {
  22411. height: math.unit(0.92, "feet"),
  22412. name: "Beans",
  22413. image: {
  22414. source: "./media/characters/kira/beans.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(5 + 3 / 12, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(5 + 4 / 12, "feet"),
  22431. weight: math.unit(145, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/scramble/front.svg",
  22435. extra: 763 / 727,
  22436. bottom: 0.05
  22437. }
  22438. },
  22439. back: {
  22440. height: math.unit(5 + 4 / 12, "feet"),
  22441. weight: math.unit(145, "lb"),
  22442. name: "Back",
  22443. image: {
  22444. source: "./media/characters/scramble/back.svg",
  22445. extra: 826 / 737,
  22446. bottom: 0.002
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(5 + 4 / 12, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22460. {
  22461. side: {
  22462. height: math.unit(6 + 2 / 12, "feet"),
  22463. weight: math.unit(190, "lb"),
  22464. name: "Side",
  22465. image: {
  22466. source: "./media/characters/biscuit/side.svg",
  22467. extra: 858 / 791,
  22468. bottom: 0.044
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(6 + 2 / 12, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(5 + 2 / 12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/poffin/front.svg",
  22489. extra: 786 / 680,
  22490. bottom: 0.005
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(5 + 2 / 12, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(6 + 3 / 12, "feet"),
  22507. weight: math.unit(519, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/dhari/front.svg",
  22511. extra: 1048 / 946,
  22512. bottom: 0.015
  22513. }
  22514. },
  22515. back: {
  22516. height: math.unit(6 + 3 / 12, "feet"),
  22517. weight: math.unit(519, "lb"),
  22518. name: "Back",
  22519. image: {
  22520. source: "./media/characters/dhari/back.svg",
  22521. extra: 1048 / 931,
  22522. bottom: 0.005
  22523. }
  22524. },
  22525. frontDressed: {
  22526. height: math.unit(6 + 3 / 12, "feet"),
  22527. weight: math.unit(519, "lb"),
  22528. name: "Front (Dressed)",
  22529. image: {
  22530. source: "./media/characters/dhari/front-dressed.svg",
  22531. extra: 1713 / 1546,
  22532. bottom: 0.02
  22533. }
  22534. },
  22535. backDressed: {
  22536. height: math.unit(6 + 3 / 12, "feet"),
  22537. weight: math.unit(519, "lb"),
  22538. name: "Back (Dressed)",
  22539. image: {
  22540. source: "./media/characters/dhari/back-dressed.svg",
  22541. extra: 1699 / 1537,
  22542. bottom: 0.01
  22543. }
  22544. },
  22545. maw: {
  22546. height: math.unit(0.95, "feet"),
  22547. name: "Maw",
  22548. image: {
  22549. source: "./media/characters/dhari/maw.svg"
  22550. }
  22551. },
  22552. wereFront: {
  22553. height: math.unit(12 + 8 / 12, "feet"),
  22554. weight: math.unit(4000, "lb"),
  22555. name: "Front (Were)",
  22556. image: {
  22557. source: "./media/characters/dhari/were-front.svg",
  22558. extra: 1065 / 969,
  22559. bottom: 0.015
  22560. }
  22561. },
  22562. wereBack: {
  22563. height: math.unit(12 + 8 / 12, "feet"),
  22564. weight: math.unit(4000, "lb"),
  22565. name: "Back (Were)",
  22566. image: {
  22567. source: "./media/characters/dhari/were-back.svg",
  22568. extra: 1065 / 969,
  22569. bottom: 0.012
  22570. }
  22571. },
  22572. wereMaw: {
  22573. height: math.unit(0.625, "meters"),
  22574. name: "Maw (Were)",
  22575. image: {
  22576. source: "./media/characters/dhari/were-maw.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(6 + 3 / 12, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22590. {
  22591. anthro: {
  22592. height: math.unit(5 + 7 / 12, "feet"),
  22593. weight: math.unit(175, "lb"),
  22594. name: "Anthro",
  22595. image: {
  22596. source: "./media/characters/rena-dyne/anthro.svg",
  22597. extra: 1849 / 1785,
  22598. bottom: 0.005
  22599. }
  22600. },
  22601. taur: {
  22602. height: math.unit(15 + 6 / 12, "feet"),
  22603. weight: math.unit(8000, "lb"),
  22604. name: "Taur",
  22605. image: {
  22606. source: "./media/characters/rena-dyne/taur.svg",
  22607. extra: 2315 / 2234,
  22608. bottom: 0.033
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(5 + 7 / 12, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(8, "feet"),
  22625. weight: math.unit(600, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/weremeep/front.svg",
  22629. extra: 970/849,
  22630. bottom: 7/977
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Lorg",
  22642. height: math.unit(12, "feet")
  22643. },
  22644. {
  22645. name: "Oh Lawd She Comin'",
  22646. height: math.unit(20, "feet")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22652. {
  22653. front: {
  22654. height: math.unit(4, "feet"),
  22655. weight: math.unit(90, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/reza/front.svg",
  22659. extra: 1183 / 1111,
  22660. bottom: 0.017
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(4, "feet"),
  22665. weight: math.unit(90, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/reza/back.svg",
  22669. extra: 1183 / 1111,
  22670. bottom: 0.01
  22671. }
  22672. },
  22673. drake: {
  22674. height: math.unit(30, "feet"),
  22675. weight: math.unit(246960, "lb"),
  22676. name: "Drake",
  22677. image: {
  22678. source: "./media/characters/reza/drake.svg",
  22679. extra: 2350 / 2024,
  22680. bottom: 60.7 / 2403
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(4, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22694. {
  22695. side: {
  22696. height: math.unit(15, "feet"),
  22697. weight: math.unit(14, "tons"),
  22698. name: "Side",
  22699. image: {
  22700. source: "./media/characters/athea/side.svg",
  22701. extra: 960 / 540,
  22702. bottom: 0.003
  22703. }
  22704. },
  22705. sitting: {
  22706. height: math.unit(6 * 2.85, "feet"),
  22707. weight: math.unit(14, "tons"),
  22708. name: "Sitting",
  22709. image: {
  22710. source: "./media/characters/athea/sitting.svg",
  22711. extra: 621 / 581,
  22712. bottom: 0.075
  22713. }
  22714. },
  22715. maw: {
  22716. height: math.unit(7.59498031496063, "feet"),
  22717. name: "Maw",
  22718. image: {
  22719. source: "./media/characters/athea/maw.svg"
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Lap Cat",
  22726. height: math.unit(2.5, "feet")
  22727. },
  22728. {
  22729. name: "Minimacro",
  22730. height: math.unit(15, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(120, "feet")
  22736. },
  22737. {
  22738. name: "Macro+",
  22739. height: math.unit(640, "feet")
  22740. },
  22741. {
  22742. name: "Colossus",
  22743. height: math.unit(2.2, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(8 + 8 / 12, "feet"),
  22752. weight: math.unit(130, "kg"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/seroko/front.svg",
  22756. extra: 1385 / 1280,
  22757. bottom: 0.025
  22758. }
  22759. },
  22760. back: {
  22761. height: math.unit(8 + 8 / 12, "feet"),
  22762. weight: math.unit(130, "kg"),
  22763. name: "Back",
  22764. image: {
  22765. source: "./media/characters/seroko/back.svg",
  22766. extra: 1369 / 1238,
  22767. bottom: 0.018
  22768. }
  22769. },
  22770. frontDressed: {
  22771. height: math.unit(8 + 8 / 12, "feet"),
  22772. weight: math.unit(130, "kg"),
  22773. name: "Front (Dressed)",
  22774. image: {
  22775. source: "./media/characters/seroko/front-dressed.svg",
  22776. extra: 1366 / 1275,
  22777. bottom: 0.03
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(8 + 8 / 12, "feet"),
  22785. default: true
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(5.5, "feet"),
  22794. weight: math.unit(160, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/quatzi/front.svg",
  22798. extra: 2346 / 2242,
  22799. bottom: 0.015
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(5.5, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Big",
  22811. height: math.unit(7.7, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(5 + 11 / 12, "feet"),
  22820. weight: math.unit(180, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/sen/front.svg",
  22824. extra: 1321 / 1254,
  22825. bottom: 0.015
  22826. }
  22827. },
  22828. side: {
  22829. height: math.unit(5 + 11 / 12, "feet"),
  22830. weight: math.unit(180, "lb"),
  22831. name: "Side",
  22832. image: {
  22833. source: "./media/characters/sen/side.svg",
  22834. extra: 1321 / 1254,
  22835. bottom: 0.007
  22836. }
  22837. },
  22838. back: {
  22839. height: math.unit(5 + 11 / 12, "feet"),
  22840. weight: math.unit(180, "lb"),
  22841. name: "Back",
  22842. image: {
  22843. source: "./media/characters/sen/back.svg",
  22844. extra: 1321 / 1254
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(5 + 11 / 12, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(166.6, "cm"),
  22861. weight: math.unit(66.6, "kg"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/fruity/front.svg",
  22865. extra: 1510 / 1386,
  22866. bottom: 0.04
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(166.6, "cm"),
  22871. weight: math.unit(66.6, "lb"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/fruity/back.svg",
  22875. extra: 1563 / 1435,
  22876. bottom: 0.005
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(166.6, "cm"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Demonic",
  22888. height: math.unit(166.6, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22894. {
  22895. side: {
  22896. height: math.unit(10, "feet"),
  22897. weight: math.unit(500, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/zost/side.svg",
  22901. extra: 2870/2533,
  22902. bottom: 252/3122
  22903. }
  22904. },
  22905. mawFront: {
  22906. height: math.unit(1.08, "meters"),
  22907. name: "Maw (Front)",
  22908. image: {
  22909. source: "./media/characters/zost/maw-front.svg"
  22910. }
  22911. },
  22912. mawSide: {
  22913. height: math.unit(2.66, "feet"),
  22914. name: "Maw (Side)",
  22915. image: {
  22916. source: "./media/characters/zost/maw-side.svg"
  22917. }
  22918. },
  22919. wingspan: {
  22920. height: math.unit(7.4, "feet"),
  22921. name: "Wingspan",
  22922. image: {
  22923. source: "./media/characters/zost/wingspan.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(10, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(120, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/luci/front.svg",
  22944. extra: 1985 / 1884,
  22945. bottom: 0.04
  22946. }
  22947. },
  22948. back: {
  22949. height: math.unit(5 + 4 / 12, "feet"),
  22950. weight: math.unit(120, "lb"),
  22951. name: "Back",
  22952. image: {
  22953. source: "./media/characters/luci/back.svg",
  22954. extra: 1892 / 1791,
  22955. bottom: 0.002
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(5 + 4 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(1500, "feet"),
  22972. weight: math.unit(3.8e6, "tons"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/2th/front.svg",
  22976. extra: 3489 / 3350,
  22977. bottom: 0.1
  22978. }
  22979. },
  22980. foot: {
  22981. height: math.unit(461, "feet"),
  22982. name: "Foot",
  22983. image: {
  22984. source: "./media/characters/2th/foot.svg"
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "\"Micro\"",
  22991. height: math.unit(15 + 7 / 12, "feet")
  22992. },
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(1500, "feet"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Macro",
  23000. height: math.unit(5000, "feet")
  23001. },
  23002. {
  23003. name: "Megamacro",
  23004. height: math.unit(15, "miles")
  23005. },
  23006. {
  23007. name: "Gigamacro",
  23008. height: math.unit(4000, "miles")
  23009. },
  23010. {
  23011. name: "Galactic",
  23012. height: math.unit(50, "AU")
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(5 + 6 / 12, "feet"),
  23021. weight: math.unit(220, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/amethyst/front.svg",
  23025. extra: 2078 / 2040,
  23026. bottom: 0.045
  23027. }
  23028. },
  23029. back: {
  23030. height: math.unit(5 + 6 / 12, "feet"),
  23031. weight: math.unit(220, "lb"),
  23032. name: "Back",
  23033. image: {
  23034. source: "./media/characters/amethyst/back.svg",
  23035. extra: 2021 / 1989,
  23036. bottom: 0.02
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(5 + 6 / 12, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(4 + 11 / 12, "feet"),
  23053. weight: math.unit(120, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/yumi-akiyama/front.svg",
  23057. extra: 1327 / 1235,
  23058. bottom: 0.02
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(4 + 11 / 12, "feet"),
  23063. weight: math.unit(120, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/yumi-akiyama/back.svg",
  23067. extra: 1287 / 1245,
  23068. bottom: 0.002
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Galactic",
  23075. height: math.unit(50, "galaxies"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Universal",
  23080. height: math.unit(100, "universes")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23086. {
  23087. front: {
  23088. height: math.unit(8, "feet"),
  23089. weight: math.unit(500, "lb"),
  23090. name: "Front",
  23091. image: {
  23092. source: "./media/characters/rifter-yrmori/front.svg",
  23093. extra: 1180 / 1125,
  23094. bottom: 0.02
  23095. }
  23096. },
  23097. back: {
  23098. height: math.unit(8, "feet"),
  23099. weight: math.unit(500, "lb"),
  23100. name: "Back",
  23101. image: {
  23102. source: "./media/characters/rifter-yrmori/back.svg",
  23103. extra: 1190 / 1145,
  23104. bottom: 0.001
  23105. }
  23106. },
  23107. wings: {
  23108. height: math.unit(7.75, "feet"),
  23109. weight: math.unit(500, "lb"),
  23110. name: "Wings",
  23111. image: {
  23112. source: "./media/characters/rifter-yrmori/wings.svg",
  23113. extra: 1357 / 1285
  23114. }
  23115. },
  23116. maw: {
  23117. height: math.unit(0.8, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/rifter-yrmori/maw.svg"
  23121. }
  23122. },
  23123. mawfront: {
  23124. height: math.unit(1.45, "feet"),
  23125. name: "Maw (Front)",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(8, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(42, "meters")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23145. {
  23146. were: {
  23147. height: math.unit(25 + 6 / 12, "feet"),
  23148. weight: math.unit(10000, "lb"),
  23149. name: "Were",
  23150. image: {
  23151. source: "./media/characters/tahajin/were.svg",
  23152. extra: 801 / 770,
  23153. bottom: 0.042
  23154. }
  23155. },
  23156. aquatic: {
  23157. height: math.unit(6 + 4 / 12, "feet"),
  23158. weight: math.unit(160, "lb"),
  23159. name: "Aquatic",
  23160. image: {
  23161. source: "./media/characters/tahajin/aquatic.svg",
  23162. extra: 572 / 542,
  23163. bottom: 0.04
  23164. }
  23165. },
  23166. chow: {
  23167. height: math.unit(8 + 11 / 12, "feet"),
  23168. weight: math.unit(450, "lb"),
  23169. name: "Chow",
  23170. image: {
  23171. source: "./media/characters/tahajin/chow.svg",
  23172. extra: 660 / 640,
  23173. bottom: 0.015
  23174. }
  23175. },
  23176. demiNaga: {
  23177. height: math.unit(6 + 8 / 12, "feet"),
  23178. weight: math.unit(300, "lb"),
  23179. name: "Demi Naga",
  23180. image: {
  23181. source: "./media/characters/tahajin/demi-naga.svg",
  23182. extra: 643 / 615,
  23183. bottom: 0.1
  23184. }
  23185. },
  23186. data: {
  23187. height: math.unit(5, "inches"),
  23188. weight: math.unit(0.1, "lb"),
  23189. name: "Data",
  23190. image: {
  23191. source: "./media/characters/tahajin/data.svg"
  23192. }
  23193. },
  23194. fluu: {
  23195. height: math.unit(5 + 7 / 12, "feet"),
  23196. weight: math.unit(140, "lb"),
  23197. name: "Fluu",
  23198. image: {
  23199. source: "./media/characters/tahajin/fluu.svg",
  23200. extra: 628 / 592,
  23201. bottom: 0.02
  23202. }
  23203. },
  23204. starWarrior: {
  23205. height: math.unit(4 + 5 / 12, "feet"),
  23206. weight: math.unit(50, "lb"),
  23207. name: "Star Warrior",
  23208. image: {
  23209. source: "./media/characters/tahajin/star-warrior.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(25 + 6 / 12, "feet"),
  23217. default: true
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(8, "feet"),
  23226. weight: math.unit(350, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/gabira/front.svg",
  23230. extra: 1261/1154,
  23231. bottom: 51/1312
  23232. }
  23233. },
  23234. back: {
  23235. height: math.unit(8, "feet"),
  23236. weight: math.unit(350, "lb"),
  23237. name: "Back",
  23238. image: {
  23239. source: "./media/characters/gabira/back.svg",
  23240. extra: 1265/1163,
  23241. bottom: 46/1311
  23242. }
  23243. },
  23244. head: {
  23245. height: math.unit(2.85, "feet"),
  23246. name: "Head",
  23247. image: {
  23248. source: "./media/characters/gabira/head.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(8, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 3 / 12, "feet"),
  23265. weight: math.unit(137, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/sasha-katraine/front.svg",
  23269. extra: 1745/1694,
  23270. bottom: 37/1782
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 3 / 12, "feet"),
  23275. weight: math.unit(137, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/sasha-katraine/back.svg",
  23279. extra: 1776/1699,
  23280. bottom: 26/1802
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Micro",
  23287. height: math.unit(5, "inches")
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(5 + 3 / 12, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23298. {
  23299. side: {
  23300. height: math.unit(4, "inches"),
  23301. weight: math.unit(200, "grams"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/der/side.svg",
  23305. extra: 719 / 400,
  23306. bottom: 30.6 / 749.9187
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Micro",
  23313. height: math.unit(4, "inches"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23320. {
  23321. side: {
  23322. height: math.unit(30, "meters"),
  23323. weight: math.unit(700, "tonnes"),
  23324. name: "Side",
  23325. image: {
  23326. source: "./media/characters/fixerdragon/side.svg",
  23327. extra: (1293.0514 - 116.03) / 1106.86,
  23328. bottom: 116.03 / 1293.0514
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Planck",
  23335. height: math.unit(1.6e-35, "meters")
  23336. },
  23337. {
  23338. name: "Micro",
  23339. height: math.unit(0.4, "meters")
  23340. },
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(30, "meters"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Megamacro",
  23348. height: math.unit(1.2, "megameters")
  23349. },
  23350. {
  23351. name: "Teramacro",
  23352. height: math.unit(130, "terameters")
  23353. },
  23354. {
  23355. name: "Yottamacro",
  23356. height: math.unit(6200, "yottameters")
  23357. },
  23358. ]
  23359. ));
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(8, "feet"),
  23365. weight: math.unit(250, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/kite/front.svg",
  23369. extra: 2796 / 2659,
  23370. bottom: 0.002
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(8, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(360, "feet")
  23383. },
  23384. {
  23385. name: "Megamacro",
  23386. height: math.unit(1500, "feet")
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(5 + 11/12, "feet"),
  23395. weight: math.unit(170, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/poojawa-vynar/front.svg",
  23399. extra: 1735/1585,
  23400. bottom: 96/1831
  23401. }
  23402. },
  23403. back: {
  23404. height: math.unit(5 + 11/12, "feet"),
  23405. weight: math.unit(170, "lb"),
  23406. name: "Back",
  23407. image: {
  23408. source: "./media/characters/poojawa-vynar/back.svg",
  23409. extra: 1749/1607,
  23410. bottom: 28/1777
  23411. }
  23412. },
  23413. male: {
  23414. height: math.unit(5 + 11/12, "feet"),
  23415. weight: math.unit(170, "lb"),
  23416. name: "Male",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/male.svg",
  23419. extra: 1855/1713,
  23420. bottom: 63/1918
  23421. }
  23422. },
  23423. taur: {
  23424. height: math.unit(5 + 11/12, "feet"),
  23425. weight: math.unit(170, "lb"),
  23426. name: "Taur",
  23427. image: {
  23428. source: "./media/characters/poojawa-vynar/taur.svg",
  23429. extra: 1151/1059,
  23430. bottom: 356/1507
  23431. }
  23432. },
  23433. frontDressed: {
  23434. height: math.unit(5 + 11/12, "feet"),
  23435. weight: math.unit(170, "lb"),
  23436. name: "Front (Dressed)",
  23437. image: {
  23438. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23439. extra: 1735/1585,
  23440. bottom: 96/1831
  23441. }
  23442. },
  23443. backDressed: {
  23444. height: math.unit(5 + 11/12, "feet"),
  23445. weight: math.unit(170, "lb"),
  23446. name: "Back (Dressed)",
  23447. image: {
  23448. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23449. extra: 1749/1607,
  23450. bottom: 28/1777
  23451. }
  23452. },
  23453. maleDressed: {
  23454. height: math.unit(5 + 11/12, "feet"),
  23455. weight: math.unit(170, "lb"),
  23456. name: "Male (Dressed)",
  23457. image: {
  23458. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23459. extra: 1855/1713,
  23460. bottom: 63/1918
  23461. }
  23462. },
  23463. taurDressed: {
  23464. height: math.unit(5 + 11/12, "feet"),
  23465. weight: math.unit(170, "lb"),
  23466. name: "Taur (Dressed)",
  23467. image: {
  23468. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23469. extra: 1151/1059,
  23470. bottom: 356/1507
  23471. }
  23472. },
  23473. maw: {
  23474. height: math.unit(1.46, "feet"),
  23475. name: "Maw",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/maw.svg"
  23478. }
  23479. },
  23480. head: {
  23481. height: math.unit(2.34, "feet"),
  23482. name: "Head",
  23483. image: {
  23484. source: "./media/characters/poojawa-vynar/head.svg"
  23485. }
  23486. },
  23487. paw: {
  23488. height: math.unit(1.61, "feet"),
  23489. name: "Paw",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/paw.svg"
  23492. }
  23493. },
  23494. pawToering: {
  23495. height: math.unit(1.72, "feet"),
  23496. name: "Paw (Toering)",
  23497. image: {
  23498. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23499. }
  23500. },
  23501. toering: {
  23502. height: math.unit(2.9, "inches"),
  23503. name: "Toering",
  23504. image: {
  23505. source: "./media/characters/poojawa-vynar/toering.svg"
  23506. }
  23507. },
  23508. shaft: {
  23509. height: math.unit(0.625, "feet"),
  23510. name: "Shaft",
  23511. image: {
  23512. source: "./media/characters/poojawa-vynar/shaft.svg"
  23513. }
  23514. },
  23515. spade: {
  23516. height: math.unit(0.42, "feet"),
  23517. name: "Spade",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/spade.svg"
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Shortstack",
  23526. height: math.unit(4, "feet")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(5 + 11 / 12, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Tauric",
  23535. height: math.unit(4, "meters")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(293, "meters"),
  23544. weight: math.unit(70400, "tons"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/violette/front.svg",
  23548. extra: 1227 / 1180,
  23549. bottom: 0.005
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(293, "meters"),
  23554. weight: math.unit(70400, "tons"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/violette/back.svg",
  23558. extra: 1227 / 1180,
  23559. bottom: 0.005
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(293, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(1050, "feet"),
  23576. weight: math.unit(200000, "tons"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/alessandra/front.svg",
  23580. extra: 960 / 912,
  23581. bottom: 0.06
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Macro",
  23588. height: math.unit(1050, "feet")
  23589. },
  23590. {
  23591. name: "Macro+",
  23592. height: math.unit(900, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(5, "feet"),
  23602. weight: math.unit(187, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/person/front.svg",
  23606. extra: 3087 / 2945,
  23607. bottom: 91 / 3181
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(3, "inches")
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(5, "feet"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(90, "feet")
  23624. },
  23625. {
  23626. name: "Max Size",
  23627. height: math.unit(280, "feet")
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(4.5, "meters"),
  23636. weight: math.unit(3200, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/ty/front.svg",
  23640. extra: 1038 / 960,
  23641. bottom: 31.156 / 1068
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(4.5, "meters"),
  23646. weight: math.unit(3200, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/ty/back.svg",
  23650. extra: 1044 / 966,
  23651. bottom: 7.48 / 1049
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(4.5, "meters"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(5 + 4 / 12, "feet"),
  23668. weight: math.unit(115, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/rocky/front.svg",
  23672. extra: 1012 / 975,
  23673. bottom: 54 / 1066
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(5 + 4 / 12, "feet"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23687. {
  23688. upright: {
  23689. height: math.unit(6, "meters"),
  23690. weight: math.unit(4000, "kg"),
  23691. name: "Upright",
  23692. image: {
  23693. source: "./media/characters/ruin/upright.svg",
  23694. extra: 668 / 661,
  23695. bottom: 42 / 799.8396
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(6, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(5, "feet"),
  23712. weight: math.unit(106, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/robin/front.svg",
  23716. extra: 862 / 799,
  23717. bottom: 42.4 / 914.8856
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(5, "feet"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(3, "feet"),
  23734. weight: math.unit(225, "lb"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/saian/side.svg",
  23738. extra: 566 / 356,
  23739. bottom: 79.7 / 643
  23740. }
  23741. },
  23742. maw: {
  23743. height: math.unit(2.85, "feet"),
  23744. name: "Maw",
  23745. image: {
  23746. source: "./media/characters/saian/maw.svg"
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(3, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23760. {
  23761. side: {
  23762. height: math.unit(8, "feet"),
  23763. weight: math.unit(300, "lb"),
  23764. name: "Side",
  23765. image: {
  23766. source: "./media/characters/equus-silvermane/side.svg",
  23767. extra: 2176 / 2050,
  23768. bottom: 65.7 / 2245
  23769. }
  23770. },
  23771. front: {
  23772. height: math.unit(8, "feet"),
  23773. weight: math.unit(300, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/equus-silvermane/front.svg",
  23777. extra: 4633 / 4400,
  23778. bottom: 71.3 / 4706.915
  23779. }
  23780. },
  23781. sideStepping: {
  23782. height: math.unit(8, "feet"),
  23783. weight: math.unit(300, "lb"),
  23784. name: "Side (Stepping)",
  23785. image: {
  23786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23787. extra: 1968 / 1860,
  23788. bottom: 16.4 / 1989
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(8, "feet")
  23796. },
  23797. {
  23798. name: "Minimacro",
  23799. height: math.unit(75, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(150, "feet")
  23805. },
  23806. {
  23807. name: "Macro+",
  23808. height: math.unit(1000, "feet")
  23809. },
  23810. {
  23811. name: "Megamacro",
  23812. height: math.unit(1, "mile")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23818. {
  23819. side: {
  23820. height: math.unit(20, "feet"),
  23821. weight: math.unit(30000, "kg"),
  23822. name: "Side",
  23823. image: {
  23824. source: "./media/characters/windar/side.svg",
  23825. extra: 1491 / 1248,
  23826. bottom: 82.56 / 1568
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(20, "feet"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23840. {
  23841. side: {
  23842. height: math.unit(15.66, "feet"),
  23843. weight: math.unit(150, "lb"),
  23844. name: "Side",
  23845. image: {
  23846. source: "./media/characters/melody/side.svg",
  23847. extra: 1097 / 944,
  23848. bottom: 11.8 / 1109
  23849. }
  23850. },
  23851. sideOutfit: {
  23852. height: math.unit(15.66, "feet"),
  23853. weight: math.unit(150, "lb"),
  23854. name: "Side (Outfit)",
  23855. image: {
  23856. source: "./media/characters/melody/side-outfit.svg",
  23857. extra: 1097 / 944,
  23858. bottom: 11.8 / 1109
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(15.66, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23872. {
  23873. armoredFront: {
  23874. height: math.unit(8, "feet"),
  23875. weight: math.unit(325, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/windera/armored-front.svg",
  23879. extra: 1830/1598,
  23880. bottom: 151/1981
  23881. },
  23882. form: "armored",
  23883. default: true
  23884. },
  23885. macroFront: {
  23886. height: math.unit(70, "feet"),
  23887. weight: math.unit(315453, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/windera/macro-front.svg",
  23891. extra: 963/883,
  23892. bottom: 23/986
  23893. },
  23894. form: "macro",
  23895. default: true
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(8, "feet"),
  23902. default: true,
  23903. form: "armored"
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(70, "feet"),
  23908. default: true,
  23909. form: "macro"
  23910. },
  23911. ],
  23912. {
  23913. "armored": {
  23914. name: "Armored",
  23915. default: true
  23916. },
  23917. "macro": {
  23918. name: "Macro",
  23919. },
  23920. }
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23924. {
  23925. front: {
  23926. height: math.unit(28.75, "feet"),
  23927. weight: math.unit(2000, "kg"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/sonear/front.svg",
  23931. extra: 1041.1 / 964.9,
  23932. bottom: 53.7 / 1096.6
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(28.75, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23946. {
  23947. side: {
  23948. height: math.unit(25.5, "feet"),
  23949. weight: math.unit(23000, "kg"),
  23950. name: "Side",
  23951. image: {
  23952. source: "./media/characters/kanara/side.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(25.5, "feet"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23966. {
  23967. side: {
  23968. height: math.unit(10, "feet"),
  23969. weight: math.unit(1000, "kg"),
  23970. name: "Side",
  23971. image: {
  23972. source: "./media/characters/ereus/side.svg",
  23973. extra: 1157 / 959,
  23974. bottom: 153 / 1312.5
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(10, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23988. {
  23989. side: {
  23990. height: math.unit(4.5, "feet"),
  23991. weight: math.unit(500, "lb"),
  23992. name: "Side",
  23993. image: {
  23994. source: "./media/characters/e-ter/side.svg",
  23995. extra: 1550 / 1248,
  23996. bottom: 146 / 1694
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(4.5, "feet"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24010. {
  24011. side: {
  24012. height: math.unit(9.7, "feet"),
  24013. weight: math.unit(4000, "kg"),
  24014. name: "Side",
  24015. image: {
  24016. source: "./media/characters/yamie/side.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(9.7, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(50, "feet"),
  24033. weight: math.unit(50000, "kg"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/anders/front.svg",
  24037. extra: 570 / 539,
  24038. bottom: 14.7 / 586.7
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Large",
  24045. height: math.unit(50, "feet")
  24046. },
  24047. {
  24048. name: "Macro",
  24049. height: math.unit(2000, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Megamacro",
  24054. height: math.unit(12, "miles")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(7 + 2 / 12, "feet"),
  24063. weight: math.unit(300, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/reban/front.svg",
  24067. extra: 1287/1212,
  24068. bottom: 148/1435
  24069. }
  24070. },
  24071. head: {
  24072. height: math.unit(1.95, "feet"),
  24073. name: "Head",
  24074. image: {
  24075. source: "./media/characters/reban/head.svg"
  24076. }
  24077. },
  24078. maw: {
  24079. height: math.unit(0.95, "feet"),
  24080. name: "Maw",
  24081. image: {
  24082. source: "./media/characters/reban/maw.svg"
  24083. }
  24084. },
  24085. foot: {
  24086. height: math.unit(1.65, "feet"),
  24087. name: "Foot",
  24088. image: {
  24089. source: "./media/characters/reban/foot.svg"
  24090. }
  24091. },
  24092. dick: {
  24093. height: math.unit(7 / 5, "feet"),
  24094. name: "Dick",
  24095. image: {
  24096. source: "./media/characters/reban/dick.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Natural Height",
  24103. height: math.unit(7 + 2 / 12, "feet")
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(500, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Canon Height",
  24112. height: math.unit(50, "AU")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(6, "feet"),
  24121. weight: math.unit(150, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/terrance-keayes/front.svg",
  24125. extra: 1.005,
  24126. bottom: 151 / 1615
  24127. }
  24128. },
  24129. side: {
  24130. height: math.unit(6, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/terrance-keayes/side.svg",
  24135. extra: 1.005,
  24136. bottom: 129.4 / 1544
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(6, "feet"),
  24141. weight: math.unit(150, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/terrance-keayes/back.svg",
  24145. extra: 1.005,
  24146. bottom: 58.4 / 1557.3
  24147. }
  24148. },
  24149. dick: {
  24150. height: math.unit(6 * 0.208, "feet"),
  24151. name: "Dick",
  24152. image: {
  24153. source: "./media/characters/terrance-keayes/dick.svg"
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Canon Height",
  24160. height: math.unit(35, "miles"),
  24161. default: true
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(6, "feet"),
  24170. weight: math.unit(150, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/ofelia/front.svg",
  24174. extra: 1130/1117,
  24175. bottom: 91/1221
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/ofelia/back.svg",
  24184. extra: 1172/1159,
  24185. bottom: 28/1200
  24186. }
  24187. },
  24188. maw: {
  24189. height: math.unit(1, "feet"),
  24190. name: "Maw",
  24191. image: {
  24192. source: "./media/characters/ofelia/maw.svg"
  24193. }
  24194. },
  24195. foot: {
  24196. height: math.unit(1.949, "feet"),
  24197. name: "Foot",
  24198. image: {
  24199. source: "./media/characters/ofelia/foot.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Canon Height",
  24206. height: math.unit(2000, "miles"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6, "feet"),
  24216. weight: math.unit(150, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/samuel/front.svg",
  24220. extra: 265 / 258,
  24221. bottom: 2 / 266.1566
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(100, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Full Size",
  24233. height: math.unit(1000, "miles")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(6, "feet"),
  24242. weight: math.unit(300, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/beishir-kiel/front.svg",
  24246. extra: 569 / 547,
  24247. bottom: 41.9 / 609
  24248. }
  24249. },
  24250. maw: {
  24251. height: math.unit(6 * 0.202, "feet"),
  24252. name: "Maw",
  24253. image: {
  24254. source: "./media/characters/beishir-kiel/maw.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(300, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(5 + 7/12, "feet"),
  24271. weight: math.unit(120, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/logan-grey/front.svg",
  24275. extra: 1836/1738,
  24276. bottom: 108/1944
  24277. }
  24278. },
  24279. back: {
  24280. height: math.unit(5 + 7/12, "feet"),
  24281. weight: math.unit(120, "lb"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/logan-grey/back.svg",
  24285. extra: 1880/1794,
  24286. bottom: 24/1904
  24287. }
  24288. },
  24289. frontSfw: {
  24290. height: math.unit(5 + 7/12, "feet"),
  24291. weight: math.unit(120, "lb"),
  24292. name: "Front (SFW)",
  24293. image: {
  24294. source: "./media/characters/logan-grey/front-sfw.svg",
  24295. extra: 1836/1738,
  24296. bottom: 108/1944
  24297. }
  24298. },
  24299. backSfw: {
  24300. height: math.unit(5 + 7/12, "feet"),
  24301. weight: math.unit(120, "lb"),
  24302. name: "Back (SFW)",
  24303. image: {
  24304. source: "./media/characters/logan-grey/back-sfw.svg",
  24305. extra: 1880/1794,
  24306. bottom: 24/1904
  24307. }
  24308. },
  24309. hands: {
  24310. height: math.unit(0.84, "feet"),
  24311. name: "Hands",
  24312. image: {
  24313. source: "./media/characters/logan-grey/hands.svg"
  24314. }
  24315. },
  24316. paws: {
  24317. height: math.unit(0.72, "feet"),
  24318. name: "Paws",
  24319. image: {
  24320. source: "./media/characters/logan-grey/paws.svg"
  24321. }
  24322. },
  24323. cock: {
  24324. height: math.unit(1.45, "feet"),
  24325. name: "Cock",
  24326. image: {
  24327. source: "./media/characters/logan-grey/cock.svg"
  24328. }
  24329. },
  24330. cockAlt: {
  24331. height: math.unit(1.437, "feet"),
  24332. name: "Cock (alt)",
  24333. image: {
  24334. source: "./media/characters/logan-grey/cock-alt.svg"
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(5 + 8 / 12, "feet")
  24342. },
  24343. {
  24344. name: "The 500 Foot Femboy",
  24345. height: math.unit(500, "feet"),
  24346. default: true
  24347. },
  24348. {
  24349. name: "Megmacro",
  24350. height: math.unit(20, "miles")
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(8 + 2 / 12, "feet"),
  24359. weight: math.unit(275, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/draganta/front.svg",
  24363. extra: 1177 / 1135,
  24364. bottom: 33.46 / 1212.1
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(8 + 6 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(150, "feet")
  24377. },
  24378. {
  24379. name: "Megamacro",
  24380. height: math.unit(1000, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(1.72, "m"),
  24389. weight: math.unit(80, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/voski/front.svg",
  24393. extra: 2076.22 / 2022.4,
  24394. bottom: 102.7 / 2177.3866
  24395. }
  24396. },
  24397. frontFlaccid: {
  24398. height: math.unit(1.72, "m"),
  24399. weight: math.unit(80, "lb"),
  24400. name: "Front (Flaccid)",
  24401. image: {
  24402. source: "./media/characters/voski/front-flaccid.svg",
  24403. extra: 2076.22 / 2022.4,
  24404. bottom: 102.7 / 2177.3866
  24405. }
  24406. },
  24407. frontErect: {
  24408. height: math.unit(1.72, "m"),
  24409. weight: math.unit(80, "lb"),
  24410. name: "Front (Erect)",
  24411. image: {
  24412. source: "./media/characters/voski/front-erect.svg",
  24413. extra: 2076.22 / 2022.4,
  24414. bottom: 102.7 / 2177.3866
  24415. }
  24416. },
  24417. back: {
  24418. height: math.unit(1.72, "m"),
  24419. weight: math.unit(80, "lb"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/voski/back.svg",
  24423. extra: 2104 / 2051,
  24424. bottom: 10.45 / 2113.63
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(1.72, "m")
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(55, "m"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Macro+",
  24440. height: math.unit(300, "m")
  24441. },
  24442. {
  24443. name: "Macro++",
  24444. height: math.unit(700, "m")
  24445. },
  24446. {
  24447. name: "Macro+++",
  24448. height: math.unit(4500, "m")
  24449. },
  24450. {
  24451. name: "Macro++++",
  24452. height: math.unit(45, "km")
  24453. },
  24454. {
  24455. name: "Macro+++++",
  24456. height: math.unit(1220, "km")
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(2.3, "m"),
  24465. weight: math.unit(304, "kg"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/icowom-lee/front.svg",
  24469. extra: 985 / 955,
  24470. bottom: 25.4 / 1012
  24471. }
  24472. },
  24473. fronttentacles: {
  24474. height: math.unit(2.3, "m"),
  24475. weight: math.unit(304, "kg"),
  24476. name: "Front-tentacles",
  24477. image: {
  24478. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24479. extra: 985 / 955,
  24480. bottom: 25.4 / 1012
  24481. }
  24482. },
  24483. back: {
  24484. height: math.unit(2.3, "m"),
  24485. weight: math.unit(304, "kg"),
  24486. name: "Back",
  24487. image: {
  24488. source: "./media/characters/icowom-lee/back.svg",
  24489. extra: 975 / 954,
  24490. bottom: 9.5 / 985
  24491. }
  24492. },
  24493. backtentacles: {
  24494. height: math.unit(2.3, "m"),
  24495. weight: math.unit(304, "kg"),
  24496. name: "Back-tentacles",
  24497. image: {
  24498. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24499. extra: 975 / 954,
  24500. bottom: 9.5 / 985
  24501. }
  24502. },
  24503. frontDressed: {
  24504. height: math.unit(2.3, "m"),
  24505. weight: math.unit(304, "kg"),
  24506. name: "Front (Dressed)",
  24507. image: {
  24508. source: "./media/characters/icowom-lee/front-dressed.svg",
  24509. extra: 3076 / 2933,
  24510. bottom: 51.4 / 3125.1889
  24511. }
  24512. },
  24513. rump: {
  24514. height: math.unit(0.776, "meters"),
  24515. name: "Rump",
  24516. image: {
  24517. source: "./media/characters/icowom-lee/rump.svg"
  24518. }
  24519. },
  24520. genitals: {
  24521. height: math.unit(0.78, "meters"),
  24522. name: "Genitals",
  24523. image: {
  24524. source: "./media/characters/icowom-lee/genitals.svg"
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(2.3, "meters"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(94, "meters"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(22, "meters"),
  24546. weight: math.unit(21000, "kg"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/shock-diamond/front.svg",
  24550. extra: 2204 / 2053,
  24551. bottom: 65 / 2239.47
  24552. }
  24553. },
  24554. frontNude: {
  24555. height: math.unit(22, "meters"),
  24556. weight: math.unit(21000, "kg"),
  24557. name: "Front (Nude)",
  24558. image: {
  24559. source: "./media/characters/shock-diamond/front-nude.svg",
  24560. extra: 2514 / 2285,
  24561. bottom: 13 / 2527.56
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(3, "meters")
  24569. },
  24570. {
  24571. name: "Macro",
  24572. height: math.unit(22, "meters"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24579. {
  24580. frontNsfw: {
  24581. height: math.unit(5 + 4/12, "feet"),
  24582. weight: math.unit(195, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/rory/front.svg",
  24586. extra: 1220/1100,
  24587. bottom: 103/1323
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(5 + 4/12, "feet"),
  24592. weight: math.unit(195, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/rory/back.svg",
  24596. extra: 1166/1086,
  24597. bottom: 35/1201
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Micro",
  24604. height: math.unit(3, "inches")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5 + 4/12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(90, "feet")
  24614. },
  24615. {
  24616. name: "Supercharged",
  24617. height: math.unit(270, "feet")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(5 + 9 / 12, "feet"),
  24626. weight: math.unit(190, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/sprisk/front.svg",
  24630. extra: 1225 / 1180,
  24631. bottom: 42.7 / 1266.4
  24632. }
  24633. },
  24634. frontNsfw: {
  24635. height: math.unit(5 + 9 / 12, "feet"),
  24636. weight: math.unit(190, "lb"),
  24637. name: "Front (NSFW)",
  24638. image: {
  24639. source: "./media/characters/sprisk/front-nsfw.svg",
  24640. extra: 1225 / 1180,
  24641. bottom: 42.7 / 1266.4
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(5 + 9 / 12, "feet"),
  24646. weight: math.unit(190, "lb"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/sprisk/back.svg",
  24650. extra: 1247 / 1200,
  24651. bottom: 5.6 / 1253.04
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Tiny",
  24658. height: math.unit(2, "inches")
  24659. },
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(5 + 9 / 12, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Mini Macro",
  24667. height: math.unit(18, "feet")
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(100, "feet")
  24672. },
  24673. {
  24674. name: "MACRO",
  24675. height: math.unit(50, "miles")
  24676. },
  24677. {
  24678. name: "M A C R O",
  24679. height: math.unit(300, "miles")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(15.6, "meters"),
  24688. weight: math.unit(700000, "kg"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/bunsen/side.svg",
  24692. extra: 1644 / 358
  24693. }
  24694. },
  24695. foot: {
  24696. height: math.unit(1.611 * 1644 / 358, "meter"),
  24697. name: "Foot",
  24698. image: {
  24699. source: "./media/characters/bunsen/foot.svg"
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Small",
  24706. height: math.unit(10, "feet")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(15.6, "meters"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(4 + 11 / 12, "feet"),
  24720. weight: math.unit(140, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/sesh/front.svg",
  24724. extra: 3420 / 3231,
  24725. bottom: 72 / 3949.5
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(4 + 11 / 12, "feet")
  24733. },
  24734. {
  24735. name: "Grown",
  24736. height: math.unit(15, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(1500, "feet")
  24742. },
  24743. {
  24744. name: "Megamacro",
  24745. height: math.unit(30, "miles")
  24746. },
  24747. {
  24748. name: "Continental",
  24749. height: math.unit(3000, "miles")
  24750. },
  24751. {
  24752. name: "Gravity Mass",
  24753. height: math.unit(300000, "miles")
  24754. },
  24755. {
  24756. name: "Planet Buster",
  24757. height: math.unit(30000000, "miles")
  24758. },
  24759. {
  24760. name: "Big",
  24761. height: math.unit(3000000000, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(9, "feet"),
  24770. weight: math.unit(350, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/pepper/front.svg",
  24774. extra: 1448 / 1312,
  24775. bottom: 9.4 / 1457.88
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(9, "feet"),
  24780. weight: math.unit(350, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/pepper/back.svg",
  24784. extra: 1423 / 1300,
  24785. bottom: 4.6 / 1429
  24786. }
  24787. },
  24788. maw: {
  24789. height: math.unit(0.932, "feet"),
  24790. name: "Maw",
  24791. image: {
  24792. source: "./media/characters/pepper/maw.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(9, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(6, "feet"),
  24809. weight: math.unit(150, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/maelstrom/front.svg",
  24813. extra: 2100 / 1883,
  24814. bottom: 94 / 2196.7
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Less Kaiju",
  24821. height: math.unit(200, "feet")
  24822. },
  24823. {
  24824. name: "Kaiju",
  24825. height: math.unit(400, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Kaiju-er",
  24830. height: math.unit(600, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6 + 5 / 12, "feet"),
  24839. weight: math.unit(180, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/lexir/front.svg",
  24843. extra: 180 / 172,
  24844. bottom: 12 / 192
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(6 + 5 / 12, "feet"),
  24849. weight: math.unit(180, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/lexir/back.svg",
  24853. extra: 1273/1201,
  24854. bottom: 39/1312
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Very Smal",
  24861. height: math.unit(1, "nm")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(6 + 5 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(1, "mile")
  24871. },
  24872. {
  24873. name: "Megamacro",
  24874. height: math.unit(50, "miles")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(1.5, "meters"),
  24883. weight: math.unit(100, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/maksio/front.svg",
  24887. extra: 1549 / 1531,
  24888. bottom: 123.7 / 1674.5429
  24889. }
  24890. },
  24891. back: {
  24892. height: math.unit(1.5, "meters"),
  24893. weight: math.unit(100, "lb"),
  24894. name: "Back",
  24895. image: {
  24896. source: "./media/characters/maksio/back.svg",
  24897. extra: 1541 / 1509,
  24898. bottom: 97 / 1639
  24899. }
  24900. },
  24901. hand: {
  24902. height: math.unit(0.621, "feet"),
  24903. name: "Hand",
  24904. image: {
  24905. source: "./media/characters/maksio/hand.svg"
  24906. }
  24907. },
  24908. foot: {
  24909. height: math.unit(1.611, "feet"),
  24910. name: "Foot",
  24911. image: {
  24912. source: "./media/characters/maksio/foot.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Shrunken",
  24919. height: math.unit(10, "cm")
  24920. },
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(150, "cm"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(100, "feet"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/erza-bear/front.svg",
  24936. extra: 2449 / 2390,
  24937. bottom: 46 / 2494
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(100, "feet"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/erza-bear/back.svg",
  24945. extra: 2489 / 2430,
  24946. bottom: 85.4 / 2480
  24947. }
  24948. },
  24949. tail: {
  24950. height: math.unit(42, "feet"),
  24951. name: "Tail",
  24952. image: {
  24953. source: "./media/characters/erza-bear/tail.svg"
  24954. }
  24955. },
  24956. tongue: {
  24957. height: math.unit(8, "feet"),
  24958. name: "Tongue",
  24959. image: {
  24960. source: "./media/characters/erza-bear/tongue.svg"
  24961. }
  24962. },
  24963. dick: {
  24964. height: math.unit(10.5, "feet"),
  24965. name: "Dick",
  24966. image: {
  24967. source: "./media/characters/erza-bear/dick.svg"
  24968. }
  24969. },
  24970. dickVertical: {
  24971. height: math.unit(16.9, "feet"),
  24972. name: "Dick (Vertical)",
  24973. image: {
  24974. source: "./media/characters/erza-bear/dick-vertical.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(100, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(172, "cm"),
  24991. weight: math.unit(73, "kg"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/violet-flor/front.svg",
  24995. extra: 1530 / 1442,
  24996. bottom: 61.9 / 1588.8
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(180, "cm"),
  25001. weight: math.unit(73, "kg"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/violet-flor/back.svg",
  25005. extra: 1692 / 1630,
  25006. bottom: 20 / 1712
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(172, "cm"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(6, "feet"),
  25023. weight: math.unit(220, "lb"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/lynn-rhea/front.svg",
  25027. extra: 310 / 273
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(6, "feet"),
  25032. weight: math.unit(220, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/lynn-rhea/back.svg",
  25036. extra: 310 / 273
  25037. }
  25038. },
  25039. dicks: {
  25040. height: math.unit(0.9, "feet"),
  25041. name: "Dicks",
  25042. image: {
  25043. source: "./media/characters/lynn-rhea/dicks.svg"
  25044. }
  25045. },
  25046. slit: {
  25047. height: math.unit(0.4, "feet"),
  25048. name: "Slit",
  25049. image: {
  25050. source: "./media/characters/lynn-rhea/slit.svg"
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Micro",
  25057. height: math.unit(1, "inch")
  25058. },
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(60, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Megamacro",
  25066. height: math.unit(2, "miles")
  25067. },
  25068. {
  25069. name: "Gigamacro",
  25070. height: math.unit(3, "earths")
  25071. },
  25072. {
  25073. name: "Galactic",
  25074. height: math.unit(0.8, "galaxies")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25080. {
  25081. front: {
  25082. height: math.unit(1600, "feet"),
  25083. weight: math.unit(85758785169, "kg"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/valathos/front.svg",
  25087. extra: 1451 / 1339
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(1600, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(7 + 5 / 12, "feet"),
  25104. weight: math.unit(300, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/azula/front.svg",
  25108. extra: 3208 / 2880,
  25109. bottom: 80.2 / 3277
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. weight: math.unit(300, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/azula/back.svg",
  25118. extra: 3169 / 2822,
  25119. bottom: 150.6 / 3321
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(7 + 5 / 12, "feet"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Big",
  25131. height: math.unit(20, "feet")
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. weight: math.unit(110, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/rupert/front.svg",
  25144. extra: 1549 / 1495,
  25145. bottom: 54.2 / 1604.4
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5 + 1 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25159. {
  25160. front: {
  25161. height: math.unit(8 + 4 / 12, "feet"),
  25162. weight: math.unit(350, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/sheera-castellar/front.svg",
  25166. extra: 1957 / 1894,
  25167. bottom: 26.97 / 1975.017
  25168. }
  25169. },
  25170. side: {
  25171. height: math.unit(8 + 4 / 12, "feet"),
  25172. weight: math.unit(350, "lb"),
  25173. name: "Side",
  25174. image: {
  25175. source: "./media/characters/sheera-castellar/side.svg",
  25176. extra: 1957 / 1894
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(8 + 4 / 12, "feet"),
  25181. weight: math.unit(350, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/back.svg",
  25185. extra: 1957 / 1894
  25186. }
  25187. },
  25188. angled: {
  25189. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25190. weight: math.unit(350, "lb"),
  25191. name: "Angled",
  25192. image: {
  25193. source: "./media/characters/sheera-castellar/angled.svg",
  25194. extra: 1807 / 1707,
  25195. bottom: 68 / 1875
  25196. }
  25197. },
  25198. genitals: {
  25199. height: math.unit(2.2, "feet"),
  25200. name: "Genitals",
  25201. image: {
  25202. source: "./media/characters/sheera-castellar/genitals.svg"
  25203. }
  25204. },
  25205. taur: {
  25206. height: math.unit(10 + 6/12, "feet"),
  25207. name: "Taur",
  25208. image: {
  25209. source: "./media/characters/sheera-castellar/taur.svg",
  25210. extra: 2017/1909,
  25211. bottom: 185/2202
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(8 + 4 / 12, "feet")
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(150, "feet"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Macro+",
  25227. height: math.unit(800, "feet")
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(6, "feet"),
  25236. weight: math.unit(150, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/jaipur/front.svg",
  25240. extra: 3860 / 3731,
  25241. bottom: 287 / 4140
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(150, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/jaipur/back.svg",
  25250. extra: 1637/1561,
  25251. bottom: 154/1791
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(1.85, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Macro",
  25263. height: math.unit(150, "meters")
  25264. },
  25265. {
  25266. name: "Macro+",
  25267. height: math.unit(0.5, "miles")
  25268. },
  25269. {
  25270. name: "Macro++",
  25271. height: math.unit(2.5, "miles")
  25272. },
  25273. {
  25274. name: "Macro+++",
  25275. height: math.unit(12, "miles")
  25276. },
  25277. {
  25278. name: "Macro++++",
  25279. height: math.unit(120, "miles")
  25280. },
  25281. {
  25282. name: "Macro+++++",
  25283. height: math.unit(1200, "miles")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/sheila-wolf/front.svg",
  25296. extra: 1931 / 1808,
  25297. bottom: 29.5 / 1960
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(1.464, "feet"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/sheila-wolf/dick.svg"
  25305. }
  25306. },
  25307. muzzle: {
  25308. height: math.unit(0.513, "feet"),
  25309. name: "Muzzle",
  25310. image: {
  25311. source: "./media/characters/sheila-wolf/muzzle.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(70, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(32, "meters"),
  25328. weight: math.unit(300000, "kg"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/almor/front.svg",
  25332. extra: 1408 / 1322,
  25333. bottom: 94.6 / 1506.5
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(32, "meters"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(7, "feet"),
  25350. weight: math.unit(200, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/silver/front.svg",
  25354. extra: 472.1 / 450.5,
  25355. bottom: 26.5 / 499.424
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(7, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(800, "feet")
  25368. },
  25369. {
  25370. name: "Megamacro",
  25371. height: math.unit(250, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(6, "feet"),
  25380. weight: math.unit(150, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/pliskin/front.svg",
  25384. extra: 1469 / 1359,
  25385. bottom: 70 / 1540
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Micro",
  25392. height: math.unit(3, "inches")
  25393. },
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(5 + 11 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(120, "feet")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(6, "feet"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/sammy/front.svg",
  25414. extra: 1193 / 1089,
  25415. bottom: 30.5 / 1226
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1700, "feet"),
  25423. default: true
  25424. },
  25425. {
  25426. name: "Examacro",
  25427. height: math.unit(2.5e9, "lightyears")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(21, "meters"),
  25436. weight: math.unit(12, "tonnes"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/kuru/front.svg",
  25440. extra: 4301 / 3785,
  25441. bottom: 371.3 / 4691
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(21, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(23, "meters"),
  25458. weight: math.unit(12.2, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/rakka/front.svg",
  25462. extra: 4670 / 4169,
  25463. bottom: 301 / 4968.7
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(23, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(6, "feet"),
  25480. weight: math.unit(150, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/rhys-feline/front.svg",
  25484. extra: 2488 / 2308,
  25485. bottom: 35.67 / 2519.19
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Really Small",
  25492. height: math.unit(1, "nm")
  25493. },
  25494. {
  25495. name: "Micro",
  25496. height: math.unit(4, "inches")
  25497. },
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(4 + 10 / 12, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(100, "feet")
  25506. },
  25507. {
  25508. name: "Megamacto",
  25509. height: math.unit(50, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25515. {
  25516. side: {
  25517. height: math.unit(30, "feet"),
  25518. weight: math.unit(35000, "kg"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/alydar/side.svg",
  25522. extra: 234 / 222,
  25523. bottom: 6.5 / 241
  25524. }
  25525. },
  25526. front: {
  25527. height: math.unit(30, "feet"),
  25528. weight: math.unit(35000, "kg"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/alydar/front.svg",
  25532. extra: 223.37 / 210.2,
  25533. bottom: 22.3 / 246.76
  25534. }
  25535. },
  25536. top: {
  25537. height: math.unit(64.54, "feet"),
  25538. weight: math.unit(35000, "kg"),
  25539. name: "Top",
  25540. image: {
  25541. source: "./media/characters/alydar/top.svg"
  25542. }
  25543. },
  25544. anthro: {
  25545. height: math.unit(30, "feet"),
  25546. weight: math.unit(9000, "kg"),
  25547. name: "Anthro",
  25548. image: {
  25549. source: "./media/characters/alydar/anthro.svg",
  25550. extra: 432 / 421,
  25551. bottom: 7.18 / 440
  25552. }
  25553. },
  25554. maw: {
  25555. height: math.unit(11.693, "feet"),
  25556. name: "Maw",
  25557. image: {
  25558. source: "./media/characters/alydar/maw.svg"
  25559. }
  25560. },
  25561. head: {
  25562. height: math.unit(11.693, "feet"),
  25563. name: "Head",
  25564. image: {
  25565. source: "./media/characters/alydar/head.svg"
  25566. }
  25567. },
  25568. headAlt: {
  25569. height: math.unit(12.861, "feet"),
  25570. name: "Head (Alt)",
  25571. image: {
  25572. source: "./media/characters/alydar/head-alt.svg"
  25573. }
  25574. },
  25575. wing: {
  25576. height: math.unit(20.712, "feet"),
  25577. name: "Wing",
  25578. image: {
  25579. source: "./media/characters/alydar/wing.svg"
  25580. }
  25581. },
  25582. wingFeather: {
  25583. height: math.unit(9.662, "feet"),
  25584. name: "Wing Feather",
  25585. image: {
  25586. source: "./media/characters/alydar/wing-feather.svg"
  25587. }
  25588. },
  25589. countourFeather: {
  25590. height: math.unit(4.154, "feet"),
  25591. name: "Contour Feather",
  25592. image: {
  25593. source: "./media/characters/alydar/contour-feather.svg"
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Diplomatic",
  25600. height: math.unit(13, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Small",
  25605. height: math.unit(30, "feet")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(95, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Large",
  25614. height: math.unit(285, "feet")
  25615. },
  25616. {
  25617. name: "Incomprehensible",
  25618. height: math.unit(450, "megameters")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25624. {
  25625. side: {
  25626. height: math.unit(11, "feet"),
  25627. weight: math.unit(1750, "kg"),
  25628. name: "Side",
  25629. image: {
  25630. source: "./media/characters/selicia/side.svg",
  25631. extra: 440 / 396,
  25632. bottom: 24.8 / 465.979
  25633. }
  25634. },
  25635. maw: {
  25636. height: math.unit(4.665, "feet"),
  25637. name: "Maw",
  25638. image: {
  25639. source: "./media/characters/selicia/maw.svg"
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(11, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25653. {
  25654. side: {
  25655. height: math.unit(2 + 6 / 12, "feet"),
  25656. weight: math.unit(30, "lb"),
  25657. name: "Side",
  25658. image: {
  25659. source: "./media/characters/layla/side.svg",
  25660. extra: 244 / 188,
  25661. bottom: 18.2 / 262.1
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(2 + 6 / 12, "feet"),
  25666. weight: math.unit(30, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/layla/back.svg",
  25670. extra: 308 / 241.5,
  25671. bottom: 8.9 / 316.8
  25672. }
  25673. },
  25674. cumming: {
  25675. height: math.unit(2 + 6 / 12, "feet"),
  25676. weight: math.unit(30, "lb"),
  25677. name: "Cumming",
  25678. image: {
  25679. source: "./media/characters/layla/cumming.svg",
  25680. extra: 342 / 279,
  25681. bottom: 595 / 938
  25682. }
  25683. },
  25684. dickFlaccid: {
  25685. height: math.unit(2.595, "feet"),
  25686. name: "Flaccid Genitals",
  25687. image: {
  25688. source: "./media/characters/layla/dick-flaccid.svg"
  25689. }
  25690. },
  25691. dickErect: {
  25692. height: math.unit(2.359, "feet"),
  25693. name: "Erect Genitals",
  25694. image: {
  25695. source: "./media/characters/layla/dick-erect.svg"
  25696. }
  25697. },
  25698. dragon: {
  25699. height: math.unit(40, "feet"),
  25700. name: "Dragon",
  25701. image: {
  25702. source: "./media/characters/layla/dragon.svg",
  25703. extra: 610/535,
  25704. bottom: 367/977
  25705. }
  25706. },
  25707. taur: {
  25708. height: math.unit(30, "feet"),
  25709. name: "Taur",
  25710. image: {
  25711. source: "./media/characters/layla/taur.svg",
  25712. extra: 1268/1199,
  25713. bottom: 112/1380
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(1, "inch")
  25721. },
  25722. {
  25723. name: "Small",
  25724. height: math.unit(1, "foot")
  25725. },
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(2 + 6 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(200, "feet")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(1000, "miles")
  25738. },
  25739. {
  25740. name: "Planetary",
  25741. height: math.unit(8000, "miles")
  25742. },
  25743. {
  25744. name: "True Layla",
  25745. height: math.unit(200000 * 7, "multiverses")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25751. {
  25752. back: {
  25753. height: math.unit(10.5, "feet"),
  25754. weight: math.unit(800, "lb"),
  25755. name: "Back",
  25756. image: {
  25757. source: "./media/characters/knox/back.svg",
  25758. extra: 1486 / 1089,
  25759. bottom: 107 / 1601.4
  25760. }
  25761. },
  25762. side: {
  25763. height: math.unit(10.5, "feet"),
  25764. weight: math.unit(800, "lb"),
  25765. name: "Side",
  25766. image: {
  25767. source: "./media/characters/knox/side.svg",
  25768. extra: 244 / 218,
  25769. bottom: 14 / 260
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Compact",
  25776. height: math.unit(10.5, "feet"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Dynamax",
  25781. height: math.unit(210, "feet")
  25782. },
  25783. {
  25784. name: "Full Macro",
  25785. height: math.unit(850, "feet")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(28, "feet"),
  25794. weight: math.unit(10500, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/kayda/front.svg",
  25798. extra: 1536 / 1428,
  25799. bottom: 68.7 / 1603
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(28, "feet"),
  25804. weight: math.unit(10500, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/kayda/back.svg",
  25808. extra: 1557 / 1464,
  25809. bottom: 39.5 / 1597.49
  25810. }
  25811. },
  25812. dick: {
  25813. height: math.unit(3.858, "feet"),
  25814. name: "Dick",
  25815. image: {
  25816. source: "./media/characters/kayda/dick.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(28, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. weight: math.unit(1400, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/brian/front.svg",
  25837. extra: 737 / 692,
  25838. bottom: 55.4 / 785
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Normal",
  25845. height: math.unit(10 + 11 / 12, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(5 + 8 / 12, "feet"),
  25855. weight: math.unit(140, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/khemri/front.svg",
  25859. extra: 4780 / 4059,
  25860. bottom: 80.1 / 4859.25
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Micro",
  25867. height: math.unit(6, "inches")
  25868. },
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(5 + 8 / 12, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25878. {
  25879. front: {
  25880. height: math.unit(13, "feet"),
  25881. weight: math.unit(1700, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/felix-braveheart/front.svg",
  25885. extra: 1222 / 1157,
  25886. bottom: 53.2 / 1280
  25887. }
  25888. },
  25889. back: {
  25890. height: math.unit(13, "feet"),
  25891. weight: math.unit(1700, "lb"),
  25892. name: "Back",
  25893. image: {
  25894. source: "./media/characters/felix-braveheart/back.svg",
  25895. extra: 1277 / 1203,
  25896. bottom: 50.2 / 1327
  25897. }
  25898. },
  25899. feral: {
  25900. height: math.unit(6, "feet"),
  25901. weight: math.unit(400, "lb"),
  25902. name: "Feral",
  25903. image: {
  25904. source: "./media/characters/felix-braveheart/feral.svg",
  25905. extra: 682 / 625,
  25906. bottom: 6.9 / 688
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(13, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25920. {
  25921. side: {
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. weight: math.unit(1400, "lb"),
  25924. name: "Side",
  25925. image: {
  25926. source: "./media/characters/shadow-blade/side.svg",
  25927. extra: 1726 / 1267,
  25928. bottom: 58.4 / 1785
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 11 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. weight: math.unit(25, "lb"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/karla-halldor/front.svg",
  25949. extra: 1459 / 1383,
  25950. bottom: 12 / 1472
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(1 + 6 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(6 + 2 / 12, "feet"),
  25967. weight: math.unit(160, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/ariam/front.svg",
  25971. extra: 1073/976,
  25972. bottom: 52/1125
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(6 + 2/12, "feet"),
  25977. weight: math.unit(160, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/ariam/back.svg",
  25981. extra: 1103/1023,
  25982. bottom: 9/1112
  25983. }
  25984. },
  25985. dressed: {
  25986. height: math.unit(6 + 2/12, "feet"),
  25987. weight: math.unit(160, "lb"),
  25988. name: "Dressed",
  25989. image: {
  25990. source: "./media/characters/ariam/dressed.svg",
  25991. extra: 1099/1009,
  25992. bottom: 25/1124
  25993. }
  25994. },
  25995. squatting: {
  25996. height: math.unit(4.1, "feet"),
  25997. weight: math.unit(160, "lb"),
  25998. name: "Squatting",
  25999. image: {
  26000. source: "./media/characters/ariam/squatting.svg",
  26001. extra: 2617 / 2112,
  26002. bottom: 61.2 / 2681,
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(6 + 2 / 12, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Normal+",
  26014. height: math.unit(4, "meters")
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(50, "meters")
  26019. },
  26020. {
  26021. name: "Macro+",
  26022. height: math.unit(100, "meters")
  26023. },
  26024. {
  26025. name: "Megamacro",
  26026. height: math.unit(20, "km")
  26027. },
  26028. {
  26029. name: "Caretaker",
  26030. height: math.unit(444, "megameters")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(1.67, "meters"),
  26039. weight: math.unit(140, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26043. extra: 438 / 410,
  26044. bottom: 0.75 / 439
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Shrunken",
  26051. height: math.unit(7.6, "cm")
  26052. },
  26053. {
  26054. name: "Human Scale",
  26055. height: math.unit(1.67, "meters")
  26056. },
  26057. {
  26058. name: "Wolxi Scale",
  26059. height: math.unit(36.7, "meters"),
  26060. default: true
  26061. },
  26062. ]
  26063. ))
  26064. characterMakers.push(() => makeCharacter(
  26065. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26066. {
  26067. front: {
  26068. height: math.unit(1.73, "meters"),
  26069. weight: math.unit(240, "lb"),
  26070. name: "Front",
  26071. image: {
  26072. source: "./media/characters/izue-two-mothers/front.svg",
  26073. extra: 469 / 437,
  26074. bottom: 1.24 / 470.6
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Shrunken",
  26081. height: math.unit(7.86, "cm")
  26082. },
  26083. {
  26084. name: "Human Scale",
  26085. height: math.unit(1.73, "meters")
  26086. },
  26087. {
  26088. name: "Wolxi Scale",
  26089. height: math.unit(38, "meters"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1.55, "meters"),
  26099. weight: math.unit(120, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/teeku-love-shack/front.svg",
  26103. extra: 387 / 362,
  26104. bottom: 1.51 / 388
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Shrunken",
  26111. height: math.unit(7, "cm")
  26112. },
  26113. {
  26114. name: "Human Scale",
  26115. height: math.unit(1.55, "meters")
  26116. },
  26117. {
  26118. name: "Wolxi Scale",
  26119. height: math.unit(34.1, "meters"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(1.83, "meters"),
  26129. weight: math.unit(135, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/dejma-the-red/front.svg",
  26133. extra: 480 / 458,
  26134. bottom: 1.8 / 482
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Shrunken",
  26141. height: math.unit(8.3, "cm")
  26142. },
  26143. {
  26144. name: "Human Scale",
  26145. height: math.unit(1.83, "meters")
  26146. },
  26147. {
  26148. name: "Wolxi Scale",
  26149. height: math.unit(40, "meters"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(1.78, "meters"),
  26159. weight: math.unit(65, "kg"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/aki/front.svg",
  26163. extra: 452 / 415
  26164. }
  26165. },
  26166. frontNsfw: {
  26167. height: math.unit(1.78, "meters"),
  26168. weight: math.unit(65, "kg"),
  26169. name: "Front (NSFW)",
  26170. image: {
  26171. source: "./media/characters/aki/front-nsfw.svg",
  26172. extra: 452 / 415
  26173. }
  26174. },
  26175. back: {
  26176. height: math.unit(1.78, "meters"),
  26177. weight: math.unit(65, "kg"),
  26178. name: "Back",
  26179. image: {
  26180. source: "./media/characters/aki/back.svg",
  26181. extra: 452 / 415
  26182. }
  26183. },
  26184. rump: {
  26185. height: math.unit(2.05, "feet"),
  26186. name: "Rump",
  26187. image: {
  26188. source: "./media/characters/aki/rump.svg"
  26189. }
  26190. },
  26191. dick: {
  26192. height: math.unit(0.95, "feet"),
  26193. name: "Dick",
  26194. image: {
  26195. source: "./media/characters/aki/dick.svg"
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Micro",
  26202. height: math.unit(15, "cm")
  26203. },
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(178, "cm"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(214, "m")
  26212. },
  26213. {
  26214. name: "Macro+",
  26215. height: math.unit(534, "m")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 5 / 12, "feet"),
  26224. weight: math.unit(120, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/ari/front.svg",
  26228. extra: 1550/1471,
  26229. bottom: 39/1589
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 5 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(100, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Megamacro",
  26245. height: math.unit(100, "miles")
  26246. },
  26247. {
  26248. name: "Gigamacro",
  26249. height: math.unit(80000, "miles")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26255. {
  26256. side: {
  26257. height: math.unit(9, "feet"),
  26258. weight: math.unit(400, "kg"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/bolt/side.svg",
  26262. extra: 1126 / 896,
  26263. bottom: 60 / 1187.3,
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(5, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(9, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Macro",
  26279. height: math.unit(700, "feet")
  26280. },
  26281. {
  26282. name: "Max Size",
  26283. height: math.unit(1.52e22, "yottameters")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(4.3, "meters"),
  26292. weight: math.unit(3, "tons"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/draekon-sylviar/front.svg",
  26296. extra: 2072/1512,
  26297. bottom: 74/2146
  26298. }
  26299. },
  26300. back: {
  26301. height: math.unit(4.3, "meters"),
  26302. weight: math.unit(3, "tons"),
  26303. name: "Back",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/back.svg",
  26306. extra: 1639/1483,
  26307. bottom: 41/1680
  26308. }
  26309. },
  26310. feral: {
  26311. height: math.unit(1.15, "meters"),
  26312. weight: math.unit(3, "tons"),
  26313. name: "Feral",
  26314. image: {
  26315. source: "./media/characters/draekon-sylviar/feral.svg",
  26316. extra: 1033/395,
  26317. bottom: 130/1163
  26318. }
  26319. },
  26320. maw: {
  26321. height: math.unit(1.3, "meters"),
  26322. name: "Maw",
  26323. image: {
  26324. source: "./media/characters/draekon-sylviar/maw.svg"
  26325. }
  26326. },
  26327. mawSeparated: {
  26328. height: math.unit(1.53, "meters"),
  26329. name: "Separated Maw",
  26330. image: {
  26331. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26332. }
  26333. },
  26334. tail: {
  26335. height: math.unit(1.15, "meters"),
  26336. name: "Tail",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/tail.svg"
  26339. }
  26340. },
  26341. tailDick: {
  26342. height: math.unit(1.15, "meters"),
  26343. name: "Tail (Dick)",
  26344. image: {
  26345. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26346. }
  26347. },
  26348. tailDickSeparated: {
  26349. height: math.unit(1.19, "meters"),
  26350. name: "Tail (Separated Dick)",
  26351. image: {
  26352. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26353. }
  26354. },
  26355. slit: {
  26356. height: math.unit(1, "meters"),
  26357. name: "Slit",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/slit.svg"
  26360. }
  26361. },
  26362. dick: {
  26363. height: math.unit(1.15, "meters"),
  26364. name: "Dick",
  26365. image: {
  26366. source: "./media/characters/draekon-sylviar/dick.svg"
  26367. }
  26368. },
  26369. dickSeparated: {
  26370. height: math.unit(1.1, "meters"),
  26371. name: "Separated Dick",
  26372. image: {
  26373. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26374. }
  26375. },
  26376. sheath: {
  26377. height: math.unit(1.15, "meters"),
  26378. name: "Sheath",
  26379. image: {
  26380. source: "./media/characters/draekon-sylviar/sheath.svg"
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Small",
  26387. height: math.unit(4.53 / 2, "meters"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(4.53, "meters"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Large",
  26397. height: math.unit(4.53 * 2, "meters"),
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. weight: math.unit(180, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/brawler/front.svg",
  26410. extra: 3301 / 3027,
  26411. bottom: 138 / 3439
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6 + 2 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(11, "feet"),
  26428. weight: math.unit(1000, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/alex/front.svg",
  26432. bottom: 44.5 / 620
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Micro",
  26439. height: math.unit(5, "inches")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(11, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(9.5e9, "feet")
  26449. },
  26450. {
  26451. name: "Max Size",
  26452. height: math.unit(1.4e283, "yottameters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26458. {
  26459. female: {
  26460. height: math.unit(29.9, "m"),
  26461. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26462. name: "Female",
  26463. image: {
  26464. source: "./media/characters/zenari/female.svg",
  26465. extra: 3281.6 / 3217,
  26466. bottom: 72.2 / 3353
  26467. }
  26468. },
  26469. male: {
  26470. height: math.unit(27.7, "m"),
  26471. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26472. name: "Male",
  26473. image: {
  26474. source: "./media/characters/zenari/male.svg",
  26475. extra: 3008 / 2991,
  26476. bottom: 54.6 / 3069
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(29.7, "meters"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26490. {
  26491. female: {
  26492. height: math.unit(23.8, "m"),
  26493. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26494. name: "Female",
  26495. image: {
  26496. source: "./media/characters/mactarian/female.svg",
  26497. extra: 2662 / 2569,
  26498. bottom: 73 / 2736
  26499. }
  26500. },
  26501. male: {
  26502. height: math.unit(23.8, "m"),
  26503. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26504. name: "Male",
  26505. image: {
  26506. source: "./media/characters/mactarian/male.svg",
  26507. extra: 2673 / 2600,
  26508. bottom: 76 / 2750
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(23.8, "meters"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26522. {
  26523. female: {
  26524. height: math.unit(19.3, "m"),
  26525. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26526. name: "Female",
  26527. image: {
  26528. source: "./media/characters/umok/female.svg",
  26529. extra: 2186 / 2078,
  26530. bottom: 87 / 2277
  26531. }
  26532. },
  26533. male: {
  26534. height: math.unit(19.5, "m"),
  26535. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26536. name: "Male",
  26537. image: {
  26538. source: "./media/characters/umok/male.svg",
  26539. extra: 2233 / 2140,
  26540. bottom: 24.4 / 2258
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Macro",
  26547. height: math.unit(19.3, "meters"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26554. {
  26555. female: {
  26556. height: math.unit(26.15, "m"),
  26557. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26558. name: "Female",
  26559. image: {
  26560. source: "./media/characters/joraxian/female.svg",
  26561. extra: 2912 / 2824,
  26562. bottom: 36 / 2956
  26563. }
  26564. },
  26565. male: {
  26566. height: math.unit(25.4, "m"),
  26567. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26568. name: "Male",
  26569. image: {
  26570. source: "./media/characters/joraxian/male.svg",
  26571. extra: 2877 / 2721,
  26572. bottom: 82 / 2967
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(26.15, "meters"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26586. {
  26587. female: {
  26588. height: math.unit(21.6, "m"),
  26589. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26590. name: "Female",
  26591. image: {
  26592. source: "./media/characters/sthara/female.svg",
  26593. extra: 2516 / 2347,
  26594. bottom: 21.5 / 2537
  26595. }
  26596. },
  26597. male: {
  26598. height: math.unit(24, "m"),
  26599. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26600. name: "Male",
  26601. image: {
  26602. source: "./media/characters/sthara/male.svg",
  26603. extra: 2732 / 2607,
  26604. bottom: 23 / 2732
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(21.6, "meters"),
  26612. default: true
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(6 + 4 / 12, "feet"),
  26621. weight: math.unit(175, "lb"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/luka-bryzant/front.svg",
  26625. extra: 311 / 289,
  26626. bottom: 4 / 315
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(6 + 4 / 12, "feet"),
  26631. weight: math.unit(175, "lb"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/luka-bryzant/back.svg",
  26635. extra: 311 / 289,
  26636. bottom: 3.8 / 313.7
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Micro",
  26643. height: math.unit(10, "inches")
  26644. },
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(6 + 4 / 12, "feet"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Large",
  26652. height: math.unit(12, "feet")
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(5 + 7 / 12, "feet"),
  26661. weight: math.unit(185, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/aman-aquila/front.svg",
  26665. extra: 1013 / 976,
  26666. bottom: 45.6 / 1057
  26667. }
  26668. },
  26669. side: {
  26670. height: math.unit(5 + 7 / 12, "feet"),
  26671. weight: math.unit(185, "lb"),
  26672. name: "Side",
  26673. image: {
  26674. source: "./media/characters/aman-aquila/side.svg",
  26675. extra: 1054 / 1011,
  26676. bottom: 15 / 1070
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(5 + 7 / 12, "feet"),
  26681. weight: math.unit(185, "lb"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/aman-aquila/back.svg",
  26685. extra: 1026 / 970,
  26686. bottom: 12 / 1039
  26687. }
  26688. },
  26689. head: {
  26690. height: math.unit(1.211, "feet"),
  26691. name: "Head",
  26692. image: {
  26693. source: "./media/characters/aman-aquila/head.svg",
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Minimicro",
  26700. height: math.unit(0.057, "inches")
  26701. },
  26702. {
  26703. name: "Micro",
  26704. height: math.unit(7, "inches")
  26705. },
  26706. {
  26707. name: "Mini",
  26708. height: math.unit(3 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(5 + 7 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(157 + 7 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(1557 + 7 / 12, "feet")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(15557 + 7 / 12, "feet")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(3 + 2 / 12, "inches"),
  26734. weight: math.unit(0.3, "ounces"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/hiphae/front.svg",
  26738. extra: 1931 / 1683,
  26739. bottom: 24 / 1955
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(3 + 1 / 2, "inches"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 10 / 12, "feet"),
  26756. weight: math.unit(165, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/nicky/front.svg",
  26760. extra: 3144 / 2886,
  26761. bottom: 45.6 / 3192
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 10 / 12, "feet"),
  26766. weight: math.unit(165, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/nicky/back.svg",
  26770. extra: 3055 / 2804,
  26771. bottom: 28.4 / 3087
  26772. }
  26773. },
  26774. frontclothed: {
  26775. height: math.unit(5 + 10 / 12, "feet"),
  26776. weight: math.unit(165, "lb"),
  26777. name: "Front-clothed",
  26778. image: {
  26779. source: "./media/characters/nicky/front-clothed.svg",
  26780. extra: 3184.9 / 2926.9,
  26781. bottom: 86.5 / 3239.9
  26782. }
  26783. },
  26784. foot: {
  26785. height: math.unit(1.16, "feet"),
  26786. name: "Foot",
  26787. image: {
  26788. source: "./media/characters/nicky/foot.svg"
  26789. }
  26790. },
  26791. feet: {
  26792. height: math.unit(1.34, "feet"),
  26793. name: "Feet",
  26794. image: {
  26795. source: "./media/characters/nicky/feet.svg"
  26796. }
  26797. },
  26798. maw: {
  26799. height: math.unit(0.9, "feet"),
  26800. name: "Maw",
  26801. image: {
  26802. source: "./media/characters/nicky/maw.svg"
  26803. }
  26804. },
  26805. },
  26806. [
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(5 + 10 / 12, "feet"),
  26810. default: true
  26811. },
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(60, "feet")
  26815. },
  26816. {
  26817. name: "Megamacro",
  26818. height: math.unit(1, "mile")
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26824. {
  26825. side: {
  26826. height: math.unit(10, "feet"),
  26827. weight: math.unit(600, "lb"),
  26828. name: "Side",
  26829. image: {
  26830. source: "./media/characters/blair/side.svg",
  26831. bottom: 16.6 / 475,
  26832. extra: 458 / 431
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Micro",
  26839. height: math.unit(8, "inches")
  26840. },
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(10, "feet"),
  26844. default: true
  26845. },
  26846. {
  26847. name: "Macro",
  26848. height: math.unit(180, "feet")
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 4 / 12, "feet"),
  26857. weight: math.unit(125, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/fisher/front.svg",
  26861. extra: 444 / 390,
  26862. bottom: 2 / 444.8
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Micro",
  26869. height: math.unit(4, "inches")
  26870. },
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(5 + 4 / 12, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(100, "feet")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6.71, "feet"),
  26887. weight: math.unit(200, "lb"),
  26888. preyCapacity: math.unit(1000000, "people"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/gliss/front.svg",
  26892. extra: 2347 / 2231,
  26893. bottom: 113 / 2462
  26894. }
  26895. },
  26896. hammerspaceSize: {
  26897. height: math.unit(6.71 * 717, "feet"),
  26898. weight: math.unit(200, "lb"),
  26899. preyCapacity: math.unit(1000000, "people"),
  26900. name: "Hammerspace Size",
  26901. image: {
  26902. source: "./media/characters/gliss/front.svg",
  26903. extra: 2347 / 2231,
  26904. bottom: 113 / 2462
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(6.71, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26918. {
  26919. side: {
  26920. height: math.unit(1.44, "m"),
  26921. weight: math.unit(80, "kg"),
  26922. name: "Side",
  26923. image: {
  26924. source: "./media/characters/dune-anderson/side.svg",
  26925. bottom: 49 / 1426
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Wolf-sized",
  26932. height: math.unit(1.44, "meters")
  26933. },
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5.05, "meters"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Big",
  26941. height: math.unit(14.4, "meters")
  26942. },
  26943. {
  26944. name: "Huge",
  26945. height: math.unit(144, "meters")
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(7, "feet"),
  26954. weight: math.unit(425, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/hind/front.svg",
  26958. extra: 2091 / 1860,
  26959. bottom: 129 / 2220
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(7, "feet"),
  26964. weight: math.unit(425, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/hind/back.svg",
  26968. extra: 2091 / 1860,
  26969. bottom: 24.6 / 2309
  26970. }
  26971. },
  26972. tail: {
  26973. height: math.unit(2.8, "feet"),
  26974. name: "Tail",
  26975. image: {
  26976. source: "./media/characters/hind/tail.svg"
  26977. }
  26978. },
  26979. head: {
  26980. height: math.unit(2.55, "feet"),
  26981. name: "Head",
  26982. image: {
  26983. source: "./media/characters/hind/head.svg"
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "XS",
  26990. height: math.unit(0.7, "feet")
  26991. },
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "XL",
  26999. height: math.unit(70, "feet")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(2.1, "meters"),
  27008. weight: math.unit(150, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/tharquench-sizestealer/front.svg",
  27012. extra: 1605/1470,
  27013. bottom: 36/1641
  27014. }
  27015. },
  27016. frontAlt: {
  27017. height: math.unit(2.1, "meters"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front (Alt)",
  27020. image: {
  27021. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27022. extra: 2318 / 2063,
  27023. bottom: 93.4 / 2410
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Nano",
  27030. height: math.unit(1, "mm")
  27031. },
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(1, "cm")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(2.1, "meters"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. weight: math.unit(357, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/solex-draconov/front.svg",
  27052. extra: 1993 / 1865,
  27053. bottom: 117 / 2111
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Natural Height",
  27060. height: math.unit(7 + 5 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(350, "feet")
  27066. },
  27067. {
  27068. name: "Macro+",
  27069. height: math.unit(1000, "feet")
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(20, "km")
  27074. },
  27075. {
  27076. name: "Megamacro+",
  27077. height: math.unit(1000, "km")
  27078. },
  27079. {
  27080. name: "Gigamacro",
  27081. height: math.unit(2.5, "Gm")
  27082. },
  27083. {
  27084. name: "Teramacro",
  27085. height: math.unit(15, "Tm")
  27086. },
  27087. {
  27088. name: "Galactic",
  27089. height: math.unit(30, "Zm")
  27090. },
  27091. {
  27092. name: "Universal",
  27093. height: math.unit(21000, "Ym")
  27094. },
  27095. {
  27096. name: "Omniversal",
  27097. height: math.unit(9.861e50, "Ym")
  27098. },
  27099. {
  27100. name: "Existential",
  27101. height: math.unit(1e300, "meters")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27107. {
  27108. side: {
  27109. height: math.unit(25, "feet"),
  27110. weight: math.unit(90000, "lb"),
  27111. name: "Side",
  27112. image: {
  27113. source: "./media/characters/mandarax/side.svg",
  27114. extra: 614 / 332,
  27115. bottom: 55 / 630
  27116. }
  27117. },
  27118. lounging: {
  27119. height: math.unit(15.4, "feet"),
  27120. weight: math.unit(90000, "lb"),
  27121. name: "Lounging",
  27122. image: {
  27123. source: "./media/characters/mandarax/lounging.svg",
  27124. extra: 817/609,
  27125. bottom: 685/1502
  27126. }
  27127. },
  27128. head: {
  27129. height: math.unit(11.4, "feet"),
  27130. name: "Head",
  27131. image: {
  27132. source: "./media/characters/mandarax/head.svg"
  27133. }
  27134. },
  27135. belly: {
  27136. height: math.unit(33, "feet"),
  27137. name: "Belly",
  27138. preyCapacity: math.unit(500, "people"),
  27139. image: {
  27140. source: "./media/characters/mandarax/belly.svg"
  27141. }
  27142. },
  27143. dick: {
  27144. height: math.unit(8.46, "feet"),
  27145. name: "Dick",
  27146. image: {
  27147. source: "./media/characters/mandarax/dick.svg"
  27148. }
  27149. },
  27150. top: {
  27151. height: math.unit(28, "meters"),
  27152. name: "Top",
  27153. image: {
  27154. source: "./media/characters/mandarax/top.svg"
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(25, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5, "feet"),
  27171. weight: math.unit(90, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/pixil/front.svg",
  27175. extra: 2000 / 1618,
  27176. bottom: 12.3 / 2011
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(10, "miles"),
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. weight: math.unit(200, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/angel/front.svg",
  27201. extra: 1830 / 1737,
  27202. bottom: 22.6 / 1854,
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(7 + 2 / 12, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Macro",
  27214. height: math.unit(1000, "feet")
  27215. },
  27216. {
  27217. name: "Megamacro",
  27218. height: math.unit(2, "miles")
  27219. },
  27220. {
  27221. name: "Gigamacro",
  27222. height: math.unit(20, "earths")
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5, "feet"),
  27231. weight: math.unit(180, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/mekana/front.svg",
  27235. extra: 1671 / 1605,
  27236. bottom: 3.5 / 1691
  27237. }
  27238. },
  27239. side: {
  27240. height: math.unit(5, "feet"),
  27241. weight: math.unit(180, "lb"),
  27242. name: "Side",
  27243. image: {
  27244. source: "./media/characters/mekana/side.svg",
  27245. extra: 1671 / 1605,
  27246. bottom: 3.5 / 1691
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(5, "feet"),
  27251. weight: math.unit(180, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/mekana/back.svg",
  27255. extra: 1671 / 1605,
  27256. bottom: 3.5 / 1691
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(5, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. weight: math.unit(80, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/pixie/front.svg",
  27277. extra: 1924 / 1825,
  27278. bottom: 22.4 / 1946
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(4 + 6 / 12, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(40, "feet")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(2.1, "meters"),
  27299. weight: math.unit(200, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/the-lascivious/front.svg",
  27303. extra: 1 / 0.893,
  27304. bottom: 3.5 / 573.7
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Human Scale",
  27311. height: math.unit(2.1, "meters")
  27312. },
  27313. {
  27314. name: "Wolxi Scale",
  27315. height: math.unit(46.2, "m"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Boinker of Buildings",
  27320. height: math.unit(10, "km")
  27321. },
  27322. {
  27323. name: "Shagger of Skyscrapers",
  27324. height: math.unit(40, "km")
  27325. },
  27326. {
  27327. name: "Banger of Boroughs",
  27328. height: math.unit(4000, "km")
  27329. },
  27330. {
  27331. name: "Screwer of States",
  27332. height: math.unit(100000, "km")
  27333. },
  27334. {
  27335. name: "Pounder of Planets",
  27336. height: math.unit(2000000, "km")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6, "feet"),
  27345. weight: math.unit(150, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/aj/front.svg",
  27349. extra: 2039 / 1562,
  27350. bottom: 40 / 2079
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(11 + 6 / 12, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Megamacro",
  27362. height: math.unit(60, "megameters")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27368. {
  27369. side: {
  27370. height: math.unit(31 + 8 / 12, "feet"),
  27371. weight: math.unit(75000, "kg"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/koros/side.svg",
  27375. extra: 1442 / 1297,
  27376. bottom: 122.7 / 1562
  27377. }
  27378. },
  27379. dicksKingsCrown: {
  27380. height: math.unit(6, "feet"),
  27381. name: "Dicks (King's Crown)",
  27382. image: {
  27383. source: "./media/characters/koros/dicks-kings-crown.svg"
  27384. }
  27385. },
  27386. dicksTailSet: {
  27387. height: math.unit(3, "feet"),
  27388. name: "Dicks (Tail Set)",
  27389. image: {
  27390. source: "./media/characters/koros/dicks-tail-set.svg"
  27391. }
  27392. },
  27393. dickCumming: {
  27394. height: math.unit(7.98, "feet"),
  27395. name: "Dick (Cumming)",
  27396. image: {
  27397. source: "./media/characters/koros/dick-cumming.svg"
  27398. }
  27399. },
  27400. dicksBack: {
  27401. height: math.unit(5.9, "feet"),
  27402. name: "Dicks (Back)",
  27403. image: {
  27404. source: "./media/characters/koros/dicks-back.svg"
  27405. }
  27406. },
  27407. dicksFront: {
  27408. height: math.unit(3.72, "feet"),
  27409. name: "Dicks (Front)",
  27410. image: {
  27411. source: "./media/characters/koros/dicks-front.svg"
  27412. }
  27413. },
  27414. dicksPeeking: {
  27415. height: math.unit(3.0, "feet"),
  27416. name: "Dicks (Peeking)",
  27417. image: {
  27418. source: "./media/characters/koros/dicks-peeking.svg"
  27419. }
  27420. },
  27421. eye: {
  27422. height: math.unit(1.7, "feet"),
  27423. name: "Eye",
  27424. image: {
  27425. source: "./media/characters/koros/eye.svg"
  27426. }
  27427. },
  27428. headFront: {
  27429. height: math.unit(11.69, "feet"),
  27430. name: "Head (Front)",
  27431. image: {
  27432. source: "./media/characters/koros/head-front.svg"
  27433. }
  27434. },
  27435. headSide: {
  27436. height: math.unit(14, "feet"),
  27437. name: "Head (Side)",
  27438. image: {
  27439. source: "./media/characters/koros/head-side.svg"
  27440. }
  27441. },
  27442. leg: {
  27443. height: math.unit(17, "feet"),
  27444. name: "Leg",
  27445. image: {
  27446. source: "./media/characters/koros/leg.svg"
  27447. }
  27448. },
  27449. mawSide: {
  27450. height: math.unit(12.8, "feet"),
  27451. name: "Maw (Side)",
  27452. image: {
  27453. source: "./media/characters/koros/maw-side.svg"
  27454. }
  27455. },
  27456. mawSpitting: {
  27457. height: math.unit(17, "feet"),
  27458. name: "Maw (Spitting)",
  27459. image: {
  27460. source: "./media/characters/koros/maw-spitting.svg"
  27461. }
  27462. },
  27463. slit: {
  27464. height: math.unit(2.8, "feet"),
  27465. name: "Slit",
  27466. image: {
  27467. source: "./media/characters/koros/slit.svg"
  27468. }
  27469. },
  27470. stomach: {
  27471. height: math.unit(6.8, "feet"),
  27472. preyCapacity: math.unit(20, "people"),
  27473. name: "Stomach",
  27474. image: {
  27475. source: "./media/characters/koros/stomach.svg"
  27476. }
  27477. },
  27478. wingspanBottom: {
  27479. height: math.unit(114, "feet"),
  27480. name: "Wingspan (Bottom)",
  27481. image: {
  27482. source: "./media/characters/koros/wingspan-bottom.svg"
  27483. }
  27484. },
  27485. wingspanTop: {
  27486. height: math.unit(104, "feet"),
  27487. name: "Wingspan (Top)",
  27488. image: {
  27489. source: "./media/characters/koros/wingspan-top.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(31 + 8 / 12, "feet"),
  27497. default: true
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(18 + 5 / 12, "feet"),
  27506. weight: math.unit(3750, "kg"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/vexx/front.svg",
  27510. extra: 426 / 396,
  27511. bottom: 31.5 / 458
  27512. }
  27513. },
  27514. maw: {
  27515. height: math.unit(6, "feet"),
  27516. name: "Maw",
  27517. image: {
  27518. source: "./media/characters/vexx/maw.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(18 + 5 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(17 + 6 / 12, "feet"),
  27535. weight: math.unit(150, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/baadra/front.svg",
  27539. extra: 1694/1553,
  27540. bottom: 179/1873
  27541. }
  27542. },
  27543. frontAlt: {
  27544. height: math.unit(17 + 6 / 12, "feet"),
  27545. weight: math.unit(150, "lb"),
  27546. name: "Front (Alt)",
  27547. image: {
  27548. source: "./media/characters/baadra/front-alt.svg",
  27549. extra: 3137 / 2890,
  27550. bottom: 168.4 / 3305
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(17 + 6 / 12, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/baadra/back.svg",
  27559. extra: 3142 / 2890,
  27560. bottom: 220 / 3371
  27561. }
  27562. },
  27563. head: {
  27564. height: math.unit(5.45, "feet"),
  27565. name: "Head",
  27566. image: {
  27567. source: "./media/characters/baadra/head.svg"
  27568. }
  27569. },
  27570. headAngry: {
  27571. height: math.unit(4.95, "feet"),
  27572. name: "Head (Angry)",
  27573. image: {
  27574. source: "./media/characters/baadra/head-angry.svg"
  27575. }
  27576. },
  27577. headOpen: {
  27578. height: math.unit(6, "feet"),
  27579. name: "Head (Open)",
  27580. image: {
  27581. source: "./media/characters/baadra/head-open.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(17 + 6 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(7 + 3 / 12, "feet"),
  27598. weight: math.unit(180, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/juri/front.svg",
  27602. extra: 1401 / 1237,
  27603. bottom: 18.5 / 1418
  27604. }
  27605. },
  27606. side: {
  27607. height: math.unit(7 + 3 / 12, "feet"),
  27608. weight: math.unit(180, "lb"),
  27609. name: "Side",
  27610. image: {
  27611. source: "./media/characters/juri/side.svg",
  27612. extra: 1424 / 1242,
  27613. bottom: 18.5 / 1447
  27614. }
  27615. },
  27616. sitting: {
  27617. height: math.unit(6, "feet"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Sitting",
  27620. image: {
  27621. source: "./media/characters/juri/sitting.svg",
  27622. extra: 1270 / 1143,
  27623. bottom: 100 / 1343
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(7 + 3 / 12, "feet"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/juri/back.svg",
  27632. extra: 1377 / 1240,
  27633. bottom: 23.7 / 1405
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(2.8, "feet"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/juri/maw.svg"
  27641. }
  27642. },
  27643. stomach: {
  27644. height: math.unit(0.89, "feet"),
  27645. preyCapacity: math.unit(4, "liters"),
  27646. name: "Stomach",
  27647. image: {
  27648. source: "./media/characters/juri/stomach.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 3 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27662. {
  27663. fox: {
  27664. height: math.unit(5 + 6 / 12, "feet"),
  27665. weight: math.unit(140, "lb"),
  27666. name: "Fox",
  27667. image: {
  27668. source: "./media/characters/maxene-sita/fox.svg",
  27669. extra: 146 / 138,
  27670. bottom: 2.1 / 148.19
  27671. }
  27672. },
  27673. foxLaying: {
  27674. height: math.unit(1.70, "feet"),
  27675. weight: math.unit(140, "lb"),
  27676. name: "Fox (Laying)",
  27677. image: {
  27678. source: "./media/characters/maxene-sita/fox-laying.svg",
  27679. extra: 910 / 572,
  27680. bottom: 71 / 981
  27681. }
  27682. },
  27683. kitsune: {
  27684. height: math.unit(10, "feet"),
  27685. weight: math.unit(800, "lb"),
  27686. name: "Kitsune",
  27687. image: {
  27688. source: "./media/characters/maxene-sita/kitsune.svg",
  27689. extra: 185 / 176,
  27690. bottom: 4.7 / 189.9
  27691. }
  27692. },
  27693. hellhound: {
  27694. height: math.unit(10, "feet"),
  27695. weight: math.unit(700, "lb"),
  27696. name: "Hellhound",
  27697. image: {
  27698. source: "./media/characters/maxene-sita/hellhound.svg",
  27699. extra: 1600 / 1545,
  27700. bottom: 81 / 1681
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(5 + 6 / 12, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27714. {
  27715. front: {
  27716. height: math.unit(3 + 4 / 12, "feet"),
  27717. weight: math.unit(70, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/maia/front.svg",
  27721. extra: 227 / 219.5,
  27722. bottom: 40 / 267
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(3 + 4 / 12, "feet"),
  27727. weight: math.unit(70, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/maia/back.svg",
  27731. extra: 237 / 225
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(3 + 4 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(5 + 10 / 12, "feet"),
  27748. weight: math.unit(197, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/jabaro/front.svg",
  27752. extra: 225 / 216,
  27753. bottom: 5.06 / 230
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. weight: math.unit(197, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/jabaro/back.svg",
  27762. extra: 225 / 219,
  27763. bottom: 1.9 / 227
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(5 + 10 / 12, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(5 + 8 / 12, "feet"),
  27780. weight: math.unit(139, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/risa/front.svg",
  27784. extra: 270 / 260,
  27785. bottom: 11.2 / 282
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. weight: math.unit(139, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/risa/back.svg",
  27794. extra: 264 / 255,
  27795. bottom: 4 / 268
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5 + 8 / 12, "feet"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(2 + 11 / 12, "feet"),
  27812. weight: math.unit(30, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/weatley/front.svg",
  27816. bottom: 10.7 / 414,
  27817. extra: 403.5 / 362
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. weight: math.unit(30, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/weatley/back.svg",
  27826. bottom: 10.7 / 414,
  27827. extra: 403.5 / 362
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(2 + 11 / 12, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. weight: math.unit(50, "kg"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/mercury-crescent/front.svg",
  27848. extra: 1088 / 1033,
  27849. bottom: 18.9 / 1109
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5 + 2 / 12, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(2, "feet"),
  27866. weight: math.unit(15, "kg"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/diamond-jones/front.svg",
  27870. extra: 727/723,
  27871. bottom: 46/773
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(2, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(3, "feet"),
  27888. weight: math.unit(30, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/sweet-bit/front.svg",
  27892. extra: 675 / 567,
  27893. bottom: 27.7 / 703
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(3, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27907. {
  27908. side: {
  27909. height: math.unit(9.178, "feet"),
  27910. weight: math.unit(500, "lb"),
  27911. name: "Side",
  27912. image: {
  27913. source: "./media/characters/umbrazen/side.svg",
  27914. extra: 1730 / 1473,
  27915. bottom: 34.6 / 1765
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(9.178, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(10, "feet"),
  27932. weight: math.unit(750, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/arlist/front.svg",
  27936. extra: 961 / 778,
  27937. bottom: 6.2 / 986
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(10, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. weight: math.unit(110, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/aradel/front.svg",
  27958. extra: 324 / 303,
  27959. bottom: 3.6 / 329.4
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 1 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27973. {
  27974. dressed: {
  27975. height: math.unit(3 + 8 / 12, "feet"),
  27976. weight: math.unit(50, "lb"),
  27977. name: "Dressed",
  27978. image: {
  27979. source: "./media/characters/serryn/dressed.svg",
  27980. extra: 1792 / 1656,
  27981. bottom: 43.5 / 1840
  27982. }
  27983. },
  27984. nude: {
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. weight: math.unit(50, "lb"),
  27987. name: "Nude",
  27988. image: {
  27989. source: "./media/characters/serryn/nude.svg",
  27990. extra: 1792 / 1656,
  27991. bottom: 43.5 / 1840
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(3 + 8 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(7 + 10 / 12, "feet"),
  28008. weight: math.unit(255, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/xavier-thyme/front.svg",
  28012. extra: 3733 / 3642,
  28013. bottom: 131 / 3869
  28014. }
  28015. },
  28016. frontRaven: {
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. weight: math.unit(255, "lb"),
  28019. name: "Front (Raven)",
  28020. image: {
  28021. source: "./media/characters/xavier-thyme/front-raven.svg",
  28022. extra: 4385 / 3642,
  28023. bottom: 131 / 4517
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(7 + 10 / 12, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28037. {
  28038. front: {
  28039. height: math.unit(1.6, "m"),
  28040. weight: math.unit(50, "kg"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/kiki/front.svg",
  28044. extra: 4682 / 3610,
  28045. bottom: 115 / 4777
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(1.6, "meters"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(50, "m"),
  28062. weight: math.unit(500, "tonnes"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/ryoko/front.svg",
  28066. extra: 4632 / 3926,
  28067. bottom: 193 / 4823
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(50, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(30, "m"),
  28084. weight: math.unit(22, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/elio/front.svg",
  28088. extra: 4582 / 3720,
  28089. bottom: 236 / 4828
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(30, "meters"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(6 + 3 / 12, "feet"),
  28106. weight: math.unit(120, "lb"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/azura/front.svg",
  28110. extra: 1149 / 1135,
  28111. bottom: 45 / 1194
  28112. }
  28113. },
  28114. frontClothed: {
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. weight: math.unit(120, "lb"),
  28117. name: "Front (Clothed)",
  28118. image: {
  28119. source: "./media/characters/azura/front-clothed.svg",
  28120. extra: 1149 / 1135,
  28121. bottom: 45 / 1194
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(6 + 3 / 12, "feet"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Macro",
  28133. height: math.unit(20 + 6 / 12, "feet")
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(12, "miles")
  28138. },
  28139. {
  28140. name: "Gigamacro",
  28141. height: math.unit(10000, "miles")
  28142. },
  28143. {
  28144. name: "Teramacro",
  28145. height: math.unit(900000, "miles")
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(12, "feet"),
  28154. weight: math.unit(1, "ton"),
  28155. capacity: math.unit(660000, "gallons"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/zeus/front.svg",
  28159. extra: 5005 / 4717,
  28160. bottom: 363 / 5388
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(12, "feet")
  28168. },
  28169. {
  28170. name: "Preferred Size",
  28171. height: math.unit(0.5, "miles"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Giga Horse",
  28176. height: math.unit(300, "miles")
  28177. },
  28178. {
  28179. name: "Riding Planets",
  28180. height: math.unit(30, "megameters")
  28181. },
  28182. {
  28183. name: "Cosmic Giant",
  28184. height: math.unit(3, "zettameters")
  28185. },
  28186. {
  28187. name: "Breeding God",
  28188. height: math.unit(9.92e22, "yottameters")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28194. {
  28195. side: {
  28196. height: math.unit(9, "feet"),
  28197. weight: math.unit(1500, "kg"),
  28198. name: "Side",
  28199. image: {
  28200. source: "./media/characters/fang/side.svg",
  28201. extra: 924 / 866,
  28202. bottom: 47.5 / 972.3
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(9, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro",
  28214. height: math.unit(75 + 6 / 12, "feet")
  28215. },
  28216. {
  28217. name: "Teramacro",
  28218. height: math.unit(50000, "miles")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(10, "feet"),
  28227. weight: math.unit(2, "tons"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/rekhit/front.svg",
  28231. extra: 2796 / 2590,
  28232. bottom: 225 / 3022
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(10, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(500, "feet")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(7 + 6.451 / 12, "feet"),
  28253. weight: math.unit(310, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/dahlia-verrick/front.svg",
  28257. extra: 1488 / 1365,
  28258. bottom: 6.2 / 1495
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(7 + 6.451 / 12, "feet"),
  28263. weight: math.unit(310, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/dahlia-verrick/back.svg",
  28267. extra: 1472 / 1351,
  28268. bottom: 5.28 / 1477
  28269. }
  28270. },
  28271. frontBusiness: {
  28272. height: math.unit(7 + 6.451 / 12, "feet"),
  28273. weight: math.unit(200, "lb"),
  28274. name: "Front (Business)",
  28275. image: {
  28276. source: "./media/characters/dahlia-verrick/front-business.svg",
  28277. extra: 1478 / 1381,
  28278. bottom: 5.5 / 1484
  28279. }
  28280. },
  28281. frontCasual: {
  28282. height: math.unit(7 + 6.451 / 12, "feet"),
  28283. weight: math.unit(200, "lb"),
  28284. name: "Front (Casual)",
  28285. image: {
  28286. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28287. extra: 1478 / 1381,
  28288. bottom: 5.5 / 1484
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Travel-Sized",
  28295. height: math.unit(7.45, "inches")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(7 + 6.451 / 12, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Hitting the Town",
  28304. height: math.unit(37 + 8 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Stomp in the Suburbs",
  28308. height: math.unit(964 + 9.728 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Sit on the City",
  28312. height: math.unit(61747 + 10.592 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Glomp the Globe",
  28316. height: math.unit(252919327 + 4.832 / 12, "feet")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(6 + 4 / 12, "feet"),
  28325. weight: math.unit(320, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/front.svg",
  28329. extra: 447 / 428,
  28330. bottom: 18 / 466
  28331. }
  28332. },
  28333. back: {
  28334. height: math.unit(6 + 4 / 12, "feet"),
  28335. weight: math.unit(320, "lb"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/balina-mahigan/back.svg",
  28339. extra: 445 / 428,
  28340. bottom: 4.07 / 448
  28341. }
  28342. },
  28343. arm: {
  28344. height: math.unit(1.88, "feet"),
  28345. name: "Arm",
  28346. image: {
  28347. source: "./media/characters/balina-mahigan/arm.svg"
  28348. }
  28349. },
  28350. backPort: {
  28351. height: math.unit(0.685, "feet"),
  28352. name: "Back Port",
  28353. image: {
  28354. source: "./media/characters/balina-mahigan/back-port.svg"
  28355. }
  28356. },
  28357. hoofpaw: {
  28358. height: math.unit(1.41, "feet"),
  28359. name: "Hoofpaw",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28362. }
  28363. },
  28364. leftHandBack: {
  28365. height: math.unit(0.938, "feet"),
  28366. name: "Left Hand (Back)",
  28367. image: {
  28368. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28369. }
  28370. },
  28371. leftHandFront: {
  28372. height: math.unit(0.938, "feet"),
  28373. name: "Left Hand (Front)",
  28374. image: {
  28375. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28376. }
  28377. },
  28378. rightHandBack: {
  28379. height: math.unit(0.95, "feet"),
  28380. name: "Right Hand (Back)",
  28381. image: {
  28382. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28383. }
  28384. },
  28385. rightHandFront: {
  28386. height: math.unit(0.95, "feet"),
  28387. name: "Right Hand (Front)",
  28388. image: {
  28389. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(6 + 4 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(320, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/balina-mejeri/front.svg",
  28410. extra: 517 / 488,
  28411. bottom: 44.2 / 561
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6 + 4 / 12, "feet")
  28419. },
  28420. {
  28421. name: "Business",
  28422. height: math.unit(155, "feet"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28429. {
  28430. kneeling: {
  28431. height: math.unit(6 + 4 / 12, "feet"),
  28432. weight: math.unit(300 * 20, "lb"),
  28433. name: "Kneeling",
  28434. image: {
  28435. source: "./media/characters/balbarian/kneeling.svg",
  28436. extra: 922 / 862,
  28437. bottom: 42.4 / 965
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(6 + 4 / 12, "feet")
  28445. },
  28446. {
  28447. name: "Treasured",
  28448. height: math.unit(18 + 9 / 12, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(900, "feet")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 4 / 12, "feet"),
  28462. weight: math.unit(325, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/balina-amarini/front.svg",
  28466. extra: 415 / 403,
  28467. bottom: 19 / 433.4
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 4 / 12, "feet"),
  28472. weight: math.unit(325, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/balina-amarini/back.svg",
  28476. extra: 415 / 403,
  28477. bottom: 13.5 / 432
  28478. }
  28479. },
  28480. overdrive: {
  28481. height: math.unit(6 + 4 / 12, "feet"),
  28482. weight: math.unit(400, "lb"),
  28483. name: "Overdrive",
  28484. image: {
  28485. source: "./media/characters/balina-amarini/overdrive.svg",
  28486. extra: 269 / 259,
  28487. bottom: 12 / 282
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Boom",
  28494. height: math.unit(9 + 10 / 12, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(280, "feet")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28505. {
  28506. goddess: {
  28507. height: math.unit(600, "feet"),
  28508. weight: math.unit(2000000, "tons"),
  28509. name: "Goddess",
  28510. image: {
  28511. source: "./media/characters/lady-kubwa/goddess.svg",
  28512. extra: 1240.5 / 1223,
  28513. bottom: 22 / 1263
  28514. }
  28515. },
  28516. goddesser: {
  28517. height: math.unit(900, "feet"),
  28518. weight: math.unit(20000000, "lb"),
  28519. name: "Goddess-er",
  28520. image: {
  28521. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28522. extra: 899 / 888,
  28523. bottom: 12.6 / 912
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(600, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Megamacro",
  28535. height: math.unit(250, "miles")
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(7 + 7 / 12, "feet"),
  28544. weight: math.unit(250, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/tala-grovehorn/front.svg",
  28548. extra: 2636 / 2525,
  28549. bottom: 147 / 2781
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(7 + 7 / 12, "feet"),
  28554. weight: math.unit(250, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/tala-grovehorn/back.svg",
  28558. extra: 2635 / 2539,
  28559. bottom: 100 / 2732.8
  28560. }
  28561. },
  28562. mouth: {
  28563. height: math.unit(1.15, "feet"),
  28564. name: "Mouth",
  28565. image: {
  28566. source: "./media/characters/tala-grovehorn/mouth.svg"
  28567. }
  28568. },
  28569. dick: {
  28570. height: math.unit(2.36, "feet"),
  28571. name: "Dick",
  28572. image: {
  28573. source: "./media/characters/tala-grovehorn/dick.svg"
  28574. }
  28575. },
  28576. slit: {
  28577. height: math.unit(0.61, "feet"),
  28578. name: "Slit",
  28579. image: {
  28580. source: "./media/characters/tala-grovehorn/slit.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(7 + 7 / 12, "feet"),
  28592. weight: math.unit(225, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/epona/front.svg",
  28596. extra: 2445 / 2290,
  28597. bottom: 251 / 2696
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(7 + 7 / 12, "feet"),
  28602. weight: math.unit(225, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/epona/back.svg",
  28606. extra: 2546 / 2408,
  28607. bottom: 44 / 2589
  28608. }
  28609. },
  28610. genitals: {
  28611. height: math.unit(1.5, "feet"),
  28612. name: "Genitals",
  28613. image: {
  28614. source: "./media/characters/epona/genitals.svg"
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(7 + 7 / 12, "feet"),
  28622. default: true
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(7, "feet"),
  28631. weight: math.unit(518, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/avia-bloodbourn/front.svg",
  28635. extra: 1466 / 1350,
  28636. bottom: 65 / 1527
  28637. }
  28638. },
  28639. },
  28640. [
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9.35, "feet"),
  28648. weight: math.unit(600, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/amera/front.svg",
  28652. extra: 891 / 818,
  28653. bottom: 30 / 922.7
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(9.35, "feet"),
  28658. weight: math.unit(600, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/amera/back.svg",
  28662. extra: 876 / 824,
  28663. bottom: 6.8 / 884
  28664. }
  28665. },
  28666. dick: {
  28667. height: math.unit(2.14, "feet"),
  28668. name: "Dick",
  28669. image: {
  28670. source: "./media/characters/amera/dick.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(9.35, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28684. {
  28685. kneeling: {
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. weight: math.unit(90, "lb"),
  28688. name: "Kneeling",
  28689. image: {
  28690. source: "./media/characters/rosewen/kneeling.svg",
  28691. extra: 1835 / 1571,
  28692. bottom: 27.7 / 1862
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(3 + 4 / 12, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. weight: math.unit(200, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/sabah/front.svg",
  28713. extra: 849 / 763,
  28714. bottom: 33.9 / 881
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(5 + 10 / 12, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28728. {
  28729. front: {
  28730. height: math.unit(3 + 5 / 12, "feet"),
  28731. weight: math.unit(40, "kg"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/purple-flame/front.svg",
  28735. extra: 1577 / 1412,
  28736. bottom: 97 / 1694
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(3 + 5 / 12, "feet"),
  28741. weight: math.unit(40, "kg"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/purple-flame/front-dressed.svg",
  28745. extra: 1577 / 1412,
  28746. bottom: 97 / 1694
  28747. }
  28748. },
  28749. headphones: {
  28750. height: math.unit(0.85, "feet"),
  28751. name: "Headphones",
  28752. image: {
  28753. source: "./media/characters/purple-flame/headphones.svg"
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Really Small",
  28760. height: math.unit(5, "cm")
  28761. },
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(1 + 5 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(3 + 5 / 12, "feet"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Minimacro",
  28773. height: math.unit(125, "feet")
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(0.5, "miles")
  28778. },
  28779. {
  28780. name: "Megamacro",
  28781. height: math.unit(50, "miles")
  28782. },
  28783. {
  28784. name: "Gigantic",
  28785. height: math.unit(750, "miles")
  28786. },
  28787. {
  28788. name: "Planetary",
  28789. height: math.unit(15000, "miles")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(14, "feet"),
  28798. weight: math.unit(959, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/arsenal/front.svg",
  28802. extra: 2357 / 2157,
  28803. bottom: 93 / 2458
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(14, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/adira/front.svg",
  28824. extra: 1078 / 1029,
  28825. bottom: 87 / 1166
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Micro",
  28832. height: math.unit(4, "inches"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(50, "feet")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(16, "feet"),
  28846. weight: math.unit(1000, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/grim/front.svg",
  28850. extra: 622 / 614,
  28851. bottom: 18.1 / 642
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(16, "feet"),
  28856. weight: math.unit(1000, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/grim/back.svg",
  28860. extra: 610.6 / 602,
  28861. bottom: 40.8 / 652
  28862. }
  28863. },
  28864. hunched: {
  28865. height: math.unit(9.75, "feet"),
  28866. weight: math.unit(1000, "lb"),
  28867. name: "Hunched",
  28868. image: {
  28869. source: "./media/characters/grim/hunched.svg",
  28870. extra: 304 / 297,
  28871. bottom: 35.4 / 394
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(16, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(2.3, "meters"),
  28888. weight: math.unit(300, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/sinja/front-sfw.svg",
  28892. extra: 1393 / 1294,
  28893. bottom: 70 / 1463
  28894. }
  28895. },
  28896. frontNsfw: {
  28897. height: math.unit(2.3, "meters"),
  28898. weight: math.unit(300, "lb"),
  28899. name: "Front (NSFW)",
  28900. image: {
  28901. source: "./media/characters/sinja/front-nsfw.svg",
  28902. extra: 1393 / 1294,
  28903. bottom: 70 / 1463
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(2.3, "meters"),
  28908. weight: math.unit(300, "lb"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/sinja/back.svg",
  28912. extra: 1393 / 1294,
  28913. bottom: 70 / 1463
  28914. }
  28915. },
  28916. head: {
  28917. height: math.unit(1.771, "feet"),
  28918. name: "Head",
  28919. image: {
  28920. source: "./media/characters/sinja/head.svg"
  28921. }
  28922. },
  28923. slit: {
  28924. height: math.unit(0.8, "feet"),
  28925. name: "Slit",
  28926. image: {
  28927. source: "./media/characters/sinja/slit.svg"
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(2.3, "meters")
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(91, "meters"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(91440, "meters")
  28944. },
  28945. {
  28946. name: "Gigamacro",
  28947. height: math.unit(60960000, "meters")
  28948. },
  28949. {
  28950. name: "Teramacro",
  28951. height: math.unit(9144000000, "meters")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(1.7, "meters"),
  28960. weight: math.unit(130, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/kyu/front.svg",
  28964. extra: 415 / 395,
  28965. bottom: 5 / 420
  28966. }
  28967. },
  28968. head: {
  28969. height: math.unit(1.75, "feet"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/kyu/head.svg"
  28973. }
  28974. },
  28975. foot: {
  28976. height: math.unit(0.81, "feet"),
  28977. name: "Foot",
  28978. image: {
  28979. source: "./media/characters/kyu/foot.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(1.7, "meters")
  28987. },
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(131, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Megamacro",
  28995. height: math.unit(91440, "meters")
  28996. },
  28997. {
  28998. name: "Gigamacro",
  28999. height: math.unit(60960000, "meters")
  29000. },
  29001. {
  29002. name: "Teramacro",
  29003. height: math.unit(9144000000, "meters")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(7 + 1 / 12, "feet"),
  29012. weight: math.unit(250, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/joey/front.svg",
  29016. extra: 1791 / 1537,
  29017. bottom: 28 / 1816
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit(3, "inches")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(7 + 1 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(165, "cm"),
  29038. weight: math.unit(140, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sam-evans/front.svg",
  29042. extra: 3417 / 3230,
  29043. bottom: 41.3 / 3417
  29044. }
  29045. },
  29046. frontSixTails: {
  29047. height: math.unit(165, "cm"),
  29048. weight: math.unit(140, "lb"),
  29049. name: "Front-six-tails",
  29050. image: {
  29051. source: "./media/characters/sam-evans/front-six-tails.svg",
  29052. extra: 3417 / 3230,
  29053. bottom: 41.3 / 3417
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(165, "cm"),
  29058. weight: math.unit(140, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/sam-evans/back.svg",
  29062. extra: 3227 / 3032,
  29063. bottom: 6.8 / 3234
  29064. }
  29065. },
  29066. face: {
  29067. height: math.unit(0.68, "feet"),
  29068. name: "Face",
  29069. image: {
  29070. source: "./media/characters/sam-evans/face.svg"
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(165, "cm"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(100, "meters")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(800, "meters")
  29087. },
  29088. {
  29089. name: "Macro++",
  29090. height: math.unit(3, "km")
  29091. },
  29092. {
  29093. name: "Macro+++",
  29094. height: math.unit(30, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(10, "feet"),
  29103. weight: math.unit(750, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/juliet-a/front.svg",
  29107. extra: 1766 / 1720,
  29108. bottom: 43 / 1809
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(10, "feet"),
  29113. weight: math.unit(750, "lb"),
  29114. name: "Back",
  29115. image: {
  29116. source: "./media/characters/juliet-a/back.svg",
  29117. extra: 1781 / 1734,
  29118. bottom: 35 / 1810,
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(10, "feet"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Dragon Form",
  29130. height: math.unit(250, "feet")
  29131. },
  29132. {
  29133. name: "Macro",
  29134. height: math.unit(1000, "feet")
  29135. },
  29136. {
  29137. name: "Megamacro",
  29138. height: math.unit(10000, "feet")
  29139. }
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29144. {
  29145. regular: {
  29146. height: math.unit(7 + 3 / 12, "feet"),
  29147. weight: math.unit(260, "lb"),
  29148. name: "Regular",
  29149. image: {
  29150. source: "./media/characters/wild/regular.svg",
  29151. extra: 97.45 / 92,
  29152. bottom: 6.8 / 104.3
  29153. }
  29154. },
  29155. biggums: {
  29156. height: math.unit(8 + 6 / 12, "feet"),
  29157. weight: math.unit(425, "lb"),
  29158. name: "Biggums",
  29159. image: {
  29160. source: "./media/characters/wild/biggums.svg",
  29161. extra: 97.45 / 92,
  29162. bottom: 7.5 / 132.34
  29163. }
  29164. },
  29165. mawRegular: {
  29166. height: math.unit(1.24, "feet"),
  29167. name: "Maw (Regular)",
  29168. image: {
  29169. source: "./media/characters/wild/maw.svg"
  29170. }
  29171. },
  29172. mawBiggums: {
  29173. height: math.unit(1.47, "feet"),
  29174. name: "Maw (Biggums)",
  29175. image: {
  29176. source: "./media/characters/wild/maw.svg"
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(7 + 3 / 12, "feet"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29190. {
  29191. front: {
  29192. height: math.unit(2.5, "meters"),
  29193. weight: math.unit(200, "kg"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/vidar/front.svg",
  29197. extra: 2994 / 2795,
  29198. bottom: 56 / 3061
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(2.5, "meters"),
  29203. weight: math.unit(200, "kg"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/vidar/back.svg",
  29207. extra: 3131 / 2928,
  29208. bottom: 13.5 / 3141.5
  29209. }
  29210. },
  29211. feral: {
  29212. height: math.unit(2.5, "meters"),
  29213. weight: math.unit(2000, "kg"),
  29214. name: "Feral",
  29215. image: {
  29216. source: "./media/characters/vidar/feral.svg",
  29217. extra: 2790 / 1765,
  29218. bottom: 6 / 2796
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(2.5, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(100, "meters")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. weight: math.unit(120, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/ash/front.svg",
  29243. extra: 2189 / 1961,
  29244. bottom: 5.2 / 2194
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 9 / 12, "feet"),
  29252. default: true
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(9, "feet"),
  29261. weight: math.unit(10000, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/gygabite/front.svg",
  29265. bottom: 31.7 / 537.8,
  29266. extra: 505 / 370
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(9, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(12, "feet"),
  29283. weight: math.unit(4000, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/p0tat0/front.svg",
  29287. extra: 1065 / 921,
  29288. bottom: 55.7 / 1121.25
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(12, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29302. {
  29303. side: {
  29304. height: math.unit(6.5, "feet"),
  29305. weight: math.unit(800, "lb"),
  29306. name: "Side",
  29307. image: {
  29308. source: "./media/characters/dusk/side.svg",
  29309. extra: 615 / 373,
  29310. bottom: 53 / 664
  29311. }
  29312. },
  29313. sitting: {
  29314. height: math.unit(7, "feet"),
  29315. weight: math.unit(800, "lb"),
  29316. name: "Sitting",
  29317. image: {
  29318. source: "./media/characters/dusk/sitting.svg",
  29319. extra: 753 / 425,
  29320. bottom: 33 / 774
  29321. }
  29322. },
  29323. head: {
  29324. height: math.unit(6.1, "feet"),
  29325. name: "Head",
  29326. image: {
  29327. source: "./media/characters/dusk/head.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(7, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(15, "feet"),
  29344. weight: math.unit(7000, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/jay-direwolf/front.svg",
  29348. extra: 1810 / 1732,
  29349. bottom: 66 / 1892
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(15, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(4 + 9 / 12, "feet"),
  29366. weight: math.unit(130, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/anchovie/front.svg",
  29370. extra: 382 / 350,
  29371. bottom: 25 / 409
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(4 + 9 / 12, "feet"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/anchovie/back.svg",
  29380. extra: 385 / 352,
  29381. bottom: 16.6 / 402
  29382. }
  29383. },
  29384. frontDressed: {
  29385. height: math.unit(4 + 9 / 12, "feet"),
  29386. weight: math.unit(130, "lb"),
  29387. name: "Front (Dressed)",
  29388. image: {
  29389. source: "./media/characters/anchovie/front-dressed.svg",
  29390. extra: 382 / 350,
  29391. bottom: 25 / 409
  29392. }
  29393. },
  29394. backDressed: {
  29395. height: math.unit(4 + 9 / 12, "feet"),
  29396. weight: math.unit(130, "lb"),
  29397. name: "Back (Dressed)",
  29398. image: {
  29399. source: "./media/characters/anchovie/back-dressed.svg",
  29400. extra: 385 / 352,
  29401. bottom: 16.6 / 402
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Micro",
  29408. height: math.unit(6.4, "inches")
  29409. },
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(4 + 9 / 12, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(2, "meters"),
  29422. weight: math.unit(180, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/acidrenamon/front.svg",
  29426. extra: 987 / 890,
  29427. bottom: 22.8 / 1009
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(2, "meters"),
  29432. weight: math.unit(180, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/acidrenamon/back.svg",
  29436. extra: 983 / 891,
  29437. bottom: 8.4 / 992
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.92, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/acidrenamon/head.svg"
  29445. }
  29446. },
  29447. rump: {
  29448. height: math.unit(1.72, "feet"),
  29449. name: "Rump",
  29450. image: {
  29451. source: "./media/characters/acidrenamon/rump.svg"
  29452. }
  29453. },
  29454. tail: {
  29455. height: math.unit(4.2, "feet"),
  29456. name: "Tail",
  29457. image: {
  29458. source: "./media/characters/acidrenamon/tail.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(2, "meters"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Minimacro",
  29470. height: math.unit(7, "meters")
  29471. },
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(200, "meters")
  29475. },
  29476. {
  29477. name: "Gigamacro",
  29478. height: math.unit(0.2, "earths")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(152, "feet"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/kenzie-lee/front.svg",
  29490. extra: 1869/1774,
  29491. bottom: 128/1997
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(86, "feet"),
  29496. name: "Side",
  29497. image: {
  29498. source: "./media/characters/kenzie-lee/side.svg",
  29499. extra: 930/815,
  29500. bottom: 177/1107
  29501. }
  29502. },
  29503. paw: {
  29504. height: math.unit(15, "feet"),
  29505. name: "Paw",
  29506. image: {
  29507. source: "./media/characters/kenzie-lee/paw.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Kenzie Flea",
  29514. height: math.unit(2, "mm"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Micro",
  29519. height: math.unit(2, "inches")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(152, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(7, "miles")
  29528. },
  29529. {
  29530. name: "Gigamacro",
  29531. height: math.unit(8000, "miles")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/withers/front.svg",
  29543. extra: 1935/1760,
  29544. bottom: 72/2007
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6, "feet"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/withers/back.svg",
  29552. extra: 1944/1792,
  29553. bottom: 12/1956
  29554. }
  29555. },
  29556. dressed: {
  29557. height: math.unit(6, "feet"),
  29558. name: "Dressed",
  29559. image: {
  29560. source: "./media/characters/withers/dressed.svg",
  29561. extra: 1937/1765,
  29562. bottom: 73/2010
  29563. }
  29564. },
  29565. phase1: {
  29566. height: math.unit(1.1, "feet"),
  29567. name: "Phase 1",
  29568. image: {
  29569. source: "./media/characters/withers/phase-1.svg",
  29570. extra: 1885/1232,
  29571. bottom: 0/1885
  29572. }
  29573. },
  29574. phase2: {
  29575. height: math.unit(1.05, "feet"),
  29576. name: "Phase 2",
  29577. image: {
  29578. source: "./media/characters/withers/phase-2.svg",
  29579. extra: 1792/1090,
  29580. bottom: 0/1792
  29581. }
  29582. },
  29583. partyWipe: {
  29584. height: math.unit(1.1, "feet"),
  29585. name: "Party Wipe",
  29586. image: {
  29587. source: "./media/characters/withers/party-wipe.svg",
  29588. extra: 1864/1207,
  29589. bottom: 0/1864
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(167, "feet"),
  29597. default: true
  29598. },
  29599. {
  29600. name: "Megamacro",
  29601. height: math.unit(15, "miles")
  29602. }
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(6 + 7 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/nemoskii/front.svg",
  29614. extra: 2270 / 1734,
  29615. bottom: 86 / 2354
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(6 + 7 / 12, "feet"),
  29620. weight: math.unit(250, "lb"),
  29621. name: "Back",
  29622. image: {
  29623. source: "./media/characters/nemoskii/back.svg",
  29624. extra: 1845 / 1788,
  29625. bottom: 10.5 / 1852
  29626. }
  29627. },
  29628. head: {
  29629. height: math.unit(1.31, "feet"),
  29630. name: "Head",
  29631. image: {
  29632. source: "./media/characters/nemoskii/head.svg"
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Micro",
  29639. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29640. },
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(6 + 7 / 12, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit((6 + 7 / 12) * 150, "feet")
  29649. },
  29650. {
  29651. name: "Macro+",
  29652. height: math.unit((6 + 7 / 12) * 500, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(1, "mile"),
  29665. weight: math.unit(265261.9, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/shui/front.svg",
  29669. extra: 1633 / 1564,
  29670. bottom: 91.5 / 1726
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(1, "mile"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(12 + 6 / 12, "feet"),
  29687. weight: math.unit(1342, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/arokh-takakura/front.svg",
  29691. extra: 1089 / 1043,
  29692. bottom: 77.4 / 1176.7
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. weight: math.unit(1342, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/arokh-takakura/back.svg",
  29701. extra: 1046 / 1019,
  29702. bottom: 102 / 1150
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Big",
  29709. height: math.unit(12 + 6 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/theo/front.svg",
  29723. extra: 1184 / 1131,
  29724. bottom: 7.4 / 1191
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Micro",
  29731. height: math.unit(5, "inches")
  29732. },
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(5 + 6 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. weight: math.unit(130, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/cecelia-swift/front.svg",
  29749. extra: 502 / 484,
  29750. bottom: 23 / 523
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 9 / 12, "feet"),
  29755. weight: math.unit(130, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/cecelia-swift/back.svg",
  29759. extra: 499 / 485,
  29760. bottom: 12 / 511
  29761. }
  29762. },
  29763. head: {
  29764. height: math.unit(0.90, "feet"),
  29765. name: "Head",
  29766. image: {
  29767. source: "./media/characters/cecelia-swift/head.svg"
  29768. }
  29769. },
  29770. rump: {
  29771. height: math.unit(1.75, "feet"),
  29772. name: "Rump",
  29773. image: {
  29774. source: "./media/characters/cecelia-swift/rump.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(5 + 9 / 12, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Big",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(100, "feet")
  29791. },
  29792. {
  29793. name: "Macro+",
  29794. height: math.unit(500, "feet")
  29795. },
  29796. {
  29797. name: "Macro++",
  29798. height: math.unit(1000, "feet")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(6, "feet"),
  29807. weight: math.unit(150, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/kaunan/front.svg",
  29811. extra: 2890 / 2523,
  29812. bottom: 49 / 2939
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(150, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29826. {
  29827. dressed: {
  29828. height: math.unit(175, "cm"),
  29829. weight: math.unit(60, "kg"),
  29830. name: "Dressed",
  29831. image: {
  29832. source: "./media/characters/fei/dressed.svg",
  29833. extra: 1402/1278,
  29834. bottom: 27/1429
  29835. }
  29836. },
  29837. nude: {
  29838. height: math.unit(175, "cm"),
  29839. weight: math.unit(60, "kg"),
  29840. name: "Nude",
  29841. image: {
  29842. source: "./media/characters/fei/nude.svg",
  29843. extra: 1402/1278,
  29844. bottom: 27/1429
  29845. }
  29846. },
  29847. heels: {
  29848. height: math.unit(0.466, "feet"),
  29849. name: "Heels",
  29850. image: {
  29851. source: "./media/characters/fei/heels.svg",
  29852. extra: 156/152,
  29853. bottom: 28/184
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Mortal",
  29860. height: math.unit(175, "cm")
  29861. },
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(3500, "m")
  29865. },
  29866. {
  29867. name: "Stroll",
  29868. height: math.unit(18.4, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Showoff",
  29873. height: math.unit(175, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(7, "feet"),
  29882. weight: math.unit(1000, "kg"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/edrax/front.svg",
  29886. extra: 2838 / 2550,
  29887. bottom: 130 / 2968
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Small",
  29894. height: math.unit(7, "feet")
  29895. },
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(1500, "meters")
  29899. },
  29900. {
  29901. name: "Mega",
  29902. height: math.unit(12000000, "km"),
  29903. default: true
  29904. },
  29905. {
  29906. name: "Megamacro",
  29907. height: math.unit(10600000, "lightyears")
  29908. },
  29909. {
  29910. name: "Hypermacro",
  29911. height: math.unit(256, "yottameters")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(10, "feet"),
  29920. weight: math.unit(750, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/clove/front.svg",
  29924. extra: 1918/1751,
  29925. bottom: 52/1970
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(10, "feet"),
  29930. weight: math.unit(750, "lb"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/clove/back.svg",
  29934. extra: 1912/1747,
  29935. bottom: 50/1962
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(10, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(4, "feet"),
  29952. weight: math.unit(50, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/alex-rabbit/front.svg",
  29956. extra: 507 / 458,
  29957. bottom: 18.5 / 527
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(4, "feet"),
  29962. weight: math.unit(50, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/alex-rabbit/back.svg",
  29966. extra: 502 / 460,
  29967. bottom: 18.9 / 521
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(4, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(1 + 3 / 12, "feet"),
  29984. weight: math.unit(80, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/zander-rose/front.svg",
  29988. extra: 916 / 797,
  29989. bottom: 17 / 933
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. weight: math.unit(80, "lb"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/zander-rose/back.svg",
  29998. extra: 903 / 779,
  29999. bottom: 31 / 934
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(1 + 3 / 12, "feet"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30013. {
  30014. anthro: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(150, "lb"),
  30017. name: "Anthro",
  30018. image: {
  30019. source: "./media/characters/razz/anthro.svg",
  30020. extra: 1437 / 1343,
  30021. bottom: 48 / 1485
  30022. }
  30023. },
  30024. feral: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Feral",
  30028. image: {
  30029. source: "./media/characters/razz/feral.svg",
  30030. extra: 2569 / 1385,
  30031. bottom: 95 / 2664
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. weight: math.unit(500, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/morrigan/front.svg",
  30052. extra: 2707 / 2579,
  30053. bottom: 156 / 2863
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(9 + 4 / 12, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(5, "stories"),
  30070. weight: math.unit(4000, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/jenene/front.svg",
  30074. extra: 1780 / 1710,
  30075. bottom: 57 / 1837
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(5, "stories"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30089. {
  30090. taurSfw: {
  30091. height: math.unit(10, "meters"),
  30092. weight: math.unit(17500, "kg"),
  30093. name: "Taur",
  30094. image: {
  30095. source: "./media/characters/faey/taur-sfw.svg",
  30096. extra: 1200 / 968,
  30097. bottom: 41 / 1241
  30098. }
  30099. },
  30100. chestmaw: {
  30101. height: math.unit(2.01, "meters"),
  30102. name: "Chestmaw",
  30103. image: {
  30104. source: "./media/characters/faey/chestmaw.svg"
  30105. }
  30106. },
  30107. foot: {
  30108. height: math.unit(2.43, "meters"),
  30109. name: "Foot",
  30110. image: {
  30111. source: "./media/characters/faey/foot.svg"
  30112. }
  30113. },
  30114. jaws: {
  30115. height: math.unit(1.66, "meters"),
  30116. name: "Jaws",
  30117. image: {
  30118. source: "./media/characters/faey/jaws.svg"
  30119. }
  30120. },
  30121. tongues: {
  30122. height: math.unit(2.01, "meters"),
  30123. name: "Tongues",
  30124. image: {
  30125. source: "./media/characters/faey/tongues.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Small",
  30132. height: math.unit(10, "meters"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Big",
  30137. height: math.unit(500000, "km")
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(7, "feet"),
  30146. weight: math.unit(275, "lb"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/roku/front.svg",
  30150. extra: 903 / 878,
  30151. bottom: 37 / 940
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(7, "feet"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(500, "feet")
  30164. },
  30165. {
  30166. name: "Megamacro",
  30167. height: math.unit(200, "miles")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30173. {
  30174. front: {
  30175. height: math.unit(6 + 2 / 12, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/lira/front.svg",
  30180. extra: 1727 / 1605,
  30181. bottom: 26 / 1753
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(6 + 2 / 12, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/lira/back.svg",
  30190. extra: 1713/1621,
  30191. bottom: 20/1733
  30192. }
  30193. },
  30194. hand: {
  30195. height: math.unit(0.75, "feet"),
  30196. name: "Hand",
  30197. image: {
  30198. source: "./media/characters/lira/hand.svg"
  30199. }
  30200. },
  30201. maw: {
  30202. height: math.unit(0.65, "feet"),
  30203. name: "Maw",
  30204. image: {
  30205. source: "./media/characters/lira/maw.svg"
  30206. }
  30207. },
  30208. pawDigi: {
  30209. height: math.unit(1.6, "feet"),
  30210. name: "Paw Digi",
  30211. image: {
  30212. source: "./media/characters/lira/paw-digi.svg"
  30213. }
  30214. },
  30215. pawPlanti: {
  30216. height: math.unit(1.4, "feet"),
  30217. name: "Paw Planti",
  30218. image: {
  30219. source: "./media/characters/lira/paw-planti.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(6 + 2 / 12, "feet"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Macro",
  30231. height: math.unit(100, "feet")
  30232. },
  30233. {
  30234. name: "Macro²",
  30235. height: math.unit(1600, "feet")
  30236. },
  30237. {
  30238. name: "Planetary",
  30239. height: math.unit(20, "earths")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/hadjet/front.svg",
  30252. extra: 1480 / 1346,
  30253. bottom: 26 / 1506
  30254. }
  30255. },
  30256. frontNsfw: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Front (NSFW)",
  30260. image: {
  30261. source: "./media/characters/hadjet/front-nsfw.svg",
  30262. extra: 1440 / 1358,
  30263. bottom: 52 / 1492
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(10, "stories"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Megamacro",
  30275. height: math.unit(1.5, "miles")
  30276. },
  30277. {
  30278. name: "Megamacro+",
  30279. height: math.unit(5, "miles")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30285. {
  30286. side: {
  30287. height: math.unit(106, "feet"),
  30288. weight: math.unit(500, "tonnes"),
  30289. name: "Side",
  30290. image: {
  30291. source: "./media/characters/kodran/side.svg",
  30292. extra: 553 / 480,
  30293. bottom: 33 / 586
  30294. }
  30295. },
  30296. front: {
  30297. height: math.unit(132, "feet"),
  30298. weight: math.unit(500, "tonnes"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/kodran/front.svg",
  30302. extra: 667 / 643,
  30303. bottom: 42 / 709
  30304. }
  30305. },
  30306. flying: {
  30307. height: math.unit(350, "feet"),
  30308. weight: math.unit(500, "tonnes"),
  30309. name: "Flying",
  30310. image: {
  30311. source: "./media/characters/kodran/flying.svg"
  30312. }
  30313. },
  30314. foot: {
  30315. height: math.unit(33, "feet"),
  30316. name: "Foot",
  30317. image: {
  30318. source: "./media/characters/kodran/foot.svg"
  30319. }
  30320. },
  30321. footFront: {
  30322. height: math.unit(19, "feet"),
  30323. name: "Foot (Front)",
  30324. image: {
  30325. source: "./media/characters/kodran/foot-front.svg",
  30326. extra: 261 / 261,
  30327. bottom: 91 / 352
  30328. }
  30329. },
  30330. headFront: {
  30331. height: math.unit(53, "feet"),
  30332. name: "Head (Front)",
  30333. image: {
  30334. source: "./media/characters/kodran/head-front.svg"
  30335. }
  30336. },
  30337. headSide: {
  30338. height: math.unit(65, "feet"),
  30339. name: "Head (Side)",
  30340. image: {
  30341. source: "./media/characters/kodran/head-side.svg"
  30342. }
  30343. },
  30344. throat: {
  30345. height: math.unit(79, "feet"),
  30346. name: "Throat",
  30347. image: {
  30348. source: "./media/characters/kodran/throat.svg"
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Large",
  30355. height: math.unit(106, "feet"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30362. {
  30363. side: {
  30364. height: math.unit(11, "feet"),
  30365. weight: math.unit(150, "lb"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/pyxaron/side.svg",
  30369. extra: 305 / 195,
  30370. bottom: 17 / 322
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(11, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/meep/front.svg",
  30391. extra: 88 / 80,
  30392. bottom: 6 / 94
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Fun Sized",
  30399. height: math.unit(2, "inches"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Friend Sized",
  30404. height: math.unit(8, "inches")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(15, "feet"),
  30413. weight: math.unit(2500, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/holly-rabbit/front.svg",
  30417. extra: 1433 / 1233,
  30418. bottom: 125 / 1558
  30419. }
  30420. },
  30421. dick: {
  30422. height: math.unit(4.6, "feet"),
  30423. name: "Dick",
  30424. image: {
  30425. source: "./media/characters/holly-rabbit/dick.svg"
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(15, "feet"),
  30433. default: true
  30434. },
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(250, "feet")
  30438. },
  30439. {
  30440. name: "Macro+",
  30441. height: math.unit(2500, "feet")
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(3.02, "meters"),
  30450. weight: math.unit(500, "kg"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/drena/front.svg",
  30454. extra: 282 / 243,
  30455. bottom: 8 / 290
  30456. }
  30457. },
  30458. side: {
  30459. height: math.unit(3.02, "meters"),
  30460. weight: math.unit(500, "kg"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/drena/side.svg",
  30464. extra: 280 / 245,
  30465. bottom: 10 / 290
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(3.02, "meters"),
  30470. weight: math.unit(500, "kg"),
  30471. name: "Back",
  30472. image: {
  30473. source: "./media/characters/drena/back.svg",
  30474. extra: 278 / 243,
  30475. bottom: 2 / 280
  30476. }
  30477. },
  30478. foot: {
  30479. height: math.unit(0.75, "meters"),
  30480. name: "Foot",
  30481. image: {
  30482. source: "./media/characters/drena/foot.svg"
  30483. }
  30484. },
  30485. maw: {
  30486. height: math.unit(0.82, "meters"),
  30487. name: "Maw",
  30488. image: {
  30489. source: "./media/characters/drena/maw.svg"
  30490. }
  30491. },
  30492. eating: {
  30493. height: math.unit(0.75, "meters"),
  30494. name: "Eating",
  30495. image: {
  30496. source: "./media/characters/drena/eating.svg"
  30497. }
  30498. },
  30499. rump: {
  30500. height: math.unit(0.93, "meters"),
  30501. name: "Rump",
  30502. image: {
  30503. source: "./media/characters/drena/rump.svg"
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Normal",
  30510. height: math.unit(3.02, "meters"),
  30511. default: true
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30517. {
  30518. front: {
  30519. height: math.unit(6 + 4 / 12, "feet"),
  30520. weight: math.unit(250, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/remmyzilla/front.svg",
  30524. extra: 4033 / 3588,
  30525. bottom: 123 / 4156
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(6 + 4 / 12, "feet"),
  30530. weight: math.unit(250, "lb"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/remmyzilla/back.svg",
  30534. extra: 2687 / 2555,
  30535. bottom: 48 / 2735
  30536. }
  30537. },
  30538. paw: {
  30539. height: math.unit(1.73, "feet"),
  30540. name: "Paw",
  30541. image: {
  30542. source: "./media/characters/remmyzilla/paw.svg"
  30543. },
  30544. extraAttributes: {
  30545. "toeSize": {
  30546. name: "Toe Size",
  30547. power: 2,
  30548. type: "area",
  30549. base: math.unit(0.0035, "m^2")
  30550. },
  30551. "padSize": {
  30552. name: "Pad Size",
  30553. power: 2,
  30554. type: "area",
  30555. base: math.unit(0.015, "m^2")
  30556. },
  30557. "pawsize": {
  30558. name: "Paw Size",
  30559. power: 2,
  30560. type: "area",
  30561. base: math.unit(0.072, "m^2")
  30562. },
  30563. }
  30564. },
  30565. maw: {
  30566. height: math.unit(1.73, "feet"),
  30567. name: "Maw",
  30568. image: {
  30569. source: "./media/characters/remmyzilla/maw.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(6 + 4 / 12, "feet")
  30577. },
  30578. {
  30579. name: "Minimacro",
  30580. height: math.unit(12 + 8 / 12, "feet")
  30581. },
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(640, "feet"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Megamacro",
  30589. height: math.unit(6400, "feet")
  30590. },
  30591. {
  30592. name: "Gigamacro",
  30593. height: math.unit(64000, "miles")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(2.5, "meters"),
  30602. weight: math.unit(300, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/lawrence/front.svg",
  30606. extra: 357 / 335,
  30607. bottom: 30 / 387
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(2.5, "meters"),
  30612. weight: math.unit(300, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/lawrence/back.svg",
  30616. extra: 357 / 338,
  30617. bottom: 16 / 373
  30618. }
  30619. },
  30620. head: {
  30621. height: math.unit(0.9, "meter"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/lawrence/head.svg"
  30625. }
  30626. },
  30627. maw: {
  30628. height: math.unit(0.7, "meter"),
  30629. name: "Maw",
  30630. image: {
  30631. source: "./media/characters/lawrence/maw.svg"
  30632. }
  30633. },
  30634. footBottom: {
  30635. height: math.unit(0.5, "meter"),
  30636. name: "Foot (Bottom)",
  30637. image: {
  30638. source: "./media/characters/lawrence/foot-bottom.svg"
  30639. }
  30640. },
  30641. footTop: {
  30642. height: math.unit(0.5, "meter"),
  30643. name: "Foot (Top)",
  30644. image: {
  30645. source: "./media/characters/lawrence/foot-top.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(2.5, "meters"),
  30653. default: true
  30654. },
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(95, "meters")
  30658. },
  30659. {
  30660. name: "Megamacro",
  30661. height: math.unit(150, "km")
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30667. {
  30668. front: {
  30669. height: math.unit(4.2, "meters"),
  30670. preyCapacity: math.unit(50, "m^3"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/sydney/front.svg",
  30674. extra: 1177/1129,
  30675. bottom: 197/1374
  30676. },
  30677. extraAttributes: {
  30678. "length": {
  30679. name: "Length",
  30680. power: 1,
  30681. type: "length",
  30682. base: math.unit(21, "meters")
  30683. },
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(4.2, "meters"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30697. {
  30698. back: {
  30699. height: math.unit(201, "feet"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/jessica/back.svg",
  30703. extra: 273 / 259,
  30704. bottom: 7 / 280
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(201, "feet"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Megamacro",
  30716. height: math.unit(8, "miles")
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30722. {
  30723. side: {
  30724. height: math.unit(5.6, "m"),
  30725. weight: math.unit(8000, "kg"),
  30726. name: "Side",
  30727. image: {
  30728. source: "./media/characters/victoria/side.svg",
  30729. extra: 1542/1229,
  30730. bottom: 124/1666
  30731. }
  30732. },
  30733. maw: {
  30734. height: math.unit(7.14, "feet"),
  30735. name: "Maw",
  30736. image: {
  30737. source: "./media/characters/victoria/maw.svg"
  30738. }
  30739. },
  30740. },
  30741. [
  30742. {
  30743. name: "Normal",
  30744. height: math.unit(5.6, "m"),
  30745. default: true
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30751. {
  30752. front: {
  30753. height: math.unit(5 + 6 / 12, "feet"),
  30754. name: "Front",
  30755. image: {
  30756. source: "./media/characters/cat/front.svg",
  30757. extra: 1449/1295,
  30758. bottom: 34/1483
  30759. },
  30760. form: "cat",
  30761. default: true
  30762. },
  30763. back: {
  30764. height: math.unit(5 + 6 / 12, "feet"),
  30765. name: "Back",
  30766. image: {
  30767. source: "./media/characters/cat/back.svg",
  30768. extra: 1466/1301,
  30769. bottom: 19/1485
  30770. },
  30771. form: "cat"
  30772. },
  30773. taur: {
  30774. height: math.unit(7, "feet"),
  30775. name: "Taur",
  30776. image: {
  30777. source: "./media/characters/cat/taur.svg",
  30778. extra: 1389/1233,
  30779. bottom: 83/1472
  30780. },
  30781. form: "taur",
  30782. default: true
  30783. },
  30784. lucarioFront: {
  30785. height: math.unit(4, "feet"),
  30786. name: "Lucario (Front)",
  30787. image: {
  30788. source: "./media/characters/cat/lucario-front.svg",
  30789. extra: 1149/1019,
  30790. bottom: 84/1233
  30791. },
  30792. form: "lucario",
  30793. default: true
  30794. },
  30795. lucarioBack: {
  30796. height: math.unit(4, "feet"),
  30797. name: "Lucario (Back)",
  30798. image: {
  30799. source: "./media/characters/cat/lucario-back.svg",
  30800. extra: 1190/1059,
  30801. bottom: 33/1223
  30802. },
  30803. form: "lucario"
  30804. },
  30805. megaLucario: {
  30806. height: math.unit(4, "feet"),
  30807. name: "Mega Lucario",
  30808. image: {
  30809. source: "./media/characters/cat/mega-lucario.svg",
  30810. extra: 1515 / 1319,
  30811. bottom: 63 / 1578
  30812. },
  30813. form: "lucario"
  30814. },
  30815. nickit: {
  30816. height: math.unit(2, "feet"),
  30817. name: "Nickit",
  30818. image: {
  30819. source: "./media/characters/cat/nickit.svg",
  30820. extra: 1980 / 1585,
  30821. bottom: 102 / 2082
  30822. },
  30823. form: "nickit",
  30824. default: true
  30825. },
  30826. lopunnyFront: {
  30827. height: math.unit(5, "feet"),
  30828. name: "Lopunny (Front)",
  30829. image: {
  30830. source: "./media/characters/cat/lopunny-front.svg",
  30831. extra: 1782 / 1469,
  30832. bottom: 38 / 1820
  30833. },
  30834. form: "lopunny",
  30835. default: true
  30836. },
  30837. lopunnyBack: {
  30838. height: math.unit(5, "feet"),
  30839. name: "Lopunny (Back)",
  30840. image: {
  30841. source: "./media/characters/cat/lopunny-back.svg",
  30842. extra: 1660 / 1490,
  30843. bottom: 25 / 1685
  30844. },
  30845. form: "lopunny"
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Really small",
  30851. height: math.unit(1, "nm")
  30852. },
  30853. {
  30854. name: "Micro",
  30855. height: math.unit(5, "inches")
  30856. },
  30857. {
  30858. name: "Normal",
  30859. height: math.unit(5 + 6 / 12, "feet"),
  30860. default: true
  30861. },
  30862. {
  30863. name: "Macro",
  30864. height: math.unit(50, "feet")
  30865. },
  30866. {
  30867. name: "Macro+",
  30868. height: math.unit(150, "feet")
  30869. },
  30870. {
  30871. name: "Megamacro",
  30872. height: math.unit(100, "miles")
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(63.4, "meters"),
  30881. weight: math.unit(3.28349e+6, "kilograms"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/kirina-violet/front.svg",
  30885. extra: 2812 / 2725,
  30886. bottom: 0 / 2812
  30887. }
  30888. },
  30889. back: {
  30890. height: math.unit(63.4, "meters"),
  30891. weight: math.unit(3.28349e+6, "kilograms"),
  30892. name: "Back",
  30893. image: {
  30894. source: "./media/characters/kirina-violet/back.svg",
  30895. extra: 2812 / 2725,
  30896. bottom: 0 / 2812
  30897. }
  30898. },
  30899. mouth: {
  30900. height: math.unit(4.35, "meters"),
  30901. name: "Mouth",
  30902. image: {
  30903. source: "./media/characters/kirina-violet/mouth.svg"
  30904. }
  30905. },
  30906. paw: {
  30907. height: math.unit(5.6, "meters"),
  30908. name: "Paw",
  30909. image: {
  30910. source: "./media/characters/kirina-violet/paw.svg"
  30911. }
  30912. },
  30913. tail: {
  30914. height: math.unit(18, "meters"),
  30915. name: "Tail",
  30916. image: {
  30917. source: "./media/characters/kirina-violet/tail.svg"
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Macro",
  30924. height: math.unit(63.4, "meters"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(75, "feet"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/cat-gigachu/front.svg",
  30937. extra: 1239/1027,
  30938. bottom: 32/1271
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(75, "feet"),
  30943. name: "Back",
  30944. image: {
  30945. source: "./media/characters/cat-gigachu/back.svg",
  30946. extra: 1229/1030,
  30947. bottom: 9/1238
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Dynamax",
  30954. height: math.unit(75, "feet"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(6, "feet"),
  30964. weight: math.unit(150, "lb"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/sfaiyan/front.svg",
  30968. extra: 999 / 978,
  30969. bottom: 5 / 1004
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(1.82, "meters")
  30977. },
  30978. {
  30979. name: "Giant",
  30980. height: math.unit(2.27, "km"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30987. {
  30988. front: {
  30989. height: math.unit(179, "cm"),
  30990. weight: math.unit(100, "kg"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/raunehkeli/front.svg",
  30994. extra: 1934 / 1926,
  30995. bottom: 0 / 1934
  30996. }
  30997. },
  30998. },
  30999. [
  31000. {
  31001. name: "Normal",
  31002. height: math.unit(179, "cm")
  31003. },
  31004. {
  31005. name: "Maximum",
  31006. height: math.unit(575, "meters"),
  31007. default: true
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(6, "feet"),
  31016. weight: math.unit(150, "lb"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31020. extra: 2625 / 2518,
  31021. bottom: 60 / 2685
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(6 + 2 / 12, "feet")
  31029. },
  31030. {
  31031. name: "Macro",
  31032. height: math.unit(1180, "feet"),
  31033. default: true
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(5 + 6 / 12, "feet"),
  31042. weight: math.unit(108, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/lilith-zott/front.svg",
  31046. extra: 2510 / 2238,
  31047. bottom: 100 / 2610
  31048. }
  31049. },
  31050. frontDressed: {
  31051. height: math.unit(5 + 6 / 12, "feet"),
  31052. weight: math.unit(108, "lb"),
  31053. name: "Front (Dressed)",
  31054. image: {
  31055. source: "./media/characters/lilith-zott/front-dressed.svg",
  31056. extra: 2510 / 2238,
  31057. bottom: 100 / 2610
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(5 + 6 / 12, "feet")
  31065. },
  31066. {
  31067. name: "Macro",
  31068. height: math.unit(1030, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(6, "feet"),
  31078. weight: math.unit(150, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31082. extra: 2567 / 2435,
  31083. bottom: 39 / 2606
  31084. }
  31085. },
  31086. frontSuper: {
  31087. height: math.unit(6, "feet"),
  31088. name: "Front (Super)",
  31089. image: {
  31090. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31091. extra: 2567 / 2435,
  31092. bottom: 39 / 2606
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(5 + 10 / 12, "feet")
  31100. },
  31101. {
  31102. name: "Macro",
  31103. height: math.unit(1100, "feet"),
  31104. default: true
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(100, "miles"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/sona/front.svg",
  31116. extra: 2433 / 2201,
  31117. bottom: 53 / 2486
  31118. }
  31119. },
  31120. foot: {
  31121. height: math.unit(16.1, "miles"),
  31122. name: "Foot",
  31123. image: {
  31124. source: "./media/characters/sona/foot.svg"
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Macro",
  31131. height: math.unit(100, "miles"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(6, "feet"),
  31141. weight: math.unit(150, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/bailey/front.svg",
  31145. extra: 1778 / 1724,
  31146. bottom: 30 / 1808
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Micro",
  31153. height: math.unit(4, "inches")
  31154. },
  31155. {
  31156. name: "Normal",
  31157. height: math.unit(5 + 5 / 12, "feet"),
  31158. default: true
  31159. },
  31160. {
  31161. name: "Macro",
  31162. height: math.unit(250, "feet")
  31163. },
  31164. {
  31165. name: "Megamacro",
  31166. height: math.unit(100, "miles")
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(5 + 2 / 12, "feet"),
  31175. weight: math.unit(120, "lb"),
  31176. name: "Front",
  31177. image: {
  31178. source: "./media/characters/snaps/front.svg",
  31179. extra: 2370 / 2177,
  31180. bottom: 48 / 2418
  31181. }
  31182. },
  31183. back: {
  31184. height: math.unit(5 + 2 / 12, "feet"),
  31185. weight: math.unit(120, "lb"),
  31186. name: "Back",
  31187. image: {
  31188. source: "./media/characters/snaps/back.svg",
  31189. extra: 2408 / 2258,
  31190. bottom: 15 / 2423
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Micro",
  31197. height: math.unit(9, "inches")
  31198. },
  31199. {
  31200. name: "Normal",
  31201. height: math.unit(5 + 2 / 12, "feet"),
  31202. default: true
  31203. },
  31204. {
  31205. name: "Mini Macro",
  31206. height: math.unit(10, "feet")
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31212. {
  31213. front: {
  31214. height: math.unit(1.8, "meters"),
  31215. weight: math.unit(85, "kg"),
  31216. name: "Front",
  31217. image: {
  31218. source: "./media/characters/azteck/front.svg",
  31219. extra: 2815 / 2625,
  31220. bottom: 89 / 2904
  31221. }
  31222. },
  31223. back: {
  31224. height: math.unit(1.8, "meters"),
  31225. weight: math.unit(85, "kg"),
  31226. name: "Back",
  31227. image: {
  31228. source: "./media/characters/azteck/back.svg",
  31229. extra: 2856 / 2648,
  31230. bottom: 85 / 2941
  31231. }
  31232. },
  31233. frontDressed: {
  31234. height: math.unit(1.8, "meters"),
  31235. weight: math.unit(85, "kg"),
  31236. name: "Front (Dressed)",
  31237. image: {
  31238. source: "./media/characters/azteck/front-dressed.svg",
  31239. extra: 2147 / 2003,
  31240. bottom: 68 / 2215
  31241. }
  31242. },
  31243. head: {
  31244. height: math.unit(0.47, "meters"),
  31245. weight: math.unit(85, "kg"),
  31246. name: "Head",
  31247. image: {
  31248. source: "./media/characters/azteck/head.svg"
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Bite sized",
  31255. height: math.unit(16, "cm")
  31256. },
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(1.8, "meters"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(150, "lb"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/pidge/front.svg",
  31273. extra: 1936/1820,
  31274. bottom: 0/1936
  31275. }
  31276. },
  31277. back: {
  31278. height: math.unit(6, "feet"),
  31279. weight: math.unit(150, "lb"),
  31280. name: "Back",
  31281. image: {
  31282. source: "./media/characters/pidge/back.svg",
  31283. extra: 1938/1843,
  31284. bottom: 0/1938
  31285. }
  31286. },
  31287. casual: {
  31288. height: math.unit(6, "feet"),
  31289. weight: math.unit(150, "lb"),
  31290. name: "Casual",
  31291. image: {
  31292. source: "./media/characters/pidge/casual.svg",
  31293. extra: 1936/1820,
  31294. bottom: 0/1936
  31295. }
  31296. },
  31297. tech: {
  31298. height: math.unit(6, "feet"),
  31299. weight: math.unit(150, "lb"),
  31300. name: "Tech",
  31301. image: {
  31302. source: "./media/characters/pidge/tech.svg",
  31303. extra: 1802/1682,
  31304. bottom: 0/1802
  31305. }
  31306. },
  31307. head: {
  31308. height: math.unit(1.61, "feet"),
  31309. name: "Head",
  31310. image: {
  31311. source: "./media/characters/pidge/head.svg"
  31312. }
  31313. },
  31314. collar: {
  31315. height: math.unit(0.82, "feet"),
  31316. name: "Collar",
  31317. image: {
  31318. source: "./media/characters/pidge/collar.svg"
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(2, "mile"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "PUPPY",
  31330. height: math.unit(20, "miles")
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(6, "feet"),
  31339. weight: math.unit(150, "lb"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/en/front.svg",
  31343. extra: 1697 / 1563,
  31344. bottom: 103 / 1800
  31345. }
  31346. },
  31347. back: {
  31348. height: math.unit(6, "feet"),
  31349. weight: math.unit(150, "lb"),
  31350. name: "Back",
  31351. image: {
  31352. source: "./media/characters/en/back.svg",
  31353. extra: 1700 / 1570,
  31354. bottom: 51 / 1751
  31355. }
  31356. },
  31357. frontDressed: {
  31358. height: math.unit(6, "feet"),
  31359. weight: math.unit(150, "lb"),
  31360. name: "Front (Dressed)",
  31361. image: {
  31362. source: "./media/characters/en/front-dressed.svg",
  31363. extra: 1697 / 1563,
  31364. bottom: 103 / 1800
  31365. }
  31366. },
  31367. backDressed: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(150, "lb"),
  31370. name: "Back (Dressed)",
  31371. image: {
  31372. source: "./media/characters/en/back-dressed.svg",
  31373. extra: 1700 / 1570,
  31374. bottom: 51 / 1751
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Macro",
  31381. height: math.unit(210, "feet"),
  31382. default: true
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(6, "feet"),
  31391. weight: math.unit(150, "lb"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/haze-orris/front.svg",
  31395. extra: 3975 / 3525,
  31396. bottom: 137 / 4112
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Micro",
  31403. height: math.unit(150, "mm"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(6, "feet"),
  31413. weight: math.unit(150, "lb"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/casselene-yaro/front.svg",
  31417. extra: 4721 / 4541,
  31418. bottom: 82 / 4803
  31419. }
  31420. },
  31421. back: {
  31422. height: math.unit(6, "feet"),
  31423. weight: math.unit(150, "lb"),
  31424. name: "Back",
  31425. image: {
  31426. source: "./media/characters/casselene-yaro/back.svg",
  31427. extra: 4569 / 4377,
  31428. bottom: 69 / 4638
  31429. }
  31430. },
  31431. dressed: {
  31432. height: math.unit(6, "feet"),
  31433. weight: math.unit(150, "lb"),
  31434. name: "Dressed",
  31435. image: {
  31436. source: "./media/characters/casselene-yaro/dressed.svg",
  31437. extra: 4721 / 4541,
  31438. bottom: 82 / 4803
  31439. }
  31440. },
  31441. maw: {
  31442. height: math.unit(1, "feet"),
  31443. name: "Maw",
  31444. image: {
  31445. source: "./media/characters/casselene-yaro/maw.svg"
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Macro",
  31452. height: math.unit(190, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(10, "feet"),
  31462. weight: math.unit(15015, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/platine/front.svg",
  31466. extra: 1741/1650,
  31467. bottom: 84/1825
  31468. }
  31469. },
  31470. side: {
  31471. height: math.unit(10, "feet"),
  31472. weight: math.unit(15015, "lb"),
  31473. name: "Side",
  31474. image: {
  31475. source: "./media/characters/platine/side.svg",
  31476. extra: 1790/1705,
  31477. bottom: 29/1819
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(10, "feet"),
  31485. default: true
  31486. },
  31487. {
  31488. name: "Macro",
  31489. height: math.unit(100, "feet")
  31490. },
  31491. {
  31492. name: "Megamacro",
  31493. height: math.unit(1000, "feet")
  31494. },
  31495. ]
  31496. ))
  31497. characterMakers.push(() => makeCharacter(
  31498. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31499. {
  31500. front: {
  31501. height: math.unit(15 + 5 / 12, "feet"),
  31502. weight: math.unit(4600, "lb"),
  31503. name: "Front",
  31504. image: {
  31505. source: "./media/characters/neapolitan-ananassa/front.svg",
  31506. extra: 2903 / 2736,
  31507. bottom: 0 / 2903
  31508. }
  31509. },
  31510. side: {
  31511. height: math.unit(15 + 5 / 12, "feet"),
  31512. weight: math.unit(4600, "lb"),
  31513. name: "Side",
  31514. image: {
  31515. source: "./media/characters/neapolitan-ananassa/side.svg",
  31516. extra: 2925 / 2719,
  31517. bottom: 0 / 2925
  31518. }
  31519. },
  31520. back: {
  31521. height: math.unit(15 + 5 / 12, "feet"),
  31522. weight: math.unit(4600, "lb"),
  31523. name: "Back",
  31524. image: {
  31525. source: "./media/characters/neapolitan-ananassa/back.svg",
  31526. extra: 2903 / 2736,
  31527. bottom: 0 / 2903
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Normal",
  31534. height: math.unit(15 + 5 / 12, "feet"),
  31535. default: true
  31536. },
  31537. {
  31538. name: "Post-Millenium",
  31539. height: math.unit(35 + 5 / 12, "feet")
  31540. },
  31541. {
  31542. name: "Post-Era",
  31543. height: math.unit(450 + 5 / 12, "feet")
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31549. {
  31550. front: {
  31551. height: math.unit(300, "meters"),
  31552. weight: math.unit(125000, "tonnes"),
  31553. name: "Front",
  31554. image: {
  31555. source: "./media/characters/pazuzu/front.svg",
  31556. extra: 877 / 794,
  31557. bottom: 47 / 924
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Macro",
  31564. height: math.unit(300, "meters"),
  31565. default: true
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31571. {
  31572. side: {
  31573. height: math.unit(10 + 7 / 12, "feet"),
  31574. weight: math.unit(2.5, "tons"),
  31575. name: "Side",
  31576. image: {
  31577. source: "./media/characters/aasha/side.svg",
  31578. extra: 1345 / 1245,
  31579. bottom: 111 / 1456
  31580. }
  31581. },
  31582. back: {
  31583. height: math.unit(10 + 7 / 12, "feet"),
  31584. weight: math.unit(2.5, "tons"),
  31585. name: "Back",
  31586. image: {
  31587. source: "./media/characters/aasha/back.svg",
  31588. extra: 1133 / 1057,
  31589. bottom: 257 / 1390
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Normal",
  31596. height: math.unit(10 + 7 / 12, "feet"),
  31597. default: true
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31603. {
  31604. front: {
  31605. height: math.unit(6 + 3 / 12, "feet"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/nevan/front.svg",
  31609. extra: 704 / 704,
  31610. bottom: 28 / 732
  31611. }
  31612. },
  31613. back: {
  31614. height: math.unit(6 + 3 / 12, "feet"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/nevan/back.svg",
  31618. extra: 714 / 714,
  31619. bottom: 21 / 735
  31620. }
  31621. },
  31622. frontFlaccid: {
  31623. height: math.unit(6 + 3 / 12, "feet"),
  31624. name: "Front (Flaccid)",
  31625. image: {
  31626. source: "./media/characters/nevan/front-flaccid.svg",
  31627. extra: 704 / 704,
  31628. bottom: 28 / 732
  31629. }
  31630. },
  31631. frontErect: {
  31632. height: math.unit(6 + 3 / 12, "feet"),
  31633. name: "Front (Erect)",
  31634. image: {
  31635. source: "./media/characters/nevan/front-erect.svg",
  31636. extra: 704 / 704,
  31637. bottom: 28 / 732
  31638. }
  31639. },
  31640. backFlaccid: {
  31641. height: math.unit(6 + 3 / 12, "feet"),
  31642. name: "Back (Flaccid)",
  31643. image: {
  31644. source: "./media/characters/nevan/back-flaccid.svg",
  31645. extra: 714 / 714,
  31646. bottom: 21 / 735
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Normal",
  31653. height: math.unit(6 + 3 / 12, "feet"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(4, "feet"),
  31663. name: "Front",
  31664. image: {
  31665. source: "./media/characters/arhan/front.svg",
  31666. extra: 3368 / 3133,
  31667. bottom: 0 / 3368
  31668. }
  31669. },
  31670. side: {
  31671. height: math.unit(4, "feet"),
  31672. name: "Side",
  31673. image: {
  31674. source: "./media/characters/arhan/side.svg",
  31675. extra: 3347 / 3105,
  31676. bottom: 0 / 3347
  31677. }
  31678. },
  31679. tongue: {
  31680. height: math.unit(1.42, "feet"),
  31681. name: "Tongue",
  31682. image: {
  31683. source: "./media/characters/arhan/tongue.svg"
  31684. }
  31685. },
  31686. head: {
  31687. height: math.unit(0.85, "feet"),
  31688. name: "Head",
  31689. image: {
  31690. source: "./media/characters/arhan/head.svg"
  31691. }
  31692. },
  31693. },
  31694. [
  31695. {
  31696. name: "Normal",
  31697. height: math.unit(4, "feet"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(5 + 7.5 / 12, "feet"),
  31707. weight: math.unit(120, "lb"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/digi-duncan/front.svg",
  31711. extra: 330 / 326,
  31712. bottom: 16 / 346
  31713. }
  31714. },
  31715. side: {
  31716. height: math.unit(5 + 7.5 / 12, "feet"),
  31717. weight: math.unit(120, "lb"),
  31718. name: "Side",
  31719. image: {
  31720. source: "./media/characters/digi-duncan/side.svg",
  31721. extra: 341 / 337,
  31722. bottom: 1 / 342
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(5 + 7.5 / 12, "feet"),
  31727. weight: math.unit(120, "lb"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/digi-duncan/back.svg",
  31731. extra: 330 / 326,
  31732. bottom: 12 / 342
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Speck",
  31739. height: math.unit(0.25, "mm")
  31740. },
  31741. {
  31742. name: "Micro",
  31743. height: math.unit(5, "mm")
  31744. },
  31745. {
  31746. name: "Tiny",
  31747. height: math.unit(0.5, "inches"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Human",
  31752. height: math.unit(5 + 7.5 / 12, "feet")
  31753. },
  31754. {
  31755. name: "Minigiant",
  31756. height: math.unit(8 + 5.25, "feet")
  31757. },
  31758. {
  31759. name: "Giant",
  31760. height: math.unit(2000, "feet")
  31761. },
  31762. {
  31763. name: "Mega",
  31764. height: math.unit(371.1, "miles")
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(2, "meters"),
  31773. weight: math.unit(350, "kg"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31777. extra: 898 / 838,
  31778. bottom: 9 / 907
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Micro",
  31785. height: math.unit(8, "meters")
  31786. },
  31787. {
  31788. name: "Normal",
  31789. height: math.unit(50, "meters"),
  31790. default: true
  31791. },
  31792. {
  31793. name: "Macro",
  31794. height: math.unit(500, "meters")
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31800. {
  31801. front: {
  31802. height: math.unit(6 + 6 / 12, "feet"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/khardesh/front.svg",
  31806. extra: 1788/1596,
  31807. bottom: 66/1854
  31808. }
  31809. },
  31810. back: {
  31811. height: math.unit(6 + 6 / 12, "feet"),
  31812. name: "Back",
  31813. image: {
  31814. source: "./media/characters/khardesh/back.svg",
  31815. extra: 1781/1584,
  31816. bottom: 68/1849
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Normal",
  31823. height: math.unit(6 + 6 / 12, "feet"),
  31824. default: true
  31825. },
  31826. {
  31827. name: "Normal+",
  31828. height: math.unit(4, "meters")
  31829. },
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(50, "meters")
  31833. },
  31834. {
  31835. name: "Macro+",
  31836. height: math.unit(100, "meters")
  31837. },
  31838. {
  31839. name: "Megamacro",
  31840. height: math.unit(20, "km")
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31846. {
  31847. front: {
  31848. height: math.unit(6, "feet"),
  31849. weight: math.unit(150, "lb"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/kosho/front.svg",
  31853. extra: 1847 / 1847,
  31854. bottom: 86 / 1933
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Second-stage micro",
  31861. height: math.unit(0.5, "inches")
  31862. },
  31863. {
  31864. name: "First-stage micro",
  31865. height: math.unit(6, "inches")
  31866. },
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(6, "feet"),
  31870. default: true
  31871. },
  31872. {
  31873. name: "First-stage macro",
  31874. height: math.unit(72, "feet")
  31875. },
  31876. {
  31877. name: "Second-stage macro",
  31878. height: math.unit(864, "feet")
  31879. },
  31880. ]
  31881. ))
  31882. characterMakers.push(() => makeCharacter(
  31883. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31884. {
  31885. normal: {
  31886. height: math.unit(4 + 6 / 12, "feet"),
  31887. name: "Normal",
  31888. image: {
  31889. source: "./media/characters/hydra/normal.svg",
  31890. extra: 2833 / 2634,
  31891. bottom: 68 / 2901
  31892. }
  31893. },
  31894. smol: {
  31895. height: math.unit(0.705, "inches"),
  31896. name: "Smol",
  31897. image: {
  31898. source: "./media/characters/hydra/smol.svg",
  31899. extra: 2715 / 2540,
  31900. bottom: 0 / 2715
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(4 + 6 / 12, "feet"),
  31908. default: true
  31909. }
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(0.6, "cm"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/daz/front.svg",
  31920. extra: 1682 / 1164,
  31921. bottom: 42 / 1724
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(0.6, "cm"),
  31929. default: true
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31935. {
  31936. front: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(235, "lb"),
  31939. name: "Front",
  31940. image: {
  31941. source: "./media/characters/theo-pangolin/front.svg",
  31942. extra: 1996 / 1969,
  31943. bottom: 115 / 2111
  31944. }
  31945. },
  31946. back: {
  31947. height: math.unit(6, "feet"),
  31948. weight: math.unit(235, "lb"),
  31949. name: "Back",
  31950. image: {
  31951. source: "./media/characters/theo-pangolin/back.svg",
  31952. extra: 1979 / 1979,
  31953. bottom: 40 / 2019
  31954. }
  31955. },
  31956. feral: {
  31957. height: math.unit(2, "feet"),
  31958. weight: math.unit(30, "lb"),
  31959. name: "Feral",
  31960. image: {
  31961. source: "./media/characters/theo-pangolin/feral.svg",
  31962. extra: 803 / 791,
  31963. bottom: 181 / 984
  31964. }
  31965. },
  31966. footFive: {
  31967. height: math.unit(1.43, "feet"),
  31968. name: "Foot (Five Toes)",
  31969. image: {
  31970. source: "./media/characters/theo-pangolin/foot-five.svg"
  31971. }
  31972. },
  31973. footFour: {
  31974. height: math.unit(1.43, "feet"),
  31975. name: "Foot (Four Toes)",
  31976. image: {
  31977. source: "./media/characters/theo-pangolin/foot-four.svg"
  31978. }
  31979. },
  31980. handFour: {
  31981. height: math.unit(0.81, "feet"),
  31982. name: "Hand (Four Fingers)",
  31983. image: {
  31984. source: "./media/characters/theo-pangolin/hand-four.svg"
  31985. }
  31986. },
  31987. handThree: {
  31988. height: math.unit(0.81, "feet"),
  31989. name: "Hand (Three Fingers)",
  31990. image: {
  31991. source: "./media/characters/theo-pangolin/hand-three.svg"
  31992. }
  31993. },
  31994. headFront: {
  31995. height: math.unit(1.37, "feet"),
  31996. name: "Head (Front)",
  31997. image: {
  31998. source: "./media/characters/theo-pangolin/head-front.svg"
  31999. }
  32000. },
  32001. headSide: {
  32002. height: math.unit(1.43, "feet"),
  32003. name: "Head (Side)",
  32004. image: {
  32005. source: "./media/characters/theo-pangolin/head-side.svg"
  32006. }
  32007. },
  32008. tongue: {
  32009. height: math.unit(2.29, "feet"),
  32010. name: "Tongue",
  32011. image: {
  32012. source: "./media/characters/theo-pangolin/tongue.svg"
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(6, "feet")
  32020. },
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(400, "feet"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(6, "inches"),
  32033. weight: math.unit(0.036, "kg"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/renée/front.svg",
  32037. extra: 900 / 886,
  32038. bottom: 8 / 908
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Nano",
  32045. height: math.unit(1, "nm")
  32046. },
  32047. {
  32048. name: "Micro",
  32049. height: math.unit(1, "mm")
  32050. },
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(6, "inches")
  32054. },
  32055. {
  32056. name: "Macro",
  32057. height: math.unit(2000, "feet"),
  32058. default: true
  32059. },
  32060. {
  32061. name: "Megamacro",
  32062. height: math.unit(2, "km")
  32063. },
  32064. {
  32065. name: "Gigamacro",
  32066. height: math.unit(2000, "km")
  32067. },
  32068. {
  32069. name: "Teramacro",
  32070. height: math.unit(250000, "km")
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32076. {
  32077. front: {
  32078. height: math.unit(4, "meters"),
  32079. weight: math.unit(150, "kg"),
  32080. name: "Front",
  32081. image: {
  32082. source: "./media/characters/caledvwlch/front.svg",
  32083. extra: 1757/1537,
  32084. bottom: 31/1788
  32085. }
  32086. },
  32087. side: {
  32088. height: math.unit(4, "meters"),
  32089. weight: math.unit(150, "kg"),
  32090. name: "Side",
  32091. image: {
  32092. source: "./media/characters/caledvwlch/side.svg",
  32093. extra: 1605 / 1536,
  32094. bottom: 31 / 1636
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(4, "meters"),
  32099. weight: math.unit(150, "kg"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/caledvwlch/back.svg",
  32103. extra: 1635 / 1565,
  32104. bottom: 27 / 1662
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "\"Incognito\"",
  32111. height: math.unit(4, "meters")
  32112. },
  32113. {
  32114. name: "Small rampage",
  32115. height: math.unit(600, "meters")
  32116. },
  32117. {
  32118. name: "Mega",
  32119. height: math.unit(30, "km")
  32120. },
  32121. {
  32122. name: "Home-size",
  32123. height: math.unit(50, "km"),
  32124. default: true
  32125. },
  32126. {
  32127. name: "Giga",
  32128. height: math.unit(300, "km")
  32129. },
  32130. {
  32131. name: "Lounging",
  32132. height: math.unit(11000, "km")
  32133. },
  32134. {
  32135. name: "Planet snacking",
  32136. height: math.unit(2000000, "km")
  32137. },
  32138. ]
  32139. ))
  32140. characterMakers.push(() => makeCharacter(
  32141. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32142. {
  32143. front: {
  32144. height: math.unit(6, "feet"),
  32145. weight: math.unit(215, "lb"),
  32146. name: "Front",
  32147. image: {
  32148. source: "./media/characters/sapphire-svell/front.svg",
  32149. extra: 495 / 455,
  32150. bottom: 20 / 515
  32151. }
  32152. },
  32153. back: {
  32154. height: math.unit(6, "feet"),
  32155. weight: math.unit(216, "lb"),
  32156. name: "Back",
  32157. image: {
  32158. source: "./media/characters/sapphire-svell/back.svg",
  32159. extra: 497 / 477,
  32160. bottom: 7 / 504
  32161. }
  32162. },
  32163. maw: {
  32164. height: math.unit(1.57, "feet"),
  32165. name: "Maw",
  32166. image: {
  32167. source: "./media/characters/sapphire-svell/maw.svg"
  32168. }
  32169. },
  32170. foot: {
  32171. height: math.unit(1.07, "feet"),
  32172. name: "Foot",
  32173. image: {
  32174. source: "./media/characters/sapphire-svell/foot.svg"
  32175. }
  32176. },
  32177. toering: {
  32178. height: math.unit(1.7, "inch"),
  32179. name: "Toering",
  32180. image: {
  32181. source: "./media/characters/sapphire-svell/toering.svg"
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Normal",
  32188. height: math.unit(300, "feet"),
  32189. default: true
  32190. },
  32191. {
  32192. name: "Augmented",
  32193. height: math.unit(1250, "feet")
  32194. },
  32195. {
  32196. name: "Unleashed",
  32197. height: math.unit(3000, "feet")
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32203. {
  32204. side: {
  32205. height: math.unit(2 + 3 / 12, "feet"),
  32206. weight: math.unit(110, "lb"),
  32207. name: "Side",
  32208. image: {
  32209. source: "./media/characters/glitch-flux/side.svg",
  32210. extra: 997 / 805,
  32211. bottom: 20 / 1017
  32212. }
  32213. },
  32214. },
  32215. [
  32216. {
  32217. name: "Normal",
  32218. height: math.unit(2 + 3 / 12, "feet"),
  32219. default: true
  32220. },
  32221. ]
  32222. ))
  32223. characterMakers.push(() => makeCharacter(
  32224. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32225. {
  32226. front: {
  32227. height: math.unit(4, "meters"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/mid/front.svg",
  32231. extra: 507 / 476,
  32232. bottom: 17 / 524
  32233. }
  32234. },
  32235. back: {
  32236. height: math.unit(4, "meters"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/mid/back.svg",
  32240. extra: 519 / 487,
  32241. bottom: 7 / 526
  32242. }
  32243. },
  32244. stuck: {
  32245. height: math.unit(2.2, "meters"),
  32246. name: "Stuck",
  32247. image: {
  32248. source: "./media/characters/mid/stuck.svg",
  32249. extra: 1951 / 1869,
  32250. bottom: 88 / 2039
  32251. }
  32252. }
  32253. },
  32254. [
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(4, "meters"),
  32258. default: true
  32259. },
  32260. {
  32261. name: "Big",
  32262. height: math.unit(10, "meters")
  32263. },
  32264. {
  32265. name: "Macro",
  32266. height: math.unit(800, "meters")
  32267. },
  32268. {
  32269. name: "Megamacro",
  32270. height: math.unit(100, "km")
  32271. },
  32272. {
  32273. name: "Overgrown",
  32274. height: math.unit(1, "parsec")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(2.5, "meters"),
  32283. weight: math.unit(225, "kg"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/iris/front.svg",
  32287. extra: 3348 / 3251,
  32288. bottom: 205 / 3553
  32289. }
  32290. },
  32291. maw: {
  32292. height: math.unit(0.56, "meter"),
  32293. name: "Maw",
  32294. image: {
  32295. source: "./media/characters/iris/maw.svg"
  32296. }
  32297. },
  32298. },
  32299. [
  32300. {
  32301. name: "Mewter cat",
  32302. height: math.unit(1.2, "meters")
  32303. },
  32304. {
  32305. name: "Normal",
  32306. height: math.unit(2.5, "meters"),
  32307. default: true
  32308. },
  32309. {
  32310. name: "Minimacro",
  32311. height: math.unit(18, "feet")
  32312. },
  32313. {
  32314. name: "Macro",
  32315. height: math.unit(140, "feet")
  32316. },
  32317. {
  32318. name: "Macro+",
  32319. height: math.unit(180, "meters")
  32320. },
  32321. {
  32322. name: "Megamacro",
  32323. height: math.unit(2746, "meters")
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32329. {
  32330. front: {
  32331. height: math.unit(6, "feet"),
  32332. weight: math.unit(135, "lb"),
  32333. name: "Front",
  32334. image: {
  32335. source: "./media/characters/axel/front.svg",
  32336. extra: 908 / 908,
  32337. bottom: 58 / 966
  32338. }
  32339. },
  32340. side: {
  32341. height: math.unit(6, "feet"),
  32342. weight: math.unit(135, "lb"),
  32343. name: "Side",
  32344. image: {
  32345. source: "./media/characters/axel/side.svg",
  32346. extra: 958 / 958,
  32347. bottom: 11 / 969
  32348. }
  32349. },
  32350. back: {
  32351. height: math.unit(6, "feet"),
  32352. weight: math.unit(135, "lb"),
  32353. name: "Back",
  32354. image: {
  32355. source: "./media/characters/axel/back.svg",
  32356. extra: 887 / 887,
  32357. bottom: 34 / 921
  32358. }
  32359. },
  32360. head: {
  32361. height: math.unit(1.07, "feet"),
  32362. name: "Head",
  32363. image: {
  32364. source: "./media/characters/axel/head.svg"
  32365. }
  32366. },
  32367. beak: {
  32368. height: math.unit(1.4, "feet"),
  32369. name: "Beak",
  32370. image: {
  32371. source: "./media/characters/axel/beak.svg"
  32372. }
  32373. },
  32374. beakSide: {
  32375. height: math.unit(1.4, "feet"),
  32376. name: "Beak Side",
  32377. image: {
  32378. source: "./media/characters/axel/beak-side.svg"
  32379. }
  32380. },
  32381. sheath: {
  32382. height: math.unit(0.5, "feet"),
  32383. name: "Sheath",
  32384. image: {
  32385. source: "./media/characters/axel/sheath.svg"
  32386. }
  32387. },
  32388. dick: {
  32389. height: math.unit(0.98, "feet"),
  32390. name: "Dick",
  32391. image: {
  32392. source: "./media/characters/axel/dick.svg"
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Macro",
  32399. height: math.unit(68, "meters"),
  32400. default: true
  32401. },
  32402. ]
  32403. ))
  32404. characterMakers.push(() => makeCharacter(
  32405. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32406. {
  32407. front: {
  32408. height: math.unit(3.5, "meters"),
  32409. weight: math.unit(1200, "kg"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/joanna/front.svg",
  32413. extra: 1596 / 1488,
  32414. bottom: 29 / 1625
  32415. }
  32416. },
  32417. back: {
  32418. height: math.unit(3.5, "meters"),
  32419. weight: math.unit(1200, "kg"),
  32420. name: "Back",
  32421. image: {
  32422. source: "./media/characters/joanna/back.svg",
  32423. extra: 1594 / 1495,
  32424. bottom: 26 / 1620
  32425. }
  32426. },
  32427. frontShorts: {
  32428. height: math.unit(3.5, "meters"),
  32429. weight: math.unit(1200, "kg"),
  32430. name: "Front (Shorts)",
  32431. image: {
  32432. source: "./media/characters/joanna/front-shorts.svg",
  32433. extra: 1596 / 1488,
  32434. bottom: 29 / 1625
  32435. }
  32436. },
  32437. frontBiker: {
  32438. height: math.unit(3.5, "meters"),
  32439. weight: math.unit(1200, "kg"),
  32440. name: "Front (Biker)",
  32441. image: {
  32442. source: "./media/characters/joanna/front-biker.svg",
  32443. extra: 1596 / 1488,
  32444. bottom: 29 / 1625
  32445. }
  32446. },
  32447. backBiker: {
  32448. height: math.unit(3.5, "meters"),
  32449. weight: math.unit(1200, "kg"),
  32450. name: "Back (Biker)",
  32451. image: {
  32452. source: "./media/characters/joanna/back-biker.svg",
  32453. extra: 1594 / 1495,
  32454. bottom: 88 / 1682
  32455. }
  32456. },
  32457. bikeLeft: {
  32458. height: math.unit(2.4, "meters"),
  32459. weight: math.unit(1600, "kg"),
  32460. name: "Bike (Left)",
  32461. image: {
  32462. source: "./media/characters/joanna/bike-left.svg",
  32463. extra: 720 / 720,
  32464. bottom: 8 / 728
  32465. }
  32466. },
  32467. bikeRight: {
  32468. height: math.unit(2.4, "meters"),
  32469. weight: math.unit(1600, "kg"),
  32470. name: "Bike (Right)",
  32471. image: {
  32472. source: "./media/characters/joanna/bike-right.svg",
  32473. extra: 720 / 720,
  32474. bottom: 8 / 728
  32475. }
  32476. },
  32477. },
  32478. [
  32479. {
  32480. name: "Incognito",
  32481. height: math.unit(3.5, "meters")
  32482. },
  32483. {
  32484. name: "Casual Big",
  32485. height: math.unit(200, "meters")
  32486. },
  32487. {
  32488. name: "Macro",
  32489. height: math.unit(600, "meters")
  32490. },
  32491. {
  32492. name: "Original",
  32493. height: math.unit(20, "km"),
  32494. default: true
  32495. },
  32496. {
  32497. name: "Giga",
  32498. height: math.unit(400, "km")
  32499. },
  32500. {
  32501. name: "Lounging",
  32502. height: math.unit(1500, "km")
  32503. },
  32504. {
  32505. name: "Planetary",
  32506. height: math.unit(200000, "km")
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(6, "feet"),
  32515. weight: math.unit(150, "lb"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/hugo-sigil/front.svg",
  32519. extra: 522 / 500,
  32520. bottom: 2 / 524
  32521. }
  32522. },
  32523. back: {
  32524. height: math.unit(6, "feet"),
  32525. weight: math.unit(150, "lb"),
  32526. name: "Back",
  32527. image: {
  32528. source: "./media/characters/hugo-sigil/back.svg",
  32529. extra: 519 / 495,
  32530. bottom: 5 / 524
  32531. }
  32532. },
  32533. maw: {
  32534. height: math.unit(1.4, "feet"),
  32535. weight: math.unit(150, "lb"),
  32536. name: "Maw",
  32537. image: {
  32538. source: "./media/characters/hugo-sigil/maw.svg"
  32539. }
  32540. },
  32541. feet: {
  32542. height: math.unit(1.56, "feet"),
  32543. weight: math.unit(150, "lb"),
  32544. name: "Feet",
  32545. image: {
  32546. source: "./media/characters/hugo-sigil/feet.svg",
  32547. extra: 177 / 177,
  32548. bottom: 12 / 189
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(6, "feet")
  32556. },
  32557. {
  32558. name: "Macro",
  32559. height: math.unit(200, "feet"),
  32560. default: true
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32566. {
  32567. front: {
  32568. height: math.unit(6, "feet"),
  32569. weight: math.unit(150, "lb"),
  32570. name: "Front",
  32571. image: {
  32572. source: "./media/characters/peri/front.svg",
  32573. extra: 2354 / 2233,
  32574. bottom: 49 / 2403
  32575. }
  32576. },
  32577. },
  32578. [
  32579. {
  32580. name: "Really Small",
  32581. height: math.unit(1, "nm")
  32582. },
  32583. {
  32584. name: "Micro",
  32585. height: math.unit(4, "inches")
  32586. },
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(7, "inches"),
  32590. default: true
  32591. },
  32592. {
  32593. name: "Macro",
  32594. height: math.unit(400, "feet")
  32595. },
  32596. {
  32597. name: "Megamacro",
  32598. height: math.unit(100, "miles")
  32599. },
  32600. ]
  32601. ))
  32602. characterMakers.push(() => makeCharacter(
  32603. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32604. {
  32605. frontSlim: {
  32606. height: math.unit(7, "feet"),
  32607. name: "Front (Slim)",
  32608. image: {
  32609. source: "./media/characters/issilora/front-slim.svg",
  32610. extra: 529 / 449,
  32611. bottom: 53 / 582
  32612. }
  32613. },
  32614. sideSlim: {
  32615. height: math.unit(7, "feet"),
  32616. name: "Side (Slim)",
  32617. image: {
  32618. source: "./media/characters/issilora/side-slim.svg",
  32619. extra: 570 / 480,
  32620. bottom: 30 / 600
  32621. }
  32622. },
  32623. backSlim: {
  32624. height: math.unit(7, "feet"),
  32625. name: "Back (Slim)",
  32626. image: {
  32627. source: "./media/characters/issilora/back-slim.svg",
  32628. extra: 537 / 455,
  32629. bottom: 46 / 583
  32630. }
  32631. },
  32632. frontBuff: {
  32633. height: math.unit(7, "feet"),
  32634. name: "Front (Buff)",
  32635. image: {
  32636. source: "./media/characters/issilora/front-buff.svg",
  32637. extra: 2310 / 2035,
  32638. bottom: 335 / 2645
  32639. }
  32640. },
  32641. head: {
  32642. height: math.unit(1.94, "feet"),
  32643. name: "Head",
  32644. image: {
  32645. source: "./media/characters/issilora/head.svg"
  32646. }
  32647. },
  32648. },
  32649. [
  32650. {
  32651. name: "Minimum",
  32652. height: math.unit(7, "feet")
  32653. },
  32654. {
  32655. name: "Comfortable",
  32656. height: math.unit(17, "feet")
  32657. },
  32658. {
  32659. name: "Fun Size",
  32660. height: math.unit(47, "feet")
  32661. },
  32662. {
  32663. name: "Natural Macro",
  32664. height: math.unit(137, "feet"),
  32665. default: true
  32666. },
  32667. {
  32668. name: "Maximum Kaiju",
  32669. height: math.unit(397, "feet")
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32675. {
  32676. front: {
  32677. height: math.unit(50 + 9/12, "feet"),
  32678. weight: math.unit(32.8, "tons"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/irb'iiritaahn/front.svg",
  32682. extra: 1878/1826,
  32683. bottom: 326/2204
  32684. }
  32685. },
  32686. back: {
  32687. height: math.unit(50 + 9/12, "feet"),
  32688. weight: math.unit(32.8, "tons"),
  32689. name: "Back",
  32690. image: {
  32691. source: "./media/characters/irb'iiritaahn/back.svg",
  32692. extra: 2052/2018,
  32693. bottom: 152/2204
  32694. }
  32695. },
  32696. head: {
  32697. height: math.unit(12.86, "feet"),
  32698. name: "Head",
  32699. image: {
  32700. source: "./media/characters/irb'iiritaahn/head.svg"
  32701. }
  32702. },
  32703. maw: {
  32704. height: math.unit(9.66, "feet"),
  32705. name: "Maw",
  32706. image: {
  32707. source: "./media/characters/irb'iiritaahn/maw.svg"
  32708. }
  32709. },
  32710. frontDick: {
  32711. height: math.unit(8.78461, "feet"),
  32712. name: "Front Dick",
  32713. image: {
  32714. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32715. }
  32716. },
  32717. rearDick: {
  32718. height: math.unit(8.78461, "feet"),
  32719. name: "Rear Dick",
  32720. image: {
  32721. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32722. }
  32723. },
  32724. rearDickUnfolded: {
  32725. height: math.unit(8.78, "feet"),
  32726. name: "Rear Dick (Unfolded)",
  32727. image: {
  32728. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32729. }
  32730. },
  32731. wings: {
  32732. height: math.unit(43, "feet"),
  32733. name: "Wings",
  32734. image: {
  32735. source: "./media/characters/irb'iiritaahn/wings.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(50 + 9/12, "feet"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(205, "cm"),
  32752. weight: math.unit(102, "kg"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/irbisgreif/front.svg",
  32756. extra: 785/706,
  32757. bottom: 13/798
  32758. }
  32759. },
  32760. back: {
  32761. height: math.unit(205, "cm"),
  32762. weight: math.unit(102, "kg"),
  32763. name: "Back",
  32764. image: {
  32765. source: "./media/characters/irbisgreif/back.svg",
  32766. extra: 713/701,
  32767. bottom: 26/739
  32768. }
  32769. },
  32770. frontDressed: {
  32771. height: math.unit(216, "cm"),
  32772. weight: math.unit(102, "kg"),
  32773. name: "Front-dressed",
  32774. image: {
  32775. source: "./media/characters/irbisgreif/front-dressed.svg",
  32776. extra: 902/776,
  32777. bottom: 14/916
  32778. }
  32779. },
  32780. sideDressed: {
  32781. height: math.unit(195, "cm"),
  32782. weight: math.unit(102, "kg"),
  32783. name: "Side-dressed",
  32784. image: {
  32785. source: "./media/characters/irbisgreif/side-dressed.svg",
  32786. extra: 788/688,
  32787. bottom: 21/809
  32788. }
  32789. },
  32790. backDressed: {
  32791. height: math.unit(216, "cm"),
  32792. weight: math.unit(102, "kg"),
  32793. name: "Back-dressed",
  32794. image: {
  32795. source: "./media/characters/irbisgreif/back-dressed.svg",
  32796. extra: 901/783,
  32797. bottom: 10/911
  32798. }
  32799. },
  32800. dick: {
  32801. height: math.unit(0.49, "feet"),
  32802. name: "Dick",
  32803. image: {
  32804. source: "./media/characters/irbisgreif/dick.svg"
  32805. }
  32806. },
  32807. wingTop: {
  32808. height: math.unit(1.93 , "feet"),
  32809. name: "Wing-top",
  32810. image: {
  32811. source: "./media/characters/irbisgreif/wing-top.svg"
  32812. }
  32813. },
  32814. wingBottom: {
  32815. height: math.unit(1.93 , "feet"),
  32816. name: "Wing-bottom",
  32817. image: {
  32818. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(216, "cm"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(6, "feet"),
  32835. weight: math.unit(150, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/pride/front.svg",
  32839. extra: 1299/1230,
  32840. bottom: 18/1317
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(7, "feet")
  32848. },
  32849. {
  32850. name: "Mini-macro",
  32851. height: math.unit(11, "feet")
  32852. },
  32853. {
  32854. name: "Macro",
  32855. height: math.unit(15, "meters"),
  32856. default: true
  32857. },
  32858. {
  32859. name: "Macro+",
  32860. height: math.unit(40, "meters")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32866. {
  32867. front: {
  32868. height: math.unit(4 + 2 / 12, "feet"),
  32869. weight: math.unit(95, "lb"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/vaelophis-nyx/front.svg",
  32873. extra: 2532/2330,
  32874. bottom: 0/2532
  32875. }
  32876. },
  32877. back: {
  32878. height: math.unit(4 + 2 / 12, "feet"),
  32879. weight: math.unit(95, "lb"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/vaelophis-nyx/back.svg",
  32883. extra: 2484/2361,
  32884. bottom: 0/2484
  32885. }
  32886. },
  32887. feralSide: {
  32888. height: math.unit(2 + 1/12, "feet"),
  32889. weight: math.unit(20, "lb"),
  32890. name: "Feral (Side)",
  32891. image: {
  32892. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32893. extra: 1721/1581,
  32894. bottom: 70/1791
  32895. }
  32896. },
  32897. feralLazing: {
  32898. height: math.unit(1.08, "feet"),
  32899. weight: math.unit(20, "lb"),
  32900. name: "Feral (Lazing)",
  32901. image: {
  32902. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32903. extra: 822/822,
  32904. bottom: 248/1070
  32905. }
  32906. },
  32907. ear: {
  32908. height: math.unit(0.416, "feet"),
  32909. name: "Ear",
  32910. image: {
  32911. source: "./media/characters/vaelophis-nyx/ear.svg"
  32912. }
  32913. },
  32914. eye: {
  32915. height: math.unit(0.0748, "feet"),
  32916. name: "Eye",
  32917. image: {
  32918. source: "./media/characters/vaelophis-nyx/eye.svg"
  32919. }
  32920. },
  32921. mouth: {
  32922. height: math.unit(0.378, "feet"),
  32923. name: "Mouth",
  32924. image: {
  32925. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32926. }
  32927. },
  32928. spade: {
  32929. height: math.unit(0.55, "feet"),
  32930. name: "Spade",
  32931. image: {
  32932. source: "./media/characters/vaelophis-nyx/spade.svg"
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(4 + 2/12, "feet"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32946. {
  32947. front: {
  32948. height: math.unit(7, "feet"),
  32949. weight: math.unit(231, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/flux/front.svg",
  32953. extra: 919/871,
  32954. bottom: 0/919
  32955. }
  32956. },
  32957. back: {
  32958. height: math.unit(7, "feet"),
  32959. weight: math.unit(231, "lb"),
  32960. name: "Back",
  32961. image: {
  32962. source: "./media/characters/flux/back.svg",
  32963. extra: 1040/992,
  32964. bottom: 0/1040
  32965. }
  32966. },
  32967. frontDressed: {
  32968. height: math.unit(7, "feet"),
  32969. weight: math.unit(231, "lb"),
  32970. name: "Front (Dressed)",
  32971. image: {
  32972. source: "./media/characters/flux/front-dressed.svg",
  32973. extra: 919/871,
  32974. bottom: 0/919
  32975. }
  32976. },
  32977. feralSide: {
  32978. height: math.unit(5, "feet"),
  32979. weight: math.unit(150, "lb"),
  32980. name: "Feral (Side)",
  32981. image: {
  32982. source: "./media/characters/flux/feral-side.svg",
  32983. extra: 598/528,
  32984. bottom: 28/626
  32985. }
  32986. },
  32987. head: {
  32988. height: math.unit(1.585, "feet"),
  32989. name: "Head",
  32990. image: {
  32991. source: "./media/characters/flux/head.svg"
  32992. }
  32993. },
  32994. headSide: {
  32995. height: math.unit(1.74, "feet"),
  32996. name: "Head (Side)",
  32997. image: {
  32998. source: "./media/characters/flux/head-side.svg"
  32999. }
  33000. },
  33001. headSideFire: {
  33002. height: math.unit(1.76, "feet"),
  33003. name: "Head (Side, Fire)",
  33004. image: {
  33005. source: "./media/characters/flux/head-side-fire.svg"
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(7, "feet"),
  33013. default: true
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(9, "feet"),
  33022. weight: math.unit(1012, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/ulfra-lupae/front.svg",
  33026. extra: 1083/1011,
  33027. bottom: 67/1150
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Micro",
  33034. height: math.unit(6, "inches")
  33035. },
  33036. {
  33037. name: "Socializing",
  33038. height: math.unit(6 + 5/12, "feet")
  33039. },
  33040. {
  33041. name: "Normal",
  33042. height: math.unit(9, "feet"),
  33043. default: true
  33044. },
  33045. {
  33046. name: "Macro",
  33047. height: math.unit(150, "feet")
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(5 + 2/12, "feet"),
  33056. weight: math.unit(120, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/timber/front.svg",
  33060. extra: 2814/2705,
  33061. bottom: 181/2995
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(5 + 2/12, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33075. {
  33076. front: {
  33077. height: math.unit(9, "feet"),
  33078. name: "Front",
  33079. image: {
  33080. source: "./media/characters/nicki/front.svg",
  33081. extra: 1240/990,
  33082. bottom: 45/1285
  33083. },
  33084. form: "anthro",
  33085. default: true
  33086. },
  33087. side: {
  33088. height: math.unit(9, "feet"),
  33089. name: "Side",
  33090. image: {
  33091. source: "./media/characters/nicki/side.svg",
  33092. extra: 1047/973,
  33093. bottom: 61/1108
  33094. },
  33095. form: "anthro"
  33096. },
  33097. back: {
  33098. height: math.unit(9, "feet"),
  33099. name: "Back",
  33100. image: {
  33101. source: "./media/characters/nicki/back.svg",
  33102. extra: 1006/965,
  33103. bottom: 39/1045
  33104. },
  33105. form: "anthro"
  33106. },
  33107. taur: {
  33108. height: math.unit(15, "feet"),
  33109. name: "Taur",
  33110. image: {
  33111. source: "./media/characters/nicki/taur.svg",
  33112. extra: 1592/1347,
  33113. bottom: 0/1592
  33114. },
  33115. form: "taur",
  33116. default: true
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(9, "feet"),
  33123. form: "anthro",
  33124. default: true
  33125. },
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(15, "feet"),
  33129. form: "taur",
  33130. default: true
  33131. }
  33132. ],
  33133. {
  33134. "anthro": {
  33135. name: "Anthro",
  33136. default: true
  33137. },
  33138. "taur": {
  33139. name: "Taur"
  33140. }
  33141. }
  33142. ))
  33143. characterMakers.push(() => makeCharacter(
  33144. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33145. {
  33146. front: {
  33147. height: math.unit(7 + 10/12, "feet"),
  33148. weight: math.unit(3.5, "tons"),
  33149. name: "Front",
  33150. image: {
  33151. source: "./media/characters/lee/front.svg",
  33152. extra: 1773/1615,
  33153. bottom: 86/1859
  33154. }
  33155. },
  33156. hand: {
  33157. height: math.unit(1.78, "feet"),
  33158. name: "Hand",
  33159. image: {
  33160. source: "./media/characters/lee/hand.svg"
  33161. }
  33162. },
  33163. maw: {
  33164. height: math.unit(1.18, "feet"),
  33165. name: "Maw",
  33166. image: {
  33167. source: "./media/characters/lee/maw.svg"
  33168. }
  33169. },
  33170. },
  33171. [
  33172. {
  33173. name: "Normal",
  33174. height: math.unit(7 + 10/12, "feet"),
  33175. default: true
  33176. },
  33177. ]
  33178. ))
  33179. characterMakers.push(() => makeCharacter(
  33180. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33181. {
  33182. front: {
  33183. height: math.unit(9, "feet"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/guti/front.svg",
  33187. extra: 4551/4355,
  33188. bottom: 123/4674
  33189. }
  33190. },
  33191. tongue: {
  33192. height: math.unit(1, "feet"),
  33193. name: "Tongue",
  33194. image: {
  33195. source: "./media/characters/guti/tongue.svg"
  33196. }
  33197. },
  33198. paw: {
  33199. height: math.unit(1.18, "feet"),
  33200. name: "Paw",
  33201. image: {
  33202. source: "./media/characters/guti/paw.svg"
  33203. }
  33204. },
  33205. },
  33206. [
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(9, "feet"),
  33210. default: true
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33216. {
  33217. side: {
  33218. height: math.unit(5, "meters"),
  33219. name: "Side",
  33220. image: {
  33221. source: "./media/characters/vesper/side.svg",
  33222. extra: 1605/1518,
  33223. bottom: 0/1605
  33224. }
  33225. },
  33226. },
  33227. [
  33228. {
  33229. name: "Small",
  33230. height: math.unit(5, "meters")
  33231. },
  33232. {
  33233. name: "Sage",
  33234. height: math.unit(100, "meters"),
  33235. default: true
  33236. },
  33237. {
  33238. name: "Fun Size",
  33239. height: math.unit(600, "meters")
  33240. },
  33241. {
  33242. name: "Goddess",
  33243. height: math.unit(20000, "km")
  33244. },
  33245. {
  33246. name: "Maximum",
  33247. height: math.unit(5, "galaxies")
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33253. {
  33254. front: {
  33255. height: math.unit(6 + 3/12, "feet"),
  33256. weight: math.unit(190, "lb"),
  33257. name: "Front",
  33258. image: {
  33259. source: "./media/characters/gawain/front.svg",
  33260. extra: 2222/2139,
  33261. bottom: 90/2312
  33262. }
  33263. },
  33264. back: {
  33265. height: math.unit(6 + 3/12, "feet"),
  33266. weight: math.unit(190, "lb"),
  33267. name: "Back",
  33268. image: {
  33269. source: "./media/characters/gawain/back.svg",
  33270. extra: 2199/2111,
  33271. bottom: 73/2272
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(6 + 3/12, "feet"),
  33279. default: true
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33285. {
  33286. side: {
  33287. height: math.unit(3.5, "meters"),
  33288. weight: math.unit(16000, "lb"),
  33289. name: "Side",
  33290. image: {
  33291. source: "./media/characters/dascalti/side.svg",
  33292. extra: 392/273,
  33293. bottom: 47/439
  33294. }
  33295. },
  33296. breath: {
  33297. height: math.unit(7.4, "feet"),
  33298. name: "Breath",
  33299. image: {
  33300. source: "./media/characters/dascalti/breath.svg"
  33301. }
  33302. },
  33303. fed: {
  33304. height: math.unit(3.6, "meters"),
  33305. weight: math.unit(16000, "lb"),
  33306. name: "Fed",
  33307. image: {
  33308. source: "./media/characters/dascalti/fed.svg",
  33309. extra: 1419/820,
  33310. bottom: 95/1514
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(3.5, "meters"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(3 + 5/12, "feet"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/mauve/front.svg",
  33330. extra: 1126/1033,
  33331. bottom: 65/1191
  33332. }
  33333. },
  33334. side: {
  33335. height: math.unit(3 + 5/12, "feet"),
  33336. name: "Side",
  33337. image: {
  33338. source: "./media/characters/mauve/side.svg",
  33339. extra: 1089/1001,
  33340. bottom: 29/1118
  33341. }
  33342. },
  33343. back: {
  33344. height: math.unit(3 + 5/12, "feet"),
  33345. name: "Back",
  33346. image: {
  33347. source: "./media/characters/mauve/back.svg",
  33348. extra: 1173/1053,
  33349. bottom: 109/1282
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(3 + 5/12, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33363. {
  33364. front: {
  33365. height: math.unit(6 + 3/12, "feet"),
  33366. weight: math.unit(430, "lb"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/carlos/front.svg",
  33370. extra: 1964/1913,
  33371. bottom: 70/2034
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(6 + 3/12, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33385. {
  33386. back: {
  33387. height: math.unit(5 + 10/12, "feet"),
  33388. weight: math.unit(200, "lb"),
  33389. name: "Back",
  33390. image: {
  33391. source: "./media/characters/jax/back.svg",
  33392. extra: 764/739,
  33393. bottom: 25/789
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(5 + 10/12, "feet"),
  33401. default: true
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33407. {
  33408. front: {
  33409. height: math.unit(8, "feet"),
  33410. weight: math.unit(250, "lb"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/eikthynir/front.svg",
  33414. extra: 1332/1166,
  33415. bottom: 82/1414
  33416. }
  33417. },
  33418. back: {
  33419. height: math.unit(8, "feet"),
  33420. weight: math.unit(250, "lb"),
  33421. name: "Back",
  33422. image: {
  33423. source: "./media/characters/eikthynir/back.svg",
  33424. extra: 1342/1190,
  33425. bottom: 19/1361
  33426. }
  33427. },
  33428. dick: {
  33429. height: math.unit(2.35, "feet"),
  33430. name: "Dick",
  33431. image: {
  33432. source: "./media/characters/eikthynir/dick.svg"
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Normal",
  33439. height: math.unit(8, "feet"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(99, "meters"),
  33449. weight: math.unit(13000, "tons"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/zlmos/front.svg",
  33453. extra: 2202/1992,
  33454. bottom: 315/2517
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Macro",
  33461. height: math.unit(99, "meters"),
  33462. default: true
  33463. },
  33464. ]
  33465. ))
  33466. characterMakers.push(() => makeCharacter(
  33467. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33468. {
  33469. front: {
  33470. height: math.unit(6 + 5/12, "feet"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/purri/front.svg",
  33474. extra: 1698/1610,
  33475. bottom: 32/1730
  33476. }
  33477. },
  33478. frontAlt: {
  33479. height: math.unit(6 + 5/12, "feet"),
  33480. name: "Front (Alt)",
  33481. image: {
  33482. source: "./media/characters/purri/front-alt.svg",
  33483. extra: 450/420,
  33484. bottom: 26/476
  33485. }
  33486. },
  33487. boots: {
  33488. height: math.unit(5.5, "feet"),
  33489. name: "Boots",
  33490. image: {
  33491. source: "./media/characters/purri/boots.svg",
  33492. extra: 905/853,
  33493. bottom: 18/923
  33494. }
  33495. },
  33496. lying: {
  33497. height: math.unit(2, "feet"),
  33498. name: "Lying",
  33499. image: {
  33500. source: "./media/characters/purri/lying.svg",
  33501. extra: 940/843,
  33502. bottom: 146/1086
  33503. }
  33504. },
  33505. devious: {
  33506. height: math.unit(1.77, "feet"),
  33507. name: "Devious",
  33508. image: {
  33509. source: "./media/characters/purri/devious.svg",
  33510. extra: 1440/1155,
  33511. bottom: 147/1587
  33512. }
  33513. },
  33514. bean: {
  33515. height: math.unit(1.94, "feet"),
  33516. name: "Bean",
  33517. image: {
  33518. source: "./media/characters/purri/bean.svg"
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Micro",
  33525. height: math.unit(1, "mm")
  33526. },
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(6 + 5/12, "feet"),
  33530. default: true
  33531. },
  33532. {
  33533. name: "Macro :3c",
  33534. height: math.unit(2, "miles")
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(6 + 2/12, "feet"),
  33543. weight: math.unit(250, "lb"),
  33544. name: "Front",
  33545. image: {
  33546. source: "./media/characters/moonlight/front.svg",
  33547. extra: 1044/908,
  33548. bottom: 56/1100
  33549. }
  33550. },
  33551. feral: {
  33552. height: math.unit(3 + 1/12, "feet"),
  33553. weight: math.unit(50, "kg"),
  33554. name: "Feral",
  33555. image: {
  33556. source: "./media/characters/moonlight/feral.svg",
  33557. extra: 3705/2791,
  33558. bottom: 145/3850
  33559. }
  33560. },
  33561. paw: {
  33562. height: math.unit(1, "feet"),
  33563. name: "Paw",
  33564. image: {
  33565. source: "./media/characters/moonlight/paw.svg"
  33566. }
  33567. },
  33568. paws: {
  33569. height: math.unit(0.98, "feet"),
  33570. name: "Paws",
  33571. image: {
  33572. source: "./media/characters/moonlight/paws.svg",
  33573. extra: 939/939,
  33574. bottom: 50/989
  33575. }
  33576. },
  33577. mouth: {
  33578. height: math.unit(0.48, "feet"),
  33579. name: "Mouth",
  33580. image: {
  33581. source: "./media/characters/moonlight/mouth.svg"
  33582. }
  33583. },
  33584. dick: {
  33585. height: math.unit(1.46, "feet"),
  33586. name: "Dick",
  33587. image: {
  33588. source: "./media/characters/moonlight/dick.svg"
  33589. }
  33590. },
  33591. },
  33592. [
  33593. {
  33594. name: "Normal",
  33595. height: math.unit(6 + 2/12, "feet"),
  33596. default: true
  33597. },
  33598. {
  33599. name: "Macro",
  33600. height: math.unit(300, "feet")
  33601. },
  33602. {
  33603. name: "Macro+",
  33604. height: math.unit(1, "mile")
  33605. },
  33606. {
  33607. name: "Mt. Moon",
  33608. height: math.unit(5, "miles")
  33609. },
  33610. {
  33611. name: "Megamacro",
  33612. height: math.unit(15, "miles")
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33618. {
  33619. back: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(150, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/sylen/back.svg",
  33625. extra: 1335/1273,
  33626. bottom: 107/1442
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Normal",
  33633. height: math.unit(5 + 5/12, "feet")
  33634. },
  33635. {
  33636. name: "Megamacro",
  33637. height: math.unit(3, "miles"),
  33638. default: true
  33639. },
  33640. ]
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33644. {
  33645. front: {
  33646. height: math.unit(6, "feet"),
  33647. weight: math.unit(190, "lb"),
  33648. name: "Front",
  33649. image: {
  33650. source: "./media/characters/huttser/front.svg",
  33651. extra: 1152/1058,
  33652. bottom: 23/1175
  33653. }
  33654. },
  33655. side: {
  33656. height: math.unit(6, "feet"),
  33657. weight: math.unit(190, "lb"),
  33658. name: "Side",
  33659. image: {
  33660. source: "./media/characters/huttser/side.svg",
  33661. extra: 1174/1065,
  33662. bottom: 18/1192
  33663. }
  33664. },
  33665. back: {
  33666. height: math.unit(6, "feet"),
  33667. weight: math.unit(190, "lb"),
  33668. name: "Back",
  33669. image: {
  33670. source: "./media/characters/huttser/back.svg",
  33671. extra: 1158/1056,
  33672. bottom: 12/1170
  33673. }
  33674. },
  33675. },
  33676. [
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33681. {
  33682. side: {
  33683. height: math.unit(12 + 9/12, "feet"),
  33684. weight: math.unit(15000, "lb"),
  33685. name: "Side",
  33686. image: {
  33687. source: "./media/characters/faan/side.svg",
  33688. extra: 2747/2697,
  33689. bottom: 0/2747
  33690. }
  33691. },
  33692. front: {
  33693. height: math.unit(12 + 9/12, "feet"),
  33694. weight: math.unit(15000, "lb"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/faan/front.svg",
  33698. extra: 607/571,
  33699. bottom: 24/631
  33700. }
  33701. },
  33702. head: {
  33703. height: math.unit(2.85, "feet"),
  33704. name: "Head",
  33705. image: {
  33706. source: "./media/characters/faan/head.svg"
  33707. }
  33708. },
  33709. headAlt: {
  33710. height: math.unit(3.13, "feet"),
  33711. name: "Head-alt",
  33712. image: {
  33713. source: "./media/characters/faan/head-alt.svg"
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(12 + 9/12, "feet"),
  33721. default: true
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(6, "feet"),
  33730. weight: math.unit(300, "lb"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/tanio/front.svg",
  33734. extra: 711/673,
  33735. bottom: 25/736
  33736. }
  33737. },
  33738. },
  33739. [
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(6, "feet"),
  33743. default: true
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(3, "inches"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/noboru/front.svg",
  33755. extra: 1039/932,
  33756. bottom: 18/1057
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Micro",
  33763. height: math.unit(3, "inches"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33770. {
  33771. front: {
  33772. height: math.unit(1.85, "meters"),
  33773. weight: math.unit(80, "kg"),
  33774. name: "Front",
  33775. image: {
  33776. source: "./media/characters/daniel-barrett/front.svg",
  33777. extra: 355/337,
  33778. bottom: 9/364
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Pico",
  33785. height: math.unit(0.0433, "mm")
  33786. },
  33787. {
  33788. name: "Nano",
  33789. height: math.unit(1.5, "mm")
  33790. },
  33791. {
  33792. name: "Micro",
  33793. height: math.unit(5.3, "cm"),
  33794. default: true
  33795. },
  33796. {
  33797. name: "Normal",
  33798. height: math.unit(1.85, "meters")
  33799. },
  33800. {
  33801. name: "Macro",
  33802. height: math.unit(64.7, "meters")
  33803. },
  33804. {
  33805. name: "Megamacro",
  33806. height: math.unit(2.26, "km")
  33807. },
  33808. {
  33809. name: "Gigamacro",
  33810. height: math.unit(79, "km")
  33811. },
  33812. {
  33813. name: "Teramacro",
  33814. height: math.unit(2765, "km")
  33815. },
  33816. {
  33817. name: "Petamacro",
  33818. height: math.unit(96678, "km")
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(30, "meters"),
  33827. weight: math.unit(400, "tons"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/zeel/front.svg",
  33831. extra: 2599/2599,
  33832. bottom: 226/2825
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Macro",
  33839. height: math.unit(30, "meters"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33846. {
  33847. front: {
  33848. height: math.unit(6 + 7/12, "feet"),
  33849. weight: math.unit(210, "lb"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/tarn/front.svg",
  33853. extra: 3517/3220,
  33854. bottom: 91/3608
  33855. }
  33856. },
  33857. back: {
  33858. height: math.unit(6 + 7/12, "feet"),
  33859. weight: math.unit(210, "lb"),
  33860. name: "Back",
  33861. image: {
  33862. source: "./media/characters/tarn/back.svg",
  33863. extra: 3566/3241,
  33864. bottom: 34/3600
  33865. }
  33866. },
  33867. dick: {
  33868. height: math.unit(1.65, "feet"),
  33869. name: "Dick",
  33870. image: {
  33871. source: "./media/characters/tarn/dick.svg"
  33872. }
  33873. },
  33874. paw: {
  33875. height: math.unit(1.80, "feet"),
  33876. name: "Paw",
  33877. image: {
  33878. source: "./media/characters/tarn/paw.svg"
  33879. }
  33880. },
  33881. tongue: {
  33882. height: math.unit(0.97, "feet"),
  33883. name: "Tongue",
  33884. image: {
  33885. source: "./media/characters/tarn/tongue.svg"
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Micro",
  33892. height: math.unit(4, "inches")
  33893. },
  33894. {
  33895. name: "Normal",
  33896. height: math.unit(6 + 7/12, "feet"),
  33897. default: true
  33898. },
  33899. {
  33900. name: "Macro",
  33901. height: math.unit(300, "feet")
  33902. },
  33903. ]
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33907. {
  33908. front: {
  33909. height: math.unit(5 + 7/12, "feet"),
  33910. weight: math.unit(80, "kg"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33914. extra: 3023/2865,
  33915. bottom: 33/3056
  33916. }
  33917. },
  33918. back: {
  33919. height: math.unit(5 + 7/12, "feet"),
  33920. weight: math.unit(80, "kg"),
  33921. name: "Back",
  33922. image: {
  33923. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33924. extra: 3020/2886,
  33925. bottom: 30/3050
  33926. }
  33927. },
  33928. dick: {
  33929. height: math.unit(0.98, "feet"),
  33930. name: "Dick",
  33931. image: {
  33932. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33933. }
  33934. },
  33935. anatomy: {
  33936. height: math.unit(2.86, "feet"),
  33937. name: "Anatomy",
  33938. image: {
  33939. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Really Small",
  33946. height: math.unit(2, "inches")
  33947. },
  33948. {
  33949. name: "Micro",
  33950. height: math.unit(5.583, "inches")
  33951. },
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(5 + 7/12, "feet"),
  33955. default: true
  33956. },
  33957. {
  33958. name: "Macro",
  33959. height: math.unit(67, "feet")
  33960. },
  33961. {
  33962. name: "Megamacro",
  33963. height: math.unit(134, "feet")
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(9, "feet"),
  33972. weight: math.unit(120, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/sally/front.svg",
  33976. extra: 1506/1349,
  33977. bottom: 66/1572
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(9, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(8, "feet"),
  33994. weight: math.unit(900, "lb"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/owen/front.svg",
  33998. extra: 1761/1657,
  33999. bottom: 74/1835
  34000. }
  34001. },
  34002. side: {
  34003. height: math.unit(8, "feet"),
  34004. weight: math.unit(900, "lb"),
  34005. name: "Side",
  34006. image: {
  34007. source: "./media/characters/owen/side.svg",
  34008. extra: 1797/1734,
  34009. bottom: 30/1827
  34010. }
  34011. },
  34012. back: {
  34013. height: math.unit(8, "feet"),
  34014. weight: math.unit(900, "lb"),
  34015. name: "Back",
  34016. image: {
  34017. source: "./media/characters/owen/back.svg",
  34018. extra: 1796/1706,
  34019. bottom: 59/1855
  34020. }
  34021. },
  34022. maw: {
  34023. height: math.unit(1.76, "feet"),
  34024. name: "Maw",
  34025. image: {
  34026. source: "./media/characters/owen/maw.svg"
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(8, "feet"),
  34034. default: true
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34040. {
  34041. front: {
  34042. height: math.unit(4, "feet"),
  34043. weight: math.unit(400, "lb"),
  34044. name: "Front",
  34045. image: {
  34046. source: "./media/characters/ryth/front.svg",
  34047. extra: 1920/1748,
  34048. bottom: 42/1962
  34049. }
  34050. },
  34051. back: {
  34052. height: math.unit(4, "feet"),
  34053. weight: math.unit(400, "lb"),
  34054. name: "Back",
  34055. image: {
  34056. source: "./media/characters/ryth/back.svg",
  34057. extra: 1897/1690,
  34058. bottom: 89/1986
  34059. }
  34060. },
  34061. mouth: {
  34062. height: math.unit(1.39, "feet"),
  34063. name: "Mouth",
  34064. image: {
  34065. source: "./media/characters/ryth/mouth.svg"
  34066. }
  34067. },
  34068. tailmaw: {
  34069. height: math.unit(1.23, "feet"),
  34070. name: "Tailmaw",
  34071. image: {
  34072. source: "./media/characters/ryth/tailmaw.svg"
  34073. }
  34074. },
  34075. goia: {
  34076. height: math.unit(4, "meters"),
  34077. weight: math.unit(10800, "lb"),
  34078. name: "Goia",
  34079. image: {
  34080. source: "./media/characters/ryth/goia.svg",
  34081. extra: 745/640,
  34082. bottom: 107/852
  34083. }
  34084. },
  34085. goiaFront: {
  34086. height: math.unit(4, "meters"),
  34087. weight: math.unit(10800, "lb"),
  34088. name: "Goia (Front)",
  34089. image: {
  34090. source: "./media/characters/ryth/goia-front.svg",
  34091. extra: 750/586,
  34092. bottom: 114/864
  34093. }
  34094. },
  34095. goiaMaw: {
  34096. height: math.unit(5.55, "feet"),
  34097. name: "Goia Maw",
  34098. image: {
  34099. source: "./media/characters/ryth/goia-maw.svg"
  34100. }
  34101. },
  34102. goiaForepaw: {
  34103. height: math.unit(3.5, "feet"),
  34104. name: "Goia Forepaw",
  34105. image: {
  34106. source: "./media/characters/ryth/goia-forepaw.svg"
  34107. }
  34108. },
  34109. goiaHindpaw: {
  34110. height: math.unit(5.55, "feet"),
  34111. name: "Goia Hindpaw",
  34112. image: {
  34113. source: "./media/characters/ryth/goia-hindpaw.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(4, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(7, "feet"),
  34130. weight: math.unit(180, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/necrolance/front.svg",
  34134. extra: 1062/947,
  34135. bottom: 41/1103
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(7, "feet"),
  34140. weight: math.unit(180, "lb"),
  34141. name: "Back",
  34142. image: {
  34143. source: "./media/characters/necrolance/back.svg",
  34144. extra: 1045/984,
  34145. bottom: 14/1059
  34146. }
  34147. },
  34148. wing: {
  34149. height: math.unit(2.67, "feet"),
  34150. name: "Wing",
  34151. image: {
  34152. source: "./media/characters/necrolance/wing.svg"
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Normal",
  34159. height: math.unit(7, "feet"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34166. {
  34167. front: {
  34168. height: math.unit(76, "meters"),
  34169. weight: math.unit(30000, "tons"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/tyler/front.svg",
  34173. extra: 1640/1640,
  34174. bottom: 114/1754
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Macro",
  34181. height: math.unit(76, "meters"),
  34182. default: true
  34183. },
  34184. ]
  34185. ))
  34186. characterMakers.push(() => makeCharacter(
  34187. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34188. {
  34189. front: {
  34190. height: math.unit(4 + 11/12, "feet"),
  34191. weight: math.unit(132, "lb"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/icey/front.svg",
  34195. extra: 2750/2550,
  34196. bottom: 33/2783
  34197. }
  34198. },
  34199. back: {
  34200. height: math.unit(4 + 11/12, "feet"),
  34201. weight: math.unit(132, "lb"),
  34202. name: "Back",
  34203. image: {
  34204. source: "./media/characters/icey/back.svg",
  34205. extra: 2624/2481,
  34206. bottom: 35/2659
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Normal",
  34213. height: math.unit(4 + 11/12, "feet"),
  34214. default: true
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(100, "feet"),
  34223. weight: math.unit(0, "lb"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/smile/front.svg",
  34227. extra: 2983/2912,
  34228. bottom: 162/3145
  34229. }
  34230. },
  34231. back: {
  34232. height: math.unit(100, "feet"),
  34233. weight: math.unit(0, "lb"),
  34234. name: "Back",
  34235. image: {
  34236. source: "./media/characters/smile/back.svg",
  34237. extra: 3143/3031,
  34238. bottom: 91/3234
  34239. }
  34240. },
  34241. head: {
  34242. height: math.unit(26.3, "feet"),
  34243. weight: math.unit(0, "lb"),
  34244. name: "Head",
  34245. image: {
  34246. source: "./media/characters/smile/head.svg"
  34247. }
  34248. },
  34249. collar: {
  34250. height: math.unit(5.3, "feet"),
  34251. weight: math.unit(0, "lb"),
  34252. name: "Collar",
  34253. image: {
  34254. source: "./media/characters/smile/collar.svg"
  34255. }
  34256. },
  34257. },
  34258. [
  34259. {
  34260. name: "Macro",
  34261. height: math.unit(100, "feet"),
  34262. default: true
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34268. {
  34269. dragon: {
  34270. height: math.unit(26, "feet"),
  34271. weight: math.unit(36, "tons"),
  34272. name: "Dragon",
  34273. image: {
  34274. source: "./media/characters/arimphae/dragon.svg",
  34275. extra: 1574/983,
  34276. bottom: 357/1931
  34277. }
  34278. },
  34279. drake: {
  34280. height: math.unit(9, "feet"),
  34281. weight: math.unit(1.5, "tons"),
  34282. name: "Drake",
  34283. image: {
  34284. source: "./media/characters/arimphae/drake.svg",
  34285. extra: 1120/925,
  34286. bottom: 435/1555
  34287. }
  34288. },
  34289. },
  34290. [
  34291. {
  34292. name: "Small",
  34293. height: math.unit(26*5/9, "feet")
  34294. },
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(26, "feet"),
  34298. default: true
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34304. {
  34305. front: {
  34306. height: math.unit(8 + 9/12, "feet"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/xander/front.svg",
  34310. extra: 1237/974,
  34311. bottom: 94/1331
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Normal",
  34318. height: math.unit(8 + 9/12, "feet"),
  34319. default: true
  34320. },
  34321. {
  34322. name: "Gaze Grabber",
  34323. height: math.unit(13 + 8/12, "feet")
  34324. },
  34325. {
  34326. name: "Jaw Dropper",
  34327. height: math.unit(27, "feet")
  34328. },
  34329. {
  34330. name: "Show Stopper",
  34331. height: math.unit(136, "feet")
  34332. },
  34333. {
  34334. name: "Superstar",
  34335. height: math.unit(1.9e6, "miles")
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34341. {
  34342. side: {
  34343. height: math.unit(2100, "feet"),
  34344. name: "Side",
  34345. image: {
  34346. source: "./media/characters/osiris/side.svg",
  34347. extra: 1105/939,
  34348. bottom: 167/1272
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Macro",
  34355. height: math.unit(2100, "feet"),
  34356. default: true
  34357. },
  34358. ]
  34359. ))
  34360. characterMakers.push(() => makeCharacter(
  34361. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34362. {
  34363. front: {
  34364. height: math.unit(6 + 8/12, "feet"),
  34365. weight: math.unit(225, "lb"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/rhys-londe/front.svg",
  34369. extra: 2258/2141,
  34370. bottom: 188/2446
  34371. }
  34372. },
  34373. back: {
  34374. height: math.unit(6 + 8/12, "feet"),
  34375. weight: math.unit(225, "lb"),
  34376. name: "Back",
  34377. image: {
  34378. source: "./media/characters/rhys-londe/back.svg",
  34379. extra: 2237/2137,
  34380. bottom: 63/2300
  34381. }
  34382. },
  34383. frontNsfw: {
  34384. height: math.unit(6 + 8/12, "feet"),
  34385. weight: math.unit(225, "lb"),
  34386. name: "Front (NSFW)",
  34387. image: {
  34388. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34389. extra: 2258/2141,
  34390. bottom: 188/2446
  34391. }
  34392. },
  34393. backNsfw: {
  34394. height: math.unit(6 + 8/12, "feet"),
  34395. weight: math.unit(225, "lb"),
  34396. name: "Back (NSFW)",
  34397. image: {
  34398. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34399. extra: 2237/2137,
  34400. bottom: 63/2300
  34401. }
  34402. },
  34403. dick: {
  34404. height: math.unit(30, "inches"),
  34405. name: "Dick",
  34406. image: {
  34407. source: "./media/characters/rhys-londe/dick.svg"
  34408. }
  34409. },
  34410. maw: {
  34411. height: math.unit(1.6, "feet"),
  34412. name: "Maw",
  34413. image: {
  34414. source: "./media/characters/rhys-londe/maw.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(6 + 8/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(3 + 10/12, "feet"),
  34431. weight: math.unit(90, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/taivas-ensim/front.svg",
  34435. extra: 1327/1216,
  34436. bottom: 96/1423
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(3 + 10/12, "feet"),
  34441. weight: math.unit(90, "lb"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/taivas-ensim/back.svg",
  34445. extra: 1355/1247,
  34446. bottom: 11/1366
  34447. }
  34448. },
  34449. frontNsfw: {
  34450. height: math.unit(3 + 10/12, "feet"),
  34451. weight: math.unit(90, "lb"),
  34452. name: "Front (NSFW)",
  34453. image: {
  34454. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34455. extra: 1327/1216,
  34456. bottom: 96/1423
  34457. }
  34458. },
  34459. backNsfw: {
  34460. height: math.unit(3 + 10/12, "feet"),
  34461. weight: math.unit(90, "lb"),
  34462. name: "Back (NSFW)",
  34463. image: {
  34464. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34465. extra: 1355/1247,
  34466. bottom: 11/1366
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Normal",
  34473. height: math.unit(3 + 10/12, "feet"),
  34474. default: true
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34480. {
  34481. front: {
  34482. height: math.unit(9 + 6/12, "feet"),
  34483. weight: math.unit(940, "lb"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/byliss/front.svg",
  34487. extra: 1327/1290,
  34488. bottom: 82/1409
  34489. }
  34490. },
  34491. back: {
  34492. height: math.unit(9 + 6/12, "feet"),
  34493. weight: math.unit(940, "lb"),
  34494. name: "Back",
  34495. image: {
  34496. source: "./media/characters/byliss/back.svg",
  34497. extra: 1376/1349,
  34498. bottom: 9/1385
  34499. }
  34500. },
  34501. frontNsfw: {
  34502. height: math.unit(9 + 6/12, "feet"),
  34503. weight: math.unit(940, "lb"),
  34504. name: "Front (NSFW)",
  34505. image: {
  34506. source: "./media/characters/byliss/front-nsfw.svg",
  34507. extra: 1327/1290,
  34508. bottom: 82/1409
  34509. }
  34510. },
  34511. backNsfw: {
  34512. height: math.unit(9 + 6/12, "feet"),
  34513. weight: math.unit(940, "lb"),
  34514. name: "Back (NSFW)",
  34515. image: {
  34516. source: "./media/characters/byliss/back-nsfw.svg",
  34517. extra: 1376/1349,
  34518. bottom: 9/1385
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Normal",
  34525. height: math.unit(9 + 6/12, "feet"),
  34526. default: true
  34527. },
  34528. ]
  34529. ))
  34530. characterMakers.push(() => makeCharacter(
  34531. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34532. {
  34533. front: {
  34534. height: math.unit(5 + 2/12, "feet"),
  34535. weight: math.unit(200, "lb"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/noraly/front.svg",
  34539. extra: 4985/4773,
  34540. bottom: 150/5135
  34541. }
  34542. },
  34543. full: {
  34544. height: math.unit(5 + 2/12, "feet"),
  34545. weight: math.unit(164, "lb"),
  34546. name: "Full",
  34547. image: {
  34548. source: "./media/characters/noraly/full.svg",
  34549. extra: 1114/1059,
  34550. bottom: 35/1149
  34551. }
  34552. },
  34553. fuller: {
  34554. height: math.unit(5 + 2/12, "feet"),
  34555. weight: math.unit(230, "lb"),
  34556. name: "Fuller",
  34557. image: {
  34558. source: "./media/characters/noraly/fuller.svg",
  34559. extra: 1114/1059,
  34560. bottom: 35/1149
  34561. }
  34562. },
  34563. fullest: {
  34564. height: math.unit(5 + 2/12, "feet"),
  34565. weight: math.unit(300, "lb"),
  34566. name: "Fullest",
  34567. image: {
  34568. source: "./media/characters/noraly/fullest.svg",
  34569. extra: 1114/1059,
  34570. bottom: 35/1149
  34571. }
  34572. },
  34573. },
  34574. [
  34575. {
  34576. name: "Normal",
  34577. height: math.unit(5 + 2/12, "feet"),
  34578. default: true
  34579. },
  34580. ]
  34581. ))
  34582. characterMakers.push(() => makeCharacter(
  34583. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34584. {
  34585. front: {
  34586. height: math.unit(5 + 2/12, "feet"),
  34587. weight: math.unit(210, "lb"),
  34588. name: "Front",
  34589. image: {
  34590. source: "./media/characters/pera/front.svg",
  34591. extra: 1560/1531,
  34592. bottom: 165/1725
  34593. }
  34594. },
  34595. back: {
  34596. height: math.unit(5 + 2/12, "feet"),
  34597. weight: math.unit(210, "lb"),
  34598. name: "Back",
  34599. image: {
  34600. source: "./media/characters/pera/back.svg",
  34601. extra: 1523/1493,
  34602. bottom: 152/1675
  34603. }
  34604. },
  34605. dick: {
  34606. height: math.unit(2.4, "feet"),
  34607. name: "Dick",
  34608. image: {
  34609. source: "./media/characters/pera/dick.svg"
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(5 + 2/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(12, "feet"),
  34626. weight: math.unit(3200, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/julian/front.svg",
  34630. extra: 2962/2701,
  34631. bottom: 184/3146
  34632. }
  34633. },
  34634. maw: {
  34635. height: math.unit(5.35, "feet"),
  34636. name: "Maw",
  34637. image: {
  34638. source: "./media/characters/julian/maw.svg"
  34639. }
  34640. },
  34641. paw: {
  34642. height: math.unit(3.07, "feet"),
  34643. name: "Paw",
  34644. image: {
  34645. source: "./media/characters/julian/paw.svg"
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Default",
  34652. height: math.unit(12, "feet"),
  34653. default: true
  34654. },
  34655. {
  34656. name: "Big",
  34657. height: math.unit(50, "feet")
  34658. },
  34659. {
  34660. name: "Really Big",
  34661. height: math.unit(1, "mile")
  34662. },
  34663. {
  34664. name: "Extremely Big",
  34665. height: math.unit(100, "miles")
  34666. },
  34667. {
  34668. name: "Planet Hugger",
  34669. height: math.unit(200, "megameters")
  34670. },
  34671. {
  34672. name: "Unreasonably Big",
  34673. height: math.unit(1e300, "meters")
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34679. {
  34680. solgooleo: {
  34681. height: math.unit(4, "meters"),
  34682. weight: math.unit(6000*1.5, "kg"),
  34683. volume: math.unit(6000, "liters"),
  34684. name: "Solgooleo",
  34685. image: {
  34686. source: "./media/characters/pi/solgooleo.svg",
  34687. extra: 388/331,
  34688. bottom: 29/417
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(4, "meters"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(8, "feet"),
  34705. weight: math.unit(4, "tons"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/shaun/front.svg",
  34709. extra: 503/495,
  34710. bottom: 20/523
  34711. }
  34712. },
  34713. back: {
  34714. height: math.unit(8, "feet"),
  34715. weight: math.unit(4, "tons"),
  34716. name: "Back",
  34717. image: {
  34718. source: "./media/characters/shaun/back.svg",
  34719. extra: 487/480,
  34720. bottom: 20/507
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Lorg",
  34727. height: math.unit(8, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34734. {
  34735. frontAnthro: {
  34736. height: math.unit(7, "feet"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/sini/front-anthro.svg",
  34740. extra: 726/678,
  34741. bottom: 35/761
  34742. },
  34743. form: "anthro",
  34744. default: true
  34745. },
  34746. backAnthro: {
  34747. height: math.unit(7, "feet"),
  34748. name: "Back",
  34749. image: {
  34750. source: "./media/characters/sini/back-anthro.svg",
  34751. extra: 743/701,
  34752. bottom: 12/755
  34753. },
  34754. form: "anthro",
  34755. },
  34756. frontAnthroNsfw: {
  34757. height: math.unit(7, "feet"),
  34758. name: "Front (NSFW)",
  34759. image: {
  34760. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34761. extra: 726/678,
  34762. bottom: 35/761
  34763. },
  34764. form: "anthro"
  34765. },
  34766. backAnthroNsfw: {
  34767. height: math.unit(7, "feet"),
  34768. name: "Back (NSFW)",
  34769. image: {
  34770. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34771. extra: 743/701,
  34772. bottom: 12/755
  34773. },
  34774. form: "anthro",
  34775. },
  34776. mawAnthro: {
  34777. height: math.unit(2.14, "feet"),
  34778. name: "Maw",
  34779. image: {
  34780. source: "./media/characters/sini/maw-anthro.svg"
  34781. },
  34782. form: "anthro"
  34783. },
  34784. dick: {
  34785. height: math.unit(1.45, "feet"),
  34786. name: "Dick",
  34787. image: {
  34788. source: "./media/characters/sini/dick-anthro.svg"
  34789. },
  34790. form: "anthro"
  34791. },
  34792. feral: {
  34793. height: math.unit(16, "feet"),
  34794. name: "Feral",
  34795. image: {
  34796. source: "./media/characters/sini/feral.svg",
  34797. extra: 814/605,
  34798. bottom: 11/825
  34799. },
  34800. form: "feral",
  34801. default: true
  34802. },
  34803. feralNsfw: {
  34804. height: math.unit(16, "feet"),
  34805. name: "Feral (NSFW)",
  34806. image: {
  34807. source: "./media/characters/sini/feral-nsfw.svg",
  34808. extra: 814/605,
  34809. bottom: 11/825
  34810. },
  34811. form: "feral"
  34812. },
  34813. mawFeral: {
  34814. height: math.unit(5.66, "feet"),
  34815. name: "Maw",
  34816. image: {
  34817. source: "./media/characters/sini/maw-feral.svg"
  34818. },
  34819. form: "feral",
  34820. },
  34821. pawFeral: {
  34822. height: math.unit(5.17, "feet"),
  34823. name: "Paw",
  34824. image: {
  34825. source: "./media/characters/sini/paw-feral.svg"
  34826. },
  34827. form: "feral",
  34828. },
  34829. rumpFeral: {
  34830. height: math.unit(13.11, "feet"),
  34831. name: "Rump",
  34832. image: {
  34833. source: "./media/characters/sini/rump-feral.svg"
  34834. },
  34835. form: "feral",
  34836. },
  34837. dickFeral: {
  34838. height: math.unit(1, "feet"),
  34839. name: "Dick",
  34840. image: {
  34841. source: "./media/characters/sini/dick-feral.svg"
  34842. },
  34843. form: "feral",
  34844. },
  34845. eyeFeral: {
  34846. height: math.unit(1.23, "feet"),
  34847. name: "Eye",
  34848. image: {
  34849. source: "./media/characters/sini/eye-feral.svg"
  34850. },
  34851. form: "feral",
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(7, "feet"),
  34858. default: true,
  34859. form: "anthro"
  34860. },
  34861. {
  34862. name: "Normal",
  34863. height: math.unit(16, "feet"),
  34864. default: true,
  34865. form: "feral"
  34866. },
  34867. ],
  34868. {
  34869. "anthro": {
  34870. name: "Anthro",
  34871. default: true
  34872. },
  34873. "feral": {
  34874. name: "Feral",
  34875. }
  34876. }
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34880. {
  34881. side: {
  34882. height: math.unit(47.2, "meters"),
  34883. weight: math.unit(10000, "tons"),
  34884. name: "Side",
  34885. image: {
  34886. source: "./media/characters/raylldo/side.svg",
  34887. extra: 2363/642,
  34888. bottom: 221/2584
  34889. }
  34890. },
  34891. top: {
  34892. height: math.unit(240, "meters"),
  34893. weight: math.unit(10000, "tons"),
  34894. name: "Top",
  34895. image: {
  34896. source: "./media/characters/raylldo/top.svg"
  34897. }
  34898. },
  34899. bottom: {
  34900. height: math.unit(240, "meters"),
  34901. weight: math.unit(10000, "tons"),
  34902. name: "Bottom",
  34903. image: {
  34904. source: "./media/characters/raylldo/bottom.svg"
  34905. }
  34906. },
  34907. head: {
  34908. height: math.unit(38.6, "meters"),
  34909. name: "Head",
  34910. image: {
  34911. source: "./media/characters/raylldo/head.svg",
  34912. extra: 1335/1112,
  34913. bottom: 0/1335
  34914. }
  34915. },
  34916. maw: {
  34917. height: math.unit(16.37, "meters"),
  34918. name: "Maw",
  34919. image: {
  34920. source: "./media/characters/raylldo/maw.svg",
  34921. extra: 883/660,
  34922. bottom: 0/883
  34923. },
  34924. extraAttributes: {
  34925. preyCapacity: {
  34926. name: "Capacity",
  34927. power: 3,
  34928. type: "volume",
  34929. base: math.unit(1000, "people")
  34930. },
  34931. tongueSize: {
  34932. name: "Tongue Size",
  34933. power: 2,
  34934. type: "area",
  34935. base: math.unit(21, "m^2")
  34936. }
  34937. }
  34938. },
  34939. forepaw: {
  34940. height: math.unit(18, "meters"),
  34941. name: "Forepaw",
  34942. image: {
  34943. source: "./media/characters/raylldo/forepaw.svg"
  34944. }
  34945. },
  34946. hindpaw: {
  34947. height: math.unit(23, "meters"),
  34948. name: "Hindpaw",
  34949. image: {
  34950. source: "./media/characters/raylldo/hindpaw.svg"
  34951. }
  34952. },
  34953. genitals: {
  34954. height: math.unit(42, "meters"),
  34955. name: "Genitals",
  34956. image: {
  34957. source: "./media/characters/raylldo/genitals.svg"
  34958. }
  34959. },
  34960. },
  34961. [
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(47.2, "meters"),
  34965. default: true
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34971. {
  34972. anthroFront: {
  34973. height: math.unit(9, "feet"),
  34974. weight: math.unit(600, "lb"),
  34975. name: "Anthro (Front)",
  34976. image: {
  34977. source: "./media/characters/glint/anthro-front.svg",
  34978. extra: 1097/1018,
  34979. bottom: 28/1125
  34980. }
  34981. },
  34982. anthroBack: {
  34983. height: math.unit(9, "feet"),
  34984. weight: math.unit(600, "lb"),
  34985. name: "Anthro (Back)",
  34986. image: {
  34987. source: "./media/characters/glint/anthro-back.svg",
  34988. extra: 1154/997,
  34989. bottom: 36/1190
  34990. }
  34991. },
  34992. feral: {
  34993. height: math.unit(11, "feet"),
  34994. weight: math.unit(50000, "lb"),
  34995. name: "Feral",
  34996. image: {
  34997. source: "./media/characters/glint/feral.svg",
  34998. extra: 3035/1585,
  34999. bottom: 1169/4204
  35000. }
  35001. },
  35002. dickAnthro: {
  35003. height: math.unit(0.7, "meters"),
  35004. name: "Dick (Anthro)",
  35005. image: {
  35006. source: "./media/characters/glint/dick-anthro.svg"
  35007. }
  35008. },
  35009. dickFeral: {
  35010. height: math.unit(2.65, "meters"),
  35011. name: "Dick (Feral)",
  35012. image: {
  35013. source: "./media/characters/glint/dick-feral.svg"
  35014. }
  35015. },
  35016. slitHidden: {
  35017. height: math.unit(5.85, "meters"),
  35018. name: "Slit (Hidden)",
  35019. image: {
  35020. source: "./media/characters/glint/slit-hidden.svg"
  35021. }
  35022. },
  35023. slitErect: {
  35024. height: math.unit(5.85, "meters"),
  35025. name: "Slit (Erect)",
  35026. image: {
  35027. source: "./media/characters/glint/slit-erect.svg"
  35028. }
  35029. },
  35030. mawAnthro: {
  35031. height: math.unit(0.63, "meters"),
  35032. name: "Maw (Anthro)",
  35033. image: {
  35034. source: "./media/characters/glint/maw.svg"
  35035. }
  35036. },
  35037. mawFeral: {
  35038. height: math.unit(2.89, "meters"),
  35039. name: "Maw (Feral)",
  35040. image: {
  35041. source: "./media/characters/glint/maw.svg"
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(9, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35055. {
  35056. side: {
  35057. height: math.unit(15, "feet"),
  35058. weight: math.unit(5000, "kg"),
  35059. name: "Side",
  35060. image: {
  35061. source: "./media/characters/kairne/side.svg",
  35062. extra: 979/811,
  35063. bottom: 13/992
  35064. }
  35065. },
  35066. front: {
  35067. height: math.unit(15, "feet"),
  35068. weight: math.unit(5000, "kg"),
  35069. name: "Front",
  35070. image: {
  35071. source: "./media/characters/kairne/front.svg",
  35072. extra: 908/814,
  35073. bottom: 26/934
  35074. }
  35075. },
  35076. sideNsfw: {
  35077. height: math.unit(15, "feet"),
  35078. weight: math.unit(5000, "kg"),
  35079. name: "Side (NSFW)",
  35080. image: {
  35081. source: "./media/characters/kairne/side-nsfw.svg",
  35082. extra: 979/811,
  35083. bottom: 13/992
  35084. }
  35085. },
  35086. frontNsfw: {
  35087. height: math.unit(15, "feet"),
  35088. weight: math.unit(5000, "kg"),
  35089. name: "Front (NSFW)",
  35090. image: {
  35091. source: "./media/characters/kairne/front-nsfw.svg",
  35092. extra: 908/814,
  35093. bottom: 26/934
  35094. }
  35095. },
  35096. dickCaged: {
  35097. height: math.unit(0.65, "meters"),
  35098. name: "Dick-caged",
  35099. image: {
  35100. source: "./media/characters/kairne/dick-caged.svg"
  35101. }
  35102. },
  35103. dick: {
  35104. height: math.unit(0.79, "meters"),
  35105. name: "Dick",
  35106. image: {
  35107. source: "./media/characters/kairne/dick.svg"
  35108. }
  35109. },
  35110. genitals: {
  35111. height: math.unit(1.29, "meters"),
  35112. name: "Genitals",
  35113. image: {
  35114. source: "./media/characters/kairne/genitals.svg"
  35115. }
  35116. },
  35117. maw: {
  35118. height: math.unit(1.73, "meters"),
  35119. name: "Maw",
  35120. image: {
  35121. source: "./media/characters/kairne/maw.svg"
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(15, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(5 + 8/12, "feet"),
  35138. weight: math.unit(139, "lb"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/biscuit-jackal/front.svg",
  35142. extra: 2106/1961,
  35143. bottom: 58/2164
  35144. }
  35145. },
  35146. back: {
  35147. height: math.unit(5 + 8/12, "feet"),
  35148. weight: math.unit(139, "lb"),
  35149. name: "Back",
  35150. image: {
  35151. source: "./media/characters/biscuit-jackal/back.svg",
  35152. extra: 2132/1976,
  35153. bottom: 57/2189
  35154. }
  35155. },
  35156. werejackal: {
  35157. height: math.unit(6 + 3/12, "feet"),
  35158. weight: math.unit(188, "lb"),
  35159. name: "Werejackal",
  35160. image: {
  35161. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35162. extra: 2373/2178,
  35163. bottom: 53/2426
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(5 + 8/12, "feet"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(140, "cm"),
  35180. weight: math.unit(45, "kg"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/tayra-white/front.svg",
  35184. extra: 2229/2192,
  35185. bottom: 75/2304
  35186. }
  35187. },
  35188. },
  35189. [
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(140, "cm"),
  35193. default: true
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35199. {
  35200. front: {
  35201. height: math.unit(4 + 5/12, "feet"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/scoop/front.svg",
  35205. extra: 1257/1136,
  35206. bottom: 69/1326
  35207. }
  35208. },
  35209. back: {
  35210. height: math.unit(4 + 5/12, "feet"),
  35211. name: "Back",
  35212. image: {
  35213. source: "./media/characters/scoop/back.svg",
  35214. extra: 1321/1152,
  35215. bottom: 32/1353
  35216. }
  35217. },
  35218. maw: {
  35219. height: math.unit(0.68, "feet"),
  35220. name: "Maw",
  35221. image: {
  35222. source: "./media/characters/scoop/maw.svg"
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Really Small",
  35229. height: math.unit(1, "mm")
  35230. },
  35231. {
  35232. name: "Micro",
  35233. height: math.unit(1, "inch")
  35234. },
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(4 + 5/12, "feet"),
  35238. default: true
  35239. },
  35240. {
  35241. name: "Macro",
  35242. height: math.unit(200, "feet")
  35243. },
  35244. {
  35245. name: "Megamacro",
  35246. height: math.unit(3240, "feet")
  35247. },
  35248. {
  35249. name: "Teramacro",
  35250. height: math.unit(2500, "miles")
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(15 + 7/12, "feet"),
  35259. weight: math.unit(1150, "tons"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/saphinara/front.svg",
  35263. extra: 1837/1643,
  35264. bottom: 84/1921
  35265. },
  35266. form: "normal",
  35267. default: true
  35268. },
  35269. side: {
  35270. height: math.unit(15 + 7/12, "feet"),
  35271. weight: math.unit(1150, "tons"),
  35272. name: "Side",
  35273. image: {
  35274. source: "./media/characters/saphinara/side.svg",
  35275. extra: 605/547,
  35276. bottom: 6/611
  35277. },
  35278. form: "normal"
  35279. },
  35280. back: {
  35281. height: math.unit(15 + 7/12, "feet"),
  35282. weight: math.unit(1150, "tons"),
  35283. name: "Back",
  35284. image: {
  35285. source: "./media/characters/saphinara/back.svg",
  35286. extra: 591/531,
  35287. bottom: 13/604
  35288. },
  35289. form: "normal"
  35290. },
  35291. frontTail: {
  35292. height: math.unit(15 + 7/12, "feet"),
  35293. weight: math.unit(1150, "tons"),
  35294. name: "Front (Full Tail)",
  35295. image: {
  35296. source: "./media/characters/saphinara/front-tail.svg",
  35297. extra: 2256/1630,
  35298. bottom: 261/2517
  35299. },
  35300. form: "normal"
  35301. },
  35302. insides: {
  35303. height: math.unit(11.92, "feet"),
  35304. name: "Insides",
  35305. image: {
  35306. source: "./media/characters/saphinara/insides.svg"
  35307. },
  35308. form: "normal"
  35309. },
  35310. head: {
  35311. height: math.unit(4.17, "feet"),
  35312. name: "Head",
  35313. image: {
  35314. source: "./media/characters/saphinara/head.svg"
  35315. },
  35316. form: "normal"
  35317. },
  35318. tongue: {
  35319. height: math.unit(4.60, "feet"),
  35320. name: "Tongue",
  35321. image: {
  35322. source: "./media/characters/saphinara/tongue.svg"
  35323. },
  35324. form: "normal"
  35325. },
  35326. headEnraged: {
  35327. height: math.unit(5.55, "feet"),
  35328. name: "Head (Enraged)",
  35329. image: {
  35330. source: "./media/characters/saphinara/head-enraged.svg"
  35331. },
  35332. form: "normal"
  35333. },
  35334. wings: {
  35335. height: math.unit(11.95, "feet"),
  35336. name: "Wings",
  35337. image: {
  35338. source: "./media/characters/saphinara/wings.svg"
  35339. },
  35340. form: "normal"
  35341. },
  35342. feathers: {
  35343. height: math.unit(8.92, "feet"),
  35344. name: "Feathers",
  35345. image: {
  35346. source: "./media/characters/saphinara/feathers.svg"
  35347. },
  35348. form: "normal"
  35349. },
  35350. shackles: {
  35351. height: math.unit(2, "feet"),
  35352. name: "Shackles",
  35353. image: {
  35354. source: "./media/characters/saphinara/shackles.svg"
  35355. },
  35356. form: "normal"
  35357. },
  35358. eyes: {
  35359. height: math.unit(1.331, "feet"),
  35360. name: "Eyes",
  35361. image: {
  35362. source: "./media/characters/saphinara/eyes.svg"
  35363. },
  35364. form: "normal"
  35365. },
  35366. eyesEnraged: {
  35367. height: math.unit(1.331, "feet"),
  35368. name: "Eyes (Enraged)",
  35369. image: {
  35370. source: "./media/characters/saphinara/eyes-enraged.svg"
  35371. },
  35372. form: "normal"
  35373. },
  35374. trueFormSide: {
  35375. height: math.unit(200, "feet"),
  35376. weight: math.unit(1e7, "tons"),
  35377. name: "Side",
  35378. image: {
  35379. source: "./media/characters/saphinara/true-form-side.svg",
  35380. extra: 1399/770,
  35381. bottom: 97/1496
  35382. },
  35383. form: "true-form",
  35384. default: true
  35385. },
  35386. trueFormMaw: {
  35387. height: math.unit(71.5, "feet"),
  35388. name: "Maw",
  35389. image: {
  35390. source: "./media/characters/saphinara/true-form-maw.svg",
  35391. extra: 2302/1453,
  35392. bottom: 0/2302
  35393. },
  35394. form: "true-form"
  35395. },
  35396. meowberusSide: {
  35397. height: math.unit(75, "feet"),
  35398. weight: math.unit(180000, "kg"),
  35399. preyCapacity: math.unit(50000, "people"),
  35400. name: "Side",
  35401. image: {
  35402. source: "./media/characters/saphinara/meowberus-side.svg",
  35403. extra: 1400/711,
  35404. bottom: 126/1526
  35405. },
  35406. form: "meowberus",
  35407. extraAttributes: {
  35408. "pawArea": {
  35409. name: "Paw Size",
  35410. power: 2,
  35411. type: "area",
  35412. base: math.unit(35, "m^2")
  35413. }
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(15 + 7/12, "feet"),
  35421. default: true,
  35422. form: "normal"
  35423. },
  35424. {
  35425. name: "Angry",
  35426. height: math.unit(30 + 6/12, "feet"),
  35427. form: "normal"
  35428. },
  35429. {
  35430. name: "Enraged",
  35431. height: math.unit(102 + 1/12, "feet"),
  35432. form: "normal"
  35433. },
  35434. {
  35435. name: "True",
  35436. height: math.unit(200, "feet"),
  35437. default: true,
  35438. form: "true-form"
  35439. },
  35440. {
  35441. name: "Normal",
  35442. height: math.unit(75, "feet"),
  35443. default: true,
  35444. form: "meowberus"
  35445. },
  35446. ],
  35447. {
  35448. "normal": {
  35449. name: "Normal",
  35450. default: true
  35451. },
  35452. "true-form": {
  35453. name: "True Form"
  35454. },
  35455. "meowberus": {
  35456. name: "Meowberus",
  35457. },
  35458. }
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(6 + 8/12, "feet"),
  35465. weight: math.unit(300, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/jrain/front.svg",
  35469. extra: 3039/2865,
  35470. bottom: 399/3438
  35471. }
  35472. },
  35473. back: {
  35474. height: math.unit(6 + 8/12, "feet"),
  35475. weight: math.unit(300, "lb"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/jrain/back.svg",
  35479. extra: 3089/2938,
  35480. bottom: 172/3261
  35481. }
  35482. },
  35483. head: {
  35484. height: math.unit(2.14, "feet"),
  35485. name: "Head",
  35486. image: {
  35487. source: "./media/characters/jrain/head.svg"
  35488. }
  35489. },
  35490. maw: {
  35491. height: math.unit(1.77, "feet"),
  35492. name: "Maw",
  35493. image: {
  35494. source: "./media/characters/jrain/maw.svg"
  35495. }
  35496. },
  35497. leftHand: {
  35498. height: math.unit(1.1, "feet"),
  35499. name: "Left Hand",
  35500. image: {
  35501. source: "./media/characters/jrain/left-hand.svg"
  35502. }
  35503. },
  35504. rightHand: {
  35505. height: math.unit(1.1, "feet"),
  35506. name: "Right Hand",
  35507. image: {
  35508. source: "./media/characters/jrain/right-hand.svg"
  35509. }
  35510. },
  35511. eye: {
  35512. height: math.unit(0.35, "feet"),
  35513. name: "Eye",
  35514. image: {
  35515. source: "./media/characters/jrain/eye.svg"
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(6 + 8/12, "feet"),
  35523. default: true
  35524. },
  35525. {
  35526. name: "Casually Large",
  35527. height: math.unit(25, "feet")
  35528. },
  35529. {
  35530. name: "Giant",
  35531. height: math.unit(100, "feet")
  35532. },
  35533. {
  35534. name: "Kaiju",
  35535. height: math.unit(300, "feet")
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35541. {
  35542. dragon: {
  35543. height: math.unit(5, "meters"),
  35544. name: "Dragon",
  35545. image: {
  35546. source: "./media/characters/sabrina/dragon.svg",
  35547. extra: 3670 / 2365,
  35548. bottom: 333 / 4003
  35549. }
  35550. },
  35551. gryphon: {
  35552. height: math.unit(3, "meters"),
  35553. name: "Gryphon",
  35554. image: {
  35555. source: "./media/characters/sabrina/gryphon.svg",
  35556. extra: 1576 / 945,
  35557. bottom: 71 / 1647
  35558. }
  35559. },
  35560. snake: {
  35561. height: math.unit(12, "meters"),
  35562. name: "Snake",
  35563. image: {
  35564. source: "./media/characters/sabrina/snake.svg",
  35565. extra: 1758 / 1320,
  35566. bottom: 186 / 1944
  35567. }
  35568. },
  35569. collar: {
  35570. height: math.unit(1.86, "meters"),
  35571. name: "Collar",
  35572. image: {
  35573. source: "./media/characters/sabrina/collar.svg"
  35574. }
  35575. },
  35576. eye: {
  35577. height: math.unit(0.53, "meters"),
  35578. name: "Eye",
  35579. image: {
  35580. source: "./media/characters/sabrina/eye.svg"
  35581. }
  35582. },
  35583. foot: {
  35584. height: math.unit(1.86, "meters"),
  35585. name: "Foot",
  35586. image: {
  35587. source: "./media/characters/sabrina/foot.svg"
  35588. }
  35589. },
  35590. hand: {
  35591. height: math.unit(1.32, "meters"),
  35592. name: "Hand",
  35593. image: {
  35594. source: "./media/characters/sabrina/hand.svg"
  35595. }
  35596. },
  35597. head: {
  35598. height: math.unit(2.44, "meters"),
  35599. name: "Head",
  35600. image: {
  35601. source: "./media/characters/sabrina/head.svg"
  35602. }
  35603. },
  35604. headAngry: {
  35605. height: math.unit(2.44, "meters"),
  35606. name: "Head (Angry))",
  35607. image: {
  35608. source: "./media/characters/sabrina/head-angry.svg"
  35609. }
  35610. },
  35611. maw: {
  35612. height: math.unit(1.65, "meters"),
  35613. name: "Maw",
  35614. image: {
  35615. source: "./media/characters/sabrina/maw.svg"
  35616. }
  35617. },
  35618. spikes: {
  35619. height: math.unit(1.69, "meters"),
  35620. name: "Spikes",
  35621. image: {
  35622. source: "./media/characters/sabrina/spikes.svg"
  35623. }
  35624. },
  35625. stomach: {
  35626. height: math.unit(1.15, "meters"),
  35627. name: "Stomach",
  35628. image: {
  35629. source: "./media/characters/sabrina/stomach.svg"
  35630. }
  35631. },
  35632. tongue: {
  35633. height: math.unit(1.27, "meters"),
  35634. name: "Tongue",
  35635. image: {
  35636. source: "./media/characters/sabrina/tongue.svg"
  35637. }
  35638. },
  35639. wingDorsal: {
  35640. height: math.unit(4.85, "meters"),
  35641. name: "Wing (Dorsal)",
  35642. image: {
  35643. source: "./media/characters/sabrina/wing-dorsal.svg"
  35644. }
  35645. },
  35646. wingVentral: {
  35647. height: math.unit(4.85, "meters"),
  35648. name: "Wing (Ventral)",
  35649. image: {
  35650. source: "./media/characters/sabrina/wing-ventral.svg"
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(5, "meters"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35664. {
  35665. frontMaid: {
  35666. height: math.unit(5 + 5/12, "feet"),
  35667. weight: math.unit(130, "lb"),
  35668. name: "Front (Maid)",
  35669. image: {
  35670. source: "./media/characters/midnight-tales/front-maid.svg",
  35671. extra: 489/454,
  35672. bottom: 61/550
  35673. }
  35674. },
  35675. frontFormal: {
  35676. height: math.unit(5 + 5/12, "feet"),
  35677. weight: math.unit(130, "lb"),
  35678. name: "Front (Formal)",
  35679. image: {
  35680. source: "./media/characters/midnight-tales/front-formal.svg",
  35681. extra: 489/454,
  35682. bottom: 61/550
  35683. }
  35684. },
  35685. back: {
  35686. height: math.unit(5 + 5/12, "feet"),
  35687. weight: math.unit(130, "lb"),
  35688. name: "Back",
  35689. image: {
  35690. source: "./media/characters/midnight-tales/back.svg",
  35691. extra: 498/456,
  35692. bottom: 33/531
  35693. }
  35694. },
  35695. frontBeast: {
  35696. height: math.unit(40, "feet"),
  35697. weight: math.unit(64000, "lb"),
  35698. name: "Front (Beast)",
  35699. image: {
  35700. source: "./media/characters/midnight-tales/front-beast.svg",
  35701. extra: 927/860,
  35702. bottom: 53/980
  35703. }
  35704. },
  35705. backBeast: {
  35706. height: math.unit(40, "feet"),
  35707. weight: math.unit(64000, "lb"),
  35708. name: "Back (Beast)",
  35709. image: {
  35710. source: "./media/characters/midnight-tales/back-beast.svg",
  35711. extra: 929/855,
  35712. bottom: 16/945
  35713. }
  35714. },
  35715. footBeast: {
  35716. height: math.unit(6.7, "feet"),
  35717. name: "Foot (Beast)",
  35718. image: {
  35719. source: "./media/characters/midnight-tales/foot-beast.svg"
  35720. }
  35721. },
  35722. headBeast: {
  35723. height: math.unit(8, "feet"),
  35724. name: "Head (Beast)",
  35725. image: {
  35726. source: "./media/characters/midnight-tales/head-beast.svg"
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(5 + 5 / 12, "feet"),
  35734. default: true
  35735. },
  35736. {
  35737. name: "Macro",
  35738. height: math.unit(25, "feet")
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(5 + 10/12, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/argon/front.svg",
  35750. extra: 2009/1935,
  35751. bottom: 118/2127
  35752. }
  35753. },
  35754. back: {
  35755. height: math.unit(5 + 10/12, "feet"),
  35756. name: "Back",
  35757. image: {
  35758. source: "./media/characters/argon/back.svg",
  35759. extra: 2047/1992,
  35760. bottom: 20/2067
  35761. }
  35762. },
  35763. frontDressed: {
  35764. height: math.unit(5 + 10/12, "feet"),
  35765. name: "Front (Dressed)",
  35766. image: {
  35767. source: "./media/characters/argon/front-dressed.svg",
  35768. extra: 2009/1935,
  35769. bottom: 118/2127
  35770. }
  35771. },
  35772. },
  35773. [
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(5 + 10/12, "feet"),
  35777. default: true
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35783. {
  35784. front: {
  35785. height: math.unit(8 + 6/12, "feet"),
  35786. weight: math.unit(1150, "lb"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/kichi/front.svg",
  35790. extra: 1267/1164,
  35791. bottom: 61/1328
  35792. }
  35793. },
  35794. back: {
  35795. height: math.unit(8 + 6/12, "feet"),
  35796. weight: math.unit(1150, "lb"),
  35797. name: "Back",
  35798. image: {
  35799. source: "./media/characters/kichi/back.svg",
  35800. extra: 1273/1166,
  35801. bottom: 33/1306
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(8 + 6/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(6, "feet"),
  35818. weight: math.unit(210, "lb"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/manetel-greyscale/front.svg",
  35822. extra: 350/312,
  35823. bottom: 8/358
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Micro",
  35830. height: math.unit(2, "inches")
  35831. },
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(6, "feet"),
  35835. default: true
  35836. },
  35837. {
  35838. name: "Minimacro",
  35839. height: math.unit(17, "feet")
  35840. },
  35841. {
  35842. name: "Macro",
  35843. height: math.unit(117, "feet")
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35849. {
  35850. side: {
  35851. height: math.unit(5 + 1/12, "feet"),
  35852. weight: math.unit(418, "lb"),
  35853. name: "Side",
  35854. image: {
  35855. source: "./media/characters/softpurr/side.svg",
  35856. extra: 1993/1945,
  35857. bottom: 134/2127
  35858. }
  35859. },
  35860. front: {
  35861. height: math.unit(5 + 1/12, "feet"),
  35862. weight: math.unit(418, "lb"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/softpurr/front.svg",
  35866. extra: 1950/1856,
  35867. bottom: 174/2124
  35868. }
  35869. },
  35870. paw: {
  35871. height: math.unit(1, "feet"),
  35872. name: "Paw",
  35873. image: {
  35874. source: "./media/characters/softpurr/paw.svg"
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(5 + 1/12, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35888. {
  35889. front: {
  35890. height: math.unit(260, "meters"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/anahita/front.svg",
  35894. extra: 665/635,
  35895. bottom: 89/754
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Macro",
  35902. height: math.unit(260, "meters"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(4 + 10/12, "feet"),
  35912. weight: math.unit(160, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/chip-mouse/front.svg",
  35916. extra: 3528/3408,
  35917. bottom: 0/3528
  35918. }
  35919. },
  35920. frontNsfw: {
  35921. height: math.unit(4 + 10/12, "feet"),
  35922. weight: math.unit(160, "lb"),
  35923. name: "Front (NSFW)",
  35924. image: {
  35925. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35926. extra: 3528/3408,
  35927. bottom: 0/3528
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(4 + 10/12, "feet"),
  35935. default: true
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35941. {
  35942. side: {
  35943. height: math.unit(10, "feet"),
  35944. weight: math.unit(14000, "lb"),
  35945. name: "Side",
  35946. image: {
  35947. source: "./media/characters/kremm/side.svg",
  35948. extra: 1390/1053,
  35949. bottom: 90/1480
  35950. }
  35951. },
  35952. gut: {
  35953. height: math.unit(5.8, "feet"),
  35954. name: "Gut",
  35955. image: {
  35956. source: "./media/characters/kremm/gut.svg"
  35957. }
  35958. },
  35959. ass: {
  35960. height: math.unit(6.1, "feet"),
  35961. name: "Ass",
  35962. image: {
  35963. source: "./media/characters/kremm/ass.svg"
  35964. }
  35965. },
  35966. jaws: {
  35967. height: math.unit(2.2, "feet"),
  35968. name: "Jaws",
  35969. image: {
  35970. source: "./media/characters/kremm/jaws.svg"
  35971. }
  35972. },
  35973. dick: {
  35974. height: math.unit(4.26, "feet"),
  35975. name: "Dick",
  35976. image: {
  35977. source: "./media/characters/kremm/dick.svg"
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(10, "feet"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(30, "stories"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/kai/front.svg",
  35997. extra: 1892/1718,
  35998. bottom: 162/2054
  35999. }
  36000. },
  36001. },
  36002. [
  36003. {
  36004. name: "Macro",
  36005. height: math.unit(30, "stories"),
  36006. default: true
  36007. },
  36008. ]
  36009. ))
  36010. characterMakers.push(() => makeCharacter(
  36011. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36012. {
  36013. front: {
  36014. height: math.unit(6 + 4/12, "feet"),
  36015. weight: math.unit(145, "lb"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/sykes/front.svg",
  36019. extra: 1321 / 1187,
  36020. bottom: 66 / 1387
  36021. }
  36022. },
  36023. back: {
  36024. height: math.unit(6 + 4/12, "feet"),
  36025. weight: math.unit(145, "lb"),
  36026. name: "Back",
  36027. image: {
  36028. source: "./media/characters/sykes/back.svg",
  36029. extra: 1326/1181,
  36030. bottom: 31/1357
  36031. }
  36032. },
  36033. traditionalOutfit: {
  36034. height: math.unit(6 + 4/12, "feet"),
  36035. weight: math.unit(145, "lb"),
  36036. name: "Traditional Outfit",
  36037. image: {
  36038. source: "./media/characters/sykes/traditional-outfit.svg",
  36039. extra: 1321 / 1187,
  36040. bottom: 66 / 1387
  36041. }
  36042. },
  36043. adventureOutfit: {
  36044. height: math.unit(6 + 4/12, "feet"),
  36045. weight: math.unit(145, "lb"),
  36046. name: "Adventure Outfit",
  36047. image: {
  36048. source: "./media/characters/sykes/adventure-outfit.svg",
  36049. extra: 1321 / 1187,
  36050. bottom: 66 / 1387
  36051. }
  36052. },
  36053. handLeft: {
  36054. height: math.unit(0.9, "feet"),
  36055. name: "Hand (Left)",
  36056. image: {
  36057. source: "./media/characters/sykes/hand-left.svg"
  36058. }
  36059. },
  36060. handRight: {
  36061. height: math.unit(0.839, "feet"),
  36062. name: "Hand (Right)",
  36063. image: {
  36064. source: "./media/characters/sykes/hand-right.svg"
  36065. }
  36066. },
  36067. leftFoot: {
  36068. height: math.unit(1.2, "feet"),
  36069. name: "Foot (Left)",
  36070. image: {
  36071. source: "./media/characters/sykes/foot-left.svg"
  36072. }
  36073. },
  36074. rightFoot: {
  36075. height: math.unit(1.2, "feet"),
  36076. name: "Foot (Right)",
  36077. image: {
  36078. source: "./media/characters/sykes/foot-right.svg"
  36079. }
  36080. },
  36081. maw: {
  36082. height: math.unit(1.93, "feet"),
  36083. name: "Maw",
  36084. image: {
  36085. source: "./media/characters/sykes/maw.svg"
  36086. }
  36087. },
  36088. teeth: {
  36089. height: math.unit(0.51, "feet"),
  36090. name: "Teeth",
  36091. image: {
  36092. source: "./media/characters/sykes/teeth.svg"
  36093. }
  36094. },
  36095. tongue: {
  36096. height: math.unit(2.13, "feet"),
  36097. name: "Tongue",
  36098. image: {
  36099. source: "./media/characters/sykes/tongue.svg"
  36100. }
  36101. },
  36102. uvula: {
  36103. height: math.unit(0.16, "feet"),
  36104. name: "Uvula",
  36105. image: {
  36106. source: "./media/characters/sykes/uvula.svg"
  36107. }
  36108. },
  36109. collar: {
  36110. height: math.unit(0.287, "feet"),
  36111. name: "Collar",
  36112. image: {
  36113. source: "./media/characters/sykes/collar.svg"
  36114. }
  36115. },
  36116. tail: {
  36117. height: math.unit(3.8, "feet"),
  36118. name: "Tail",
  36119. image: {
  36120. source: "./media/characters/sykes/tail.svg"
  36121. }
  36122. },
  36123. },
  36124. [
  36125. {
  36126. name: "Shrunken",
  36127. height: math.unit(5, "inches")
  36128. },
  36129. {
  36130. name: "Normal",
  36131. height: math.unit(6 + 4 / 12, "feet"),
  36132. default: true
  36133. },
  36134. {
  36135. name: "Big",
  36136. height: math.unit(15, "feet")
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(5 + 8/12, "feet"),
  36145. weight: math.unit(190, "lb"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/oven-otter/front.svg",
  36149. extra: 1809/1740,
  36150. bottom: 181/1990
  36151. }
  36152. },
  36153. back: {
  36154. height: math.unit(5 + 8/12, "feet"),
  36155. weight: math.unit(190, "lb"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/oven-otter/back.svg",
  36159. extra: 1709/1635,
  36160. bottom: 118/1827
  36161. }
  36162. },
  36163. hand: {
  36164. height: math.unit(1.07, "feet"),
  36165. name: "Hand",
  36166. image: {
  36167. source: "./media/characters/oven-otter/hand.svg"
  36168. }
  36169. },
  36170. beans: {
  36171. height: math.unit(1.74, "feet"),
  36172. name: "Beans",
  36173. image: {
  36174. source: "./media/characters/oven-otter/beans.svg"
  36175. }
  36176. },
  36177. },
  36178. [
  36179. {
  36180. name: "Micro",
  36181. height: math.unit(0.5, "inches")
  36182. },
  36183. {
  36184. name: "Normal",
  36185. height: math.unit(5 + 8/12, "feet"),
  36186. default: true
  36187. },
  36188. {
  36189. name: "Macro",
  36190. height: math.unit(250, "feet")
  36191. },
  36192. {
  36193. name: "Really High",
  36194. height: math.unit(420, "feet")
  36195. },
  36196. ]
  36197. ))
  36198. characterMakers.push(() => makeCharacter(
  36199. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36200. {
  36201. front: {
  36202. height: math.unit(5, "meters"),
  36203. weight: math.unit(292000000000000, "kg"),
  36204. name: "Front",
  36205. image: {
  36206. source: "./media/characters/devourer/front.svg",
  36207. extra: 1800/1733,
  36208. bottom: 211/2011
  36209. }
  36210. },
  36211. maw: {
  36212. height: math.unit(1.1, "meter"),
  36213. name: "Maw",
  36214. image: {
  36215. source: "./media/characters/devourer/maw.svg"
  36216. }
  36217. },
  36218. },
  36219. [
  36220. {
  36221. name: "Small",
  36222. height: math.unit(3, "meters")
  36223. },
  36224. {
  36225. name: "Large",
  36226. height: math.unit(5, "meters"),
  36227. default: true
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36233. {
  36234. front: {
  36235. height: math.unit(6, "feet"),
  36236. weight: math.unit(400, "lb"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/ellarby/front.svg",
  36240. extra: 1909/1763,
  36241. bottom: 80/1989
  36242. }
  36243. },
  36244. back: {
  36245. height: math.unit(6, "feet"),
  36246. weight: math.unit(400, "lb"),
  36247. name: "Back",
  36248. image: {
  36249. source: "./media/characters/ellarby/back.svg",
  36250. extra: 1914/1784,
  36251. bottom: 172/2086
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Mischief",
  36258. height: math.unit(18, "inches")
  36259. },
  36260. {
  36261. name: "Trouble",
  36262. height: math.unit(12, "feet")
  36263. },
  36264. {
  36265. name: "Havoc",
  36266. height: math.unit(200, "feet"),
  36267. default: true
  36268. },
  36269. {
  36270. name: "Pandemonium",
  36271. height: math.unit(1, "mile")
  36272. },
  36273. {
  36274. name: "Catastrophe",
  36275. height: math.unit(100, "miles")
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36281. {
  36282. front: {
  36283. height: math.unit(4.7, "meters"),
  36284. weight: math.unit(6500, "kg"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/vex/front.svg",
  36288. extra: 1288/1140,
  36289. bottom: 100/1388
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(4.7, "meters"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36303. {
  36304. normal: {
  36305. height: math.unit(6, "feet"),
  36306. weight: math.unit(350, "lb"),
  36307. name: "Normal",
  36308. image: {
  36309. source: "./media/characters/teshy/normal.svg",
  36310. extra: 1795/1735,
  36311. bottom: 16/1811
  36312. }
  36313. },
  36314. monsterFront: {
  36315. height: math.unit(12, "feet"),
  36316. weight: math.unit(4700, "lb"),
  36317. name: "Monster (Front)",
  36318. image: {
  36319. source: "./media/characters/teshy/monster-front.svg",
  36320. extra: 2042/2034,
  36321. bottom: 128/2170
  36322. }
  36323. },
  36324. monsterSide: {
  36325. height: math.unit(12, "feet"),
  36326. weight: math.unit(4700, "lb"),
  36327. name: "Monster (Side)",
  36328. image: {
  36329. source: "./media/characters/teshy/monster-side.svg",
  36330. extra: 2067/2056,
  36331. bottom: 70/2137
  36332. }
  36333. },
  36334. monsterBack: {
  36335. height: math.unit(12, "feet"),
  36336. weight: math.unit(4700, "lb"),
  36337. name: "Monster (Back)",
  36338. image: {
  36339. source: "./media/characters/teshy/monster-back.svg",
  36340. extra: 1921/1914,
  36341. bottom: 171/2092
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(6, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(6, "feet"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/ramey/front.svg",
  36361. extra: 790/787,
  36362. bottom: 27/817
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(6, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36376. {
  36377. front: {
  36378. height: math.unit(5 + 5/12, "feet"),
  36379. weight: math.unit(120, "lb"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/phirae/front.svg",
  36383. extra: 2491/2436,
  36384. bottom: 38/2529
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(5 + 5/12, "feet"),
  36392. default: true
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36398. {
  36399. front: {
  36400. height: math.unit(5 + 3/12, "feet"),
  36401. name: "Front",
  36402. image: {
  36403. source: "./media/characters/stagglas/front.svg",
  36404. extra: 962/882,
  36405. bottom: 53/1015
  36406. }
  36407. },
  36408. feral: {
  36409. height: math.unit(335, "cm"),
  36410. name: "Feral",
  36411. image: {
  36412. source: "./media/characters/stagglas/feral.svg",
  36413. extra: 1732/1090,
  36414. bottom: 48/1780
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 3/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(5 + 4/12, "feet"),
  36431. weight: math.unit(145, "lb"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/starra/front.svg",
  36435. extra: 1790/1691,
  36436. bottom: 91/1881
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(5 + 4/12, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(2.2, "meters"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36456. extra: 1248/972,
  36457. bottom: 38/1286
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(2.2, "meters"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36471. {
  36472. side: {
  36473. height: math.unit(8 + 2/12, "feet"),
  36474. weight: math.unit(1240, "lb"),
  36475. name: "Side",
  36476. image: {
  36477. source: "./media/characters/mika-valentine/side.svg",
  36478. extra: 2670/2501,
  36479. bottom: 250/2920
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(8 + 2/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36493. {
  36494. front: {
  36495. height: math.unit(7 + 2/12, "feet"),
  36496. name: "Front",
  36497. image: {
  36498. source: "./media/characters/xoltol/front.svg",
  36499. extra: 2212/2124,
  36500. bottom: 84/2296
  36501. }
  36502. },
  36503. side: {
  36504. height: math.unit(7 + 2/12, "feet"),
  36505. name: "Side",
  36506. image: {
  36507. source: "./media/characters/xoltol/side.svg",
  36508. extra: 2273/2197,
  36509. bottom: 26/2299
  36510. }
  36511. },
  36512. hand: {
  36513. height: math.unit(2.5, "feet"),
  36514. name: "Hand",
  36515. image: {
  36516. source: "./media/characters/xoltol/hand.svg"
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Small-ish",
  36523. height: math.unit(5 + 11/12, "feet")
  36524. },
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(7 + 2/12, "feet")
  36528. },
  36529. {
  36530. name: "\"Macro\"",
  36531. height: math.unit(14 + 9/12, "feet"),
  36532. default: true
  36533. },
  36534. {
  36535. name: "Alternate Height",
  36536. height: math.unit(20, "feet")
  36537. },
  36538. {
  36539. name: "Actually Macro",
  36540. height: math.unit(100, "feet")
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(5 + 2/12, "feet"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/kotetsu-redwood/front.svg",
  36552. extra: 1053/942,
  36553. bottom: 60/1113
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(5 + 2/12, "feet"),
  36561. default: true
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(2.4, "meters"),
  36570. weight: math.unit(125, "kg"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/lilith/front.svg",
  36574. extra: 1590/1513,
  36575. bottom: 203/1793
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Humanoid",
  36582. height: math.unit(2.4, "meters")
  36583. },
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(6, "meters"),
  36587. default: true
  36588. },
  36589. {
  36590. name: "Largest",
  36591. height: math.unit(55, "meters")
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(8 + 4/12, "feet"),
  36600. weight: math.unit(535, "lb"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/beh'kah-bolger/front.svg",
  36604. extra: 1660/1603,
  36605. bottom: 37/1697
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(8 + 4/12, "feet"),
  36613. default: true
  36614. },
  36615. {
  36616. name: "Kaiju",
  36617. height: math.unit(250, "feet")
  36618. },
  36619. {
  36620. name: "Still Growing",
  36621. height: math.unit(10, "miles")
  36622. },
  36623. {
  36624. name: "Continental",
  36625. height: math.unit(5000, "miles")
  36626. },
  36627. {
  36628. name: "Final Form",
  36629. height: math.unit(2500000, "miles")
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(7 + 2/12, "feet"),
  36638. weight: math.unit(230, "kg"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/tatyana-milewska/front.svg",
  36642. extra: 1199/1150,
  36643. bottom: 86/1285
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(7 + 2/12, "feet"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "Big",
  36655. height: math.unit(12, "feet")
  36656. },
  36657. {
  36658. name: "Minimacro",
  36659. height: math.unit(20, "feet")
  36660. },
  36661. {
  36662. name: "Macro",
  36663. height: math.unit(120, "feet")
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(7 + 8/12, "feet"),
  36672. weight: math.unit(152, "kg"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/helen-arri/front.svg",
  36676. extra: 440/423,
  36677. bottom: 14/454
  36678. }
  36679. },
  36680. back: {
  36681. height: math.unit(7 + 8/12, "feet"),
  36682. weight: math.unit(152, "kg"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/helen-arri/back.svg",
  36686. extra: 443/426,
  36687. bottom: 8/451
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Normal",
  36694. height: math.unit(7 + 8/12, "feet"),
  36695. default: true
  36696. },
  36697. {
  36698. name: "Big",
  36699. height: math.unit(14, "feet")
  36700. },
  36701. {
  36702. name: "Minimacro",
  36703. height: math.unit(24, "feet")
  36704. },
  36705. {
  36706. name: "Macro",
  36707. height: math.unit(140, "feet")
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(6, "meters"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/ehanu-rehu/front.svg",
  36719. extra: 1800/1800,
  36720. bottom: 59/1859
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(6, "meters"),
  36728. default: true
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36734. {
  36735. front: {
  36736. height: math.unit(7 + 3/12, "feet"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/renholder/front.svg",
  36740. extra: 3096/2960,
  36741. bottom: 250/3346
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal Bat",
  36748. height: math.unit(7 + 3/12, "feet"),
  36749. default: true
  36750. },
  36751. {
  36752. name: "Slightly Tall Bat",
  36753. height: math.unit(100, "feet")
  36754. },
  36755. {
  36756. name: "Big Bat",
  36757. height: math.unit(1000, "feet")
  36758. },
  36759. {
  36760. name: "City-Sized Bat",
  36761. height: math.unit(200000, "feet")
  36762. },
  36763. {
  36764. name: "Bigger Bat",
  36765. height: math.unit(10000, "miles")
  36766. },
  36767. {
  36768. name: "Solar Sized Bat",
  36769. height: math.unit(100, "AU")
  36770. },
  36771. {
  36772. name: "Galactic Bat",
  36773. height: math.unit(200000, "lightyears")
  36774. },
  36775. {
  36776. name: "Universally Known Bat",
  36777. height: math.unit(1, "universe")
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(6 + 11/12, "feet"),
  36786. weight: math.unit(250, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/cookiecat/front.svg",
  36790. extra: 893/827,
  36791. bottom: 14/907
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Micro",
  36798. height: math.unit(3, "inches")
  36799. },
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(6 + 11/12, "feet"),
  36803. default: true
  36804. },
  36805. {
  36806. name: "Macro",
  36807. height: math.unit(100, "feet")
  36808. },
  36809. {
  36810. name: "Macro+",
  36811. height: math.unit(404, "feet")
  36812. },
  36813. {
  36814. name: "Megamacro",
  36815. height: math.unit(165, "miles")
  36816. },
  36817. {
  36818. name: "Planetary",
  36819. height: math.unit(4600, "miles")
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(10 + 3/12, "feet"),
  36828. weight: math.unit(1500, "lb"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/tux-kusanagi/front.svg",
  36832. extra: 944/840,
  36833. bottom: 39/983
  36834. }
  36835. },
  36836. back: {
  36837. height: math.unit(10 + 3/12, "feet"),
  36838. weight: math.unit(1500, "lb"),
  36839. name: "Back",
  36840. image: {
  36841. source: "./media/characters/tux-kusanagi/back.svg",
  36842. extra: 941/842,
  36843. bottom: 28/969
  36844. }
  36845. },
  36846. rump: {
  36847. height: math.unit(5.25, "feet"),
  36848. name: "Rump",
  36849. image: {
  36850. source: "./media/characters/tux-kusanagi/rump.svg"
  36851. }
  36852. },
  36853. beak: {
  36854. height: math.unit(1.54, "feet"),
  36855. name: "Beak",
  36856. image: {
  36857. source: "./media/characters/tux-kusanagi/beak.svg"
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(10 + 3/12, "feet"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(58, "feet"),
  36874. weight: math.unit(200, "tons"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/uzarmazari/front.svg",
  36878. extra: 1575/1455,
  36879. bottom: 152/1727
  36880. }
  36881. },
  36882. back: {
  36883. height: math.unit(58, "feet"),
  36884. weight: math.unit(200, "tons"),
  36885. name: "Back",
  36886. image: {
  36887. source: "./media/characters/uzarmazari/back.svg",
  36888. extra: 1585/1510,
  36889. bottom: 157/1742
  36890. }
  36891. },
  36892. head: {
  36893. height: math.unit(26, "feet"),
  36894. name: "Head",
  36895. image: {
  36896. source: "./media/characters/uzarmazari/head.svg"
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(58, "feet"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36910. {
  36911. side: {
  36912. height: math.unit(15, "feet"),
  36913. name: "Side",
  36914. image: {
  36915. source: "./media/characters/akitu/side.svg",
  36916. extra: 1421/1321,
  36917. bottom: 157/1578
  36918. }
  36919. },
  36920. front: {
  36921. height: math.unit(15, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/akitu/front.svg",
  36925. extra: 1435/1326,
  36926. bottom: 232/1667
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(15, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36940. {
  36941. front: {
  36942. height: math.unit(10 + 8/12, "feet"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/azalie-croixland/front.svg",
  36946. extra: 1972/1856,
  36947. bottom: 31/2003
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Original Height",
  36954. height: math.unit(5 + 4/12, "feet")
  36955. },
  36956. {
  36957. name: "Normal Height",
  36958. height: math.unit(10 + 8/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36965. {
  36966. side: {
  36967. height: math.unit(7 + 1/12, "feet"),
  36968. weight: math.unit(245, "lb"),
  36969. name: "Side",
  36970. image: {
  36971. source: "./media/characters/kavus-kazian/side.svg",
  36972. extra: 349/342,
  36973. bottom: 15/364
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(7 + 1/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36987. {
  36988. normalFront: {
  36989. height: math.unit(5 + 11/12, "feet"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/moonlight-rose/normal-front.svg",
  36993. extra: 1980/1825,
  36994. bottom: 18/1998
  36995. },
  36996. form: "normal",
  36997. default: true
  36998. },
  36999. normalBack: {
  37000. height: math.unit(5 + 11/12, "feet"),
  37001. name: "Back",
  37002. image: {
  37003. source: "./media/characters/moonlight-rose/normal-back.svg",
  37004. extra: 2010/1839,
  37005. bottom: 10/2020
  37006. },
  37007. form: "normal"
  37008. },
  37009. demonFront: {
  37010. height: math.unit(1.5, "earths"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/moonlight-rose/demon.svg",
  37014. extra: 1400/1294,
  37015. bottom: 45/1445
  37016. },
  37017. form: "demon",
  37018. default: true
  37019. },
  37020. terraFront: {
  37021. height: math.unit(1.5, "earths"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/moonlight-rose/terra.svg"
  37025. },
  37026. form: "terra",
  37027. default: true
  37028. },
  37029. jupiterFront: {
  37030. height: math.unit(69911*2, "km"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37034. extra: 1367/1286,
  37035. bottom: 55/1422
  37036. },
  37037. form: "jupiter",
  37038. default: true
  37039. },
  37040. neptuneFront: {
  37041. height: math.unit(24622*2, "feet"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37045. extra: 1851/1712,
  37046. bottom: 0/1851
  37047. },
  37048. form: "neptune",
  37049. default: true
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "\"Natural\" Height",
  37055. height: math.unit(5 + 11/12, "feet"),
  37056. form: "normal"
  37057. },
  37058. {
  37059. name: "Smallest comfortable size",
  37060. height: math.unit(40, "meters"),
  37061. form: "normal"
  37062. },
  37063. {
  37064. name: "Common size",
  37065. height: math.unit(50, "km"),
  37066. form: "normal",
  37067. default: true
  37068. },
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(1.5, "earths"),
  37072. form: "demon",
  37073. default: true
  37074. },
  37075. {
  37076. name: "Universal",
  37077. height: math.unit(15, "universes"),
  37078. form: "demon"
  37079. },
  37080. {
  37081. name: "Earth",
  37082. height: math.unit(1.5, "earths"),
  37083. form: "terra",
  37084. default: true
  37085. },
  37086. {
  37087. name: "Super Earth",
  37088. height: math.unit(67.5, "earths"),
  37089. form: "terra"
  37090. },
  37091. {
  37092. name: "Doesn't fit in a solar system...",
  37093. height: math.unit(1, "galaxy"),
  37094. form: "terra"
  37095. },
  37096. {
  37097. name: "Saturn",
  37098. height: math.unit(58232*2, "km"),
  37099. form: "jupiter"
  37100. },
  37101. {
  37102. name: "Jupiter",
  37103. height: math.unit(69911*2, "km"),
  37104. form: "jupiter",
  37105. default: true
  37106. },
  37107. {
  37108. name: "HD 100546 b",
  37109. height: math.unit(482938, "km"),
  37110. form: "jupiter"
  37111. },
  37112. {
  37113. name: "Enceladus",
  37114. height: math.unit(513*2, "km"),
  37115. form: "neptune"
  37116. },
  37117. {
  37118. name: "Europe",
  37119. height: math.unit(1560*2, "km"),
  37120. form: "neptune"
  37121. },
  37122. {
  37123. name: "Neptune",
  37124. height: math.unit(24622*2, "km"),
  37125. form: "neptune",
  37126. default: true
  37127. },
  37128. {
  37129. name: "CoRoT-9b",
  37130. height: math.unit(75067*2, "km"),
  37131. form: "neptune"
  37132. },
  37133. ],
  37134. {
  37135. "normal": {
  37136. name: "Normal",
  37137. default: true
  37138. },
  37139. "demon": {
  37140. name: "Demon"
  37141. },
  37142. "terra": {
  37143. name: "Terra"
  37144. },
  37145. "jupiter": {
  37146. name: "Jupiter"
  37147. },
  37148. "neptune": {
  37149. name: "Neptune"
  37150. }
  37151. }
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37155. {
  37156. front: {
  37157. height: math.unit(16, "feet"),
  37158. weight: math.unit(610, "kg"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/huckle/front.svg",
  37162. extra: 1731/1625,
  37163. bottom: 33/1764
  37164. }
  37165. },
  37166. back: {
  37167. height: math.unit(16, "feet"),
  37168. weight: math.unit(610, "kg"),
  37169. name: "Back",
  37170. image: {
  37171. source: "./media/characters/huckle/back.svg",
  37172. extra: 1738/1651,
  37173. bottom: 37/1775
  37174. }
  37175. },
  37176. laughing: {
  37177. height: math.unit(3.75, "feet"),
  37178. name: "Laughing",
  37179. image: {
  37180. source: "./media/characters/huckle/laughing.svg"
  37181. }
  37182. },
  37183. angry: {
  37184. height: math.unit(4.15, "feet"),
  37185. name: "Angry",
  37186. image: {
  37187. source: "./media/characters/huckle/angry.svg"
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(16, "feet"),
  37195. default: true
  37196. },
  37197. {
  37198. name: "Mini Macro",
  37199. height: math.unit(463, "feet")
  37200. },
  37201. {
  37202. name: "Macro",
  37203. height: math.unit(1680, "meters")
  37204. },
  37205. {
  37206. name: "Mega Macro",
  37207. height: math.unit(175, "km")
  37208. },
  37209. {
  37210. name: "Terra Macro",
  37211. height: math.unit(32, "gigameters")
  37212. },
  37213. {
  37214. name: "Multiverse+",
  37215. height: math.unit(2.56e23, "yottameters")
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(6 + 9/12, "feet"),
  37224. weight: math.unit(280, "lb"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/candy/front.svg",
  37228. extra: 234/217,
  37229. bottom: 11/245
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Really Small",
  37236. height: math.unit(0.1, "nm")
  37237. },
  37238. {
  37239. name: "Micro",
  37240. height: math.unit(2, "inches")
  37241. },
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(6 + 9/12, "feet"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Small Macro",
  37249. height: math.unit(69, "feet")
  37250. },
  37251. {
  37252. name: "Macro",
  37253. height: math.unit(160, "feet")
  37254. },
  37255. {
  37256. name: "Megamacro",
  37257. height: math.unit(22000, "miles")
  37258. },
  37259. {
  37260. name: "Gigamacro",
  37261. height: math.unit(50000, "miles")
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(4, "feet"),
  37270. weight: math.unit(90, "lb"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/joey-mcdonald/front.svg",
  37274. extra: 1059/852,
  37275. bottom: 33/1092
  37276. }
  37277. },
  37278. back: {
  37279. height: math.unit(4, "feet"),
  37280. weight: math.unit(90, "lb"),
  37281. name: "Back",
  37282. image: {
  37283. source: "./media/characters/joey-mcdonald/back.svg",
  37284. extra: 1077/879,
  37285. bottom: 5/1082
  37286. }
  37287. },
  37288. frontKobold: {
  37289. height: math.unit(4, "feet"),
  37290. weight: math.unit(100, "lb"),
  37291. name: "Front-kobold",
  37292. image: {
  37293. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37294. extra: 1480/1367,
  37295. bottom: 0/1480
  37296. }
  37297. },
  37298. backKobold: {
  37299. height: math.unit(4, "feet"),
  37300. weight: math.unit(100, "lb"),
  37301. name: "Back-kobold",
  37302. image: {
  37303. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37304. extra: 1449/1361,
  37305. bottom: 0/1449
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(4, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(12 + 6/12, "feet"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/kass-lockheed/front.svg",
  37325. extra: 354/343,
  37326. bottom: 9/363
  37327. }
  37328. },
  37329. back: {
  37330. height: math.unit(12 + 6/12, "feet"),
  37331. name: "Back",
  37332. image: {
  37333. source: "./media/characters/kass-lockheed/back.svg",
  37334. extra: 364/352,
  37335. bottom: 3/367
  37336. }
  37337. },
  37338. dick: {
  37339. height: math.unit(3.12, "feet"),
  37340. name: "Dick",
  37341. image: {
  37342. source: "./media/characters/kass-lockheed/dick.svg"
  37343. }
  37344. },
  37345. head: {
  37346. height: math.unit(2.6, "feet"),
  37347. name: "Head",
  37348. image: {
  37349. source: "./media/characters/kass-lockheed/head.svg"
  37350. }
  37351. },
  37352. bleh: {
  37353. height: math.unit(2.85, "feet"),
  37354. name: "Bleh",
  37355. image: {
  37356. source: "./media/characters/kass-lockheed/bleh.svg"
  37357. }
  37358. },
  37359. smug: {
  37360. height: math.unit(2.85, "feet"),
  37361. name: "Smug",
  37362. image: {
  37363. source: "./media/characters/kass-lockheed/smug.svg"
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(12 + 6/12, "feet"),
  37371. default: true
  37372. },
  37373. ]
  37374. ))
  37375. characterMakers.push(() => makeCharacter(
  37376. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37377. {
  37378. front: {
  37379. height: math.unit(6 + 2/12, "feet"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/taylor/front.svg",
  37383. extra: 639/495,
  37384. bottom: 12/651
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Normal",
  37391. height: math.unit(6 + 2/12, "feet"),
  37392. default: true
  37393. },
  37394. {
  37395. name: "Big",
  37396. height: math.unit(15, "feet")
  37397. },
  37398. {
  37399. name: "Lorg",
  37400. height: math.unit(80, "feet")
  37401. },
  37402. {
  37403. name: "Too Lorg",
  37404. height: math.unit(120, "feet")
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(15, "feet"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/kaizer/front.svg",
  37416. extra: 1612/1436,
  37417. bottom: 43/1655
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(15, "feet"),
  37425. default: true
  37426. },
  37427. ]
  37428. ))
  37429. characterMakers.push(() => makeCharacter(
  37430. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37431. {
  37432. front: {
  37433. height: math.unit(2, "feet"),
  37434. weight: math.unit(30, "lb"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/sandy/front.svg",
  37438. extra: 1439/1307,
  37439. bottom: 194/1633
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(2, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(3, "feet"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/mellvi/front.svg",
  37459. extra: 1831/1630,
  37460. bottom: 58/1889
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(3, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(5 + 11/12, "feet"),
  37477. weight: math.unit(200, "lb"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/shirou/front.svg",
  37481. extra: 2491/2383,
  37482. bottom: 189/2680
  37483. }
  37484. },
  37485. back: {
  37486. height: math.unit(5 + 11/12, "feet"),
  37487. weight: math.unit(200, "lb"),
  37488. name: "Back",
  37489. image: {
  37490. source: "./media/characters/shirou/back.svg",
  37491. extra: 2554/2450,
  37492. bottom: 76/2630
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(5 + 11/12, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(6 + 3/12, "feet"),
  37509. weight: math.unit(177, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/noryu/front.svg",
  37513. extra: 973/885,
  37514. bottom: 10/983
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(6 + 3/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(5 + 6/12, "feet"),
  37531. weight: math.unit(170, "lb"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/mevolas-rubenido/front.svg",
  37535. extra: 2109/1901,
  37536. bottom: 96/2205
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(5 + 6/12, "feet"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(100, "feet"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/dee/front.svg",
  37556. extra: 2153/2036,
  37557. bottom: 59/2212
  37558. }
  37559. },
  37560. back: {
  37561. height: math.unit(100, "feet"),
  37562. name: "Back",
  37563. image: {
  37564. source: "./media/characters/dee/back.svg",
  37565. extra: 2183/2058,
  37566. bottom: 75/2258
  37567. }
  37568. },
  37569. foot: {
  37570. height: math.unit(19.43, "feet"),
  37571. name: "Foot",
  37572. image: {
  37573. source: "./media/characters/dee/foot.svg"
  37574. }
  37575. },
  37576. hoof: {
  37577. height: math.unit(20.6, "feet"),
  37578. name: "Hoof",
  37579. image: {
  37580. source: "./media/characters/dee/hoof.svg"
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Macro",
  37587. height: math.unit(100, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(5 + 6/12, "feet"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/teh/front.svg",
  37600. extra: 1002/847,
  37601. bottom: 62/1064
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Normal",
  37608. height: math.unit(5 + 6/12, "feet"),
  37609. default: true
  37610. },
  37611. ]
  37612. ))
  37613. characterMakers.push(() => makeCharacter(
  37614. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37615. {
  37616. side: {
  37617. height: math.unit(6 + 1/12, "feet"),
  37618. weight: math.unit(204, "lb"),
  37619. name: "Side",
  37620. image: {
  37621. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37622. extra: 974/775,
  37623. bottom: 169/1143
  37624. }
  37625. },
  37626. sitting: {
  37627. height: math.unit(6 + 2/12, "feet"),
  37628. weight: math.unit(204, "lb"),
  37629. name: "Sitting",
  37630. image: {
  37631. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37632. extra: 1175/964,
  37633. bottom: 378/1553
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(6 + 1/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(6, "inches"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/tululi/front.svg",
  37653. extra: 1997/1876,
  37654. bottom: 20/2017
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(6, "inches"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(4 + 1/12, "feet"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/star/front.svg",
  37674. extra: 1493/1189,
  37675. bottom: 48/1541
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(4 + 1/12, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(6 + 3/12, "feet"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/comet/front.svg",
  37695. extra: 1681/1462,
  37696. bottom: 26/1707
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Normal",
  37703. height: math.unit(6 + 3/12, "feet"),
  37704. default: true
  37705. },
  37706. ]
  37707. ))
  37708. characterMakers.push(() => makeCharacter(
  37709. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37710. {
  37711. front: {
  37712. height: math.unit(950, "feet"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/vortex/front.svg",
  37716. extra: 1497/1434,
  37717. bottom: 56/1553
  37718. }
  37719. },
  37720. maw: {
  37721. height: math.unit(285, "feet"),
  37722. name: "Maw",
  37723. image: {
  37724. source: "./media/characters/vortex/maw.svg"
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Macro",
  37731. height: math.unit(950, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(600, "feet"),
  37741. weight: math.unit(0.02, "grams"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/doodle/front.svg",
  37745. extra: 1578/1413,
  37746. bottom: 37/1615
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Macro",
  37753. height: math.unit(600, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37760. {
  37761. front: {
  37762. height: math.unit(6 + 6/12, "feet"),
  37763. name: "Front",
  37764. image: {
  37765. source: "./media/characters/jai/front.svg",
  37766. extra: 1645/1534,
  37767. bottom: 115/1760
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(6 + 6/12, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(6 + 8/12, "feet"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/pixel/front.svg",
  37787. extra: 1900/1735,
  37788. bottom: 63/1963
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(6 + 8/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37802. {
  37803. back: {
  37804. height: math.unit(4 + 1/12, "feet"),
  37805. weight: math.unit(75, "lb"),
  37806. name: "Back",
  37807. image: {
  37808. source: "./media/characters/rhett/back.svg",
  37809. extra: 930/878,
  37810. bottom: 25/955
  37811. }
  37812. },
  37813. front: {
  37814. height: math.unit(4 + 1/12, "feet"),
  37815. weight: math.unit(75, "lb"),
  37816. name: "Front",
  37817. image: {
  37818. source: "./media/characters/rhett/front.svg",
  37819. extra: 1682/1586,
  37820. bottom: 92/1774
  37821. }
  37822. },
  37823. },
  37824. [
  37825. {
  37826. name: "Micro",
  37827. height: math.unit(8, "inches")
  37828. },
  37829. {
  37830. name: "Tiny",
  37831. height: math.unit(2, "feet")
  37832. },
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(4 + 1/12, "feet"),
  37836. default: true
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(3 + 3/12, "feet"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/penny/front.svg",
  37848. extra: 1406/1311,
  37849. bottom: 26/1432
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(3 + 3/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(4 + 11/12, "feet"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/monty/front.svg",
  37869. extra: 1479/1209,
  37870. bottom: 0/1479
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(4 + 11/12, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(8 + 4/12, "feet"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/sterling/front.svg",
  37890. extra: 1420/1236,
  37891. bottom: 27/1447
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(8 + 4/12, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(15, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/marble/front.svg",
  37911. extra: 973/937,
  37912. bottom: 32/1005
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(15, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37926. {
  37927. front: {
  37928. height: math.unit(3, "inches"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/powder/front.svg",
  37932. extra: 1504/1334,
  37933. bottom: 518/2022
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(3, "inches"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(4 + 5/12, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/joey-raccoon/front.svg",
  37953. extra: 1273/1197,
  37954. bottom: 0/1273
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(4 + 5/12, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(8 + 4/12, "feet"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/vick/front.svg",
  37974. extra: 2187/2118,
  37975. bottom: 47/2234
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(8 + 4/12, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(5 + 5/12, "feet"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/mitsy/front.svg",
  37995. extra: 1842/1695,
  37996. bottom: 0/1842
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(5 + 5/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(6 + 3/12, "feet"),
  38013. name: "Front",
  38014. image: {
  38015. source: "./media/characters/silvy/front.svg",
  38016. extra: 1995/1836,
  38017. bottom: 225/2220
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(6 + 3/12, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(3 + 8/12, "feet"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/rodney/front.svg",
  38037. extra: 1956/1747,
  38038. bottom: 31/1987
  38039. }
  38040. },
  38041. frontDressed: {
  38042. height: math.unit(2.9, "feet"),
  38043. name: "Front (Dressed)",
  38044. image: {
  38045. source: "./media/characters/rodney/front-dressed.svg",
  38046. extra: 1382/1241,
  38047. bottom: 385/1767
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(3 + 8/12, "feet"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(5 + 9/12, "feet"),
  38064. weight: math.unit(194, "lbs"),
  38065. name: "Front",
  38066. image: {
  38067. source: "./media/characters/zakail-sudekai/front.svg",
  38068. extra: 2696/2533,
  38069. bottom: 248/2944
  38070. }
  38071. },
  38072. maw: {
  38073. height: math.unit(1.35, "feet"),
  38074. name: "Maw",
  38075. image: {
  38076. source: "./media/characters/zakail-sudekai/maw.svg"
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(5 + 9/12, "feet"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(8 + 4/12, "feet"),
  38093. weight: math.unit(1200, "lb"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/eleanor/front.svg",
  38097. extra: 1226/1192,
  38098. bottom: 52/1278
  38099. }
  38100. },
  38101. back: {
  38102. height: math.unit(8 + 4/12, "feet"),
  38103. weight: math.unit(1200, "lb"),
  38104. name: "Back",
  38105. image: {
  38106. source: "./media/characters/eleanor/back.svg",
  38107. extra: 1242/1184,
  38108. bottom: 60/1302
  38109. }
  38110. },
  38111. head: {
  38112. height: math.unit(2.62, "feet"),
  38113. name: "Head",
  38114. image: {
  38115. source: "./media/characters/eleanor/head.svg"
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(8 + 4/12, "feet"),
  38132. weight: math.unit(750, "lb"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/tanya/front.svg",
  38136. extra: 1749/1615,
  38137. bottom: 33/1782
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(8 + 4/12, "feet"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(5, "feet"),
  38154. weight: math.unit(225, "lb"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/cindy/front.svg",
  38158. extra: 1320/1250,
  38159. bottom: 42/1362
  38160. }
  38161. },
  38162. frontDressed: {
  38163. height: math.unit(5, "feet"),
  38164. weight: math.unit(225, "lb"),
  38165. name: "Front (Dressed)",
  38166. image: {
  38167. source: "./media/characters/cindy/front-dressed.svg",
  38168. extra: 1320/1250,
  38169. bottom: 42/1362
  38170. }
  38171. },
  38172. back: {
  38173. height: math.unit(5, "feet"),
  38174. weight: math.unit(225, "lb"),
  38175. name: "Back",
  38176. image: {
  38177. source: "./media/characters/cindy/back.svg",
  38178. extra: 1384/1346,
  38179. bottom: 14/1398
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(5, "feet"),
  38187. default: true
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38193. {
  38194. front: {
  38195. height: math.unit(6 + 9/12, "feet"),
  38196. weight: math.unit(440, "lb"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/wilbur-owen/front.svg",
  38200. extra: 1575/1448,
  38201. bottom: 72/1647
  38202. }
  38203. },
  38204. back: {
  38205. height: math.unit(6 + 9/12, "feet"),
  38206. weight: math.unit(440, "lb"),
  38207. name: "Back",
  38208. image: {
  38209. source: "./media/characters/wilbur-owen/back.svg",
  38210. extra: 1578/1445,
  38211. bottom: 36/1614
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(6 + 9/12, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(6 + 5/12, "feet"),
  38228. weight: math.unit(650, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/keegan/front.svg",
  38232. extra: 2387/2198,
  38233. bottom: 33/2420
  38234. }
  38235. },
  38236. side: {
  38237. height: math.unit(6 + 5/12, "feet"),
  38238. weight: math.unit(650, "lb"),
  38239. name: "Side",
  38240. image: {
  38241. source: "./media/characters/keegan/side.svg",
  38242. extra: 2390/2202,
  38243. bottom: 47/2437
  38244. }
  38245. },
  38246. back: {
  38247. height: math.unit(6 + 5/12, "feet"),
  38248. weight: math.unit(650, "lb"),
  38249. name: "Back",
  38250. image: {
  38251. source: "./media/characters/keegan/back.svg",
  38252. extra: 2418/2268,
  38253. bottom: 15/2433
  38254. }
  38255. },
  38256. frontSfw: {
  38257. height: math.unit(6 + 5/12, "feet"),
  38258. weight: math.unit(650, "lb"),
  38259. name: "Front (SFW)",
  38260. image: {
  38261. source: "./media/characters/keegan/front-sfw.svg",
  38262. extra: 2387/2198,
  38263. bottom: 33/2420
  38264. }
  38265. },
  38266. beans: {
  38267. height: math.unit(1.85, "feet"),
  38268. name: "Beans",
  38269. image: {
  38270. source: "./media/characters/keegan/beans.svg"
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(6 + 5/12, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(9, "feet"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/colton/front.svg",
  38290. extra: 1589/1326,
  38291. bottom: 139/1728
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(9, "feet"),
  38299. default: true
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(2 + 9/12, "feet"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/bora/front.svg",
  38311. extra: 1265/1250,
  38312. bottom: 24/1289
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(2 + 9/12, "feet"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(8, "feet"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/myu-myu/front.svg",
  38332. extra: 1949/1857,
  38333. bottom: 90/2039
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(8, "feet"),
  38341. default: true
  38342. },
  38343. {
  38344. name: "Big",
  38345. height: math.unit(15, "feet")
  38346. },
  38347. {
  38348. name: "BIG",
  38349. height: math.unit(25, "feet")
  38350. },
  38351. ]
  38352. ))
  38353. characterMakers.push(() => makeCharacter(
  38354. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38355. {
  38356. side: {
  38357. height: math.unit(7 + 5/12, "feet"),
  38358. weight: math.unit(2800, "lb"),
  38359. name: "Side",
  38360. image: {
  38361. source: "./media/characters/haloren/side.svg",
  38362. extra: 1793/409,
  38363. bottom: 59/1852
  38364. }
  38365. },
  38366. frontPaw: {
  38367. height: math.unit(2.36, "feet"),
  38368. name: "Front paw",
  38369. image: {
  38370. source: "./media/characters/haloren/front-paw.svg"
  38371. }
  38372. },
  38373. hindPaw: {
  38374. height: math.unit(3.18, "feet"),
  38375. name: "Hind paw",
  38376. image: {
  38377. source: "./media/characters/haloren/hind-paw.svg"
  38378. }
  38379. },
  38380. maw: {
  38381. height: math.unit(5.05, "feet"),
  38382. name: "Maw",
  38383. image: {
  38384. source: "./media/characters/haloren/maw.svg"
  38385. }
  38386. },
  38387. dick: {
  38388. height: math.unit(2.90, "feet"),
  38389. name: "Dick",
  38390. image: {
  38391. source: "./media/characters/haloren/dick.svg"
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(7 + 5/12, "feet"),
  38399. default: true
  38400. },
  38401. {
  38402. name: "Enhanced",
  38403. height: math.unit(14 + 3/12, "feet")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(171, "cm"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/kimmy/front.svg",
  38415. extra: 1491/1435,
  38416. bottom: 53/1544
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Small",
  38423. height: math.unit(9, "cm")
  38424. },
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(171, "cm"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(8, "feet"),
  38437. weight: math.unit(300, "lb"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/galeboomer/front.svg",
  38441. extra: 4651/4415,
  38442. bottom: 162/4813
  38443. }
  38444. },
  38445. back: {
  38446. height: math.unit(8, "feet"),
  38447. weight: math.unit(300, "lb"),
  38448. name: "Back",
  38449. image: {
  38450. source: "./media/characters/galeboomer/back.svg",
  38451. extra: 4544/4314,
  38452. bottom: 16/4560
  38453. }
  38454. },
  38455. frontAlt: {
  38456. height: math.unit(8, "feet"),
  38457. weight: math.unit(300, "lb"),
  38458. name: "Front (Alt)",
  38459. image: {
  38460. source: "./media/characters/galeboomer/front-alt.svg",
  38461. extra: 4458/4228,
  38462. bottom: 68/4526
  38463. }
  38464. },
  38465. maw: {
  38466. height: math.unit(1.2, "feet"),
  38467. name: "Maw",
  38468. image: {
  38469. source: "./media/characters/galeboomer/maw.svg"
  38470. }
  38471. },
  38472. },
  38473. [
  38474. {
  38475. name: "Normal",
  38476. height: math.unit(8, "feet"),
  38477. default: true
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38483. {
  38484. front: {
  38485. height: math.unit(5 + 9/12, "feet"),
  38486. weight: math.unit(120, "lb"),
  38487. name: "Front",
  38488. image: {
  38489. source: "./media/characters/chyr/front.svg",
  38490. extra: 1323/1254,
  38491. bottom: 63/1386
  38492. }
  38493. },
  38494. back: {
  38495. height: math.unit(5 + 9/12, "feet"),
  38496. weight: math.unit(120, "lb"),
  38497. name: "Back",
  38498. image: {
  38499. source: "./media/characters/chyr/back.svg",
  38500. extra: 1323/1252,
  38501. bottom: 48/1371
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(5 + 9/12, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(7, "feet"),
  38518. weight: math.unit(310, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/solarus/front.svg",
  38522. extra: 2415/2021,
  38523. bottom: 103/2518
  38524. }
  38525. },
  38526. back: {
  38527. height: math.unit(7, "feet"),
  38528. weight: math.unit(310, "lb"),
  38529. name: "Back",
  38530. image: {
  38531. source: "./media/characters/solarus/back.svg",
  38532. extra: 2463/2089,
  38533. bottom: 79/2542
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(7, "feet"),
  38541. default: true
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(16, "feet"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38553. extra: 1844/1780,
  38554. bottom: 58/1902
  38555. }
  38556. },
  38557. winterCoat: {
  38558. height: math.unit(16, "feet"),
  38559. name: "Winter Coat",
  38560. image: {
  38561. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38562. extra: 1807/1775,
  38563. bottom: 69/1876
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Normal",
  38570. height: math.unit(16, "feet"),
  38571. default: true
  38572. },
  38573. {
  38574. name: "Chicago Size",
  38575. height: math.unit(560, "feet")
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38581. {
  38582. front: {
  38583. height: math.unit(11 + 6/12, "feet"),
  38584. weight: math.unit(1366, "lb"),
  38585. name: "Front",
  38586. image: {
  38587. source: "./media/characters/lexor/front.svg",
  38588. extra: 1560/1481,
  38589. bottom: 211/1771
  38590. }
  38591. },
  38592. back: {
  38593. height: math.unit(11 + 6/12, "feet"),
  38594. weight: math.unit(1366, "lb"),
  38595. name: "Back",
  38596. image: {
  38597. source: "./media/characters/lexor/back.svg",
  38598. extra: 1614/1533,
  38599. bottom: 76/1690
  38600. }
  38601. },
  38602. maw: {
  38603. height: math.unit(3, "feet"),
  38604. name: "Maw",
  38605. image: {
  38606. source: "./media/characters/lexor/maw.svg"
  38607. }
  38608. },
  38609. dick: {
  38610. height: math.unit(2.59, "feet"),
  38611. name: "Dick",
  38612. image: {
  38613. source: "./media/characters/lexor/dick.svg"
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(11 + 6/12, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(5 + 8/12, "feet"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/magnum/front.svg",
  38633. extra: 942/855,
  38634. bottom: 26/968
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(5 + 8/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(18 + 4/12, "feet"),
  38651. weight: math.unit(1500, "kg"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/solas-sharpsman/front.svg",
  38655. extra: 1698/1589,
  38656. bottom: 0/1698
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(18 + 4/12, "feet"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(5 + 5/12, "feet"),
  38673. weight: math.unit(180, "lb"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/october/front.svg",
  38677. extra: 1800/1650,
  38678. bottom: 0/1800
  38679. }
  38680. },
  38681. frontNsfw: {
  38682. height: math.unit(5 + 5/12, "feet"),
  38683. weight: math.unit(180, "lb"),
  38684. name: "Front (NSFW)",
  38685. image: {
  38686. source: "./media/characters/october/front-nsfw.svg",
  38687. extra: 1392/1307,
  38688. bottom: 42/1434
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(5 + 5/12, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(8 + 6/12, "feet"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/essynkardi/front.svg",
  38708. extra: 1914/1846,
  38709. bottom: 22/1936
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(8 + 6/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(6 + 6/12, "feet"),
  38726. weight: math.unit(7, "lb"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/icky/front.svg",
  38730. extra: 813/782,
  38731. bottom: 66/879
  38732. }
  38733. },
  38734. back: {
  38735. height: math.unit(6 + 6/12, "feet"),
  38736. weight: math.unit(7, "lb"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/icky/back.svg",
  38740. extra: 754/735,
  38741. bottom: 56/810
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(6 + 6/12, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(15, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/rojas/front.svg",
  38761. extra: 1462/1408,
  38762. bottom: 95/1557
  38763. }
  38764. },
  38765. back: {
  38766. height: math.unit(15, "feet"),
  38767. name: "Back",
  38768. image: {
  38769. source: "./media/characters/rojas/back.svg",
  38770. extra: 1023/954,
  38771. bottom: 28/1051
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(15, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38785. {
  38786. frontHuman: {
  38787. height: math.unit(5 + 7/12, "feet"),
  38788. name: "Front (Human)",
  38789. image: {
  38790. source: "./media/characters/alek-dryagan/front-human.svg",
  38791. extra: 1687/1667,
  38792. bottom: 69/1756
  38793. }
  38794. },
  38795. backHuman: {
  38796. height: math.unit(5 + 7/12, "feet"),
  38797. name: "Back (Human)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/back-human.svg",
  38800. extra: 1670/1649,
  38801. bottom: 65/1735
  38802. }
  38803. },
  38804. frontDemi: {
  38805. height: math.unit(65, "feet"),
  38806. name: "Front (Demi)",
  38807. image: {
  38808. source: "./media/characters/alek-dryagan/front-demi.svg",
  38809. extra: 1669/1642,
  38810. bottom: 49/1718
  38811. }
  38812. },
  38813. backDemi: {
  38814. height: math.unit(65, "feet"),
  38815. name: "Back (Demi)",
  38816. image: {
  38817. source: "./media/characters/alek-dryagan/back-demi.svg",
  38818. extra: 1658/1637,
  38819. bottom: 40/1698
  38820. }
  38821. },
  38822. mawHuman: {
  38823. height: math.unit(0.3, "feet"),
  38824. name: "Maw (Human)",
  38825. image: {
  38826. source: "./media/characters/alek-dryagan/maw-human.svg"
  38827. }
  38828. },
  38829. mawDemi: {
  38830. height: math.unit(3.8, "feet"),
  38831. name: "Maw (Demi)",
  38832. image: {
  38833. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(5 + 7/12, "feet"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38847. {
  38848. frontHuman: {
  38849. height: math.unit(5 + 2/12, "feet"),
  38850. name: "Front (Human)",
  38851. image: {
  38852. source: "./media/characters/gen/front-human.svg",
  38853. extra: 1627/1538,
  38854. bottom: 71/1698
  38855. }
  38856. },
  38857. backHuman: {
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. name: "Back (Human)",
  38860. image: {
  38861. source: "./media/characters/gen/back-human.svg",
  38862. extra: 1638/1548,
  38863. bottom: 69/1707
  38864. }
  38865. },
  38866. frontDemi: {
  38867. height: math.unit(5 + 2/12, "feet"),
  38868. name: "Front (Demi)",
  38869. image: {
  38870. source: "./media/characters/gen/front-demi.svg",
  38871. extra: 1627/1538,
  38872. bottom: 71/1698
  38873. }
  38874. },
  38875. backDemi: {
  38876. height: math.unit(5 + 2/12, "feet"),
  38877. name: "Back (Demi)",
  38878. image: {
  38879. source: "./media/characters/gen/back-demi.svg",
  38880. extra: 1638/1548,
  38881. bottom: 69/1707
  38882. }
  38883. },
  38884. },
  38885. [
  38886. {
  38887. name: "Normal",
  38888. height: math.unit(5 + 2/12, "feet"),
  38889. default: true
  38890. },
  38891. ]
  38892. ))
  38893. characterMakers.push(() => makeCharacter(
  38894. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38895. {
  38896. frontImp: {
  38897. height: math.unit(1 + 11/12, "feet"),
  38898. name: "Front (Imp)",
  38899. image: {
  38900. source: "./media/characters/max-kobold/front-imp.svg",
  38901. extra: 1238/1134,
  38902. bottom: 81/1319
  38903. }
  38904. },
  38905. backImp: {
  38906. height: math.unit(1 + 11/12, "feet"),
  38907. name: "Back (Imp)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/back-imp.svg",
  38910. extra: 1334/1175,
  38911. bottom: 34/1368
  38912. }
  38913. },
  38914. frontDemi: {
  38915. height: math.unit(5 + 9/12, "feet"),
  38916. name: "Front (Demi)",
  38917. image: {
  38918. source: "./media/characters/max-kobold/front-demi.svg",
  38919. extra: 1715/1685,
  38920. bottom: 54/1769
  38921. }
  38922. },
  38923. backDemi: {
  38924. height: math.unit(5 + 9/12, "feet"),
  38925. name: "Back (Demi)",
  38926. image: {
  38927. source: "./media/characters/max-kobold/back-demi.svg",
  38928. extra: 1752/1729,
  38929. bottom: 41/1793
  38930. }
  38931. },
  38932. handImp: {
  38933. height: math.unit(0.45, "feet"),
  38934. name: "Hand (Imp)",
  38935. image: {
  38936. source: "./media/characters/max-kobold/hand.svg"
  38937. }
  38938. },
  38939. pawImp: {
  38940. height: math.unit(0.46, "feet"),
  38941. name: "Paw (Imp)",
  38942. image: {
  38943. source: "./media/characters/max-kobold/paw.svg"
  38944. }
  38945. },
  38946. handDemi: {
  38947. height: math.unit(0.80, "feet"),
  38948. name: "Hand (Demi)",
  38949. image: {
  38950. source: "./media/characters/max-kobold/hand.svg"
  38951. }
  38952. },
  38953. pawDemi: {
  38954. height: math.unit(1.1, "feet"),
  38955. name: "Paw (Demi)",
  38956. image: {
  38957. source: "./media/characters/max-kobold/paw.svg"
  38958. }
  38959. },
  38960. headImp: {
  38961. height: math.unit(1.33, "feet"),
  38962. name: "Head (Imp)",
  38963. image: {
  38964. source: "./media/characters/max-kobold/head-imp.svg"
  38965. }
  38966. },
  38967. mawImp: {
  38968. height: math.unit(0.75, "feet"),
  38969. name: "Maw (Imp)",
  38970. image: {
  38971. source: "./media/characters/max-kobold/maw-imp.svg"
  38972. }
  38973. },
  38974. mawDemi: {
  38975. height: math.unit(0.42, "feet"),
  38976. name: "Maw (Demi)",
  38977. image: {
  38978. source: "./media/characters/max-kobold/maw-demi.svg"
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(1 + 11/12, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(7 + 5/12, "feet"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/carbon/front.svg",
  38998. extra: 1754/1689,
  38999. bottom: 65/1819
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(7 + 5/12, "feet"),
  39004. name: "Back",
  39005. image: {
  39006. source: "./media/characters/carbon/back.svg",
  39007. extra: 1762/1695,
  39008. bottom: 24/1786
  39009. }
  39010. },
  39011. frontGigantamax: {
  39012. height: math.unit(150, "feet"),
  39013. name: "Front (Gigantamax)",
  39014. image: {
  39015. source: "./media/characters/carbon/front-gigantamax.svg",
  39016. extra: 1826/1669,
  39017. bottom: 59/1885
  39018. }
  39019. },
  39020. backGigantamax: {
  39021. height: math.unit(150, "feet"),
  39022. name: "Back (Gigantamax)",
  39023. image: {
  39024. source: "./media/characters/carbon/back-gigantamax.svg",
  39025. extra: 1796/1653,
  39026. bottom: 53/1849
  39027. }
  39028. },
  39029. maw: {
  39030. height: math.unit(0.48, "feet"),
  39031. name: "Maw",
  39032. image: {
  39033. source: "./media/characters/carbon/maw.svg"
  39034. }
  39035. },
  39036. mawGigantamax: {
  39037. height: math.unit(7.5, "feet"),
  39038. name: "Maw (Gigantamax)",
  39039. image: {
  39040. source: "./media/characters/carbon/maw-gigantamax.svg"
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(7 + 5/12, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(6, "feet"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/maverick/front.svg",
  39060. extra: 1672/1661,
  39061. bottom: 85/1757
  39062. }
  39063. },
  39064. back: {
  39065. height: math.unit(6, "feet"),
  39066. name: "Back",
  39067. image: {
  39068. source: "./media/characters/maverick/back.svg",
  39069. extra: 1642/1631,
  39070. bottom: 38/1680
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(6, "feet"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(15, "feet"),
  39087. weight: math.unit(615, "lb"),
  39088. name: "Front",
  39089. image: {
  39090. source: "./media/characters/grockle/front.svg",
  39091. extra: 1535/1427,
  39092. bottom: 56/1591
  39093. }
  39094. },
  39095. },
  39096. [
  39097. {
  39098. name: "Normal",
  39099. height: math.unit(15, "feet"),
  39100. default: true
  39101. },
  39102. {
  39103. name: "Large",
  39104. height: math.unit(150, "feet")
  39105. },
  39106. {
  39107. name: "Macro",
  39108. height: math.unit(1876, "feet")
  39109. },
  39110. {
  39111. name: "Mega Macro",
  39112. height: math.unit(121940, "feet")
  39113. },
  39114. {
  39115. name: "Giga Macro",
  39116. height: math.unit(750, "km")
  39117. },
  39118. {
  39119. name: "Tera Macro",
  39120. height: math.unit(750000, "km")
  39121. },
  39122. {
  39123. name: "Galactic",
  39124. height: math.unit(1.4e5, "km")
  39125. },
  39126. {
  39127. name: "Godlike",
  39128. height: math.unit(9.8e280, "galaxies")
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(11, "meters"),
  39137. weight: math.unit(20, "tonnes"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/alistair/front.svg",
  39141. extra: 1265/1009,
  39142. bottom: 93/1358
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(11, "meters"),
  39150. default: true
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39156. {
  39157. front: {
  39158. height: math.unit(5 + 8/12, "feet"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/haruka/front.svg",
  39162. extra: 2012/1952,
  39163. bottom: 0/2012
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(5 + 8/12, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39177. {
  39178. back: {
  39179. height: math.unit(9, "feet"),
  39180. name: "Back",
  39181. image: {
  39182. source: "./media/characters/vivian-sylveon/back.svg",
  39183. extra: 1853/1714,
  39184. bottom: 0/1853
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(9, "feet"),
  39192. default: true
  39193. },
  39194. {
  39195. name: "Macro",
  39196. height: math.unit(500, "feet")
  39197. },
  39198. {
  39199. name: "Megamacro",
  39200. height: math.unit(600, "miles")
  39201. },
  39202. {
  39203. name: "Gigamacro",
  39204. height: math.unit(30000, "miles")
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39210. {
  39211. anthro: {
  39212. height: math.unit(5 + 10/12, "feet"),
  39213. weight: math.unit(100, "lb"),
  39214. name: "Anthro",
  39215. image: {
  39216. source: "./media/characters/daiki/anthro.svg",
  39217. extra: 1115/1027,
  39218. bottom: 69/1184
  39219. }
  39220. },
  39221. feral: {
  39222. height: math.unit(200, "feet"),
  39223. name: "Feral",
  39224. image: {
  39225. source: "./media/characters/daiki/feral.svg",
  39226. extra: 1256/313,
  39227. bottom: 39/1295
  39228. }
  39229. },
  39230. feralHead: {
  39231. height: math.unit(171, "feet"),
  39232. name: "Feral Head",
  39233. image: {
  39234. source: "./media/characters/daiki/feral-head.svg"
  39235. }
  39236. },
  39237. manaDragon: {
  39238. height: math.unit(170, "meters"),
  39239. name: "Mana-dragon",
  39240. image: {
  39241. source: "./media/characters/daiki/mana-dragon.svg",
  39242. extra: 763/420,
  39243. bottom: 97/860
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(5 + 10/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39257. {
  39258. fullyEquippedFront: {
  39259. height: math.unit(3 + 1/12, "feet"),
  39260. weight: math.unit(24, "lb"),
  39261. name: "Fully Equipped (Front)",
  39262. image: {
  39263. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39264. extra: 687/605,
  39265. bottom: 18/705
  39266. }
  39267. },
  39268. fullyEquippedBack: {
  39269. height: math.unit(3 + 1/12, "feet"),
  39270. weight: math.unit(24, "lb"),
  39271. name: "Fully Equipped (Back)",
  39272. image: {
  39273. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39274. extra: 689/590,
  39275. bottom: 18/707
  39276. }
  39277. },
  39278. dailyWear: {
  39279. height: math.unit(3 + 1/12, "feet"),
  39280. weight: math.unit(24, "lb"),
  39281. name: "Daily Wear",
  39282. image: {
  39283. source: "./media/characters/tea-spot/daily-wear.svg",
  39284. extra: 701/620,
  39285. bottom: 21/722
  39286. }
  39287. },
  39288. maidWork: {
  39289. height: math.unit(3 + 1/12, "feet"),
  39290. weight: math.unit(24, "lb"),
  39291. name: "Maid Work",
  39292. image: {
  39293. source: "./media/characters/tea-spot/maid-work.svg",
  39294. extra: 693/609,
  39295. bottom: 15/708
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(3 + 1/12, "feet"),
  39303. default: true
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(175, "cm"),
  39312. weight: math.unit(75, "kg"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/chee/front.svg",
  39316. extra: 1796/1740,
  39317. bottom: 40/1836
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Micro-Micro",
  39324. height: math.unit(1, "nm")
  39325. },
  39326. {
  39327. name: "Micro-erst",
  39328. height: math.unit(1, "micrometer")
  39329. },
  39330. {
  39331. name: "Micro-er",
  39332. height: math.unit(1, "cm")
  39333. },
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(175, "cm"),
  39337. default: true
  39338. },
  39339. {
  39340. name: "Macro",
  39341. height: math.unit(100, "m")
  39342. },
  39343. {
  39344. name: "Macro-er",
  39345. height: math.unit(1, "km")
  39346. },
  39347. {
  39348. name: "Macro-erst",
  39349. height: math.unit(10, "km")
  39350. },
  39351. {
  39352. name: "Macro-Macro",
  39353. height: math.unit(100, "km")
  39354. },
  39355. ]
  39356. ))
  39357. characterMakers.push(() => makeCharacter(
  39358. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39359. {
  39360. front: {
  39361. height: math.unit(11 + 9/12, "feet"),
  39362. weight: math.unit(935, "lb"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/kingsley/front.svg",
  39366. extra: 1803/1674,
  39367. bottom: 127/1930
  39368. }
  39369. },
  39370. frontNude: {
  39371. height: math.unit(11 + 9/12, "feet"),
  39372. weight: math.unit(935, "lb"),
  39373. name: "Front (Nude)",
  39374. image: {
  39375. source: "./media/characters/kingsley/front-nude.svg",
  39376. extra: 1803/1674,
  39377. bottom: 127/1930
  39378. }
  39379. },
  39380. },
  39381. [
  39382. {
  39383. name: "Normal",
  39384. height: math.unit(11 + 9/12, "feet"),
  39385. default: true
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39391. {
  39392. side: {
  39393. height: math.unit(9, "feet"),
  39394. name: "Side",
  39395. image: {
  39396. source: "./media/characters/rymel/side.svg",
  39397. extra: 792/469,
  39398. bottom: 121/913
  39399. }
  39400. },
  39401. maw: {
  39402. height: math.unit(2.4, "meters"),
  39403. name: "Maw",
  39404. image: {
  39405. source: "./media/characters/rymel/maw.svg"
  39406. }
  39407. },
  39408. },
  39409. [
  39410. {
  39411. name: "House Drake",
  39412. height: math.unit(2, "feet")
  39413. },
  39414. {
  39415. name: "Reduced",
  39416. height: math.unit(4.5, "feet")
  39417. },
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(9, "feet"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(1.74, "meters"),
  39430. weight: math.unit(55, "kg"),
  39431. name: "Front",
  39432. image: {
  39433. source: "./media/characters/rubus/front.svg",
  39434. extra: 1894/1742,
  39435. bottom: 44/1938
  39436. }
  39437. },
  39438. },
  39439. [
  39440. {
  39441. name: "Normal",
  39442. height: math.unit(1.74, "meters"),
  39443. default: true
  39444. },
  39445. ]
  39446. ))
  39447. characterMakers.push(() => makeCharacter(
  39448. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39449. {
  39450. front: {
  39451. height: math.unit(5 + 2/12, "feet"),
  39452. weight: math.unit(112, "lb"),
  39453. name: "Front",
  39454. image: {
  39455. source: "./media/characters/cassie-kingston/front.svg",
  39456. extra: 1438/1390,
  39457. bottom: 47/1485
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Normal",
  39464. height: math.unit(5 + 2/12, "feet"),
  39465. default: true
  39466. },
  39467. {
  39468. name: "Macro",
  39469. height: math.unit(128, "feet")
  39470. },
  39471. {
  39472. name: "Megamacro",
  39473. height: math.unit(2.56, "miles")
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(7, "feet"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/fox/front.svg",
  39485. extra: 1798/1703,
  39486. bottom: 55/1853
  39487. }
  39488. },
  39489. back: {
  39490. height: math.unit(7, "feet"),
  39491. name: "Back",
  39492. image: {
  39493. source: "./media/characters/fox/back.svg",
  39494. extra: 1748/1649,
  39495. bottom: 32/1780
  39496. }
  39497. },
  39498. head: {
  39499. height: math.unit(1.95, "feet"),
  39500. name: "Head",
  39501. image: {
  39502. source: "./media/characters/fox/head.svg"
  39503. }
  39504. },
  39505. dick: {
  39506. height: math.unit(1.33, "feet"),
  39507. name: "Dick",
  39508. image: {
  39509. source: "./media/characters/fox/dick.svg"
  39510. }
  39511. },
  39512. foot: {
  39513. height: math.unit(1, "feet"),
  39514. name: "Foot",
  39515. image: {
  39516. source: "./media/characters/fox/foot.svg"
  39517. }
  39518. },
  39519. paw: {
  39520. height: math.unit(0.92, "feet"),
  39521. name: "Paw",
  39522. image: {
  39523. source: "./media/characters/fox/paw.svg"
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Small",
  39530. height: math.unit(3, "inches")
  39531. },
  39532. {
  39533. name: "\"Realistic\"",
  39534. height: math.unit(7, "feet")
  39535. },
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(150, "feet"),
  39539. default: true
  39540. },
  39541. {
  39542. name: "BIG",
  39543. height: math.unit(1200, "feet")
  39544. },
  39545. {
  39546. name: "👀",
  39547. height: math.unit(5, "miles")
  39548. },
  39549. {
  39550. name: "👀👀👀",
  39551. height: math.unit(64, "miles")
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(625, "feet"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/asonja-rossa/front.svg",
  39563. extra: 1833/1686,
  39564. bottom: 24/1857
  39565. }
  39566. },
  39567. back: {
  39568. height: math.unit(625, "feet"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/asonja-rossa/back.svg",
  39572. extra: 1852/1753,
  39573. bottom: 26/1878
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Macro",
  39580. height: math.unit(625, "feet"),
  39581. default: true
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39587. {
  39588. side: {
  39589. height: math.unit(8, "feet"),
  39590. name: "Side",
  39591. image: {
  39592. source: "./media/characters/rezukii/side.svg",
  39593. extra: 979/542,
  39594. bottom: 87/1066
  39595. }
  39596. },
  39597. sitting: {
  39598. height: math.unit(14.6, "feet"),
  39599. name: "Sitting",
  39600. image: {
  39601. source: "./media/characters/rezukii/sitting.svg",
  39602. extra: 1023/813,
  39603. bottom: 45/1068
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Tiny",
  39610. height: math.unit(2, "feet")
  39611. },
  39612. {
  39613. name: "Smol",
  39614. height: math.unit(4, "feet")
  39615. },
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(8, "feet"),
  39619. default: true
  39620. },
  39621. {
  39622. name: "Big",
  39623. height: math.unit(12, "feet")
  39624. },
  39625. {
  39626. name: "Macro",
  39627. height: math.unit(30, "feet")
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(14, "feet"),
  39636. weight: math.unit(9.5, "tonnes"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/dawnheart/front.svg",
  39640. extra: 2792/2675,
  39641. bottom: 64/2856
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(14, "feet"),
  39649. default: true
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39655. {
  39656. front: {
  39657. height: math.unit(1.7, "m"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/gladi/front.svg",
  39661. extra: 1460/1362,
  39662. bottom: 19/1479
  39663. }
  39664. },
  39665. back: {
  39666. height: math.unit(1.7, "m"),
  39667. name: "Back",
  39668. image: {
  39669. source: "./media/characters/gladi/back.svg",
  39670. extra: 1459/1357,
  39671. bottom: 12/1471
  39672. }
  39673. },
  39674. feral: {
  39675. height: math.unit(2.05, "m"),
  39676. name: "Feral",
  39677. image: {
  39678. source: "./media/characters/gladi/feral.svg",
  39679. extra: 821/557,
  39680. bottom: 91/912
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Shortest",
  39687. height: math.unit(70, "cm")
  39688. },
  39689. {
  39690. name: "Normal",
  39691. height: math.unit(1.7, "m")
  39692. },
  39693. {
  39694. name: "Macro",
  39695. height: math.unit(10, "m"),
  39696. default: true
  39697. },
  39698. {
  39699. name: "Tallest",
  39700. height: math.unit(200, "m")
  39701. },
  39702. ]
  39703. ))
  39704. characterMakers.push(() => makeCharacter(
  39705. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39706. {
  39707. front: {
  39708. height: math.unit(5 + 7/12, "feet"),
  39709. weight: math.unit(2, "tons"),
  39710. name: "Front",
  39711. image: {
  39712. source: "./media/characters/erdno/front.svg",
  39713. extra: 1234/1129,
  39714. bottom: 35/1269
  39715. }
  39716. },
  39717. angled: {
  39718. height: math.unit(5 + 7/12, "feet"),
  39719. weight: math.unit(2, "tons"),
  39720. name: "Angled",
  39721. image: {
  39722. source: "./media/characters/erdno/angled.svg",
  39723. extra: 1185/1139,
  39724. bottom: 36/1221
  39725. }
  39726. },
  39727. side: {
  39728. height: math.unit(5 + 7/12, "feet"),
  39729. weight: math.unit(2, "tons"),
  39730. name: "Side",
  39731. image: {
  39732. source: "./media/characters/erdno/side.svg",
  39733. extra: 1191/1144,
  39734. bottom: 40/1231
  39735. }
  39736. },
  39737. back: {
  39738. height: math.unit(5 + 7/12, "feet"),
  39739. weight: math.unit(2, "tons"),
  39740. name: "Back",
  39741. image: {
  39742. source: "./media/characters/erdno/back.svg",
  39743. extra: 1202/1146,
  39744. bottom: 17/1219
  39745. }
  39746. },
  39747. frontNsfw: {
  39748. height: math.unit(5 + 7/12, "feet"),
  39749. weight: math.unit(2, "tons"),
  39750. name: "Front (NSFW)",
  39751. image: {
  39752. source: "./media/characters/erdno/front-nsfw.svg",
  39753. extra: 1234/1129,
  39754. bottom: 35/1269
  39755. }
  39756. },
  39757. angledNsfw: {
  39758. height: math.unit(5 + 7/12, "feet"),
  39759. weight: math.unit(2, "tons"),
  39760. name: "Angled (NSFW)",
  39761. image: {
  39762. source: "./media/characters/erdno/angled-nsfw.svg",
  39763. extra: 1185/1139,
  39764. bottom: 36/1221
  39765. }
  39766. },
  39767. sideNsfw: {
  39768. height: math.unit(5 + 7/12, "feet"),
  39769. weight: math.unit(2, "tons"),
  39770. name: "Side (NSFW)",
  39771. image: {
  39772. source: "./media/characters/erdno/side-nsfw.svg",
  39773. extra: 1191/1144,
  39774. bottom: 40/1231
  39775. }
  39776. },
  39777. backNsfw: {
  39778. height: math.unit(5 + 7/12, "feet"),
  39779. weight: math.unit(2, "tons"),
  39780. name: "Back (NSFW)",
  39781. image: {
  39782. source: "./media/characters/erdno/back-nsfw.svg",
  39783. extra: 1202/1146,
  39784. bottom: 17/1219
  39785. }
  39786. },
  39787. frontHyper: {
  39788. height: math.unit(5 + 7/12, "feet"),
  39789. weight: math.unit(2, "tons"),
  39790. name: "Front (Hyper)",
  39791. image: {
  39792. source: "./media/characters/erdno/front-hyper.svg",
  39793. extra: 1298/1136,
  39794. bottom: 35/1333
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(5 + 7/12, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Big",
  39806. height: math.unit(5.7, "meters")
  39807. },
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(5.7, "kilometers")
  39811. },
  39812. {
  39813. name: "Megamacro",
  39814. height: math.unit(5.7, "earths")
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(5 + 10/12, "feet"),
  39823. weight: math.unit(150, "lb"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/jamie/front.svg",
  39827. extra: 1908/1768,
  39828. bottom: 19/1927
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Minimum",
  39835. height: math.unit(2, "cm")
  39836. },
  39837. {
  39838. name: "Micro",
  39839. height: math.unit(3, "inches")
  39840. },
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(5 + 10/12, "feet"),
  39844. default: true
  39845. },
  39846. {
  39847. name: "Macro",
  39848. height: math.unit(150, "feet")
  39849. },
  39850. {
  39851. name: "Megamacro",
  39852. height: math.unit(10000, "m")
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(2, "meters"),
  39861. weight: math.unit(100, "kg"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/shiron/front.svg",
  39865. extra: 2103/1985,
  39866. bottom: 98/2201
  39867. }
  39868. },
  39869. back: {
  39870. height: math.unit(2, "meters"),
  39871. weight: math.unit(100, "kg"),
  39872. name: "Back",
  39873. image: {
  39874. source: "./media/characters/shiron/back.svg",
  39875. extra: 2110/2015,
  39876. bottom: 89/2199
  39877. }
  39878. },
  39879. hand: {
  39880. height: math.unit(0.96, "feet"),
  39881. name: "Hand",
  39882. image: {
  39883. source: "./media/characters/shiron/hand.svg"
  39884. }
  39885. },
  39886. foot: {
  39887. height: math.unit(1.464, "feet"),
  39888. name: "Foot",
  39889. image: {
  39890. source: "./media/characters/shiron/foot.svg"
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Normal",
  39897. height: math.unit(2, "meters")
  39898. },
  39899. {
  39900. name: "Macro",
  39901. height: math.unit(500, "meters"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Megamacro",
  39906. height: math.unit(20, "km")
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(6, "feet"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/sam/front.svg",
  39918. extra: 849/826,
  39919. bottom: 19/868
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(6, "feet"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(8 + 4/12, "feet"),
  39936. weight: math.unit(122, "kg"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/namori-kurogawa/front.svg",
  39940. extra: 1894/1576,
  39941. bottom: 34/1928
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(8 + 4/12, "feet"),
  39949. default: true
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(9, "feet"),
  39958. weight: math.unit(621, "lb"),
  39959. name: "Front",
  39960. image: {
  39961. source: "./media/characters/unmru/front.svg",
  39962. extra: 1853/1747,
  39963. bottom: 73/1926
  39964. }
  39965. },
  39966. side: {
  39967. height: math.unit(9, "feet"),
  39968. weight: math.unit(621, "lb"),
  39969. name: "Side",
  39970. image: {
  39971. source: "./media/characters/unmru/side.svg",
  39972. extra: 1781/1671,
  39973. bottom: 127/1908
  39974. }
  39975. },
  39976. back: {
  39977. height: math.unit(9, "feet"),
  39978. weight: math.unit(621, "lb"),
  39979. name: "Back",
  39980. image: {
  39981. source: "./media/characters/unmru/back.svg",
  39982. extra: 1894/1765,
  39983. bottom: 75/1969
  39984. }
  39985. },
  39986. dick: {
  39987. height: math.unit(3, "feet"),
  39988. weight: math.unit(35, "lb"),
  39989. name: "Dick",
  39990. image: {
  39991. source: "./media/characters/unmru/dick.svg"
  39992. }
  39993. },
  39994. },
  39995. [
  39996. {
  39997. name: "Normal",
  39998. height: math.unit(9, "feet")
  39999. },
  40000. {
  40001. name: "Natural",
  40002. height: math.unit(27, "feet"),
  40003. default: true
  40004. },
  40005. {
  40006. name: "Giant",
  40007. height: math.unit(90, "feet")
  40008. },
  40009. {
  40010. name: "Kaiju",
  40011. height: math.unit(270, "feet")
  40012. },
  40013. {
  40014. name: "Macro",
  40015. height: math.unit(900, "feet")
  40016. },
  40017. {
  40018. name: "Macro+",
  40019. height: math.unit(2700, "feet")
  40020. },
  40021. {
  40022. name: "Megamacro",
  40023. height: math.unit(9000, "feet")
  40024. },
  40025. {
  40026. name: "City-Crushing",
  40027. height: math.unit(27000, "feet")
  40028. },
  40029. {
  40030. name: "Mountain-Mashing",
  40031. height: math.unit(90000, "feet")
  40032. },
  40033. {
  40034. name: "Earth-Eclipsing",
  40035. height: math.unit(2.7e8, "feet")
  40036. },
  40037. {
  40038. name: "Sol-Swallowing",
  40039. height: math.unit(9e10, "feet")
  40040. },
  40041. {
  40042. name: "Majoris-Munching",
  40043. height: math.unit(2.7e13, "feet")
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40049. {
  40050. front: {
  40051. height: math.unit(1, "inch"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/squeaks-mouse/front.svg",
  40055. extra: 352/308,
  40056. bottom: 25/377
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Micro",
  40063. height: math.unit(1, "inch"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40070. {
  40071. side: {
  40072. height: math.unit(35, "feet"),
  40073. name: "Side",
  40074. image: {
  40075. source: "./media/characters/sayko/side.svg",
  40076. extra: 1697/1021,
  40077. bottom: 82/1779
  40078. }
  40079. },
  40080. head: {
  40081. height: math.unit(16, "feet"),
  40082. name: "Head",
  40083. image: {
  40084. source: "./media/characters/sayko/head.svg"
  40085. }
  40086. },
  40087. forepaw: {
  40088. height: math.unit(7.85, "feet"),
  40089. name: "Forepaw",
  40090. image: {
  40091. source: "./media/characters/sayko/forepaw.svg"
  40092. }
  40093. },
  40094. hindpaw: {
  40095. height: math.unit(8.8, "feet"),
  40096. name: "Hindpaw",
  40097. image: {
  40098. source: "./media/characters/sayko/hindpaw.svg"
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(35, "feet"),
  40106. default: true
  40107. },
  40108. {
  40109. name: "Colossus",
  40110. height: math.unit(100, "meters")
  40111. },
  40112. {
  40113. name: "\"Small\" Deity",
  40114. height: math.unit(1, "km")
  40115. },
  40116. {
  40117. name: "\"Large\" Deity",
  40118. height: math.unit(15, "km")
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(6, "feet"),
  40127. weight: math.unit(250, "lb"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/mukiro/front.svg",
  40131. extra: 1368/1310,
  40132. bottom: 34/1402
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Normal",
  40139. height: math.unit(6, "feet"),
  40140. default: true
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(12 + 4/12, "feet"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40152. extra: 1346/1311,
  40153. bottom: 65/1411
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Base",
  40160. height: math.unit(12 + 4/12, "feet"),
  40161. default: true
  40162. },
  40163. {
  40164. name: "Macro",
  40165. height: math.unit(150, "feet")
  40166. },
  40167. {
  40168. name: "Mega",
  40169. height: math.unit(2, "miles")
  40170. },
  40171. {
  40172. name: "Demi God",
  40173. height: math.unit(4, "AU")
  40174. },
  40175. {
  40176. name: "God Size",
  40177. height: math.unit(1, "universe")
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40183. {
  40184. front: {
  40185. height: math.unit(3 + 3/12, "feet"),
  40186. weight: math.unit(88, "lb"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/trey/front.svg",
  40190. extra: 1815/1509,
  40191. bottom: 60/1875
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Normal",
  40198. height: math.unit(3 + 3/12, "feet"),
  40199. default: true
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40205. {
  40206. front: {
  40207. height: math.unit(4, "meters"),
  40208. name: "Front",
  40209. image: {
  40210. source: "./media/characters/adelonda/front.svg",
  40211. extra: 1077/982,
  40212. bottom: 39/1116
  40213. }
  40214. },
  40215. back: {
  40216. height: math.unit(4, "meters"),
  40217. name: "Back",
  40218. image: {
  40219. source: "./media/characters/adelonda/back.svg",
  40220. extra: 1105/1003,
  40221. bottom: 25/1130
  40222. }
  40223. },
  40224. feral: {
  40225. height: math.unit(40/1.5, "meters"),
  40226. name: "Feral",
  40227. image: {
  40228. source: "./media/characters/adelonda/feral.svg",
  40229. extra: 597/271,
  40230. bottom: 387/984
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(4, "meters"),
  40238. default: true
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40244. {
  40245. front: {
  40246. height: math.unit(8 + 4/12, "feet"),
  40247. weight: math.unit(670, "lb"),
  40248. name: "Front",
  40249. image: {
  40250. source: "./media/characters/acadiel/front.svg",
  40251. extra: 1901/1595,
  40252. bottom: 142/2043
  40253. }
  40254. },
  40255. },
  40256. [
  40257. {
  40258. name: "Normal",
  40259. height: math.unit(8 + 4/12, "feet"),
  40260. default: true
  40261. },
  40262. {
  40263. name: "Macro",
  40264. height: math.unit(200, "feet")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(6 + 2/12, "feet"),
  40273. weight: math.unit(185, "lb"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/kayne-ein/front.svg",
  40277. extra: 1780/1560,
  40278. bottom: 81/1861
  40279. }
  40280. },
  40281. },
  40282. [
  40283. {
  40284. name: "Normal",
  40285. height: math.unit(6 + 2/12, "feet"),
  40286. default: true
  40287. },
  40288. {
  40289. name: "Transformation Stage",
  40290. height: math.unit(15, "feet")
  40291. },
  40292. {
  40293. name: "Macro",
  40294. height: math.unit(150, "feet")
  40295. },
  40296. {
  40297. name: "Earth's Shadow",
  40298. height: math.unit(6200, "miles")
  40299. },
  40300. {
  40301. name: "Universal Demon",
  40302. height: math.unit(28e9, "parsecs")
  40303. },
  40304. {
  40305. name: "Multiverse God",
  40306. height: math.unit(3, "multiverses")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40312. {
  40313. front: {
  40314. height: math.unit(5 + 5/12, "feet"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/fawn/front.svg",
  40318. extra: 1873/1731,
  40319. bottom: 95/1968
  40320. }
  40321. },
  40322. back: {
  40323. height: math.unit(5 + 5/12, "feet"),
  40324. name: "Back",
  40325. image: {
  40326. source: "./media/characters/fawn/back.svg",
  40327. extra: 1813/1700,
  40328. bottom: 14/1827
  40329. }
  40330. },
  40331. hoof: {
  40332. height: math.unit(1.45, "feet"),
  40333. name: "Hoof",
  40334. image: {
  40335. source: "./media/characters/fawn/hoof.svg"
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Normal",
  40342. height: math.unit(5 + 5/12, "feet"),
  40343. default: true
  40344. },
  40345. ]
  40346. ))
  40347. characterMakers.push(() => makeCharacter(
  40348. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40349. {
  40350. front: {
  40351. height: math.unit(2 + 5/12, "feet"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/orion/front.svg",
  40355. extra: 1366/1304,
  40356. bottom: 43/1409
  40357. }
  40358. },
  40359. paw: {
  40360. height: math.unit(0.52, "feet"),
  40361. name: "Paw",
  40362. image: {
  40363. source: "./media/characters/orion/paw.svg"
  40364. }
  40365. },
  40366. },
  40367. [
  40368. {
  40369. name: "Normal",
  40370. height: math.unit(2 + 5/12, "feet"),
  40371. default: true
  40372. },
  40373. ]
  40374. ))
  40375. characterMakers.push(() => makeCharacter(
  40376. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40377. {
  40378. front: {
  40379. height: math.unit(5 + 10/12, "feet"),
  40380. name: "Front",
  40381. image: {
  40382. source: "./media/characters/vera/front.svg",
  40383. extra: 1680/1575,
  40384. bottom: 49/1729
  40385. }
  40386. },
  40387. back: {
  40388. height: math.unit(5 + 10/12, "feet"),
  40389. name: "Back",
  40390. image: {
  40391. source: "./media/characters/vera/back.svg",
  40392. extra: 1700/1588,
  40393. bottom: 18/1718
  40394. }
  40395. },
  40396. arcanine: {
  40397. height: math.unit(6 + 8/12, "feet"),
  40398. name: "Arcanine",
  40399. image: {
  40400. source: "./media/characters/vera/arcanine.svg",
  40401. extra: 1590/1511,
  40402. bottom: 71/1661
  40403. }
  40404. },
  40405. maw: {
  40406. height: math.unit(0.82, "feet"),
  40407. name: "Maw",
  40408. image: {
  40409. source: "./media/characters/vera/maw.svg"
  40410. }
  40411. },
  40412. mawArcanine: {
  40413. height: math.unit(0.97, "feet"),
  40414. name: "Maw (Arcanine)",
  40415. image: {
  40416. source: "./media/characters/vera/maw-arcanine.svg"
  40417. }
  40418. },
  40419. paw: {
  40420. height: math.unit(0.75, "feet"),
  40421. name: "Paw",
  40422. image: {
  40423. source: "./media/characters/vera/paw.svg"
  40424. }
  40425. },
  40426. pawprint: {
  40427. height: math.unit(0.52, "feet"),
  40428. name: "Pawprint",
  40429. image: {
  40430. source: "./media/characters/vera/pawprint.svg"
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(5 + 10/12, "feet"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Macro",
  40442. height: math.unit(75, "feet")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(4, "feet"),
  40451. weight: math.unit(40, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/orvan-rabbit/front.svg",
  40455. extra: 1896/1642,
  40456. bottom: 29/1925
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Normal",
  40463. height: math.unit(4, "feet"),
  40464. default: true
  40465. },
  40466. ]
  40467. ))
  40468. characterMakers.push(() => makeCharacter(
  40469. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40470. {
  40471. front: {
  40472. height: math.unit(6, "feet"),
  40473. weight: math.unit(168, "lb"),
  40474. name: "Front",
  40475. image: {
  40476. source: "./media/characters/lisa/front.svg",
  40477. extra: 2065/1867,
  40478. bottom: 46/2111
  40479. }
  40480. },
  40481. back: {
  40482. height: math.unit(6, "feet"),
  40483. weight: math.unit(168, "lb"),
  40484. name: "Back",
  40485. image: {
  40486. source: "./media/characters/lisa/back.svg",
  40487. extra: 1982/1838,
  40488. bottom: 29/2011
  40489. }
  40490. },
  40491. maw: {
  40492. height: math.unit(0.81, "feet"),
  40493. name: "Maw",
  40494. image: {
  40495. source: "./media/characters/lisa/maw.svg"
  40496. }
  40497. },
  40498. paw: {
  40499. height: math.unit(0.9, "feet"),
  40500. name: "Paw",
  40501. image: {
  40502. source: "./media/characters/lisa/paw.svg"
  40503. }
  40504. },
  40505. caribousune: {
  40506. height: math.unit(7 + 2/12, "feet"),
  40507. weight: math.unit(268, "lb"),
  40508. name: "Caribousune",
  40509. image: {
  40510. source: "./media/characters/lisa/caribousune.svg",
  40511. extra: 1843/1633,
  40512. bottom: 29/1872
  40513. }
  40514. },
  40515. frontCaribousune: {
  40516. height: math.unit(7 + 2/12, "feet"),
  40517. weight: math.unit(268, "lb"),
  40518. name: "Front (Caribousune)",
  40519. image: {
  40520. source: "./media/characters/lisa/front-caribousune.svg",
  40521. extra: 1818/1638,
  40522. bottom: 52/1870
  40523. }
  40524. },
  40525. sideCaribousune: {
  40526. height: math.unit(7 + 2/12, "feet"),
  40527. weight: math.unit(268, "lb"),
  40528. name: "Side (Caribousune)",
  40529. image: {
  40530. source: "./media/characters/lisa/side-caribousune.svg",
  40531. extra: 1851/1635,
  40532. bottom: 16/1867
  40533. }
  40534. },
  40535. backCaribousune: {
  40536. height: math.unit(7 + 2/12, "feet"),
  40537. weight: math.unit(268, "lb"),
  40538. name: "Back (Caribousune)",
  40539. image: {
  40540. source: "./media/characters/lisa/back-caribousune.svg",
  40541. extra: 1801/1604,
  40542. bottom: 44/1845
  40543. }
  40544. },
  40545. caribou: {
  40546. height: math.unit(7 + 2/12, "feet"),
  40547. weight: math.unit(268, "lb"),
  40548. name: "Caribou",
  40549. image: {
  40550. source: "./media/characters/lisa/caribou.svg",
  40551. extra: 1843/1633,
  40552. bottom: 29/1872
  40553. }
  40554. },
  40555. frontCaribou: {
  40556. height: math.unit(7 + 2/12, "feet"),
  40557. weight: math.unit(268, "lb"),
  40558. name: "Front (Caribou)",
  40559. image: {
  40560. source: "./media/characters/lisa/front-caribou.svg",
  40561. extra: 1818/1638,
  40562. bottom: 52/1870
  40563. }
  40564. },
  40565. sideCaribou: {
  40566. height: math.unit(7 + 2/12, "feet"),
  40567. weight: math.unit(268, "lb"),
  40568. name: "Side (Caribou)",
  40569. image: {
  40570. source: "./media/characters/lisa/side-caribou.svg",
  40571. extra: 1851/1635,
  40572. bottom: 16/1867
  40573. }
  40574. },
  40575. backCaribou: {
  40576. height: math.unit(7 + 2/12, "feet"),
  40577. weight: math.unit(268, "lb"),
  40578. name: "Back (Caribou)",
  40579. image: {
  40580. source: "./media/characters/lisa/back-caribou.svg",
  40581. extra: 1801/1604,
  40582. bottom: 44/1845
  40583. }
  40584. },
  40585. mawCaribou: {
  40586. height: math.unit(1.45, "feet"),
  40587. name: "Maw (Caribou)",
  40588. image: {
  40589. source: "./media/characters/lisa/maw-caribou.svg"
  40590. }
  40591. },
  40592. mawCaribousune: {
  40593. height: math.unit(1.45, "feet"),
  40594. name: "Maw (Caribousune)",
  40595. image: {
  40596. source: "./media/characters/lisa/maw-caribousune.svg"
  40597. }
  40598. },
  40599. pawCaribousune: {
  40600. height: math.unit(1.61, "feet"),
  40601. name: "Paw (Caribou)",
  40602. image: {
  40603. source: "./media/characters/lisa/paw-caribousune.svg"
  40604. }
  40605. },
  40606. },
  40607. [
  40608. {
  40609. name: "Normal",
  40610. height: math.unit(6, "feet")
  40611. },
  40612. {
  40613. name: "God Size",
  40614. height: math.unit(72, "feet"),
  40615. default: true
  40616. },
  40617. {
  40618. name: "Towering",
  40619. height: math.unit(288, "feet")
  40620. },
  40621. {
  40622. name: "City Size",
  40623. height: math.unit(48384, "feet")
  40624. },
  40625. {
  40626. name: "Continental",
  40627. height: math.unit(4200, "miles")
  40628. },
  40629. {
  40630. name: "Planet Eater",
  40631. height: math.unit(42, "earths")
  40632. },
  40633. {
  40634. name: "Star Swallower",
  40635. height: math.unit(42, "solarradii")
  40636. },
  40637. {
  40638. name: "System Swallower",
  40639. height: math.unit(84000, "AU")
  40640. },
  40641. {
  40642. name: "Galaxy Gobbler",
  40643. height: math.unit(42, "galaxies")
  40644. },
  40645. {
  40646. name: "Universe Devourer",
  40647. height: math.unit(42, "universes")
  40648. },
  40649. {
  40650. name: "Multiverse Muncher",
  40651. height: math.unit(42, "multiverses")
  40652. },
  40653. ]
  40654. ))
  40655. characterMakers.push(() => makeCharacter(
  40656. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40657. {
  40658. front: {
  40659. height: math.unit(36, "feet"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/shadow-rat/front.svg",
  40663. extra: 1845/1758,
  40664. bottom: 83/1928
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Macro",
  40671. height: math.unit(36, "feet"),
  40672. default: true
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40678. {
  40679. side: {
  40680. height: math.unit(8, "feet"),
  40681. weight: math.unit(2630, "lb"),
  40682. name: "Side",
  40683. image: {
  40684. source: "./media/characters/torallia/side.svg",
  40685. extra: 2164/2021,
  40686. bottom: 371/2535
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Mortal Interaction",
  40693. height: math.unit(8, "feet")
  40694. },
  40695. {
  40696. name: "Natural",
  40697. height: math.unit(24, "feet"),
  40698. default: true
  40699. },
  40700. {
  40701. name: "Giant",
  40702. height: math.unit(80, "feet")
  40703. },
  40704. {
  40705. name: "Kaiju",
  40706. height: math.unit(240, "feet")
  40707. },
  40708. {
  40709. name: "Macro",
  40710. height: math.unit(800, "feet")
  40711. },
  40712. {
  40713. name: "Macro+",
  40714. height: math.unit(2400, "feet")
  40715. },
  40716. {
  40717. name: "Macro++",
  40718. height: math.unit(8000, "feet")
  40719. },
  40720. {
  40721. name: "City-Crushing",
  40722. height: math.unit(24000, "feet")
  40723. },
  40724. {
  40725. name: "Mountain-Mashing",
  40726. height: math.unit(80000, "feet")
  40727. },
  40728. {
  40729. name: "District Demolisher",
  40730. height: math.unit(240000, "feet")
  40731. },
  40732. {
  40733. name: "Tri-County Terror",
  40734. height: math.unit(800000, "feet")
  40735. },
  40736. {
  40737. name: "State Smasher",
  40738. height: math.unit(2.4e6, "feet")
  40739. },
  40740. {
  40741. name: "Nation Nemesis",
  40742. height: math.unit(8e6, "feet")
  40743. },
  40744. {
  40745. name: "Continent Cracker",
  40746. height: math.unit(2.4e7, "feet")
  40747. },
  40748. {
  40749. name: "Planet-Pillaging",
  40750. height: math.unit(8e7, "feet")
  40751. },
  40752. {
  40753. name: "Earth-Eclipsing",
  40754. height: math.unit(2.4e8, "feet")
  40755. },
  40756. {
  40757. name: "Jovian-Jostling",
  40758. height: math.unit(8e8, "feet")
  40759. },
  40760. {
  40761. name: "Gas Giant Gulper",
  40762. height: math.unit(2.4e9, "feet")
  40763. },
  40764. {
  40765. name: "Astral Annihilator",
  40766. height: math.unit(8e9, "feet")
  40767. },
  40768. {
  40769. name: "Celestial Conqueror",
  40770. height: math.unit(2.4e10, "feet")
  40771. },
  40772. {
  40773. name: "Sol-Swallowing",
  40774. height: math.unit(8e10, "feet")
  40775. },
  40776. {
  40777. name: "Hunter of the Heavens",
  40778. height: math.unit(2.4e13, "feet")
  40779. },
  40780. ]
  40781. ))
  40782. characterMakers.push(() => makeCharacter(
  40783. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40784. {
  40785. front: {
  40786. height: math.unit(6 + 8/12, "feet"),
  40787. weight: math.unit(250, "kilograms"),
  40788. volume: math.unit(28, "liters"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/rebecca-pawlson/front.svg",
  40792. extra: 1737/1596,
  40793. bottom: 107/1844
  40794. }
  40795. },
  40796. back: {
  40797. height: math.unit(6 + 8/12, "feet"),
  40798. weight: math.unit(250, "kilograms"),
  40799. volume: math.unit(28, "liters"),
  40800. name: "Back",
  40801. image: {
  40802. source: "./media/characters/rebecca-pawlson/back.svg",
  40803. extra: 1702/1523,
  40804. bottom: 86/1788
  40805. }
  40806. },
  40807. },
  40808. [
  40809. {
  40810. name: "Normal",
  40811. height: math.unit(6 + 8/12, "feet")
  40812. },
  40813. {
  40814. name: "Mini Macro",
  40815. height: math.unit(10, "feet"),
  40816. default: true
  40817. },
  40818. {
  40819. name: "Macro",
  40820. height: math.unit(100, "feet")
  40821. },
  40822. {
  40823. name: "Mega Macro",
  40824. height: math.unit(2500, "feet")
  40825. },
  40826. {
  40827. name: "Giga Macro",
  40828. height: math.unit(50, "miles")
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(7 + 6/12, "feet"),
  40837. weight: math.unit(600, "lb"),
  40838. name: "Front",
  40839. image: {
  40840. source: "./media/characters/moxie-nova/front.svg",
  40841. extra: 1734/1652,
  40842. bottom: 41/1775
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(7 + 6/12, "feet"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40856. {
  40857. goat: {
  40858. height: math.unit(4, "feet"),
  40859. weight: math.unit(180, "lb"),
  40860. name: "Goat",
  40861. image: {
  40862. source: "./media/characters/tiffany/goat.svg",
  40863. extra: 1845/1595,
  40864. bottom: 106/1951
  40865. }
  40866. },
  40867. front: {
  40868. height: math.unit(5, "feet"),
  40869. weight: math.unit(150, "lb"),
  40870. name: "Foxcoon",
  40871. image: {
  40872. source: "./media/characters/tiffany/foxcoon.svg",
  40873. extra: 1941/1845,
  40874. bottom: 58/1999
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Normal",
  40881. height: math.unit(5, "feet"),
  40882. default: true
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(8, "feet"),
  40891. weight: math.unit(300, "lb"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/raxinath/front.svg",
  40895. extra: 1407/1309,
  40896. bottom: 39/1446
  40897. }
  40898. },
  40899. back: {
  40900. height: math.unit(8, "feet"),
  40901. weight: math.unit(300, "lb"),
  40902. name: "Back",
  40903. image: {
  40904. source: "./media/characters/raxinath/back.svg",
  40905. extra: 1405/1315,
  40906. bottom: 9/1414
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Speck",
  40913. height: math.unit(0.5, "nm")
  40914. },
  40915. {
  40916. name: "Micro",
  40917. height: math.unit(3, "inches")
  40918. },
  40919. {
  40920. name: "Kobold",
  40921. height: math.unit(3, "feet")
  40922. },
  40923. {
  40924. name: "Normal",
  40925. height: math.unit(8, "feet"),
  40926. default: true
  40927. },
  40928. {
  40929. name: "Giant",
  40930. height: math.unit(50, "feet")
  40931. },
  40932. {
  40933. name: "Macro",
  40934. height: math.unit(1000, "feet")
  40935. },
  40936. {
  40937. name: "Megamacro",
  40938. height: math.unit(1, "mile")
  40939. },
  40940. ]
  40941. ))
  40942. characterMakers.push(() => makeCharacter(
  40943. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40944. {
  40945. front: {
  40946. height: math.unit(10, "feet"),
  40947. weight: math.unit(1442, "lb"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/mal-dragon/front.svg",
  40951. extra: 1515/1444,
  40952. bottom: 113/1628
  40953. }
  40954. },
  40955. back: {
  40956. height: math.unit(10, "feet"),
  40957. weight: math.unit(1442, "lb"),
  40958. name: "Back",
  40959. image: {
  40960. source: "./media/characters/mal-dragon/back.svg",
  40961. extra: 1527/1434,
  40962. bottom: 25/1552
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Mortal Interaction",
  40969. height: math.unit(10, "feet"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "Large",
  40974. height: math.unit(30, "feet")
  40975. },
  40976. {
  40977. name: "Kaiju",
  40978. height: math.unit(300, "feet")
  40979. },
  40980. {
  40981. name: "Megamacro",
  40982. height: math.unit(10000, "feet")
  40983. },
  40984. {
  40985. name: "Continent Cracker",
  40986. height: math.unit(30000000, "feet")
  40987. },
  40988. {
  40989. name: "Sol-Swallowing",
  40990. height: math.unit(1e11, "feet")
  40991. },
  40992. {
  40993. name: "Light Universal",
  40994. height: math.unit(5, "universes")
  40995. },
  40996. {
  40997. name: "Universe Atoms",
  40998. height: math.unit(1.829e9, "universes")
  40999. },
  41000. {
  41001. name: "Light Multiversal",
  41002. height: math.unit(5, "multiverses")
  41003. },
  41004. {
  41005. name: "Multiverse Atoms",
  41006. height: math.unit(1.829e9, "multiverses")
  41007. },
  41008. {
  41009. name: "Fabric of Time",
  41010. height: math.unit(1e262, "multiverses")
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(9, "feet"),
  41019. weight: math.unit(1050, "lb"),
  41020. name: "Front",
  41021. image: {
  41022. source: "./media/characters/tabitha/front.svg",
  41023. extra: 2083/1994,
  41024. bottom: 68/2151
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Baseline",
  41031. height: math.unit(9, "feet"),
  41032. default: true
  41033. },
  41034. {
  41035. name: "Giant",
  41036. height: math.unit(90, "feet")
  41037. },
  41038. {
  41039. name: "Macro",
  41040. height: math.unit(900, "feet")
  41041. },
  41042. {
  41043. name: "Megamacro",
  41044. height: math.unit(9000, "feet")
  41045. },
  41046. {
  41047. name: "City-Crushing",
  41048. height: math.unit(27000, "feet")
  41049. },
  41050. {
  41051. name: "Mountain-Mashing",
  41052. height: math.unit(90000, "feet")
  41053. },
  41054. {
  41055. name: "Nation Nemesis",
  41056. height: math.unit(9e6, "feet")
  41057. },
  41058. {
  41059. name: "Continent Cracker",
  41060. height: math.unit(27e6, "feet")
  41061. },
  41062. {
  41063. name: "Earth-Eclipsing",
  41064. height: math.unit(2.7e8, "feet")
  41065. },
  41066. {
  41067. name: "Gas Giant Gulper",
  41068. height: math.unit(2.7e9, "feet")
  41069. },
  41070. {
  41071. name: "Sol-Swallowing",
  41072. height: math.unit(9e10, "feet")
  41073. },
  41074. {
  41075. name: "Galaxy Gulper",
  41076. height: math.unit(9, "galaxies")
  41077. },
  41078. {
  41079. name: "Cosmos Churner",
  41080. height: math.unit(9, "universes")
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41086. {
  41087. front: {
  41088. height: math.unit(160, "cm"),
  41089. weight: math.unit(55, "kg"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/tow/front.svg",
  41093. extra: 1751/1722,
  41094. bottom: 74/1825
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Norm",
  41101. height: math.unit(160, "cm")
  41102. },
  41103. {
  41104. name: "Casual",
  41105. height: math.unit(3200, "m"),
  41106. default: true
  41107. },
  41108. {
  41109. name: "Show-Off",
  41110. height: math.unit(160, "km")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41116. {
  41117. front: {
  41118. height: math.unit(7 + 11/12, "feet"),
  41119. weight: math.unit(342.8, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/vivian-orca-dragon/front.svg",
  41123. extra: 1890/1865,
  41124. bottom: 28/1918
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Micro",
  41131. height: math.unit(5, "inches")
  41132. },
  41133. {
  41134. name: "Normal",
  41135. height: math.unit(7 + 11/12, "feet"),
  41136. default: true
  41137. },
  41138. {
  41139. name: "Macro",
  41140. height: math.unit(395 + 7/12, "feet")
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41146. {
  41147. side: {
  41148. height: math.unit(10, "feet"),
  41149. weight: math.unit(1442, "lb"),
  41150. name: "Side",
  41151. image: {
  41152. source: "./media/characters/lotherakon/side.svg",
  41153. extra: 1604/1497,
  41154. bottom: 89/1693
  41155. }
  41156. },
  41157. },
  41158. [
  41159. {
  41160. name: "Mortal Interaction",
  41161. height: math.unit(10, "feet")
  41162. },
  41163. {
  41164. name: "Large",
  41165. height: math.unit(30, "feet"),
  41166. default: true
  41167. },
  41168. {
  41169. name: "Giant",
  41170. height: math.unit(100, "feet")
  41171. },
  41172. {
  41173. name: "Kaiju",
  41174. height: math.unit(300, "feet")
  41175. },
  41176. {
  41177. name: "Macro",
  41178. height: math.unit(1000, "feet")
  41179. },
  41180. {
  41181. name: "Macro+",
  41182. height: math.unit(3000, "feet")
  41183. },
  41184. {
  41185. name: "Megamacro",
  41186. height: math.unit(10000, "feet")
  41187. },
  41188. {
  41189. name: "City-Crushing",
  41190. height: math.unit(30000, "feet")
  41191. },
  41192. {
  41193. name: "Continent Cracker",
  41194. height: math.unit(30e6, "feet")
  41195. },
  41196. {
  41197. name: "Earth Eclipsing",
  41198. height: math.unit(3e8, "feet")
  41199. },
  41200. {
  41201. name: "Gas Giant Gulper",
  41202. height: math.unit(3e9, "feet")
  41203. },
  41204. {
  41205. name: "Sol-Swallowing",
  41206. height: math.unit(1e11, "feet")
  41207. },
  41208. {
  41209. name: "System Swallower",
  41210. height: math.unit(3e14, "feet")
  41211. },
  41212. {
  41213. name: "Galaxy Gulper",
  41214. height: math.unit(10, "galaxies")
  41215. },
  41216. {
  41217. name: "Light Universal",
  41218. height: math.unit(5, "universes")
  41219. },
  41220. {
  41221. name: "Universe Palm",
  41222. height: math.unit(20, "universes")
  41223. },
  41224. {
  41225. name: "Light Multiversal",
  41226. height: math.unit(5, "multiverses")
  41227. },
  41228. {
  41229. name: "Multiverse Palm",
  41230. height: math.unit(20, "multiverses")
  41231. },
  41232. {
  41233. name: "Inferno Incarnate",
  41234. height: math.unit(1e7, "multiverses")
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41240. {
  41241. front: {
  41242. height: math.unit(8, "feet"),
  41243. weight: math.unit(1200, "lb"),
  41244. name: "Front",
  41245. image: {
  41246. source: "./media/characters/malithee/front.svg",
  41247. extra: 1675/1640,
  41248. bottom: 162/1837
  41249. }
  41250. },
  41251. },
  41252. [
  41253. {
  41254. name: "Mortal Interaction",
  41255. height: math.unit(8, "feet"),
  41256. default: true
  41257. },
  41258. {
  41259. name: "Large",
  41260. height: math.unit(24, "feet")
  41261. },
  41262. {
  41263. name: "Kaiju",
  41264. height: math.unit(240, "feet")
  41265. },
  41266. {
  41267. name: "Megamacro",
  41268. height: math.unit(8000, "feet")
  41269. },
  41270. {
  41271. name: "Continent Cracker",
  41272. height: math.unit(24e6, "feet")
  41273. },
  41274. {
  41275. name: "Earth-Eclipsing",
  41276. height: math.unit(2.4e8, "feet")
  41277. },
  41278. {
  41279. name: "Sol-Swallowing",
  41280. height: math.unit(8e10, "feet")
  41281. },
  41282. {
  41283. name: "Galaxy Gulper",
  41284. height: math.unit(8, "galaxies")
  41285. },
  41286. {
  41287. name: "Light Universal",
  41288. height: math.unit(4, "universes")
  41289. },
  41290. {
  41291. name: "Universe Atoms",
  41292. height: math.unit(1.829e9, "universes")
  41293. },
  41294. {
  41295. name: "Light Multiversal",
  41296. height: math.unit(4, "multiverses")
  41297. },
  41298. {
  41299. name: "Multiverse Atoms",
  41300. height: math.unit(1.829e9, "multiverses")
  41301. },
  41302. {
  41303. name: "Nigh-Omnipresence",
  41304. height: math.unit(8e261, "multiverses")
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(10, "feet"),
  41313. weight: math.unit(1500, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/miles-thestia/front.svg",
  41317. extra: 1812/1727,
  41318. bottom: 86/1898
  41319. }
  41320. },
  41321. back: {
  41322. height: math.unit(10, "feet"),
  41323. weight: math.unit(1500, "lb"),
  41324. name: "Back",
  41325. image: {
  41326. source: "./media/characters/miles-thestia/back.svg",
  41327. extra: 1799/1690,
  41328. bottom: 47/1846
  41329. }
  41330. },
  41331. frontNsfw: {
  41332. height: math.unit(10, "feet"),
  41333. weight: math.unit(1500, "lb"),
  41334. name: "Front (NSFW)",
  41335. image: {
  41336. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41337. extra: 1812/1727,
  41338. bottom: 86/1898
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Mini-Macro",
  41345. height: math.unit(10, "feet"),
  41346. default: true
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(25, "feet"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/titan-s-wulf/front.svg",
  41358. extra: 1560/1484,
  41359. bottom: 76/1636
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Smallest",
  41366. height: math.unit(25, "feet"),
  41367. default: true
  41368. },
  41369. {
  41370. name: "Normal",
  41371. height: math.unit(200, "feet")
  41372. },
  41373. {
  41374. name: "Macro",
  41375. height: math.unit(200000, "feet")
  41376. },
  41377. {
  41378. name: "Multiversal Original",
  41379. height: math.unit(10000, "multiverses")
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(8, "feet"),
  41388. weight: math.unit(553, "lb"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/tawendeh/front.svg",
  41392. extra: 2365/2268,
  41393. bottom: 83/2448
  41394. }
  41395. },
  41396. frontClothed: {
  41397. height: math.unit(8, "feet"),
  41398. weight: math.unit(553, "lb"),
  41399. name: "Front (Clothed)",
  41400. image: {
  41401. source: "./media/characters/tawendeh/front-clothed.svg",
  41402. extra: 2365/2268,
  41403. bottom: 83/2448
  41404. }
  41405. },
  41406. back: {
  41407. height: math.unit(8, "feet"),
  41408. weight: math.unit(553, "lb"),
  41409. name: "Back",
  41410. image: {
  41411. source: "./media/characters/tawendeh/back.svg",
  41412. extra: 2397/2294,
  41413. bottom: 42/2439
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Mortal Interaction",
  41420. height: math.unit(8, "feet"),
  41421. default: true
  41422. },
  41423. {
  41424. name: "Giant",
  41425. height: math.unit(80, "feet")
  41426. },
  41427. {
  41428. name: "Macro",
  41429. height: math.unit(800, "feet")
  41430. },
  41431. {
  41432. name: "Megamacro",
  41433. height: math.unit(8000, "feet")
  41434. },
  41435. {
  41436. name: "City-Crushing",
  41437. height: math.unit(24000, "feet")
  41438. },
  41439. {
  41440. name: "Mountain-Mashing",
  41441. height: math.unit(80000, "feet")
  41442. },
  41443. {
  41444. name: "Nation Nemesis",
  41445. height: math.unit(8e6, "feet")
  41446. },
  41447. {
  41448. name: "Continent Cracker",
  41449. height: math.unit(24e6, "feet")
  41450. },
  41451. {
  41452. name: "Earth-Eclipsing",
  41453. height: math.unit(2.4e8, "feet")
  41454. },
  41455. {
  41456. name: "Gas Giant Gulper",
  41457. height: math.unit(2.4e9, "feet")
  41458. },
  41459. {
  41460. name: "Sol-Swallowing",
  41461. height: math.unit(8e10, "feet")
  41462. },
  41463. {
  41464. name: "Galaxy Gulper",
  41465. height: math.unit(8, "galaxies")
  41466. },
  41467. {
  41468. name: "Cosmos Churner",
  41469. height: math.unit(8, "universes")
  41470. },
  41471. {
  41472. name: "Omnipotent Otter",
  41473. height: math.unit(80, "universes")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(2.6, "meters"),
  41482. weight: math.unit(900, "kg"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/neesha/front.svg",
  41486. extra: 1803/1653,
  41487. bottom: 128/1931
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(2.6, "meters"),
  41495. default: true
  41496. },
  41497. {
  41498. name: "Macro",
  41499. height: math.unit(50, "meters")
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(5, "feet"),
  41508. weight: math.unit(185, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/kyera/front.svg",
  41512. extra: 1875/1790,
  41513. bottom: 96/1971
  41514. }
  41515. },
  41516. },
  41517. [
  41518. {
  41519. name: "Normal",
  41520. height: math.unit(5, "feet"),
  41521. default: true
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41527. {
  41528. front: {
  41529. height: math.unit(7 + 6/12, "feet"),
  41530. weight: math.unit(540, "lb"),
  41531. name: "Front",
  41532. image: {
  41533. source: "./media/characters/yuko/front.svg",
  41534. extra: 1282/1222,
  41535. bottom: 101/1383
  41536. }
  41537. },
  41538. frontClothed: {
  41539. height: math.unit(7 + 6/12, "feet"),
  41540. weight: math.unit(540, "lb"),
  41541. name: "Front (Clothed)",
  41542. image: {
  41543. source: "./media/characters/yuko/front-clothed.svg",
  41544. extra: 1282/1222,
  41545. bottom: 101/1383
  41546. }
  41547. },
  41548. },
  41549. [
  41550. {
  41551. name: "Normal",
  41552. height: math.unit(7 + 6/12, "feet"),
  41553. default: true
  41554. },
  41555. {
  41556. name: "Macro",
  41557. height: math.unit(26 + 9/12, "feet")
  41558. },
  41559. {
  41560. name: "Megamacro",
  41561. height: math.unit(300, "feet")
  41562. },
  41563. {
  41564. name: "Gigamacro",
  41565. height: math.unit(5000, "feet")
  41566. },
  41567. {
  41568. name: "Planetary",
  41569. height: math.unit(10000, "miles")
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(8 + 2/12, "feet"),
  41578. weight: math.unit(600, "lb"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/deam-nitrel/front.svg",
  41582. extra: 1308/1234,
  41583. bottom: 125/1433
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(8 + 2/12, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(6.1, "feet"),
  41600. weight: math.unit(180, "lb"),
  41601. name: "Front",
  41602. image: {
  41603. source: "./media/characters/skyress/front.svg",
  41604. extra: 1045/915,
  41605. bottom: 28/1073
  41606. }
  41607. },
  41608. maw: {
  41609. height: math.unit(1, "feet"),
  41610. name: "Maw",
  41611. image: {
  41612. source: "./media/characters/skyress/maw.svg"
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(6.1, "feet"),
  41620. default: true
  41621. },
  41622. {
  41623. name: "Macro",
  41624. height: math.unit(200, "feet")
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(4 + 2/12, "feet"),
  41633. weight: math.unit(40, "kg"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/amethyst-jones/front.svg",
  41637. extra: 1220/1150,
  41638. bottom: 101/1321
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Normal",
  41645. height: math.unit(4 + 2/12, "feet"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(1.7, "m"),
  41655. weight: math.unit(135, "lb"),
  41656. name: "Front",
  41657. image: {
  41658. source: "./media/characters/jade/front.svg",
  41659. extra: 1818/1767,
  41660. bottom: 32/1850
  41661. }
  41662. },
  41663. back: {
  41664. height: math.unit(1.7, "m"),
  41665. weight: math.unit(135, "lb"),
  41666. name: "Back",
  41667. image: {
  41668. source: "./media/characters/jade/back.svg",
  41669. extra: 1869/1809,
  41670. bottom: 35/1904
  41671. }
  41672. },
  41673. hand: {
  41674. height: math.unit(0.24, "m"),
  41675. name: "Hand",
  41676. image: {
  41677. source: "./media/characters/jade/hand.svg"
  41678. }
  41679. },
  41680. foot: {
  41681. height: math.unit(0.263, "m"),
  41682. name: "Foot",
  41683. image: {
  41684. source: "./media/characters/jade/foot.svg"
  41685. }
  41686. },
  41687. dick: {
  41688. height: math.unit(0.47, "m"),
  41689. name: "Dick",
  41690. image: {
  41691. source: "./media/characters/jade/dick.svg"
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Micro",
  41698. height: math.unit(22, "cm")
  41699. },
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(1.7, "m"),
  41703. default: true
  41704. },
  41705. {
  41706. name: "Macro",
  41707. height: math.unit(152, "m")
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41713. {
  41714. front: {
  41715. height: math.unit(100, "miles"),
  41716. weight: math.unit(20000, "tons"),
  41717. name: "Front",
  41718. image: {
  41719. source: "./media/characters/cookie/front.svg",
  41720. extra: 1125/1070,
  41721. bottom: 30/1155
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Big",
  41728. height: math.unit(50, "feet")
  41729. },
  41730. {
  41731. name: "Macro",
  41732. height: math.unit(100, "miles"),
  41733. default: true
  41734. },
  41735. {
  41736. name: "Megamacro",
  41737. height: math.unit(90000, "miles")
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(6, "feet"),
  41746. weight: math.unit(145, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/farzian/front.svg",
  41750. extra: 1902/1693,
  41751. bottom: 108/2010
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Macro",
  41758. height: math.unit(500, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(3 + 6/12, "feet"),
  41768. weight: math.unit(50, "lb"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/kimberly-tilson/front.svg",
  41772. extra: 1400/1322,
  41773. bottom: 36/1436
  41774. }
  41775. },
  41776. back: {
  41777. height: math.unit(3 + 6/12, "feet"),
  41778. weight: math.unit(50, "lb"),
  41779. name: "Back",
  41780. image: {
  41781. source: "./media/characters/kimberly-tilson/back.svg",
  41782. extra: 1370/1307,
  41783. bottom: 20/1390
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Normal",
  41790. height: math.unit(3 + 6/12, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(1148, "feet"),
  41800. weight: math.unit(34057, "lb"),
  41801. name: "Front",
  41802. image: {
  41803. source: "./media/characters/harthos/front.svg",
  41804. extra: 1391/1339,
  41805. bottom: 13/1404
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Macro",
  41812. height: math.unit(1148, "feet"),
  41813. default: true
  41814. },
  41815. ]
  41816. ))
  41817. characterMakers.push(() => makeCharacter(
  41818. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41819. {
  41820. front: {
  41821. height: math.unit(15, "feet"),
  41822. name: "Front",
  41823. image: {
  41824. source: "./media/characters/hypatia/front.svg",
  41825. extra: 1653/1591,
  41826. bottom: 79/1732
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(15, "feet")
  41834. },
  41835. {
  41836. name: "Small",
  41837. height: math.unit(300, "feet")
  41838. },
  41839. {
  41840. name: "Macro",
  41841. height: math.unit(2500, "feet"),
  41842. default: true
  41843. },
  41844. {
  41845. name: "Mega Macro",
  41846. height: math.unit(1500, "miles")
  41847. },
  41848. {
  41849. name: "Giga Macro",
  41850. height: math.unit(1.5e6, "miles")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(6, "feet"),
  41859. weight: math.unit(200, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/wulver/front.svg",
  41863. extra: 1724/1632,
  41864. bottom: 130/1854
  41865. }
  41866. },
  41867. frontNsfw: {
  41868. height: math.unit(6, "feet"),
  41869. weight: math.unit(200, "lb"),
  41870. name: "Front (NSFW)",
  41871. image: {
  41872. source: "./media/characters/wulver/front-nsfw.svg",
  41873. extra: 1724/1632,
  41874. bottom: 130/1854
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Human-Sized",
  41881. height: math.unit(6, "feet")
  41882. },
  41883. {
  41884. name: "Normal",
  41885. height: math.unit(4, "meters"),
  41886. default: true
  41887. },
  41888. {
  41889. name: "Large",
  41890. height: math.unit(6, "m")
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(7, "feet"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/maru/front.svg",
  41902. extra: 1595/1570,
  41903. bottom: 0/1595
  41904. }
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(7, "feet"),
  41911. default: true
  41912. },
  41913. {
  41914. name: "Macro",
  41915. height: math.unit(700, "feet")
  41916. },
  41917. {
  41918. name: "Mega Macro",
  41919. height: math.unit(25, "miles")
  41920. },
  41921. ]
  41922. ))
  41923. characterMakers.push(() => makeCharacter(
  41924. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41925. {
  41926. front: {
  41927. height: math.unit(6, "feet"),
  41928. weight: math.unit(170, "lb"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/xenon/front.svg",
  41932. extra: 1376/1305,
  41933. bottom: 56/1432
  41934. }
  41935. },
  41936. back: {
  41937. height: math.unit(6, "feet"),
  41938. weight: math.unit(170, "lb"),
  41939. name: "Back",
  41940. image: {
  41941. source: "./media/characters/xenon/back.svg",
  41942. extra: 1328/1259,
  41943. bottom: 95/1423
  41944. }
  41945. },
  41946. maw: {
  41947. height: math.unit(0.52, "feet"),
  41948. name: "Maw",
  41949. image: {
  41950. source: "./media/characters/xenon/maw.svg"
  41951. }
  41952. },
  41953. handLeft: {
  41954. height: math.unit(0.82 * 169 / 153, "feet"),
  41955. name: "Hand (Left)",
  41956. image: {
  41957. source: "./media/characters/xenon/hand-left.svg"
  41958. }
  41959. },
  41960. handRight: {
  41961. height: math.unit(0.82, "feet"),
  41962. name: "Hand (Right)",
  41963. image: {
  41964. source: "./media/characters/xenon/hand-right.svg"
  41965. }
  41966. },
  41967. footLeft: {
  41968. height: math.unit(1.13, "feet"),
  41969. name: "Foot (Left)",
  41970. image: {
  41971. source: "./media/characters/xenon/foot-left.svg"
  41972. }
  41973. },
  41974. footRight: {
  41975. height: math.unit(1.13 * 194 / 196, "feet"),
  41976. name: "Foot (Right)",
  41977. image: {
  41978. source: "./media/characters/xenon/foot-right.svg"
  41979. }
  41980. },
  41981. },
  41982. [
  41983. {
  41984. name: "Micro",
  41985. height: math.unit(0.8, "inches")
  41986. },
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(6, "feet")
  41990. },
  41991. {
  41992. name: "Macro",
  41993. height: math.unit(50, "feet"),
  41994. default: true
  41995. },
  41996. {
  41997. name: "Macro+",
  41998. height: math.unit(250, "feet")
  41999. },
  42000. {
  42001. name: "Megamacro",
  42002. height: math.unit(1500, "feet")
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42008. {
  42009. front: {
  42010. height: math.unit(7 + 5/12, "feet"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/zane/front.svg",
  42014. extra: 1260/1203,
  42015. bottom: 94/1354
  42016. }
  42017. },
  42018. back: {
  42019. height: math.unit(5.05, "feet"),
  42020. name: "Back",
  42021. image: {
  42022. source: "./media/characters/zane/back.svg",
  42023. extra: 893/829,
  42024. bottom: 30/923
  42025. }
  42026. },
  42027. werewolf: {
  42028. height: math.unit(11, "feet"),
  42029. name: "Werewolf",
  42030. image: {
  42031. source: "./media/characters/zane/werewolf.svg",
  42032. extra: 1383/1323,
  42033. bottom: 89/1472
  42034. }
  42035. },
  42036. foot: {
  42037. height: math.unit(1.46, "feet"),
  42038. name: "Foot",
  42039. image: {
  42040. source: "./media/characters/zane/foot.svg"
  42041. }
  42042. },
  42043. footFront: {
  42044. height: math.unit(0.784, "feet"),
  42045. name: "Foot (Front)",
  42046. image: {
  42047. source: "./media/characters/zane/foot-front.svg"
  42048. }
  42049. },
  42050. dick: {
  42051. height: math.unit(1.95, "feet"),
  42052. name: "Dick",
  42053. image: {
  42054. source: "./media/characters/zane/dick.svg"
  42055. }
  42056. },
  42057. dickWerewolf: {
  42058. height: math.unit(3.77, "feet"),
  42059. name: "Dick (Werewolf)",
  42060. image: {
  42061. source: "./media/characters/zane/dick.svg"
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(7 + 5/12, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42075. {
  42076. front: {
  42077. height: math.unit(6 + 2/12, "feet"),
  42078. weight: math.unit(284, "lb"),
  42079. name: "Front",
  42080. image: {
  42081. source: "./media/characters/benni-desparque/front.svg",
  42082. extra: 1353/1126,
  42083. bottom: 69/1422
  42084. }
  42085. },
  42086. },
  42087. [
  42088. {
  42089. name: "Civilian",
  42090. height: math.unit(6 + 2/12, "feet")
  42091. },
  42092. {
  42093. name: "Normal",
  42094. height: math.unit(98, "feet"),
  42095. default: true
  42096. },
  42097. {
  42098. name: "Kaiju Fighter",
  42099. height: math.unit(268, "feet")
  42100. },
  42101. ]
  42102. ))
  42103. characterMakers.push(() => makeCharacter(
  42104. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42105. {
  42106. front: {
  42107. height: math.unit(5, "feet"),
  42108. weight: math.unit(105, "lb"),
  42109. name: "Front",
  42110. image: {
  42111. source: "./media/characters/maxine/front.svg",
  42112. extra: 1386/1250,
  42113. bottom: 71/1457
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(5, "feet"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42127. {
  42128. front: {
  42129. height: math.unit(11 + 7/12, "feet"),
  42130. weight: math.unit(9576, "lb"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/scaly/front.svg",
  42134. extra: 888/867,
  42135. bottom: 36/924
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Normal",
  42142. height: math.unit(11 + 7/12, "feet"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42149. {
  42150. front: {
  42151. height: math.unit(6 + 3/12, "feet"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/saelria/front.svg",
  42155. extra: 1243/1138,
  42156. bottom: 46/1289
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Micro",
  42163. height: math.unit(6, "inches"),
  42164. },
  42165. {
  42166. name: "Normal",
  42167. height: math.unit(6 + 3/12, "feet"),
  42168. default: true
  42169. },
  42170. {
  42171. name: "Macro",
  42172. height: math.unit(25, "feet")
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(80, "meters"),
  42181. weight: math.unit(7000, "tonnes"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/tef/front.svg",
  42185. extra: 2036/1991,
  42186. bottom: 54/2090
  42187. }
  42188. },
  42189. back: {
  42190. height: math.unit(80, "meters"),
  42191. weight: math.unit(7000, "tonnes"),
  42192. name: "Back",
  42193. image: {
  42194. source: "./media/characters/tef/back.svg",
  42195. extra: 2036/1991,
  42196. bottom: 54/2090
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Macro",
  42203. height: math.unit(80, "meters"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(13, "feet"),
  42213. weight: math.unit(6, "tons"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/rover/front.svg",
  42217. extra: 1233/1156,
  42218. bottom: 50/1283
  42219. }
  42220. },
  42221. back: {
  42222. height: math.unit(13, "feet"),
  42223. weight: math.unit(6, "tons"),
  42224. name: "Back",
  42225. image: {
  42226. source: "./media/characters/rover/back.svg",
  42227. extra: 1327/1258,
  42228. bottom: 39/1366
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Normal",
  42235. height: math.unit(13, "feet"),
  42236. default: true
  42237. },
  42238. {
  42239. name: "Macro",
  42240. height: math.unit(1300, "feet")
  42241. },
  42242. {
  42243. name: "Megamacro",
  42244. height: math.unit(1300, "miles")
  42245. },
  42246. {
  42247. name: "Gigamacro",
  42248. height: math.unit(1300000, "miles")
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(6, "feet"),
  42257. weight: math.unit(150, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/ariz/front.svg",
  42261. extra: 1401/1346,
  42262. bottom: 5/1406
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Normal",
  42269. height: math.unit(10, "feet"),
  42270. default: true
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42276. {
  42277. front: {
  42278. height: math.unit(6, "feet"),
  42279. weight: math.unit(140, "lb"),
  42280. name: "Front",
  42281. image: {
  42282. source: "./media/characters/sigrun/front.svg",
  42283. extra: 1418/1359,
  42284. bottom: 27/1445
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(35, "feet"),
  42292. default: true
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42298. {
  42299. front: {
  42300. height: math.unit(6, "feet"),
  42301. weight: math.unit(150, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/numin/front.svg",
  42305. extra: 1433/1388,
  42306. bottom: 12/1445
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(21.5, "km"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42320. {
  42321. front: {
  42322. height: math.unit(6, "feet"),
  42323. weight: math.unit(463, "lb"),
  42324. name: "Front",
  42325. image: {
  42326. source: "./media/characters/melwa/front.svg",
  42327. extra: 1307/1248,
  42328. bottom: 93/1400
  42329. }
  42330. },
  42331. },
  42332. [
  42333. {
  42334. name: "Macro",
  42335. height: math.unit(50, "meters"),
  42336. default: true
  42337. },
  42338. ]
  42339. ))
  42340. characterMakers.push(() => makeCharacter(
  42341. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42342. {
  42343. front: {
  42344. height: math.unit(325, "feet"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/zorkaiju/front.svg",
  42348. extra: 1955/1814,
  42349. bottom: 40/1995
  42350. }
  42351. },
  42352. frontExtended: {
  42353. height: math.unit(325, "feet"),
  42354. name: "Front (Extended)",
  42355. image: {
  42356. source: "./media/characters/zorkaiju/front-extended.svg",
  42357. extra: 1955/1814,
  42358. bottom: 40/1995
  42359. }
  42360. },
  42361. side: {
  42362. height: math.unit(325, "feet"),
  42363. name: "Side",
  42364. image: {
  42365. source: "./media/characters/zorkaiju/side.svg",
  42366. extra: 1495/1396,
  42367. bottom: 17/1512
  42368. }
  42369. },
  42370. sideExtended: {
  42371. height: math.unit(325, "feet"),
  42372. name: "Side (Extended)",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/side-extended.svg",
  42375. extra: 1495/1396,
  42376. bottom: 17/1512
  42377. }
  42378. },
  42379. back: {
  42380. height: math.unit(325, "feet"),
  42381. name: "Back",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/back.svg",
  42384. extra: 1959/1821,
  42385. bottom: 31/1990
  42386. }
  42387. },
  42388. backExtended: {
  42389. height: math.unit(325, "feet"),
  42390. name: "Back (Extended)",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/back-extended.svg",
  42393. extra: 1959/1821,
  42394. bottom: 31/1990
  42395. }
  42396. },
  42397. hand: {
  42398. height: math.unit(58.4, "feet"),
  42399. name: "Hand",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/hand.svg"
  42402. }
  42403. },
  42404. handExtended: {
  42405. height: math.unit(61.4, "feet"),
  42406. name: "Hand (Extended)",
  42407. image: {
  42408. source: "./media/characters/zorkaiju/hand-extended.svg"
  42409. }
  42410. },
  42411. foot: {
  42412. height: math.unit(95, "feet"),
  42413. name: "Foot",
  42414. image: {
  42415. source: "./media/characters/zorkaiju/foot.svg"
  42416. }
  42417. },
  42418. leftArm: {
  42419. height: math.unit(59, "feet"),
  42420. name: "Left Arm",
  42421. image: {
  42422. source: "./media/characters/zorkaiju/left-arm.svg"
  42423. }
  42424. },
  42425. rightArm: {
  42426. height: math.unit(59, "feet"),
  42427. name: "Right Arm",
  42428. image: {
  42429. source: "./media/characters/zorkaiju/right-arm.svg"
  42430. }
  42431. },
  42432. leftArmExtended: {
  42433. height: math.unit(59 * 1.033546, "feet"),
  42434. name: "Left Arm (Extended)",
  42435. image: {
  42436. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42437. }
  42438. },
  42439. rightArmExtended: {
  42440. height: math.unit(59 * 1.0496, "feet"),
  42441. name: "Right Arm (Extended)",
  42442. image: {
  42443. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42444. }
  42445. },
  42446. tail: {
  42447. height: math.unit(104, "feet"),
  42448. name: "Tail",
  42449. image: {
  42450. source: "./media/characters/zorkaiju/tail.svg"
  42451. }
  42452. },
  42453. tailExtended: {
  42454. height: math.unit(104, "feet"),
  42455. name: "Tail (Extended)",
  42456. image: {
  42457. source: "./media/characters/zorkaiju/tail-extended.svg"
  42458. }
  42459. },
  42460. tailBottom: {
  42461. height: math.unit(104, "feet"),
  42462. name: "Tail Bottom",
  42463. image: {
  42464. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42465. }
  42466. },
  42467. crystal: {
  42468. height: math.unit(27.54, "feet"),
  42469. name: "Crystal",
  42470. image: {
  42471. source: "./media/characters/zorkaiju/crystal.svg"
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Kaiju",
  42478. height: math.unit(325, "feet"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(6 + 1/12, "feet"),
  42488. weight: math.unit(115, "lb"),
  42489. name: "Front",
  42490. image: {
  42491. source: "./media/characters/bailey-belfry/front.svg",
  42492. extra: 1240/1121,
  42493. bottom: 101/1341
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(6 + 1/12, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42507. {
  42508. side: {
  42509. height: math.unit(4, "meters"),
  42510. weight: math.unit(250, "kg"),
  42511. name: "Side",
  42512. image: {
  42513. source: "./media/characters/blacky/side.svg",
  42514. extra: 1027/919,
  42515. bottom: 43/1070
  42516. }
  42517. },
  42518. maw: {
  42519. height: math.unit(1, "meters"),
  42520. name: "Maw",
  42521. image: {
  42522. source: "./media/characters/blacky/maw.svg"
  42523. }
  42524. },
  42525. paw: {
  42526. height: math.unit(1, "meters"),
  42527. name: "Paw",
  42528. image: {
  42529. source: "./media/characters/blacky/paw.svg"
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(4, "meters"),
  42537. default: true
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(170, "cm"),
  42546. weight: math.unit(66, "kg"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/thux-ei/front.svg",
  42550. extra: 1109/1011,
  42551. bottom: 8/1117
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(170, "cm"),
  42559. default: true
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(5, "feet"),
  42568. weight: math.unit(120, "lb"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/roxanne-voltaire/front.svg",
  42572. extra: 1901/1779,
  42573. bottom: 53/1954
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Normal",
  42580. height: math.unit(5, "feet"),
  42581. default: true
  42582. },
  42583. {
  42584. name: "Giant",
  42585. height: math.unit(50, "feet")
  42586. },
  42587. {
  42588. name: "Titan",
  42589. height: math.unit(500, "feet")
  42590. },
  42591. {
  42592. name: "Macro",
  42593. height: math.unit(5000, "feet")
  42594. },
  42595. {
  42596. name: "Megamacro",
  42597. height: math.unit(50000, "feet")
  42598. },
  42599. {
  42600. name: "Gigamacro",
  42601. height: math.unit(500000, "feet")
  42602. },
  42603. {
  42604. name: "Teramacro",
  42605. height: math.unit(5e6, "feet")
  42606. },
  42607. ]
  42608. ))
  42609. characterMakers.push(() => makeCharacter(
  42610. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42611. {
  42612. front: {
  42613. height: math.unit(6 + 2/12, "feet"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/squeaks/front.svg",
  42617. extra: 1823/1768,
  42618. bottom: 138/1961
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Micro",
  42625. height: math.unit(0.5, "inches")
  42626. },
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(6 + 2/12, "feet"),
  42630. default: true
  42631. },
  42632. {
  42633. name: "Macro",
  42634. height: math.unit(600, "feet")
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42640. {
  42641. front: {
  42642. height: math.unit(1.72, "meters"),
  42643. name: "Front",
  42644. image: {
  42645. source: "./media/characters/archinger/front.svg",
  42646. extra: 1861/1675,
  42647. bottom: 125/1986
  42648. }
  42649. },
  42650. back: {
  42651. height: math.unit(1.72, "meters"),
  42652. name: "Back",
  42653. image: {
  42654. source: "./media/characters/archinger/back.svg",
  42655. extra: 1844/1701,
  42656. bottom: 104/1948
  42657. }
  42658. },
  42659. cock: {
  42660. height: math.unit(0.59, "feet"),
  42661. name: "Cock",
  42662. image: {
  42663. source: "./media/characters/archinger/cock.svg"
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(1.72, "meters"),
  42671. default: true
  42672. },
  42673. {
  42674. name: "Macro",
  42675. height: math.unit(84, "meters")
  42676. },
  42677. {
  42678. name: "Macro+",
  42679. height: math.unit(112, "meters")
  42680. },
  42681. {
  42682. name: "Macro++",
  42683. height: math.unit(960, "meters")
  42684. },
  42685. {
  42686. name: "Macro+++",
  42687. height: math.unit(4, "km")
  42688. },
  42689. {
  42690. name: "Macro++++",
  42691. height: math.unit(48, "km")
  42692. },
  42693. {
  42694. name: "Macro+++++",
  42695. height: math.unit(4500, "km")
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(5 + 5/12, "feet"),
  42704. name: "Front",
  42705. image: {
  42706. source: "./media/characters/alsnapz/front.svg",
  42707. extra: 1157/1065,
  42708. bottom: 42/1199
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Normal",
  42715. height: math.unit(5 + 5/12, "feet"),
  42716. default: true
  42717. },
  42718. ]
  42719. ))
  42720. characterMakers.push(() => makeCharacter(
  42721. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42722. {
  42723. side: {
  42724. height: math.unit(3.2, "earths"),
  42725. name: "Side",
  42726. image: {
  42727. source: "./media/characters/mag/side.svg",
  42728. extra: 1331/1008,
  42729. bottom: 52/1383
  42730. }
  42731. },
  42732. wing: {
  42733. height: math.unit(1.94, "earths"),
  42734. name: "Wing",
  42735. image: {
  42736. source: "./media/characters/mag/wing.svg"
  42737. }
  42738. },
  42739. dick: {
  42740. height: math.unit(1.8, "earths"),
  42741. name: "Dick",
  42742. image: {
  42743. source: "./media/characters/mag/dick.svg"
  42744. }
  42745. },
  42746. ass: {
  42747. height: math.unit(1.33, "earths"),
  42748. name: "Ass",
  42749. image: {
  42750. source: "./media/characters/mag/ass.svg"
  42751. }
  42752. },
  42753. head: {
  42754. height: math.unit(1.1, "earths"),
  42755. name: "Head",
  42756. image: {
  42757. source: "./media/characters/mag/head.svg"
  42758. }
  42759. },
  42760. maw: {
  42761. height: math.unit(1.62, "earths"),
  42762. name: "Maw",
  42763. image: {
  42764. source: "./media/characters/mag/maw.svg"
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Small",
  42771. height: math.unit(162, "feet")
  42772. },
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(3.2, "earths"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(512, "feet"),
  42785. weight: math.unit(63509, "tonnes"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/vorrel-harroc/front.svg",
  42789. extra: 1075/1063,
  42790. bottom: 62/1137
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(10, "feet")
  42798. },
  42799. {
  42800. name: "Macro",
  42801. height: math.unit(512, "feet"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Megamacro",
  42806. height: math.unit(256, "miles")
  42807. },
  42808. {
  42809. name: "Gigamacro",
  42810. height: math.unit(4096, "miles")
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42816. {
  42817. side: {
  42818. height: math.unit(50, "feet"),
  42819. name: "Side",
  42820. image: {
  42821. source: "./media/characters/froimar/side.svg",
  42822. extra: 855/638,
  42823. bottom: 99/954
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Macro",
  42830. height: math.unit(50, "feet"),
  42831. default: true
  42832. },
  42833. ]
  42834. ))
  42835. characterMakers.push(() => makeCharacter(
  42836. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42837. {
  42838. front: {
  42839. height: math.unit(210, "miles"),
  42840. name: "Front",
  42841. image: {
  42842. source: "./media/characters/timothy/front.svg",
  42843. extra: 1007/943,
  42844. bottom: 62/1069
  42845. }
  42846. },
  42847. frontSkirt: {
  42848. height: math.unit(210, "miles"),
  42849. name: "Front (Skirt)",
  42850. image: {
  42851. source: "./media/characters/timothy/front-skirt.svg",
  42852. extra: 1007/943,
  42853. bottom: 62/1069
  42854. }
  42855. },
  42856. frontCoat: {
  42857. height: math.unit(210, "miles"),
  42858. name: "Front (Coat)",
  42859. image: {
  42860. source: "./media/characters/timothy/front-coat.svg",
  42861. extra: 1007/943,
  42862. bottom: 62/1069
  42863. }
  42864. },
  42865. },
  42866. [
  42867. {
  42868. name: "Macro",
  42869. height: math.unit(210, "miles"),
  42870. default: true
  42871. },
  42872. {
  42873. name: "Megamacro",
  42874. height: math.unit(210000, "miles")
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42880. {
  42881. front: {
  42882. height: math.unit(188, "feet"),
  42883. name: "Front",
  42884. image: {
  42885. source: "./media/characters/pyotr/front.svg",
  42886. extra: 1912/1826,
  42887. bottom: 18/1930
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Macro",
  42894. height: math.unit(188, "feet"),
  42895. default: true
  42896. },
  42897. {
  42898. name: "Megamacro",
  42899. height: math.unit(8, "miles")
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42905. {
  42906. side: {
  42907. height: math.unit(10, "feet"),
  42908. weight: math.unit(4500, "lb"),
  42909. name: "Side",
  42910. image: {
  42911. source: "./media/characters/ackart/side.svg",
  42912. extra: 1776/1668,
  42913. bottom: 116/1892
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(10, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42927. {
  42928. side: {
  42929. height: math.unit(21, "feet"),
  42930. name: "Side",
  42931. image: {
  42932. source: "./media/characters/nolow/side.svg",
  42933. extra: 1484/1434,
  42934. bottom: 85/1569
  42935. }
  42936. },
  42937. sideErect: {
  42938. height: math.unit(21, "feet"),
  42939. name: "Side-erect",
  42940. image: {
  42941. source: "./media/characters/nolow/side-erect.svg",
  42942. extra: 1484/1434,
  42943. bottom: 85/1569
  42944. }
  42945. },
  42946. },
  42947. [
  42948. {
  42949. name: "Regular",
  42950. height: math.unit(12, "feet")
  42951. },
  42952. {
  42953. name: "Big Chee",
  42954. height: math.unit(21, "feet"),
  42955. default: true
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(7, "feet"),
  42964. weight: math.unit(250, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/nines/front.svg",
  42968. extra: 1741/1607,
  42969. bottom: 41/1782
  42970. }
  42971. },
  42972. side: {
  42973. height: math.unit(7, "feet"),
  42974. weight: math.unit(250, "lb"),
  42975. name: "Side",
  42976. image: {
  42977. source: "./media/characters/nines/side.svg",
  42978. extra: 1854/1735,
  42979. bottom: 93/1947
  42980. }
  42981. },
  42982. back: {
  42983. height: math.unit(7, "feet"),
  42984. weight: math.unit(250, "lb"),
  42985. name: "Back",
  42986. image: {
  42987. source: "./media/characters/nines/back.svg",
  42988. extra: 1748/1615,
  42989. bottom: 20/1768
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Megamacro",
  42996. height: math.unit(99, "km"),
  42997. default: true
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43003. {
  43004. front: {
  43005. height: math.unit(5 + 10/12, "feet"),
  43006. weight: math.unit(210, "lb"),
  43007. name: "Front",
  43008. image: {
  43009. source: "./media/characters/zenith/front.svg",
  43010. extra: 1531/1452,
  43011. bottom: 198/1729
  43012. }
  43013. },
  43014. back: {
  43015. height: math.unit(5 + 10/12, "feet"),
  43016. weight: math.unit(210, "lb"),
  43017. name: "Back",
  43018. image: {
  43019. source: "./media/characters/zenith/back.svg",
  43020. extra: 1571/1487,
  43021. bottom: 75/1646
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(5 + 10/12, "feet"),
  43029. default: true
  43030. }
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(4, "feet"),
  43038. weight: math.unit(60, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/jasper/front.svg",
  43042. extra: 1450/1379,
  43043. bottom: 19/1469
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(4, "feet"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(6 + 5/12, "feet"),
  43060. weight: math.unit(290, "lb"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/tiberius-thyben/front.svg",
  43064. extra: 757/739,
  43065. bottom: 39/796
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Micro",
  43072. height: math.unit(1.5, "inches")
  43073. },
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(6 + 5/12, "feet"),
  43077. default: true
  43078. },
  43079. {
  43080. name: "Macro",
  43081. height: math.unit(300, "feet")
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(5 + 6/12, "feet"),
  43090. weight: math.unit(60, "kg"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/sabre/front.svg",
  43094. extra: 738/671,
  43095. bottom: 27/765
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Teeny",
  43102. height: math.unit(2, "inches")
  43103. },
  43104. {
  43105. name: "Smol",
  43106. height: math.unit(8, "inches")
  43107. },
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(5 + 6/12, "feet"),
  43111. default: true
  43112. },
  43113. {
  43114. name: "Mini-Macro",
  43115. height: math.unit(15, "feet")
  43116. },
  43117. {
  43118. name: "Macro",
  43119. height: math.unit(50, "feet")
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(6 + 4/12, "feet"),
  43128. weight: math.unit(170, "lb"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/charlie/front.svg",
  43132. extra: 1348/1228,
  43133. bottom: 15/1363
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Macro",
  43140. height: math.unit(1700, "meters"),
  43141. default: true
  43142. },
  43143. {
  43144. name: "MegaMacro",
  43145. height: math.unit(20400, "meters")
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43151. {
  43152. front: {
  43153. height: math.unit(6 + 3/12, "feet"),
  43154. weight: math.unit(185, "lb"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/susan-grant/front.svg",
  43158. extra: 1351/1327,
  43159. bottom: 26/1377
  43160. }
  43161. },
  43162. },
  43163. [
  43164. {
  43165. name: "Normal",
  43166. height: math.unit(6 + 3/12, "feet"),
  43167. default: true
  43168. },
  43169. {
  43170. name: "Macro",
  43171. height: math.unit(225, "feet")
  43172. },
  43173. {
  43174. name: "Macro+",
  43175. height: math.unit(900, "feet")
  43176. },
  43177. {
  43178. name: "MegaMacro",
  43179. height: math.unit(14400, "feet")
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(5 + 4/12, "feet"),
  43188. weight: math.unit(110, "lb"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/axel-isanov/front.svg",
  43192. extra: 1096/1065,
  43193. bottom: 13/1109
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(5 + 4/12, "feet"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(9, "feet"),
  43210. weight: math.unit(467, "lb"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/necahual/front.svg",
  43214. extra: 920/873,
  43215. bottom: 26/946
  43216. }
  43217. },
  43218. back: {
  43219. height: math.unit(9, "feet"),
  43220. weight: math.unit(467, "lb"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/necahual/back.svg",
  43224. extra: 930/884,
  43225. bottom: 16/946
  43226. }
  43227. },
  43228. frontUnderwear: {
  43229. height: math.unit(9, "feet"),
  43230. weight: math.unit(467, "lb"),
  43231. name: "Front (Underwear)",
  43232. image: {
  43233. source: "./media/characters/necahual/front-underwear.svg",
  43234. extra: 920/873,
  43235. bottom: 26/946
  43236. }
  43237. },
  43238. frontDressed: {
  43239. height: math.unit(9, "feet"),
  43240. weight: math.unit(467, "lb"),
  43241. name: "Front (Dressed)",
  43242. image: {
  43243. source: "./media/characters/necahual/front-dressed.svg",
  43244. extra: 920/873,
  43245. bottom: 26/946
  43246. }
  43247. },
  43248. },
  43249. [
  43250. {
  43251. name: "Comprsesed",
  43252. height: math.unit(9, "feet")
  43253. },
  43254. {
  43255. name: "Natural",
  43256. height: math.unit(15, "feet"),
  43257. default: true
  43258. },
  43259. {
  43260. name: "Boosted",
  43261. height: math.unit(50, "feet")
  43262. },
  43263. {
  43264. name: "Boosted+",
  43265. height: math.unit(150, "feet")
  43266. },
  43267. {
  43268. name: "Max",
  43269. height: math.unit(500, "feet")
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(22 + 1/12, "feet"),
  43278. weight: math.unit(3200, "lb"),
  43279. name: "Front",
  43280. image: {
  43281. source: "./media/characters/theo-acacia/front.svg",
  43282. extra: 1796/1741,
  43283. bottom: 83/1879
  43284. }
  43285. },
  43286. frontUnderwear: {
  43287. height: math.unit(22 + 1/12, "feet"),
  43288. weight: math.unit(3200, "lb"),
  43289. name: "Front (Underwear)",
  43290. image: {
  43291. source: "./media/characters/theo-acacia/front-underwear.svg",
  43292. extra: 1796/1741,
  43293. bottom: 83/1879
  43294. }
  43295. },
  43296. frontNude: {
  43297. height: math.unit(22 + 1/12, "feet"),
  43298. weight: math.unit(3200, "lb"),
  43299. name: "Front (Nude)",
  43300. image: {
  43301. source: "./media/characters/theo-acacia/front-nude.svg",
  43302. extra: 1796/1741,
  43303. bottom: 83/1879
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(22 + 1/12, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(20, "feet"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/astra/front.svg",
  43323. extra: 1850/1714,
  43324. bottom: 106/1956
  43325. }
  43326. },
  43327. frontUndressed: {
  43328. height: math.unit(20, "feet"),
  43329. name: "Front (Undressed)",
  43330. image: {
  43331. source: "./media/characters/astra/front-undressed.svg",
  43332. extra: 1926/1749,
  43333. bottom: 0/1926
  43334. }
  43335. },
  43336. hand: {
  43337. height: math.unit(1.53, "feet"),
  43338. name: "Hand",
  43339. image: {
  43340. source: "./media/characters/astra/hand.svg"
  43341. }
  43342. },
  43343. paw: {
  43344. height: math.unit(1.53, "feet"),
  43345. name: "Paw",
  43346. image: {
  43347. source: "./media/characters/astra/paw.svg"
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Smallest",
  43354. height: math.unit(20, "feet")
  43355. },
  43356. {
  43357. name: "Normal",
  43358. height: math.unit(1e9, "miles"),
  43359. default: true
  43360. },
  43361. {
  43362. name: "Larger",
  43363. height: math.unit(5, "multiverses")
  43364. },
  43365. {
  43366. name: "Largest",
  43367. height: math.unit(1e9, "multiverses")
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(8, "feet"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/breanna/front.svg",
  43379. extra: 1912/1632,
  43380. bottom: 33/1945
  43381. }
  43382. },
  43383. },
  43384. [
  43385. {
  43386. name: "Smallest",
  43387. height: math.unit(8, "feet")
  43388. },
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(1, "mile"),
  43392. default: true
  43393. },
  43394. {
  43395. name: "Maximum",
  43396. height: math.unit(1500000000000, "lightyears")
  43397. },
  43398. ]
  43399. ))
  43400. characterMakers.push(() => makeCharacter(
  43401. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43402. {
  43403. front: {
  43404. height: math.unit(5 + 11/12, "feet"),
  43405. weight: math.unit(155, "lb"),
  43406. name: "Front",
  43407. image: {
  43408. source: "./media/characters/cai/front.svg",
  43409. extra: 1823/1702,
  43410. bottom: 32/1855
  43411. }
  43412. },
  43413. back: {
  43414. height: math.unit(5 + 11/12, "feet"),
  43415. weight: math.unit(155, "lb"),
  43416. name: "Back",
  43417. image: {
  43418. source: "./media/characters/cai/back.svg",
  43419. extra: 1809/1708,
  43420. bottom: 31/1840
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Normal",
  43427. height: math.unit(5 + 11/12, "feet"),
  43428. default: true
  43429. },
  43430. {
  43431. name: "Big",
  43432. height: math.unit(15, "feet")
  43433. },
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(200, "feet")
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(5 + 6/12, "feet"),
  43445. weight: math.unit(160, "lb"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43449. extra: 1227/1174,
  43450. bottom: 37/1264
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Macro",
  43457. height: math.unit(444, "meters"),
  43458. default: true
  43459. },
  43460. ]
  43461. ))
  43462. characterMakers.push(() => makeCharacter(
  43463. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43464. {
  43465. front: {
  43466. height: math.unit(18 + 7/12, "feet"),
  43467. name: "Front",
  43468. image: {
  43469. source: "./media/characters/rex/front.svg",
  43470. extra: 1941/1807,
  43471. bottom: 66/2007
  43472. }
  43473. },
  43474. back: {
  43475. height: math.unit(18 + 7/12, "feet"),
  43476. name: "Back",
  43477. image: {
  43478. source: "./media/characters/rex/back.svg",
  43479. extra: 1937/1822,
  43480. bottom: 42/1979
  43481. }
  43482. },
  43483. boot: {
  43484. height: math.unit(3.45, "feet"),
  43485. name: "Boot",
  43486. image: {
  43487. source: "./media/characters/rex/boot.svg"
  43488. }
  43489. },
  43490. paw: {
  43491. height: math.unit(4.17, "feet"),
  43492. name: "Paw",
  43493. image: {
  43494. source: "./media/characters/rex/paw.svg"
  43495. }
  43496. },
  43497. head: {
  43498. height: math.unit(6.728, "feet"),
  43499. name: "Head",
  43500. image: {
  43501. source: "./media/characters/rex/head.svg"
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Nano",
  43508. height: math.unit(18 + 7/12, "feet")
  43509. },
  43510. {
  43511. name: "Micro",
  43512. height: math.unit(1.5, "megameters")
  43513. },
  43514. {
  43515. name: "Normal",
  43516. height: math.unit(440, "megameters"),
  43517. default: true
  43518. },
  43519. {
  43520. name: "Macro",
  43521. height: math.unit(2.5, "gigameters")
  43522. },
  43523. {
  43524. name: "Gigamacro",
  43525. height: math.unit(2, "galaxies")
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43531. {
  43532. side: {
  43533. height: math.unit(32, "feet"),
  43534. weight: math.unit(250000, "lb"),
  43535. name: "Side",
  43536. image: {
  43537. source: "./media/characters/silverwing/side.svg",
  43538. extra: 1100/1019,
  43539. bottom: 204/1304
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "Normal",
  43546. height: math.unit(32, "feet"),
  43547. default: true
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(6 + 6/12, "feet"),
  43556. weight: math.unit(350, "lb"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/tristan-hawthorne/front.svg",
  43560. extra: 1159/1124,
  43561. bottom: 37/1196
  43562. },
  43563. form: "labrador",
  43564. default: true
  43565. },
  43566. skunkFront: {
  43567. height: math.unit(4 + 6/12, "feet"),
  43568. weight: math.unit(120, "lb"),
  43569. name: "Front",
  43570. image: {
  43571. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43572. extra: 1609/1551,
  43573. bottom: 169/1778
  43574. },
  43575. form: "skunk",
  43576. default: true
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(6 + 6/12, "feet"),
  43583. form: "labrador",
  43584. default: true
  43585. },
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(4 + 6/12, "feet"),
  43589. form: "skunk",
  43590. default: true
  43591. },
  43592. ],
  43593. {
  43594. "labrador": {
  43595. name: "Labrador",
  43596. default: true
  43597. },
  43598. "skunk": {
  43599. name: "Skunk"
  43600. }
  43601. }
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(5 + 11/12, "feet"),
  43608. weight: math.unit(190, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/mizu/front.svg",
  43612. extra: 1988/1788,
  43613. bottom: 14/2002
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(5 + 11/12, "feet"),
  43621. default: true
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43627. {
  43628. front: {
  43629. height: math.unit(1.7, "feet"),
  43630. weight: math.unit(50, "lb"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/dechroma/front.svg",
  43634. extra: 1095/859,
  43635. bottom: 64/1159
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(1.7, "feet"),
  43643. default: true
  43644. },
  43645. ]
  43646. ))
  43647. characterMakers.push(() => makeCharacter(
  43648. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43649. {
  43650. side: {
  43651. height: math.unit(30, "feet"),
  43652. name: "Side",
  43653. image: {
  43654. source: "./media/characters/veluren-thanazel/side.svg",
  43655. extra: 1611/633,
  43656. bottom: 118/1729
  43657. }
  43658. },
  43659. front: {
  43660. height: math.unit(30, "feet"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/veluren-thanazel/front.svg",
  43664. extra: 1486/636,
  43665. bottom: 238/1724
  43666. }
  43667. },
  43668. head: {
  43669. height: math.unit(21.4, "feet"),
  43670. name: "Head",
  43671. image: {
  43672. source: "./media/characters/veluren-thanazel/head.svg"
  43673. }
  43674. },
  43675. genitals: {
  43676. height: math.unit(19.4, "feet"),
  43677. name: "Genitals",
  43678. image: {
  43679. source: "./media/characters/veluren-thanazel/genitals.svg"
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Social",
  43686. height: math.unit(6, "feet")
  43687. },
  43688. {
  43689. name: "Play",
  43690. height: math.unit(12, "feet")
  43691. },
  43692. {
  43693. name: "True",
  43694. height: math.unit(30, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(7 + 6/12, "feet"),
  43704. weight: math.unit(500, "kg"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/arcturas/front.svg",
  43708. extra: 1700/1500,
  43709. bottom: 145/1845
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(7 + 6/12, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43723. {
  43724. side: {
  43725. height: math.unit(6, "feet"),
  43726. weight: math.unit(2, "tons"),
  43727. name: "Side",
  43728. image: {
  43729. source: "./media/characters/vitaen/side.svg",
  43730. extra: 1157/617,
  43731. bottom: 122/1279
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(6, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(19, "feet"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/fia-dreamweaver/front.svg",
  43751. extra: 1630/1504,
  43752. bottom: 25/1655
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Normal",
  43759. height: math.unit(19, "feet"),
  43760. default: true
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43766. {
  43767. front: {
  43768. height: math.unit(5 + 4/12, "feet"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/artan/front.svg",
  43772. extra: 1618/1535,
  43773. bottom: 46/1664
  43774. }
  43775. },
  43776. back: {
  43777. height: math.unit(5 + 4/12, "feet"),
  43778. name: "Back",
  43779. image: {
  43780. source: "./media/characters/artan/back.svg",
  43781. extra: 1618/1543,
  43782. bottom: 31/1649
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Normal",
  43789. height: math.unit(5 + 4/12, "feet"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43796. {
  43797. side: {
  43798. height: math.unit(182, "cm"),
  43799. weight: math.unit(1000, "lb"),
  43800. name: "Side",
  43801. image: {
  43802. source: "./media/characters/silver-dragon/side.svg",
  43803. extra: 710/287,
  43804. bottom: 88/798
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(182, "cm"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43818. {
  43819. side: {
  43820. height: math.unit(6 + 6/12, "feet"),
  43821. weight: math.unit(1.5, "tons"),
  43822. name: "Side",
  43823. image: {
  43824. source: "./media/characters/zephyr/side.svg",
  43825. extra: 1433/586,
  43826. bottom: 109/1542
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(6 + 6/12, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43840. {
  43841. side: {
  43842. height: math.unit(1, "feet"),
  43843. name: "Side",
  43844. image: {
  43845. source: "./media/characters/vixye/side.svg",
  43846. extra: 632/541,
  43847. bottom: 0/632
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Normal",
  43854. height: math.unit(1, "feet"),
  43855. default: true
  43856. },
  43857. {
  43858. name: "True",
  43859. height: math.unit(1e15, "multiverses")
  43860. },
  43861. ]
  43862. ))
  43863. characterMakers.push(() => makeCharacter(
  43864. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43865. {
  43866. front: {
  43867. height: math.unit(8 + 2/12, "feet"),
  43868. weight: math.unit(650, "lb"),
  43869. name: "Front",
  43870. image: {
  43871. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43872. extra: 1174/1137,
  43873. bottom: 82/1256
  43874. }
  43875. },
  43876. back: {
  43877. height: math.unit(8 + 2/12, "feet"),
  43878. weight: math.unit(650, "lb"),
  43879. name: "Back",
  43880. image: {
  43881. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43882. extra: 1204/1157,
  43883. bottom: 46/1250
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Wildform",
  43890. height: math.unit(8 + 2/12, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(18, "feet"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/cyphin/front.svg",
  43903. extra: 970/886,
  43904. bottom: 42/1012
  43905. }
  43906. },
  43907. back: {
  43908. height: math.unit(18, "feet"),
  43909. name: "Back",
  43910. image: {
  43911. source: "./media/characters/cyphin/back.svg",
  43912. extra: 1009/894,
  43913. bottom: 24/1033
  43914. }
  43915. },
  43916. head: {
  43917. height: math.unit(5.05, "feet"),
  43918. name: "Head",
  43919. image: {
  43920. source: "./media/characters/cyphin/head.svg"
  43921. }
  43922. },
  43923. tailbud: {
  43924. height: math.unit(5, "feet"),
  43925. name: "Tailbud",
  43926. image: {
  43927. source: "./media/characters/cyphin/tailbud.svg"
  43928. }
  43929. },
  43930. },
  43931. [
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43936. {
  43937. side: {
  43938. height: math.unit(10, "feet"),
  43939. weight: math.unit(6, "tons"),
  43940. name: "Side",
  43941. image: {
  43942. source: "./media/characters/raijin/side.svg",
  43943. extra: 1529/613,
  43944. bottom: 337/1866
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(10, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43958. {
  43959. side: {
  43960. height: math.unit(9, "feet"),
  43961. name: "Side",
  43962. image: {
  43963. source: "./media/characters/nilghais/side.svg",
  43964. extra: 1047/744,
  43965. bottom: 91/1138
  43966. }
  43967. },
  43968. head: {
  43969. height: math.unit(3.14, "feet"),
  43970. name: "Head",
  43971. image: {
  43972. source: "./media/characters/nilghais/head.svg"
  43973. }
  43974. },
  43975. mouth: {
  43976. height: math.unit(4.6, "feet"),
  43977. name: "Mouth",
  43978. image: {
  43979. source: "./media/characters/nilghais/mouth.svg"
  43980. }
  43981. },
  43982. wings: {
  43983. height: math.unit(24, "feet"),
  43984. name: "Wings",
  43985. image: {
  43986. source: "./media/characters/nilghais/wings.svg"
  43987. }
  43988. },
  43989. ass: {
  43990. height: math.unit(6.12, "feet"),
  43991. name: "Ass",
  43992. image: {
  43993. source: "./media/characters/nilghais/ass.svg"
  43994. }
  43995. },
  43996. },
  43997. [
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(9, "feet"),
  44001. default: true
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44007. {
  44008. regular: {
  44009. height: math.unit(16 + 2/12, "feet"),
  44010. weight: math.unit(2300, "lb"),
  44011. name: "Regular",
  44012. image: {
  44013. source: "./media/characters/zolgar/regular.svg",
  44014. extra: 1246/1004,
  44015. bottom: 124/1370
  44016. }
  44017. },
  44018. boxers: {
  44019. height: math.unit(16 + 2/12, "feet"),
  44020. weight: math.unit(2300, "lb"),
  44021. name: "Boxers",
  44022. image: {
  44023. source: "./media/characters/zolgar/boxers.svg",
  44024. extra: 1246/1004,
  44025. bottom: 124/1370
  44026. }
  44027. },
  44028. armored: {
  44029. height: math.unit(16 + 2/12, "feet"),
  44030. weight: math.unit(2300, "lb"),
  44031. name: "Armored",
  44032. image: {
  44033. source: "./media/characters/zolgar/armored.svg",
  44034. extra: 1246/1004,
  44035. bottom: 124/1370
  44036. }
  44037. },
  44038. goth: {
  44039. height: math.unit(16 + 2/12, "feet"),
  44040. weight: math.unit(2300, "lb"),
  44041. name: "Goth",
  44042. image: {
  44043. source: "./media/characters/zolgar/goth.svg",
  44044. extra: 1246/1004,
  44045. bottom: 124/1370
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Shrunken Down",
  44052. height: math.unit(9 + 2/12, "feet")
  44053. },
  44054. {
  44055. name: "Normal",
  44056. height: math.unit(16 + 2/12, "feet"),
  44057. default: true
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44063. {
  44064. front: {
  44065. height: math.unit(6, "feet"),
  44066. weight: math.unit(168, "lb"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/luca/front.svg",
  44070. extra: 841/667,
  44071. bottom: 102/943
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(6, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44085. {
  44086. side: {
  44087. height: math.unit(7 + 3/12, "feet"),
  44088. weight: math.unit(312, "lb"),
  44089. name: "Side",
  44090. image: {
  44091. source: "./media/characters/zezo/side.svg",
  44092. extra: 1192/1067,
  44093. bottom: 63/1255
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(7 + 3/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44107. {
  44108. front: {
  44109. height: math.unit(5 + 5/12, "feet"),
  44110. weight: math.unit(170, "lb"),
  44111. name: "Front",
  44112. image: {
  44113. source: "./media/characters/mayso/front.svg",
  44114. extra: 1215/1108,
  44115. bottom: 16/1231
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(5 + 5/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44129. {
  44130. front: {
  44131. height: math.unit(4 + 3/12, "feet"),
  44132. weight: math.unit(80, "lb"),
  44133. name: "Front",
  44134. image: {
  44135. source: "./media/characters/hess/front.svg",
  44136. extra: 1200/1123,
  44137. bottom: 16/1216
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Normal",
  44144. height: math.unit(4 + 3/12, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44151. {
  44152. front: {
  44153. height: math.unit(1.9, "meters"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/ashgar/front.svg",
  44157. extra: 1177/1146,
  44158. bottom: 99/1276
  44159. }
  44160. },
  44161. back: {
  44162. height: math.unit(1.9, "meters"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/ashgar/back.svg",
  44166. extra: 1201/1183,
  44167. bottom: 53/1254
  44168. }
  44169. },
  44170. feral: {
  44171. height: math.unit(1.4, "meters"),
  44172. name: "Feral",
  44173. image: {
  44174. source: "./media/characters/ashgar/feral.svg",
  44175. extra: 370/345,
  44176. bottom: 45/415
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(1.9, "meters"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44190. {
  44191. regular: {
  44192. height: math.unit(6, "feet"),
  44193. weight: math.unit(220, "lb"),
  44194. name: "Regular",
  44195. image: {
  44196. source: "./media/characters/phillip/regular.svg",
  44197. extra: 1373/1277,
  44198. bottom: 75/1448
  44199. }
  44200. },
  44201. dressed: {
  44202. height: math.unit(6, "feet"),
  44203. weight: math.unit(220, "lb"),
  44204. name: "Dressed",
  44205. image: {
  44206. source: "./media/characters/phillip/dressed.svg",
  44207. extra: 1373/1277,
  44208. bottom: 75/1448
  44209. }
  44210. },
  44211. paw: {
  44212. height: math.unit(1.44, "feet"),
  44213. name: "Paw",
  44214. image: {
  44215. source: "./media/characters/phillip/paw.svg"
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(6, "feet"),
  44223. default: true
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44229. {
  44230. side: {
  44231. height: math.unit(42, "feet"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/uvula/side.svg",
  44235. extra: 683/586,
  44236. bottom: 60/743
  44237. }
  44238. },
  44239. front: {
  44240. height: math.unit(42, "feet"),
  44241. name: "Front",
  44242. image: {
  44243. source: "./media/characters/uvula/front.svg",
  44244. extra: 705/613,
  44245. bottom: 54/759
  44246. }
  44247. },
  44248. maw: {
  44249. height: math.unit(23.5, "feet"),
  44250. name: "Maw",
  44251. image: {
  44252. source: "./media/characters/uvula/maw.svg"
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Original Size",
  44259. height: math.unit(14, "inches")
  44260. },
  44261. {
  44262. name: "Human Size",
  44263. height: math.unit(6, "feet")
  44264. },
  44265. {
  44266. name: "Big",
  44267. height: math.unit(42, "feet"),
  44268. default: true
  44269. },
  44270. {
  44271. name: "Bigger",
  44272. height: math.unit(100, "feet")
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(5 + 11/12, "feet"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/lannah/front.svg",
  44284. extra: 1208/1113,
  44285. bottom: 97/1305
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(5 + 11/12, "feet"),
  44293. default: true
  44294. },
  44295. ]
  44296. ))
  44297. characterMakers.push(() => makeCharacter(
  44298. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44299. {
  44300. front: {
  44301. height: math.unit(6 + 3/12, "feet"),
  44302. weight: math.unit(3.5, "tons"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/emberflame/front.svg",
  44306. extra: 1198/672,
  44307. bottom: 82/1280
  44308. }
  44309. },
  44310. side: {
  44311. height: math.unit(6 + 3/12, "feet"),
  44312. weight: math.unit(3.5, "tons"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/emberflame/side.svg",
  44316. extra: 938/527,
  44317. bottom: 56/994
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(6 + 3/12, "feet"),
  44325. default: true
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44331. {
  44332. side: {
  44333. height: math.unit(17.5, "feet"),
  44334. weight: math.unit(35, "tons"),
  44335. name: "Side",
  44336. image: {
  44337. source: "./media/characters/sophie-ambrose/side.svg",
  44338. extra: 1573/1242,
  44339. bottom: 71/1644
  44340. }
  44341. },
  44342. maw: {
  44343. height: math.unit(7.4, "feet"),
  44344. name: "Maw",
  44345. image: {
  44346. source: "./media/characters/sophie-ambrose/maw.svg"
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(17.5, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(280, "feet"),
  44363. weight: math.unit(550, "tons"),
  44364. name: "Front",
  44365. image: {
  44366. source: "./media/characters/king-mugi/front.svg",
  44367. extra: 1102/947,
  44368. bottom: 104/1206
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "King Mugi",
  44375. height: math.unit(280, "feet"),
  44376. default: true
  44377. },
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(64, "meters"),
  44385. name: "Front",
  44386. image: {
  44387. source: "./media/characters/nova-fox/front.svg",
  44388. extra: 1310/1246,
  44389. bottom: 65/1375
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Macro",
  44396. height: math.unit(64, "meters"),
  44397. default: true
  44398. },
  44399. ]
  44400. ))
  44401. characterMakers.push(() => makeCharacter(
  44402. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44403. {
  44404. front: {
  44405. height: math.unit(6 + 3/12, "feet"),
  44406. weight: math.unit(170, "lb"),
  44407. name: "Front",
  44408. image: {
  44409. source: "./media/characters/sam-bat/front.svg",
  44410. extra: 1601/1411,
  44411. bottom: 125/1726
  44412. }
  44413. },
  44414. back: {
  44415. height: math.unit(6 + 3/12, "feet"),
  44416. weight: math.unit(170, "lb"),
  44417. name: "Back",
  44418. image: {
  44419. source: "./media/characters/sam-bat/back.svg",
  44420. extra: 1577/1405,
  44421. bottom: 58/1635
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Normal",
  44428. height: math.unit(6 + 3/12, "feet"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44435. {
  44436. front: {
  44437. height: math.unit(59, "feet"),
  44438. weight: math.unit(40000, "lb"),
  44439. name: "Front",
  44440. image: {
  44441. source: "./media/characters/inari/front.svg",
  44442. extra: 1884/1350,
  44443. bottom: 95/1979
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Gigantamax",
  44450. height: math.unit(59, "feet"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44457. {
  44458. front: {
  44459. height: math.unit(5 + 8/12, "feet"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/elizabeth/front.svg",
  44463. extra: 1395/1298,
  44464. bottom: 54/1449
  44465. }
  44466. },
  44467. mouth: {
  44468. height: math.unit(1.97, "feet"),
  44469. name: "Mouth",
  44470. image: {
  44471. source: "./media/characters/elizabeth/mouth.svg"
  44472. }
  44473. },
  44474. foot: {
  44475. height: math.unit(1.17, "feet"),
  44476. name: "Foot",
  44477. image: {
  44478. source: "./media/characters/elizabeth/foot.svg"
  44479. }
  44480. },
  44481. },
  44482. [
  44483. {
  44484. name: "Normal",
  44485. height: math.unit(5 + 8/12, "feet"),
  44486. default: true
  44487. },
  44488. {
  44489. name: "Minimacro",
  44490. height: math.unit(18, "feet")
  44491. },
  44492. {
  44493. name: "Macro",
  44494. height: math.unit(180, "feet")
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(5 + 2/12, "feet"),
  44503. name: "Front",
  44504. image: {
  44505. source: "./media/characters/october-gossamer/front.svg",
  44506. extra: 505/454,
  44507. bottom: 7/512
  44508. }
  44509. },
  44510. back: {
  44511. height: math.unit(5 + 2/12, "feet"),
  44512. name: "Back",
  44513. image: {
  44514. source: "./media/characters/october-gossamer/back.svg",
  44515. extra: 501/454,
  44516. bottom: 11/512
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(5 + 2/12, "feet"),
  44524. default: true
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(5, "feet"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/epiglottis/front.svg",
  44536. extra: 923/849,
  44537. bottom: 17/940
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Original Size",
  44544. height: math.unit(10, "inches")
  44545. },
  44546. {
  44547. name: "Human Size",
  44548. height: math.unit(5, "feet"),
  44549. default: true
  44550. },
  44551. {
  44552. name: "Big",
  44553. height: math.unit(25, "feet")
  44554. },
  44555. {
  44556. name: "Bigger",
  44557. height: math.unit(50, "feet")
  44558. },
  44559. {
  44560. name: "oh lawd",
  44561. height: math.unit(75, "feet")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(2 + 4/12, "feet"),
  44570. weight: math.unit(60, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/lerm/front.svg",
  44574. extra: 796/790,
  44575. bottom: 79/875
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(2 + 4/12, "feet"),
  44583. default: true
  44584. },
  44585. ]
  44586. ))
  44587. characterMakers.push(() => makeCharacter(
  44588. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44589. {
  44590. front: {
  44591. height: math.unit(5.5, "feet"),
  44592. weight: math.unit(130, "lb"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/xena-nebadon/front.svg",
  44596. extra: 1828/1730,
  44597. bottom: 79/1907
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Tiny Puppy",
  44604. height: math.unit(3, "inches")
  44605. },
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(5.5, "feet"),
  44609. default: true
  44610. },
  44611. {
  44612. name: "Lotta Lady",
  44613. height: math.unit(12, "feet")
  44614. },
  44615. {
  44616. name: "Pretty Big",
  44617. height: math.unit(100, "feet")
  44618. },
  44619. {
  44620. name: "Big",
  44621. height: math.unit(500, "feet")
  44622. },
  44623. {
  44624. name: "Skyscraper Toys",
  44625. height: math.unit(2500, "feet")
  44626. },
  44627. {
  44628. name: "Plane Catcher",
  44629. height: math.unit(8, "miles")
  44630. },
  44631. {
  44632. name: "Planet Toys",
  44633. height: math.unit(15, "earths")
  44634. },
  44635. {
  44636. name: "Stardust",
  44637. height: math.unit(0.25, "galaxies")
  44638. },
  44639. {
  44640. name: "Snacks",
  44641. height: math.unit(70, "universes")
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44647. {
  44648. front: {
  44649. height: math.unit(1.6, "meters"),
  44650. weight: math.unit(60, "kg"),
  44651. name: "Front",
  44652. image: {
  44653. source: "./media/characters/bounty/front.svg",
  44654. extra: 1426/1308,
  44655. bottom: 15/1441
  44656. }
  44657. },
  44658. back: {
  44659. height: math.unit(1.6, "meters"),
  44660. weight: math.unit(60, "kg"),
  44661. name: "Back",
  44662. image: {
  44663. source: "./media/characters/bounty/back.svg",
  44664. extra: 1417/1307,
  44665. bottom: 8/1425
  44666. }
  44667. },
  44668. },
  44669. [
  44670. {
  44671. name: "Normal",
  44672. height: math.unit(1.6, "meters"),
  44673. default: true
  44674. },
  44675. {
  44676. name: "Macro",
  44677. height: math.unit(300, "meters")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44683. {
  44684. front: {
  44685. height: math.unit(2 + 8/12, "feet"),
  44686. weight: math.unit(15, "lb"),
  44687. name: "Front",
  44688. image: {
  44689. source: "./media/characters/mochi/front.svg",
  44690. extra: 1022/852,
  44691. bottom: 435/1457
  44692. }
  44693. },
  44694. back: {
  44695. height: math.unit(2 + 8/12, "feet"),
  44696. weight: math.unit(15, "lb"),
  44697. name: "Back",
  44698. image: {
  44699. source: "./media/characters/mochi/back.svg",
  44700. extra: 1335/1119,
  44701. bottom: 39/1374
  44702. }
  44703. },
  44704. bird: {
  44705. height: math.unit(2 + 8/12, "feet"),
  44706. weight: math.unit(15, "lb"),
  44707. name: "Bird",
  44708. image: {
  44709. source: "./media/characters/mochi/bird.svg",
  44710. extra: 1251/1113,
  44711. bottom: 178/1429
  44712. }
  44713. },
  44714. kaiju: {
  44715. height: math.unit(154, "feet"),
  44716. weight: math.unit(1e7, "lb"),
  44717. name: "Kaiju",
  44718. image: {
  44719. source: "./media/characters/mochi/kaiju.svg",
  44720. extra: 460/324,
  44721. bottom: 40/500
  44722. }
  44723. },
  44724. head: {
  44725. height: math.unit(1.21, "feet"),
  44726. name: "Head",
  44727. image: {
  44728. source: "./media/characters/mochi/head.svg"
  44729. }
  44730. },
  44731. alternateTail: {
  44732. height: math.unit(2 + 8/12, "feet"),
  44733. weight: math.unit(45, "lb"),
  44734. name: "Alternate Tail",
  44735. image: {
  44736. source: "./media/characters/mochi/alternate-tail.svg",
  44737. extra: 139/76,
  44738. bottom: 45/184
  44739. }
  44740. },
  44741. },
  44742. [
  44743. {
  44744. name: "Micro",
  44745. height: math.unit(2, "inches")
  44746. },
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(2 + 8/12, "feet"),
  44750. default: true
  44751. },
  44752. {
  44753. name: "Macro",
  44754. height: math.unit(106, "feet")
  44755. },
  44756. ]
  44757. ))
  44758. characterMakers.push(() => makeCharacter(
  44759. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44760. {
  44761. front: {
  44762. height: math.unit(5.67, "feet"),
  44763. weight: math.unit(135, "lb"),
  44764. name: "Front",
  44765. image: {
  44766. source: "./media/characters/sarel/front.svg",
  44767. extra: 865/788,
  44768. bottom: 97/962
  44769. }
  44770. },
  44771. back: {
  44772. height: math.unit(5.67, "feet"),
  44773. weight: math.unit(135, "lb"),
  44774. name: "Back",
  44775. image: {
  44776. source: "./media/characters/sarel/back.svg",
  44777. extra: 857/777,
  44778. bottom: 32/889
  44779. }
  44780. },
  44781. chozoan: {
  44782. height: math.unit(5.67, "feet"),
  44783. weight: math.unit(135, "lb"),
  44784. name: "Chozoan",
  44785. image: {
  44786. source: "./media/characters/sarel/chozoan.svg",
  44787. extra: 865/788,
  44788. bottom: 97/962
  44789. }
  44790. },
  44791. current: {
  44792. height: math.unit(5.67, "feet"),
  44793. weight: math.unit(135, "lb"),
  44794. name: "Current",
  44795. image: {
  44796. source: "./media/characters/sarel/current.svg",
  44797. extra: 865/788,
  44798. bottom: 97/962
  44799. }
  44800. },
  44801. head: {
  44802. height: math.unit(1.77, "feet"),
  44803. name: "Head",
  44804. image: {
  44805. source: "./media/characters/sarel/head.svg"
  44806. }
  44807. },
  44808. claws: {
  44809. height: math.unit(1.8, "feet"),
  44810. name: "Claws",
  44811. image: {
  44812. source: "./media/characters/sarel/claws.svg"
  44813. }
  44814. },
  44815. clawsAlt: {
  44816. height: math.unit(1.8, "feet"),
  44817. name: "Claws-alt",
  44818. image: {
  44819. source: "./media/characters/sarel/claws-alt.svg"
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(5.67, "feet"),
  44827. default: true
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(5500, "feet"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/alyonia/front.svg",
  44839. extra: 1200/1135,
  44840. bottom: 29/1229
  44841. }
  44842. },
  44843. back: {
  44844. height: math.unit(5500, "feet"),
  44845. name: "Back",
  44846. image: {
  44847. source: "./media/characters/alyonia/back.svg",
  44848. extra: 1205/1138,
  44849. bottom: 10/1215
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Small",
  44856. height: math.unit(10, "feet")
  44857. },
  44858. {
  44859. name: "Macro",
  44860. height: math.unit(500, "feet")
  44861. },
  44862. {
  44863. name: "Mega Macro",
  44864. height: math.unit(5500, "feet"),
  44865. default: true
  44866. },
  44867. {
  44868. name: "Mega Macro+",
  44869. height: math.unit(500000, "feet")
  44870. },
  44871. {
  44872. name: "Giga Macro",
  44873. height: math.unit(3000, "miles")
  44874. },
  44875. {
  44876. name: "Tera Macro",
  44877. height: math.unit(2.8e6, "miles")
  44878. },
  44879. {
  44880. name: "Galactic",
  44881. height: math.unit(120000, "lightyears")
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44887. {
  44888. werewolf: {
  44889. height: math.unit(8, "feet"),
  44890. weight: math.unit(425, "lb"),
  44891. name: "Werewolf",
  44892. image: {
  44893. source: "./media/characters/autumn/werewolf.svg",
  44894. extra: 2154/2031,
  44895. bottom: 160/2314
  44896. }
  44897. },
  44898. human: {
  44899. height: math.unit(5 + 8/12, "feet"),
  44900. weight: math.unit(150, "lb"),
  44901. name: "Human",
  44902. image: {
  44903. source: "./media/characters/autumn/human.svg",
  44904. extra: 1200/1149,
  44905. bottom: 30/1230
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(8, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(8 + 5/12, "feet"),
  44922. weight: math.unit(825, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/cobalt-charizard/front.svg",
  44926. extra: 1268/1155,
  44927. bottom: 122/1390
  44928. }
  44929. },
  44930. side: {
  44931. height: math.unit(8 + 5/12, "feet"),
  44932. weight: math.unit(825, "lb"),
  44933. name: "Side",
  44934. image: {
  44935. source: "./media/characters/cobalt-charizard/side.svg",
  44936. extra: 1348/1257,
  44937. bottom: 58/1406
  44938. }
  44939. },
  44940. gMax: {
  44941. height: math.unit(134 + 11/12, "feet"),
  44942. name: "G-Max",
  44943. image: {
  44944. source: "./media/characters/cobalt-charizard/g-max.svg",
  44945. extra: 1835/1541,
  44946. bottom: 151/1986
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(8 + 5/12, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(6 + 3/12, "feet"),
  44963. weight: math.unit(210, "lb"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/stella/front.svg",
  44967. extra: 3549/3335,
  44968. bottom: 51/3600
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(6 + 3/12, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(5, "feet"),
  44985. weight: math.unit(90, "lb"),
  44986. name: "Front",
  44987. image: {
  44988. source: "./media/characters/riley-bishop/front.svg",
  44989. extra: 1450/1428,
  44990. bottom: 152/1602
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(5, "feet"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45004. {
  45005. side: {
  45006. height: math.unit(8 + 2/12, "feet"),
  45007. weight: math.unit(500, "kg"),
  45008. name: "Side",
  45009. image: {
  45010. source: "./media/characters/theo-arcanine/side.svg",
  45011. extra: 1342/1074,
  45012. bottom: 111/1453
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Normal",
  45019. height: math.unit(8 + 2/12, "feet"),
  45020. default: true
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45026. {
  45027. front: {
  45028. height: math.unit(4, "feet"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/kali/front.svg",
  45032. extra: 1921/1357,
  45033. bottom: 70/1991
  45034. }
  45035. },
  45036. },
  45037. [
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(4, "feet"),
  45041. default: true
  45042. },
  45043. {
  45044. name: "Macro",
  45045. height: math.unit(32, "meters")
  45046. },
  45047. {
  45048. name: "Macro+",
  45049. height: math.unit(150, "meters")
  45050. },
  45051. {
  45052. name: "Megamacro",
  45053. height: math.unit(7500, "meters")
  45054. },
  45055. {
  45056. name: "Megamacro+",
  45057. height: math.unit(80, "kilometers")
  45058. },
  45059. ]
  45060. ))
  45061. characterMakers.push(() => makeCharacter(
  45062. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45063. {
  45064. side: {
  45065. height: math.unit(5 + 11/12, "feet"),
  45066. weight: math.unit(236, "lb"),
  45067. name: "Side",
  45068. image: {
  45069. source: "./media/characters/gapp/side.svg",
  45070. extra: 775/340,
  45071. bottom: 58/833
  45072. }
  45073. },
  45074. mouth: {
  45075. height: math.unit(2.98, "feet"),
  45076. name: "Mouth",
  45077. image: {
  45078. source: "./media/characters/gapp/mouth.svg"
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Normal",
  45085. height: math.unit(5 + 1/12, "feet"),
  45086. default: true
  45087. },
  45088. ]
  45089. ))
  45090. characterMakers.push(() => makeCharacter(
  45091. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45092. {
  45093. front: {
  45094. height: math.unit(6, "feet"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/persephone/front.svg",
  45098. extra: 1895/1717,
  45099. bottom: 96/1991
  45100. }
  45101. },
  45102. back: {
  45103. height: math.unit(6, "feet"),
  45104. name: "Back",
  45105. image: {
  45106. source: "./media/characters/persephone/back.svg",
  45107. extra: 1868/1679,
  45108. bottom: 26/1894
  45109. }
  45110. },
  45111. casual: {
  45112. height: math.unit(6, "feet"),
  45113. name: "Casual",
  45114. image: {
  45115. source: "./media/characters/persephone/casual.svg",
  45116. extra: 1713/1541,
  45117. bottom: 76/1789
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Human Size",
  45124. height: math.unit(6, "feet")
  45125. },
  45126. {
  45127. name: "Big Steppy",
  45128. height: math.unit(600, "meters"),
  45129. default: true
  45130. },
  45131. {
  45132. name: "Galaxy Brain",
  45133. height: math.unit(1, "zettameter")
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(1.85, "meters"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/riley-foxthing/front.svg",
  45145. extra: 1495/1354,
  45146. bottom: 122/1617
  45147. }
  45148. },
  45149. frontAlt: {
  45150. height: math.unit(1.85, "meters"),
  45151. name: "Front (Alt)",
  45152. image: {
  45153. source: "./media/characters/riley-foxthing/front-alt.svg",
  45154. extra: 1572/1389,
  45155. bottom: 116/1688
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal Sized",
  45162. height: math.unit(1.85, "meters"),
  45163. default: true
  45164. },
  45165. {
  45166. name: "Quite Sizable",
  45167. height: math.unit(5, "meters")
  45168. },
  45169. {
  45170. name: "Rather Large",
  45171. height: math.unit(20, "meters")
  45172. },
  45173. {
  45174. name: "Macro",
  45175. height: math.unit(450, "meters")
  45176. },
  45177. {
  45178. name: "Giga",
  45179. height: math.unit(5, "km")
  45180. },
  45181. ]
  45182. ))
  45183. characterMakers.push(() => makeCharacter(
  45184. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45185. {
  45186. front: {
  45187. height: math.unit(6, "feet"),
  45188. weight: math.unit(200, "lb"),
  45189. name: "Front",
  45190. image: {
  45191. source: "./media/characters/blizzard/front.svg",
  45192. extra: 1136/990,
  45193. bottom: 136/1272
  45194. }
  45195. },
  45196. back: {
  45197. height: math.unit(6, "feet"),
  45198. weight: math.unit(200, "lb"),
  45199. name: "Back",
  45200. image: {
  45201. source: "./media/characters/blizzard/back.svg",
  45202. extra: 1175/1034,
  45203. bottom: 97/1272
  45204. }
  45205. },
  45206. sitting: {
  45207. height: math.unit(3.725, "feet"),
  45208. weight: math.unit(200, "lb"),
  45209. name: "Sitting",
  45210. image: {
  45211. source: "./media/characters/blizzard/sitting.svg",
  45212. extra: 581/485,
  45213. bottom: 90/671
  45214. }
  45215. },
  45216. frontWizard: {
  45217. height: math.unit(7.9, "feet"),
  45218. weight: math.unit(200, "lb"),
  45219. name: "Front (Wizard)",
  45220. image: {
  45221. source: "./media/characters/blizzard/front-wizard.svg"
  45222. }
  45223. },
  45224. backWizard: {
  45225. height: math.unit(7.9, "feet"),
  45226. weight: math.unit(200, "lb"),
  45227. name: "Back (Wizard)",
  45228. image: {
  45229. source: "./media/characters/blizzard/back-wizard.svg"
  45230. }
  45231. },
  45232. frontNsfw: {
  45233. height: math.unit(6, "feet"),
  45234. weight: math.unit(200, "lb"),
  45235. name: "Front (NSFW)",
  45236. image: {
  45237. source: "./media/characters/blizzard/front-nsfw.svg",
  45238. extra: 1136/990,
  45239. bottom: 136/1272
  45240. }
  45241. },
  45242. backNsfw: {
  45243. height: math.unit(6, "feet"),
  45244. weight: math.unit(200, "lb"),
  45245. name: "Back (NSFW)",
  45246. image: {
  45247. source: "./media/characters/blizzard/back-nsfw.svg",
  45248. extra: 1175/1034,
  45249. bottom: 97/1272
  45250. }
  45251. },
  45252. sittingNsfw: {
  45253. height: math.unit(3.725, "feet"),
  45254. weight: math.unit(200, "lb"),
  45255. name: "Sitting (NSFW)",
  45256. image: {
  45257. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45258. extra: 581/485,
  45259. bottom: 90/671
  45260. }
  45261. },
  45262. wizardFrontNsfw: {
  45263. height: math.unit(7.9, "feet"),
  45264. weight: math.unit(200, "lb"),
  45265. name: "Wizard (Front, NSFW)",
  45266. image: {
  45267. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(6, "feet"),
  45275. default: true
  45276. },
  45277. ]
  45278. ))
  45279. characterMakers.push(() => makeCharacter(
  45280. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45281. {
  45282. front: {
  45283. height: math.unit(5 + 2/12, "feet"),
  45284. name: "Front",
  45285. image: {
  45286. source: "./media/characters/lumi/front.svg",
  45287. extra: 1328/1268,
  45288. bottom: 103/1431
  45289. }
  45290. },
  45291. back: {
  45292. height: math.unit(5 + 2/12, "feet"),
  45293. name: "Back",
  45294. image: {
  45295. source: "./media/characters/lumi/back.svg",
  45296. extra: 1381/1327,
  45297. bottom: 43/1424
  45298. }
  45299. },
  45300. },
  45301. [
  45302. {
  45303. name: "Normal",
  45304. height: math.unit(5 + 2/12, "feet"),
  45305. default: true
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(5 + 9/12, "feet"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/aliya-cotton/front.svg",
  45317. extra: 577/564,
  45318. bottom: 29/606
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(5 + 9/12, "feet"),
  45326. default: true
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45332. {
  45333. front: {
  45334. height: math.unit(2.7, "meters"),
  45335. weight: math.unit(25000, "lb"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/noah-luxray/front.svg",
  45339. extra: 1644/825,
  45340. bottom: 339/1983
  45341. }
  45342. },
  45343. side: {
  45344. height: math.unit(2.97, "meters"),
  45345. weight: math.unit(25000, "lb"),
  45346. name: "Side",
  45347. image: {
  45348. source: "./media/characters/noah-luxray/side.svg",
  45349. extra: 1319/650,
  45350. bottom: 163/1482
  45351. }
  45352. },
  45353. dick: {
  45354. height: math.unit(7.4, "feet"),
  45355. weight: math.unit(2500, "lb"),
  45356. name: "Dick",
  45357. image: {
  45358. source: "./media/characters/noah-luxray/dick.svg"
  45359. }
  45360. },
  45361. dickAlt: {
  45362. height: math.unit(10.83, "feet"),
  45363. weight: math.unit(2500, "lb"),
  45364. name: "Dick-alt",
  45365. image: {
  45366. source: "./media/characters/noah-luxray/dick-alt.svg"
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "BIG",
  45373. height: math.unit(2.7, "meters"),
  45374. default: true
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45380. {
  45381. standing: {
  45382. height: math.unit(183, "cm"),
  45383. weight: math.unit(68, "kg"),
  45384. name: "Standing",
  45385. image: {
  45386. source: "./media/characters/arion/standing.svg",
  45387. extra: 1869/1807,
  45388. bottom: 93/1962
  45389. }
  45390. },
  45391. reclining: {
  45392. height: math.unit(70.5, "cm"),
  45393. weight: math.unit(68, "lb"),
  45394. name: "Reclining",
  45395. image: {
  45396. source: "./media/characters/arion/reclining.svg",
  45397. extra: 937/870,
  45398. bottom: 63/1000
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Colossus Size, Low",
  45405. height: math.unit(33, "meters"),
  45406. default: true
  45407. },
  45408. {
  45409. name: "Colossus Size, Mid",
  45410. height: math.unit(52, "meters")
  45411. },
  45412. {
  45413. name: "Colossus Size, High",
  45414. height: math.unit(60, "meters")
  45415. },
  45416. {
  45417. name: "Titan Size, Low",
  45418. height: math.unit(91, "meters"),
  45419. },
  45420. {
  45421. name: "Titan Size, Mid",
  45422. height: math.unit(122, "meters")
  45423. },
  45424. {
  45425. name: "Titan Size, High",
  45426. height: math.unit(162, "meters")
  45427. },
  45428. ]
  45429. ))
  45430. characterMakers.push(() => makeCharacter(
  45431. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45432. {
  45433. front: {
  45434. height: math.unit(53, "meters"),
  45435. name: "Front",
  45436. image: {
  45437. source: "./media/characters/stellar-marbey/front.svg",
  45438. extra: 1913/1805,
  45439. bottom: 92/2005
  45440. }
  45441. },
  45442. back: {
  45443. height: math.unit(53, "meters"),
  45444. name: "Back",
  45445. image: {
  45446. source: "./media/characters/stellar-marbey/back.svg",
  45447. extra: 1960/1851,
  45448. bottom: 28/1988
  45449. }
  45450. },
  45451. mouth: {
  45452. height: math.unit(3.5, "meters"),
  45453. name: "Mouth",
  45454. image: {
  45455. source: "./media/characters/stellar-marbey/mouth.svg"
  45456. }
  45457. },
  45458. },
  45459. [
  45460. {
  45461. name: "Macro",
  45462. height: math.unit(53, "meters"),
  45463. default: true
  45464. },
  45465. ]
  45466. ))
  45467. characterMakers.push(() => makeCharacter(
  45468. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45469. {
  45470. front: {
  45471. height: math.unit(8 + 1/12, "feet"),
  45472. weight: math.unit(233, "lb"),
  45473. name: "Front",
  45474. image: {
  45475. source: "./media/characters/matsu/front.svg",
  45476. extra: 832/772,
  45477. bottom: 40/872
  45478. }
  45479. },
  45480. back: {
  45481. height: math.unit(8 + 1/12, "feet"),
  45482. weight: math.unit(233, "lb"),
  45483. name: "Back",
  45484. image: {
  45485. source: "./media/characters/matsu/back.svg",
  45486. extra: 839/780,
  45487. bottom: 47/886
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(8 + 1/12, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(4, "feet"),
  45504. weight: math.unit(148, "lb"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/thiz/front.svg",
  45508. extra: 1913/1748,
  45509. bottom: 62/1975
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(4, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(7 + 6/12, "feet"),
  45526. weight: math.unit(267, "lb"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/marcel/front.svg",
  45530. extra: 1221/1096,
  45531. bottom: 76/1297
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Normal",
  45538. height: math.unit(7 + 6/12, "feet"),
  45539. default: true
  45540. },
  45541. ]
  45542. ))
  45543. characterMakers.push(() => makeCharacter(
  45544. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45545. {
  45546. side: {
  45547. height: math.unit(42, "meters"),
  45548. name: "Side",
  45549. image: {
  45550. source: "./media/characters/flake/side.svg",
  45551. extra: 1525/1306,
  45552. bottom: 209/1734
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal",
  45559. height: math.unit(42, "meters"),
  45560. default: true
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45566. {
  45567. dressed: {
  45568. height: math.unit(6 + 4/12, "feet"),
  45569. weight: math.unit(520, "lb"),
  45570. name: "Dressed",
  45571. image: {
  45572. source: "./media/characters/someonne/dressed.svg",
  45573. extra: 1020/1010,
  45574. bottom: 178/1198
  45575. }
  45576. },
  45577. undressed: {
  45578. height: math.unit(6 + 4/12, "feet"),
  45579. weight: math.unit(520, "lb"),
  45580. name: "Undressed",
  45581. image: {
  45582. source: "./media/characters/someonne/undressed.svg",
  45583. extra: 1019/1014,
  45584. bottom: 169/1188
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(6 + 4/12, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(3, "feet"),
  45601. weight: math.unit(30, "lb"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/till/front.svg",
  45605. extra: 892/823,
  45606. bottom: 55/947
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Normal",
  45613. height: math.unit(3, "feet"),
  45614. default: true
  45615. },
  45616. ]
  45617. ))
  45618. characterMakers.push(() => makeCharacter(
  45619. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45620. {
  45621. front: {
  45622. height: math.unit(9 + 8/12, "feet"),
  45623. weight: math.unit(800, "lb"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/sydney-heki/front.svg",
  45627. extra: 1360/1300,
  45628. bottom: 22/1382
  45629. }
  45630. },
  45631. back: {
  45632. height: math.unit(9 + 8/12, "feet"),
  45633. weight: math.unit(800, "lb"),
  45634. name: "Back",
  45635. image: {
  45636. source: "./media/characters/sydney-heki/back.svg",
  45637. extra: 1356/1293,
  45638. bottom: 12/1368
  45639. }
  45640. },
  45641. frontDressed: {
  45642. height: math.unit(9 + 8/12, "feet"),
  45643. weight: math.unit(800, "lb"),
  45644. name: "Front-dressed",
  45645. image: {
  45646. source: "./media/characters/sydney-heki/front-dressed.svg",
  45647. extra: 1360/1300,
  45648. bottom: 22/1382
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(9 + 8/12, "feet"),
  45656. default: true
  45657. },
  45658. {
  45659. name: "Macro",
  45660. height: math.unit(500, "feet")
  45661. },
  45662. {
  45663. name: "Megamacro",
  45664. height: math.unit(3.6, "miles")
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(200, "cm"),
  45673. weight: math.unit(250, "lb"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/fowler-karlsson/front.svg",
  45677. extra: 897/845,
  45678. bottom: 123/1020
  45679. }
  45680. },
  45681. back: {
  45682. height: math.unit(200, "cm"),
  45683. weight: math.unit(250, "lb"),
  45684. name: "Back",
  45685. image: {
  45686. source: "./media/characters/fowler-karlsson/back.svg",
  45687. extra: 999/944,
  45688. bottom: 26/1025
  45689. }
  45690. },
  45691. dick: {
  45692. height: math.unit(1.92, "feet"),
  45693. weight: math.unit(150, "lb"),
  45694. name: "Dick",
  45695. image: {
  45696. source: "./media/characters/fowler-karlsson/dick.svg"
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(200, "cm"),
  45704. default: true
  45705. },
  45706. {
  45707. name: "Smaller Macro",
  45708. height: math.unit(90, "m")
  45709. },
  45710. {
  45711. name: "Macro",
  45712. height: math.unit(150, "m")
  45713. },
  45714. {
  45715. name: "Bigger Macro",
  45716. height: math.unit(300, "m")
  45717. },
  45718. ]
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45722. {
  45723. side: {
  45724. height: math.unit(8 + 2/12, "feet"),
  45725. weight: math.unit(1, "tonne"),
  45726. name: "Side",
  45727. image: {
  45728. source: "./media/characters/rylide/side.svg",
  45729. extra: 1318/1034,
  45730. bottom: 106/1424
  45731. }
  45732. },
  45733. sitting: {
  45734. height: math.unit(303, "cm"),
  45735. weight: math.unit(1, "tonne"),
  45736. name: "Sitting",
  45737. image: {
  45738. source: "./media/characters/rylide/sitting.svg",
  45739. extra: 1303/1103,
  45740. bottom: 36/1339
  45741. }
  45742. },
  45743. },
  45744. [
  45745. {
  45746. name: "Normal",
  45747. height: math.unit(8 + 2/12, "feet"),
  45748. default: true
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45754. {
  45755. front: {
  45756. height: math.unit(5 + 10/12, "feet"),
  45757. weight: math.unit(160, "lb"),
  45758. name: "Front",
  45759. image: {
  45760. source: "./media/characters/pudask/front.svg",
  45761. extra: 1616/1590,
  45762. bottom: 161/1777
  45763. }
  45764. },
  45765. },
  45766. [
  45767. {
  45768. name: "Ferret Height",
  45769. height: math.unit(2 + 5/12, "feet")
  45770. },
  45771. {
  45772. name: "Canon Height",
  45773. height: math.unit(5 + 10/12, "feet"),
  45774. default: true
  45775. },
  45776. ]
  45777. ))
  45778. characterMakers.push(() => makeCharacter(
  45779. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45780. {
  45781. front: {
  45782. height: math.unit(3 + 6/12, "feet"),
  45783. weight: math.unit(60, "lb"),
  45784. name: "Front",
  45785. image: {
  45786. source: "./media/characters/ramita/front.svg",
  45787. extra: 1402/1232,
  45788. bottom: 62/1464
  45789. }
  45790. },
  45791. dressed: {
  45792. height: math.unit(3 + 6/12, "feet"),
  45793. weight: math.unit(60, "lb"),
  45794. name: "Dressed",
  45795. image: {
  45796. source: "./media/characters/ramita/dressed.svg",
  45797. extra: 1534/1249,
  45798. bottom: 50/1584
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(3 + 6/12, "feet"),
  45806. default: true
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45812. {
  45813. front: {
  45814. height: math.unit(8, "feet"),
  45815. name: "Front",
  45816. image: {
  45817. source: "./media/characters/ark/front.svg",
  45818. extra: 772/693,
  45819. bottom: 45/817
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(8, "feet"),
  45827. default: true
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45833. {
  45834. front: {
  45835. height: math.unit(6, "feet"),
  45836. weight: math.unit(250, "lb"),
  45837. volume: math.unit(5/8, "gallons"),
  45838. name: "Front",
  45839. image: {
  45840. source: "./media/characters/ludwig-horn/front.svg",
  45841. extra: 1782/1635,
  45842. bottom: 96/1878
  45843. }
  45844. },
  45845. back: {
  45846. height: math.unit(6, "feet"),
  45847. weight: math.unit(250, "lb"),
  45848. volume: math.unit(5/8, "gallons"),
  45849. name: "Back",
  45850. image: {
  45851. source: "./media/characters/ludwig-horn/back.svg",
  45852. extra: 1874/1729,
  45853. bottom: 27/1901
  45854. }
  45855. },
  45856. dick: {
  45857. height: math.unit(1.05, "feet"),
  45858. weight: math.unit(15, "lb"),
  45859. volume: math.unit(5/8, "gallons"),
  45860. name: "Dick",
  45861. image: {
  45862. source: "./media/characters/ludwig-horn/dick.svg"
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Small",
  45869. height: math.unit(6, "feet")
  45870. },
  45871. {
  45872. name: "Typical",
  45873. height: math.unit(12, "feet"),
  45874. default: true
  45875. },
  45876. {
  45877. name: "Building",
  45878. height: math.unit(80, "feet")
  45879. },
  45880. {
  45881. name: "Town",
  45882. height: math.unit(800, "feet")
  45883. },
  45884. {
  45885. name: "Kingdom",
  45886. height: math.unit(80000, "feet")
  45887. },
  45888. {
  45889. name: "Planet",
  45890. height: math.unit(8000000, "feet")
  45891. },
  45892. {
  45893. name: "Universe",
  45894. height: math.unit(8000000000, "feet")
  45895. },
  45896. {
  45897. name: "Transcended",
  45898. height: math.unit(8e27, "feet")
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(5, "feet"),
  45907. weight: math.unit(50, "kg"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/biot-avery/front.svg",
  45911. extra: 1295/1232,
  45912. bottom: 86/1381
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(5, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(6, "feet"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/kitsune-kiro/front.svg",
  45932. extra: 1270/1158,
  45933. bottom: 42/1312
  45934. }
  45935. },
  45936. frontAlt: {
  45937. height: math.unit(6, "feet"),
  45938. name: "Front-alt",
  45939. image: {
  45940. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45941. extra: 1130/1081,
  45942. bottom: 36/1166
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Smol",
  45949. height: math.unit(3, "feet")
  45950. },
  45951. {
  45952. name: "Normal",
  45953. height: math.unit(6, "feet"),
  45954. default: true
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45960. {
  45961. front: {
  45962. height: math.unit(6, "feet"),
  45963. weight: math.unit(125, "lb"),
  45964. name: "Front",
  45965. image: {
  45966. source: "./media/characters/jack-thatcher/front.svg",
  45967. extra: 1474/1370,
  45968. bottom: 26/1500
  45969. }
  45970. },
  45971. back: {
  45972. height: math.unit(6, "feet"),
  45973. weight: math.unit(125, "lb"),
  45974. name: "Back",
  45975. image: {
  45976. source: "./media/characters/jack-thatcher/back.svg",
  45977. extra: 1489/1384,
  45978. bottom: 18/1507
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(6, "feet"),
  45986. default: true
  45987. },
  45988. {
  45989. name: "Macro",
  45990. height: math.unit(75, "feet")
  45991. },
  45992. {
  45993. name: "Macro-er",
  45994. height: math.unit(250, "feet")
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(7, "feet"),
  46003. weight: math.unit(110, "kg"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/max-hyper/front.svg",
  46007. extra: 1969/1881,
  46008. bottom: 49/2018
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Normal",
  46015. height: math.unit(7, "feet"),
  46016. default: true
  46017. },
  46018. ]
  46019. ))
  46020. characterMakers.push(() => makeCharacter(
  46021. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46022. {
  46023. front: {
  46024. height: math.unit(5 + 5/12, "feet"),
  46025. weight: math.unit(160, "lb"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/spook/front.svg",
  46029. extra: 794/791,
  46030. bottom: 54/848
  46031. }
  46032. },
  46033. back: {
  46034. height: math.unit(5 + 5/12, "feet"),
  46035. weight: math.unit(160, "lb"),
  46036. name: "Back",
  46037. image: {
  46038. source: "./media/characters/spook/back.svg",
  46039. extra: 812/798,
  46040. bottom: 32/844
  46041. }
  46042. },
  46043. },
  46044. [
  46045. {
  46046. name: "Normal",
  46047. height: math.unit(5 + 5/12, "feet"),
  46048. default: true
  46049. },
  46050. ]
  46051. ))
  46052. characterMakers.push(() => makeCharacter(
  46053. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46054. {
  46055. front: {
  46056. height: math.unit(18, "feet"),
  46057. name: "Front",
  46058. image: {
  46059. source: "./media/characters/xeaduulix/front.svg",
  46060. extra: 1380/1166,
  46061. bottom: 110/1490
  46062. }
  46063. },
  46064. back: {
  46065. height: math.unit(18, "feet"),
  46066. name: "Back",
  46067. image: {
  46068. source: "./media/characters/xeaduulix/back.svg",
  46069. extra: 1592/1170,
  46070. bottom: 128/1720
  46071. }
  46072. },
  46073. frontNsfw: {
  46074. height: math.unit(18, "feet"),
  46075. name: "Front (NSFW)",
  46076. image: {
  46077. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46078. extra: 1380/1166,
  46079. bottom: 110/1490
  46080. }
  46081. },
  46082. backNsfw: {
  46083. height: math.unit(18, "feet"),
  46084. name: "Back (NSFW)",
  46085. image: {
  46086. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46087. extra: 1592/1170,
  46088. bottom: 128/1720
  46089. }
  46090. },
  46091. },
  46092. [
  46093. {
  46094. name: "Normal",
  46095. height: math.unit(18, "feet"),
  46096. default: true
  46097. },
  46098. ]
  46099. ))
  46100. characterMakers.push(() => makeCharacter(
  46101. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46102. {
  46103. spreadWings: {
  46104. height: math.unit(20, "feet"),
  46105. name: "Spread Wings",
  46106. image: {
  46107. source: "./media/characters/fledge/spread-wings.svg",
  46108. extra: 693/635,
  46109. bottom: 26/719
  46110. }
  46111. },
  46112. front: {
  46113. height: math.unit(20, "feet"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/fledge/front.svg",
  46117. extra: 684/637,
  46118. bottom: 18/702
  46119. }
  46120. },
  46121. frontAlt: {
  46122. height: math.unit(20, "feet"),
  46123. name: "Front (Alt)",
  46124. image: {
  46125. source: "./media/characters/fledge/front-alt.svg",
  46126. extra: 708/664,
  46127. bottom: 13/721
  46128. }
  46129. },
  46130. back: {
  46131. height: math.unit(20, "feet"),
  46132. name: "Back",
  46133. image: {
  46134. source: "./media/characters/fledge/back.svg",
  46135. extra: 718/634,
  46136. bottom: 22/740
  46137. }
  46138. },
  46139. head: {
  46140. height: math.unit(5.55, "feet"),
  46141. name: "Head",
  46142. image: {
  46143. source: "./media/characters/fledge/head.svg"
  46144. }
  46145. },
  46146. headAlt: {
  46147. height: math.unit(5.1, "feet"),
  46148. name: "Head (Alt)",
  46149. image: {
  46150. source: "./media/characters/fledge/head-alt.svg"
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Small",
  46157. height: math.unit(6 + 2/12, "feet")
  46158. },
  46159. {
  46160. name: "Big",
  46161. height: math.unit(20, "feet"),
  46162. default: true
  46163. },
  46164. {
  46165. name: "Giant",
  46166. height: math.unit(100, "feet")
  46167. },
  46168. {
  46169. name: "Macro",
  46170. height: math.unit(200, "feet")
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(1, "meter"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/atlas-morenai/front.svg",
  46182. extra: 1275/1043,
  46183. bottom: 19/1294
  46184. }
  46185. },
  46186. back: {
  46187. height: math.unit(1, "meter"),
  46188. name: "Back",
  46189. image: {
  46190. source: "./media/characters/atlas-morenai/back.svg",
  46191. extra: 1141/1001,
  46192. bottom: 25/1166
  46193. }
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Normal",
  46199. height: math.unit(1, "meter"),
  46200. default: true
  46201. },
  46202. {
  46203. name: "Magic-Infused",
  46204. height: math.unit(5, "meters")
  46205. },
  46206. ]
  46207. ))
  46208. characterMakers.push(() => makeCharacter(
  46209. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46210. {
  46211. front: {
  46212. height: math.unit(5, "meters"),
  46213. name: "Front",
  46214. image: {
  46215. source: "./media/characters/cintia/front.svg",
  46216. extra: 1312/1228,
  46217. bottom: 38/1350
  46218. }
  46219. },
  46220. back: {
  46221. height: math.unit(5, "meters"),
  46222. name: "Back",
  46223. image: {
  46224. source: "./media/characters/cintia/back.svg",
  46225. extra: 1260/1166,
  46226. bottom: 98/1358
  46227. }
  46228. },
  46229. frontDick: {
  46230. height: math.unit(5, "meters"),
  46231. name: "Front (Dick)",
  46232. image: {
  46233. source: "./media/characters/cintia/front-dick.svg",
  46234. extra: 1312/1228,
  46235. bottom: 38/1350
  46236. }
  46237. },
  46238. backDick: {
  46239. height: math.unit(5, "meters"),
  46240. name: "Back (Dick)",
  46241. image: {
  46242. source: "./media/characters/cintia/back-dick.svg",
  46243. extra: 1260/1166,
  46244. bottom: 98/1358
  46245. }
  46246. },
  46247. bust: {
  46248. height: math.unit(1.97, "meters"),
  46249. name: "Bust",
  46250. image: {
  46251. source: "./media/characters/cintia/bust.svg",
  46252. extra: 617/565,
  46253. bottom: 0/617
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(5, "meters"),
  46261. default: true
  46262. },
  46263. ]
  46264. ))
  46265. characterMakers.push(() => makeCharacter(
  46266. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46267. {
  46268. side: {
  46269. height: math.unit(100, "feet"),
  46270. name: "Side",
  46271. image: {
  46272. source: "./media/characters/denora/side.svg",
  46273. extra: 875/803,
  46274. bottom: 9/884
  46275. }
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Standard",
  46281. height: math.unit(100, "feet"),
  46282. default: true
  46283. },
  46284. {
  46285. name: "Grand",
  46286. height: math.unit(1000, "feet")
  46287. },
  46288. {
  46289. name: "Conquering",
  46290. height: math.unit(10000, "feet")
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46296. {
  46297. dressed: {
  46298. height: math.unit(8 + 5/12, "feet"),
  46299. weight: math.unit(700, "lb"),
  46300. name: "Dressed",
  46301. image: {
  46302. source: "./media/characters/kiva/dressed.svg",
  46303. extra: 1102/1055,
  46304. bottom: 60/1162
  46305. }
  46306. },
  46307. nude: {
  46308. height: math.unit(8 + 5/12, "feet"),
  46309. weight: math.unit(700, "lb"),
  46310. name: "Nude",
  46311. image: {
  46312. source: "./media/characters/kiva/nude.svg",
  46313. extra: 1102/1055,
  46314. bottom: 60/1162
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Base Height",
  46321. height: math.unit(8 + 5/12, "feet"),
  46322. default: true
  46323. },
  46324. {
  46325. name: "Macro",
  46326. height: math.unit(100, "feet")
  46327. },
  46328. {
  46329. name: "Max",
  46330. height: math.unit(3280, "feet")
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46336. {
  46337. front: {
  46338. height: math.unit(6 + 8/12, "feet"),
  46339. weight: math.unit(250, "lb"),
  46340. name: "Front",
  46341. image: {
  46342. source: "./media/characters/ztragon/front.svg",
  46343. extra: 1825/1684,
  46344. bottom: 98/1923
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Normal",
  46351. height: math.unit(6 + 8/12, "feet"),
  46352. default: true
  46353. },
  46354. {
  46355. name: "Macro",
  46356. height: math.unit(80, "feet")
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46362. {
  46363. front: {
  46364. height: math.unit(10.4, "feet"),
  46365. weight: math.unit(2, "tons"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/yesenia/front.svg",
  46369. extra: 1479/1474,
  46370. bottom: 233/1712
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(10.4, "feet"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46384. {
  46385. normal: {
  46386. height: math.unit(6 + 1/12, "feet"),
  46387. weight: math.unit(180, "lb"),
  46388. name: "Normal",
  46389. image: {
  46390. source: "./media/characters/leanne-lycheborne/normal.svg",
  46391. extra: 1748/1660,
  46392. bottom: 98/1846
  46393. }
  46394. },
  46395. were: {
  46396. height: math.unit(12, "feet"),
  46397. weight: math.unit(1600, "lb"),
  46398. name: "Were",
  46399. image: {
  46400. source: "./media/characters/leanne-lycheborne/were.svg",
  46401. extra: 1485/1432,
  46402. bottom: 66/1551
  46403. }
  46404. },
  46405. },
  46406. [
  46407. {
  46408. name: "Normal",
  46409. height: math.unit(6 + 1/12, "feet"),
  46410. default: true
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46416. {
  46417. side: {
  46418. height: math.unit(13, "feet"),
  46419. name: "Side",
  46420. image: {
  46421. source: "./media/characters/kira-tyler/side.svg",
  46422. extra: 693/393,
  46423. bottom: 58/751
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Normal",
  46430. height: math.unit(13, "feet"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(10.3, "feet"),
  46440. weight: math.unit(150, "lb"),
  46441. name: "Front",
  46442. image: {
  46443. source: "./media/characters/blaze/front.svg",
  46444. extra: 1378/1286,
  46445. bottom: 172/1550
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(10.3, "feet"),
  46453. default: true
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46459. {
  46460. side: {
  46461. height: math.unit(2, "meters"),
  46462. weight: math.unit(400, "kg"),
  46463. name: "Side",
  46464. image: {
  46465. source: "./media/characters/anu/side.svg",
  46466. extra: 506/394,
  46467. bottom: 18/524
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Humanoid",
  46474. height: math.unit(2, "meters")
  46475. },
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(5, "meters"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(5 + 5/12, "feet"),
  46488. weight: math.unit(170, "lb"),
  46489. name: "Front",
  46490. image: {
  46491. source: "./media/characters/synx-the-lynx/front.svg",
  46492. extra: 1893/1745,
  46493. bottom: 17/1910
  46494. }
  46495. },
  46496. side: {
  46497. height: math.unit(5 + 5/12, "feet"),
  46498. weight: math.unit(170, "lb"),
  46499. name: "Side",
  46500. image: {
  46501. source: "./media/characters/synx-the-lynx/side.svg",
  46502. extra: 1884/1740,
  46503. bottom: 39/1923
  46504. }
  46505. },
  46506. back: {
  46507. height: math.unit(5 + 5/12, "feet"),
  46508. weight: math.unit(170, "lb"),
  46509. name: "Back",
  46510. image: {
  46511. source: "./media/characters/synx-the-lynx/back.svg",
  46512. extra: 1903/1755,
  46513. bottom: 14/1917
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(5 + 5/12, "feet"),
  46521. default: true
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46527. {
  46528. back: {
  46529. height: math.unit(15, "feet"),
  46530. name: "Back",
  46531. image: {
  46532. source: "./media/characters/nadezda-fex/back.svg",
  46533. extra: 1695/1481,
  46534. bottom: 25/1720
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(15, "feet"),
  46542. default: true
  46543. },
  46544. {
  46545. name: "Macro",
  46546. height: math.unit(2.5, "miles")
  46547. },
  46548. {
  46549. name: "Goddess",
  46550. height: math.unit(2, "multiverses")
  46551. },
  46552. ]
  46553. ))
  46554. characterMakers.push(() => makeCharacter(
  46555. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46556. {
  46557. front: {
  46558. height: math.unit(216, "cm"),
  46559. name: "Front",
  46560. image: {
  46561. source: "./media/characters/lev/front.svg",
  46562. extra: 1728/1670,
  46563. bottom: 82/1810
  46564. }
  46565. },
  46566. back: {
  46567. height: math.unit(216, "cm"),
  46568. name: "Back",
  46569. image: {
  46570. source: "./media/characters/lev/back.svg",
  46571. extra: 1738/1675,
  46572. bottom: 24/1762
  46573. }
  46574. },
  46575. dressed: {
  46576. height: math.unit(216, "cm"),
  46577. name: "Dressed",
  46578. image: {
  46579. source: "./media/characters/lev/dressed.svg",
  46580. extra: 1397/1351,
  46581. bottom: 73/1470
  46582. }
  46583. },
  46584. head: {
  46585. height: math.unit(0.51, "meter"),
  46586. name: "Head",
  46587. image: {
  46588. source: "./media/characters/lev/head.svg"
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(216, "cm"),
  46596. default: true
  46597. },
  46598. {
  46599. name: "Relatively Macro",
  46600. height: math.unit(80, "meters")
  46601. },
  46602. {
  46603. name: "Megamacro",
  46604. height: math.unit(21600, "meters")
  46605. },
  46606. {
  46607. name: "Megamacro+",
  46608. height: math.unit(64800, "meters")
  46609. },
  46610. ]
  46611. ))
  46612. characterMakers.push(() => makeCharacter(
  46613. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46614. {
  46615. front: {
  46616. height: math.unit(2, "meters"),
  46617. weight: math.unit(80, "kg"),
  46618. name: "Front",
  46619. image: {
  46620. source: "./media/characters/moka/front.svg",
  46621. extra: 1337/1255,
  46622. bottom: 58/1395
  46623. }
  46624. },
  46625. },
  46626. [
  46627. {
  46628. name: "Micro",
  46629. height: math.unit(15, "cm")
  46630. },
  46631. {
  46632. name: "Normal",
  46633. height: math.unit(2, "meters"),
  46634. default: true
  46635. },
  46636. {
  46637. name: "Macro",
  46638. height: math.unit(20, "meters"),
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(9, "feet"),
  46647. weight: math.unit(240, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/kuzco/front.svg",
  46651. extra: 1593/1487,
  46652. bottom: 32/1625
  46653. }
  46654. },
  46655. side: {
  46656. height: math.unit(9, "feet"),
  46657. weight: math.unit(240, "lb"),
  46658. name: "Side",
  46659. image: {
  46660. source: "./media/characters/kuzco/side.svg",
  46661. extra: 1575/1485,
  46662. bottom: 30/1605
  46663. }
  46664. },
  46665. back: {
  46666. height: math.unit(9, "feet"),
  46667. weight: math.unit(240, "lb"),
  46668. name: "Back",
  46669. image: {
  46670. source: "./media/characters/kuzco/back.svg",
  46671. extra: 1603/1514,
  46672. bottom: 14/1617
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(9, "feet"),
  46680. default: true
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46686. {
  46687. side: {
  46688. height: math.unit(2, "meters"),
  46689. weight: math.unit(300, "kg"),
  46690. name: "Side",
  46691. image: {
  46692. source: "./media/characters/ceruleus/side.svg",
  46693. extra: 1068/974,
  46694. bottom: 126/1194
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Normal",
  46701. height: math.unit(16, "meters"),
  46702. default: true
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(9, "feet"),
  46711. weight: math.unit(500, "kg"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/acouya/front.svg",
  46715. extra: 1660/1473,
  46716. bottom: 28/1688
  46717. }
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Normal",
  46723. height: math.unit(9, "feet"),
  46724. default: true
  46725. },
  46726. ]
  46727. ))
  46728. characterMakers.push(() => makeCharacter(
  46729. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46730. {
  46731. front: {
  46732. height: math.unit(5 + 6/12, "feet"),
  46733. weight: math.unit(195, "lb"),
  46734. name: "Front",
  46735. image: {
  46736. source: "./media/characters/vant/front.svg",
  46737. extra: 1396/1320,
  46738. bottom: 20/1416
  46739. }
  46740. },
  46741. back: {
  46742. height: math.unit(5 + 6/12, "feet"),
  46743. weight: math.unit(195, "lb"),
  46744. name: "Back",
  46745. image: {
  46746. source: "./media/characters/vant/back.svg",
  46747. extra: 1396/1320,
  46748. bottom: 20/1416
  46749. }
  46750. },
  46751. maw: {
  46752. height: math.unit(0.75, "feet"),
  46753. name: "Maw",
  46754. image: {
  46755. source: "./media/characters/vant/maw.svg"
  46756. }
  46757. },
  46758. paw: {
  46759. height: math.unit(1.07, "feet"),
  46760. name: "Paw",
  46761. image: {
  46762. source: "./media/characters/vant/paw.svg"
  46763. }
  46764. },
  46765. },
  46766. [
  46767. {
  46768. name: "Micro",
  46769. height: math.unit(0.25, "inches")
  46770. },
  46771. {
  46772. name: "Normal",
  46773. height: math.unit(5 + 6/12, "feet"),
  46774. default: true
  46775. },
  46776. {
  46777. name: "Macro",
  46778. height: math.unit(75, "feet")
  46779. },
  46780. ]
  46781. ))
  46782. characterMakers.push(() => makeCharacter(
  46783. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46784. {
  46785. front: {
  46786. height: math.unit(30, "meters"),
  46787. weight: math.unit(363, "tons"),
  46788. name: "Front",
  46789. image: {
  46790. source: "./media/characters/ahra/front.svg",
  46791. extra: 1914/1814,
  46792. bottom: 46/1960
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "Macro",
  46799. height: math.unit(30, "meters"),
  46800. default: true
  46801. },
  46802. ]
  46803. ))
  46804. characterMakers.push(() => makeCharacter(
  46805. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46806. {
  46807. undressed: {
  46808. height: math.unit(2, "m"),
  46809. weight: math.unit(250, "kg"),
  46810. name: "Undressed",
  46811. image: {
  46812. source: "./media/characters/coriander/undressed.svg",
  46813. extra: 1757/1606,
  46814. bottom: 107/1864
  46815. }
  46816. },
  46817. dressed: {
  46818. height: math.unit(2, "m"),
  46819. weight: math.unit(250, "kg"),
  46820. name: "Dressed",
  46821. image: {
  46822. source: "./media/characters/coriander/dressed.svg",
  46823. extra: 1757/1606,
  46824. bottom: 107/1864
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(4, "meters"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "XL",
  46836. height: math.unit(6, "meters")
  46837. },
  46838. {
  46839. name: "XXL",
  46840. height: math.unit(8, "meters")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(6, "feet"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/syrinx/front.svg",
  46852. extra: 1557/1259,
  46853. bottom: 171/1728
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(6 + 3/12, "feet"),
  46861. default: true
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(11 + 6/12, "feet"),
  46870. weight: math.unit(1.5, "tons"),
  46871. name: "Front",
  46872. image: {
  46873. source: "./media/characters/bor/front.svg",
  46874. extra: 1189/1109,
  46875. bottom: 170/1359
  46876. }
  46877. },
  46878. },
  46879. [
  46880. {
  46881. name: "Normal",
  46882. height: math.unit(11 + 6/12, "feet"),
  46883. default: true
  46884. },
  46885. {
  46886. name: "Macro",
  46887. height: math.unit(32 + 9/12, "feet")
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46893. {
  46894. anthro: {
  46895. height: math.unit(9, "feet"),
  46896. weight: math.unit(2076, "lb"),
  46897. name: "Anthro",
  46898. image: {
  46899. source: "./media/characters/abacus/anthro.svg",
  46900. extra: 1540/1494,
  46901. bottom: 233/1773
  46902. }
  46903. },
  46904. pigeon: {
  46905. height: math.unit(1, "feet"),
  46906. name: "Pigeon",
  46907. image: {
  46908. source: "./media/characters/abacus/pigeon.svg",
  46909. extra: 528/525,
  46910. bottom: 46/574
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(9, "feet"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46924. {
  46925. side: {
  46926. height: math.unit(6, "feet"),
  46927. name: "Side",
  46928. image: {
  46929. source: "./media/characters/delkhan/side.svg",
  46930. extra: 1884/1786,
  46931. bottom: 308/2192
  46932. }
  46933. },
  46934. head: {
  46935. height: math.unit(3.38, "feet"),
  46936. name: "Head",
  46937. image: {
  46938. source: "./media/characters/delkhan/head.svg"
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(72, "feet"),
  46946. default: true
  46947. },
  46948. {
  46949. name: "Giant",
  46950. height: math.unit(172, "feet")
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46956. {
  46957. standing: {
  46958. height: math.unit(6, "feet"),
  46959. name: "Standing",
  46960. image: {
  46961. source: "./media/characters/euchidat/standing.svg",
  46962. extra: 1612/1553,
  46963. bottom: 116/1728
  46964. }
  46965. },
  46966. leaning: {
  46967. height: math.unit(6, "feet"),
  46968. name: "Leaning",
  46969. image: {
  46970. source: "./media/characters/euchidat/leaning.svg",
  46971. extra: 1719/1674,
  46972. bottom: 27/1746
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(175, "feet"),
  46980. default: true
  46981. },
  46982. {
  46983. name: "Megamacro",
  46984. height: math.unit(190, "miles")
  46985. },
  46986. {
  46987. name: "Gigamacro",
  46988. height: math.unit(190000, "miles")
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(6, "feet"),
  46997. weight: math.unit(150, "lb"),
  46998. name: "Front",
  46999. image: {
  47000. source: "./media/characters/rebecca-stack/front.svg",
  47001. extra: 1256/1201,
  47002. bottom: 18/1274
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(5 + 8/12, "feet"),
  47010. default: true
  47011. },
  47012. {
  47013. name: "Demolitionist",
  47014. height: math.unit(200, "feet")
  47015. },
  47016. {
  47017. name: "Out of Control",
  47018. height: math.unit(2, "miles")
  47019. },
  47020. {
  47021. name: "Giga",
  47022. height: math.unit(7200, "miles")
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(6, "feet"),
  47031. weight: math.unit(150, "lb"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/jenny-cartwright/front.svg",
  47035. extra: 1384/1376,
  47036. bottom: 58/1442
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(6 + 7/12, "feet"),
  47044. default: true
  47045. },
  47046. {
  47047. name: "Librarian",
  47048. height: math.unit(55, "feet")
  47049. },
  47050. {
  47051. name: "Sightseer",
  47052. height: math.unit(50, "miles")
  47053. },
  47054. {
  47055. name: "Giga",
  47056. height: math.unit(30000, "miles")
  47057. },
  47058. ]
  47059. ))
  47060. characterMakers.push(() => makeCharacter(
  47061. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47062. {
  47063. nude: {
  47064. height: math.unit(8, "feet"),
  47065. weight: math.unit(225, "lb"),
  47066. name: "Nude",
  47067. image: {
  47068. source: "./media/characters/marvy/nude.svg",
  47069. extra: 1900/1683,
  47070. bottom: 89/1989
  47071. }
  47072. },
  47073. dressed: {
  47074. height: math.unit(8, "feet"),
  47075. weight: math.unit(225, "lb"),
  47076. name: "Dressed",
  47077. image: {
  47078. source: "./media/characters/marvy/dressed.svg",
  47079. extra: 1900/1683,
  47080. bottom: 89/1989
  47081. }
  47082. },
  47083. head: {
  47084. height: math.unit(2.85, "feet"),
  47085. name: "Head",
  47086. image: {
  47087. source: "./media/characters/marvy/head.svg"
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(8, "feet"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47101. {
  47102. front: {
  47103. height: math.unit(8, "feet"),
  47104. weight: math.unit(250, "lb"),
  47105. name: "Front",
  47106. image: {
  47107. source: "./media/characters/leah/front.svg",
  47108. extra: 1257/1149,
  47109. bottom: 109/1366
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Normal",
  47116. height: math.unit(8, "feet"),
  47117. default: true
  47118. },
  47119. {
  47120. name: "Minimacro",
  47121. height: math.unit(40, "feet")
  47122. },
  47123. {
  47124. name: "Macro",
  47125. height: math.unit(124, "feet")
  47126. },
  47127. {
  47128. name: "Megamacro",
  47129. height: math.unit(850, "feet")
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47135. {
  47136. side: {
  47137. height: math.unit(13 + 6/12, "feet"),
  47138. weight: math.unit(3200, "lb"),
  47139. name: "Side",
  47140. image: {
  47141. source: "./media/characters/alvir/side.svg",
  47142. extra: 896/589,
  47143. bottom: 26/922
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Normal",
  47150. height: math.unit(13 + 6/12, "feet"),
  47151. default: true
  47152. },
  47153. ]
  47154. ))
  47155. characterMakers.push(() => makeCharacter(
  47156. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47157. {
  47158. front: {
  47159. height: math.unit(5 + 4/12, "feet"),
  47160. weight: math.unit(236, "lb"),
  47161. name: "Front",
  47162. image: {
  47163. source: "./media/characters/zaina-khalil/front.svg",
  47164. extra: 1533/1485,
  47165. bottom: 94/1627
  47166. }
  47167. },
  47168. side: {
  47169. height: math.unit(5 + 4/12, "feet"),
  47170. weight: math.unit(236, "lb"),
  47171. name: "Side",
  47172. image: {
  47173. source: "./media/characters/zaina-khalil/side.svg",
  47174. extra: 1537/1498,
  47175. bottom: 66/1603
  47176. }
  47177. },
  47178. back: {
  47179. height: math.unit(5 + 4/12, "feet"),
  47180. weight: math.unit(236, "lb"),
  47181. name: "Back",
  47182. image: {
  47183. source: "./media/characters/zaina-khalil/back.svg",
  47184. extra: 1546/1494,
  47185. bottom: 89/1635
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(5 + 4/12, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47199. {
  47200. side: {
  47201. height: math.unit(12, "feet"),
  47202. weight: math.unit(4000, "lb"),
  47203. name: "Side",
  47204. image: {
  47205. source: "./media/characters/terry/side.svg",
  47206. extra: 1518/1439,
  47207. bottom: 149/1667
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(12, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47221. {
  47222. front: {
  47223. height: math.unit(12, "feet"),
  47224. weight: math.unit(1500, "lb"),
  47225. name: "Front",
  47226. image: {
  47227. source: "./media/characters/kahea/front.svg",
  47228. extra: 1722/1617,
  47229. bottom: 179/1901
  47230. }
  47231. },
  47232. },
  47233. [
  47234. {
  47235. name: "Normal",
  47236. height: math.unit(12, "feet"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47243. {
  47244. demonFront: {
  47245. height: math.unit(36, "feet"),
  47246. name: "Front",
  47247. image: {
  47248. source: "./media/characters/alex-xuria/demon-front.svg",
  47249. extra: 1705/1673,
  47250. bottom: 198/1903
  47251. },
  47252. form: "demon",
  47253. default: true
  47254. },
  47255. demonBack: {
  47256. height: math.unit(36, "feet"),
  47257. name: "Back",
  47258. image: {
  47259. source: "./media/characters/alex-xuria/demon-back.svg",
  47260. extra: 1725/1693,
  47261. bottom: 70/1795
  47262. },
  47263. form: "demon"
  47264. },
  47265. demonHead: {
  47266. height: math.unit(2.14, "meters"),
  47267. name: "Head",
  47268. image: {
  47269. source: "./media/characters/alex-xuria/demon-head.svg"
  47270. },
  47271. form: "demon"
  47272. },
  47273. demonHand: {
  47274. height: math.unit(1.61, "meters"),
  47275. name: "Hand",
  47276. image: {
  47277. source: "./media/characters/alex-xuria/demon-hand.svg"
  47278. },
  47279. form: "demon"
  47280. },
  47281. demonPaw: {
  47282. height: math.unit(1.35, "meters"),
  47283. name: "Paw",
  47284. image: {
  47285. source: "./media/characters/alex-xuria/demon-paw.svg"
  47286. },
  47287. form: "demon"
  47288. },
  47289. demonFoot: {
  47290. height: math.unit(2.2, "meters"),
  47291. name: "Foot",
  47292. image: {
  47293. source: "./media/characters/alex-xuria/demon-foot.svg"
  47294. },
  47295. form: "demon"
  47296. },
  47297. demonCock: {
  47298. height: math.unit(1.74, "meters"),
  47299. name: "Cock",
  47300. image: {
  47301. source: "./media/characters/alex-xuria/demon-cock.svg"
  47302. },
  47303. form: "demon"
  47304. },
  47305. demonTailClosed: {
  47306. height: math.unit(1.47, "meters"),
  47307. name: "Tail (Closed)",
  47308. image: {
  47309. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47310. },
  47311. form: "demon"
  47312. },
  47313. demonTailOpen: {
  47314. height: math.unit(2.85, "meters"),
  47315. name: "Tail (Open)",
  47316. image: {
  47317. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47318. },
  47319. form: "demon"
  47320. },
  47321. incubusFront: {
  47322. height: math.unit(12, "feet"),
  47323. name: "Front",
  47324. image: {
  47325. source: "./media/characters/alex-xuria/incubus-front.svg",
  47326. extra: 1754/1677,
  47327. bottom: 125/1879
  47328. },
  47329. form: "incubus",
  47330. default: true
  47331. },
  47332. incubusBack: {
  47333. height: math.unit(12, "feet"),
  47334. name: "Back",
  47335. image: {
  47336. source: "./media/characters/alex-xuria/incubus-back.svg",
  47337. extra: 1702/1647,
  47338. bottom: 30/1732
  47339. },
  47340. form: "incubus"
  47341. },
  47342. incubusHead: {
  47343. height: math.unit(3.45, "feet"),
  47344. name: "Head",
  47345. image: {
  47346. source: "./media/characters/alex-xuria/incubus-head.svg"
  47347. },
  47348. form: "incubus"
  47349. },
  47350. rabbitFront: {
  47351. height: math.unit(6, "feet"),
  47352. name: "Front",
  47353. image: {
  47354. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47355. extra: 1369/1349,
  47356. bottom: 45/1414
  47357. },
  47358. form: "rabbit",
  47359. default: true
  47360. },
  47361. rabbitSide: {
  47362. height: math.unit(6, "feet"),
  47363. name: "Side",
  47364. image: {
  47365. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47366. extra: 1370/1356,
  47367. bottom: 37/1407
  47368. },
  47369. form: "rabbit"
  47370. },
  47371. rabbitBack: {
  47372. height: math.unit(6, "feet"),
  47373. name: "Back",
  47374. image: {
  47375. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47376. extra: 1375/1358,
  47377. bottom: 43/1418
  47378. },
  47379. form: "rabbit"
  47380. },
  47381. },
  47382. [
  47383. {
  47384. name: "Normal",
  47385. height: math.unit(6, "feet"),
  47386. default: true,
  47387. form: "rabbit"
  47388. },
  47389. {
  47390. name: "Incubus",
  47391. height: math.unit(12, "feet"),
  47392. default: true,
  47393. form: "incubus"
  47394. },
  47395. {
  47396. name: "Demon",
  47397. height: math.unit(36, "feet"),
  47398. default: true,
  47399. form: "demon"
  47400. }
  47401. ],
  47402. {
  47403. "demon": {
  47404. name: "Demon",
  47405. default: true
  47406. },
  47407. "incubus": {
  47408. name: "Incubus",
  47409. },
  47410. "rabbit": {
  47411. name: "Rabbit"
  47412. }
  47413. }
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(7 + 5/12, "feet"),
  47420. weight: math.unit(510, "lb"),
  47421. name: "Front",
  47422. image: {
  47423. source: "./media/characters/syrup/front.svg",
  47424. extra: 932/916,
  47425. bottom: 26/958
  47426. }
  47427. },
  47428. },
  47429. [
  47430. {
  47431. name: "Normal",
  47432. height: math.unit(7 + 5/12, "feet"),
  47433. default: true
  47434. },
  47435. {
  47436. name: "Big",
  47437. height: math.unit(50, "feet")
  47438. },
  47439. {
  47440. name: "Macro",
  47441. height: math.unit(300, "feet")
  47442. },
  47443. {
  47444. name: "Megamacro",
  47445. height: math.unit(1, "mile")
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(6 + 9/12, "feet"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/zeimne/front.svg",
  47457. extra: 1969/1806,
  47458. bottom: 53/2022
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(6 + 9/12, "feet"),
  47466. default: true
  47467. },
  47468. {
  47469. name: "Giant",
  47470. height: math.unit(550, "feet")
  47471. },
  47472. {
  47473. name: "Mega",
  47474. height: math.unit(3, "miles")
  47475. },
  47476. {
  47477. name: "Giga",
  47478. height: math.unit(250, "miles")
  47479. },
  47480. {
  47481. name: "Tera",
  47482. height: math.unit(1, "AU")
  47483. },
  47484. ]
  47485. ))
  47486. characterMakers.push(() => makeCharacter(
  47487. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47488. {
  47489. front: {
  47490. height: math.unit(5 + 2/12, "feet"),
  47491. name: "Front",
  47492. image: {
  47493. source: "./media/characters/grar/front.svg",
  47494. extra: 1331/1119,
  47495. bottom: 60/1391
  47496. }
  47497. },
  47498. back: {
  47499. height: math.unit(5 + 2/12, "feet"),
  47500. name: "Back",
  47501. image: {
  47502. source: "./media/characters/grar/back.svg",
  47503. extra: 1385/1169,
  47504. bottom: 23/1408
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(5 + 2/12, "feet"),
  47512. default: true
  47513. },
  47514. ]
  47515. ))
  47516. characterMakers.push(() => makeCharacter(
  47517. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47518. {
  47519. front: {
  47520. height: math.unit(13 + 7/12, "feet"),
  47521. weight: math.unit(2200, "lb"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/endraya/front.svg",
  47525. extra: 1289/1215,
  47526. bottom: 50/1339
  47527. }
  47528. },
  47529. nude: {
  47530. height: math.unit(13 + 7/12, "feet"),
  47531. weight: math.unit(2200, "lb"),
  47532. name: "Nude",
  47533. image: {
  47534. source: "./media/characters/endraya/nude.svg",
  47535. extra: 1247/1171,
  47536. bottom: 40/1287
  47537. }
  47538. },
  47539. head: {
  47540. height: math.unit(2.6, "feet"),
  47541. name: "Head",
  47542. image: {
  47543. source: "./media/characters/endraya/head.svg"
  47544. }
  47545. },
  47546. slit: {
  47547. height: math.unit(3.4, "feet"),
  47548. name: "Slit",
  47549. image: {
  47550. source: "./media/characters/endraya/slit.svg"
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(13 + 7/12, "feet"),
  47558. default: true
  47559. },
  47560. {
  47561. name: "Macro",
  47562. height: math.unit(200, "feet")
  47563. },
  47564. ]
  47565. ))
  47566. characterMakers.push(() => makeCharacter(
  47567. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47568. {
  47569. front: {
  47570. height: math.unit(1.81, "meters"),
  47571. weight: math.unit(69, "kg"),
  47572. name: "Front",
  47573. image: {
  47574. source: "./media/characters/rodryana/front.svg",
  47575. extra: 2002/1921,
  47576. bottom: 53/2055
  47577. }
  47578. },
  47579. back: {
  47580. height: math.unit(1.81, "meters"),
  47581. weight: math.unit(69, "kg"),
  47582. name: "Back",
  47583. image: {
  47584. source: "./media/characters/rodryana/back.svg",
  47585. extra: 1993/1926,
  47586. bottom: 48/2041
  47587. }
  47588. },
  47589. maw: {
  47590. height: math.unit(0.19769417475, "meters"),
  47591. name: "Maw",
  47592. image: {
  47593. source: "./media/characters/rodryana/maw.svg"
  47594. }
  47595. },
  47596. slit: {
  47597. height: math.unit(0.31631067961, "meters"),
  47598. name: "Slit",
  47599. image: {
  47600. source: "./media/characters/rodryana/slit.svg"
  47601. }
  47602. },
  47603. },
  47604. [
  47605. {
  47606. name: "Normal",
  47607. height: math.unit(1.81, "meters")
  47608. },
  47609. {
  47610. name: "Mini Macro",
  47611. height: math.unit(181, "meters")
  47612. },
  47613. {
  47614. name: "Macro",
  47615. height: math.unit(452, "meters"),
  47616. default: true
  47617. },
  47618. {
  47619. name: "Mega Macro",
  47620. height: math.unit(1.375, "km")
  47621. },
  47622. {
  47623. name: "Giga Macro",
  47624. height: math.unit(13.575, "km")
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47630. {
  47631. front: {
  47632. height: math.unit(6, "feet"),
  47633. weight: math.unit(1000, "lb"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/asaya/front.svg",
  47637. extra: 1460/1200,
  47638. bottom: 71/1531
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(8, "km"),
  47646. default: true
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47652. {
  47653. front: {
  47654. height: math.unit(3.5, "meters"),
  47655. name: "Front",
  47656. image: {
  47657. source: "./media/characters/sarzu-and-israz/front.svg",
  47658. extra: 1570/1558,
  47659. bottom: 150/1720
  47660. },
  47661. },
  47662. back: {
  47663. height: math.unit(3.5, "meters"),
  47664. name: "Back",
  47665. image: {
  47666. source: "./media/characters/sarzu-and-israz/back.svg",
  47667. extra: 1523/1509,
  47668. bottom: 132/1655
  47669. },
  47670. },
  47671. frontFemale: {
  47672. height: math.unit(3.5, "meters"),
  47673. name: "Front (Female)",
  47674. image: {
  47675. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47676. extra: 1570/1558,
  47677. bottom: 150/1720
  47678. },
  47679. },
  47680. frontHerm: {
  47681. height: math.unit(3.5, "meters"),
  47682. name: "Front (Herm)",
  47683. image: {
  47684. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47685. extra: 1570/1558,
  47686. bottom: 150/1720
  47687. },
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(3.5, "meters"),
  47694. default: true,
  47695. },
  47696. {
  47697. name: "Macro",
  47698. height: math.unit(65.5, "meters"),
  47699. },
  47700. ],
  47701. ))
  47702. characterMakers.push(() => makeCharacter(
  47703. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47704. {
  47705. front: {
  47706. height: math.unit(6, "feet"),
  47707. weight: math.unit(250, "lb"),
  47708. name: "Front",
  47709. image: {
  47710. source: "./media/characters/zenimma/front.svg",
  47711. extra: 1346/1320,
  47712. bottom: 58/1404
  47713. }
  47714. },
  47715. back: {
  47716. height: math.unit(6, "feet"),
  47717. weight: math.unit(250, "lb"),
  47718. name: "Back",
  47719. image: {
  47720. source: "./media/characters/zenimma/back.svg",
  47721. extra: 1324/1308,
  47722. bottom: 44/1368
  47723. }
  47724. },
  47725. dick: {
  47726. height: math.unit(1.44, "feet"),
  47727. name: "Dick",
  47728. image: {
  47729. source: "./media/characters/zenimma/dick.svg"
  47730. }
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Canon Height",
  47736. height: math.unit(66, "miles"),
  47737. default: true
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47743. {
  47744. nude: {
  47745. height: math.unit(6, "feet"),
  47746. weight: math.unit(150, "lb"),
  47747. name: "Nude",
  47748. image: {
  47749. source: "./media/characters/shavon/nude.svg",
  47750. extra: 1242/1096,
  47751. bottom: 98/1340
  47752. }
  47753. },
  47754. dressed: {
  47755. height: math.unit(6, "feet"),
  47756. weight: math.unit(150, "lb"),
  47757. name: "Dressed",
  47758. image: {
  47759. source: "./media/characters/shavon/dressed.svg",
  47760. extra: 1242/1096,
  47761. bottom: 98/1340
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Macro",
  47768. height: math.unit(255, "feet"),
  47769. default: true
  47770. },
  47771. ]
  47772. ))
  47773. characterMakers.push(() => makeCharacter(
  47774. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47775. {
  47776. front: {
  47777. height: math.unit(6, "feet"),
  47778. name: "Front",
  47779. image: {
  47780. source: "./media/characters/steph/front.svg",
  47781. extra: 1430/1330,
  47782. bottom: 54/1484
  47783. }
  47784. },
  47785. },
  47786. [
  47787. {
  47788. name: "Normal",
  47789. height: math.unit(6, "feet"),
  47790. default: true
  47791. },
  47792. ]
  47793. ))
  47794. characterMakers.push(() => makeCharacter(
  47795. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47796. {
  47797. front: {
  47798. height: math.unit(9, "feet"),
  47799. weight: math.unit(400, "lb"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/kil'aman/front.svg",
  47803. extra: 1210/1159,
  47804. bottom: 109/1319
  47805. }
  47806. },
  47807. head: {
  47808. height: math.unit(2.14, "feet"),
  47809. name: "Head",
  47810. image: {
  47811. source: "./media/characters/kil'aman/head.svg"
  47812. }
  47813. },
  47814. maw: {
  47815. height: math.unit(1.21, "feet"),
  47816. name: "Maw",
  47817. image: {
  47818. source: "./media/characters/kil'aman/maw.svg"
  47819. }
  47820. },
  47821. foot: {
  47822. height: math.unit(1.7, "feet"),
  47823. name: "Foot",
  47824. image: {
  47825. source: "./media/characters/kil'aman/foot.svg"
  47826. }
  47827. },
  47828. dick: {
  47829. height: math.unit(2.1, "feet"),
  47830. name: "Dick",
  47831. image: {
  47832. source: "./media/characters/kil'aman/dick.svg"
  47833. }
  47834. },
  47835. },
  47836. [
  47837. {
  47838. name: "Normal",
  47839. height: math.unit(9, "feet")
  47840. },
  47841. {
  47842. name: "Canon Height",
  47843. height: math.unit(10, "miles"),
  47844. default: true
  47845. },
  47846. {
  47847. name: "Maximum",
  47848. height: math.unit(6e9, "miles")
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(90, "feet"),
  47857. weight: math.unit(675000, "lb"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/qadan/front.svg",
  47861. extra: 1012/1004,
  47862. bottom: 78/1090
  47863. }
  47864. },
  47865. back: {
  47866. height: math.unit(90, "feet"),
  47867. weight: math.unit(675000, "lb"),
  47868. name: "Back",
  47869. image: {
  47870. source: "./media/characters/qadan/back.svg",
  47871. extra: 1042/1031,
  47872. bottom: 55/1097
  47873. }
  47874. },
  47875. armored: {
  47876. height: math.unit(90, "feet"),
  47877. weight: math.unit(675000, "lb"),
  47878. name: "Armored",
  47879. image: {
  47880. source: "./media/characters/qadan/armored.svg",
  47881. extra: 1047/1037,
  47882. bottom: 48/1095
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Normal",
  47889. height: math.unit(90, "feet"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(6, "feet"),
  47899. weight: math.unit(225, "lb"),
  47900. name: "Front",
  47901. image: {
  47902. source: "./media/characters/brooke/front.svg",
  47903. extra: 1050/1010,
  47904. bottom: 66/1116
  47905. }
  47906. },
  47907. back: {
  47908. height: math.unit(6, "feet"),
  47909. weight: math.unit(225, "lb"),
  47910. name: "Back",
  47911. image: {
  47912. source: "./media/characters/brooke/back.svg",
  47913. extra: 1053/1013,
  47914. bottom: 41/1094
  47915. }
  47916. },
  47917. dressed: {
  47918. height: math.unit(6, "feet"),
  47919. weight: math.unit(225, "lb"),
  47920. name: "Dressed",
  47921. image: {
  47922. source: "./media/characters/brooke/dressed.svg",
  47923. extra: 1050/1010,
  47924. bottom: 66/1116
  47925. }
  47926. },
  47927. },
  47928. [
  47929. {
  47930. name: "Canon Height",
  47931. height: math.unit(500, "miles"),
  47932. default: true
  47933. },
  47934. ]
  47935. ))
  47936. characterMakers.push(() => makeCharacter(
  47937. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47938. {
  47939. front: {
  47940. height: math.unit(6 + 2/12, "feet"),
  47941. weight: math.unit(210, "lb"),
  47942. name: "Front",
  47943. image: {
  47944. source: "./media/characters/wubs/front.svg",
  47945. extra: 1345/1325,
  47946. bottom: 70/1415
  47947. }
  47948. },
  47949. back: {
  47950. height: math.unit(6 + 2/12, "feet"),
  47951. weight: math.unit(210, "lb"),
  47952. name: "Back",
  47953. image: {
  47954. source: "./media/characters/wubs/back.svg",
  47955. extra: 1296/1275,
  47956. bottom: 58/1354
  47957. }
  47958. },
  47959. },
  47960. [
  47961. {
  47962. name: "Normal",
  47963. height: math.unit(6 + 2/12, "feet"),
  47964. default: true
  47965. },
  47966. {
  47967. name: "Macro",
  47968. height: math.unit(1000, "feet")
  47969. },
  47970. {
  47971. name: "Megamacro",
  47972. height: math.unit(1, "mile")
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(4, "feet"),
  47981. weight: math.unit(120, "lb"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/blue/front.svg",
  47985. extra: 1636/1525,
  47986. bottom: 43/1679
  47987. }
  47988. },
  47989. back: {
  47990. height: math.unit(4, "feet"),
  47991. weight: math.unit(120, "lb"),
  47992. name: "Back",
  47993. image: {
  47994. source: "./media/characters/blue/back.svg",
  47995. extra: 1660/1560,
  47996. bottom: 57/1717
  47997. }
  47998. },
  47999. paws: {
  48000. height: math.unit(0.826, "feet"),
  48001. name: "Paws",
  48002. image: {
  48003. source: "./media/characters/blue/paws.svg"
  48004. }
  48005. },
  48006. },
  48007. [
  48008. {
  48009. name: "Micro",
  48010. height: math.unit(3, "inches")
  48011. },
  48012. {
  48013. name: "Normal",
  48014. height: math.unit(4, "feet"),
  48015. default: true
  48016. },
  48017. {
  48018. name: "Femenine Form",
  48019. height: math.unit(14, "feet")
  48020. },
  48021. {
  48022. name: "Werebat Form",
  48023. height: math.unit(18, "feet")
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48029. {
  48030. female: {
  48031. height: math.unit(7 + 4/12, "feet"),
  48032. weight: math.unit(243, "lb"),
  48033. name: "Female",
  48034. image: {
  48035. source: "./media/characters/kaya/female.svg",
  48036. extra: 975/898,
  48037. bottom: 34/1009
  48038. }
  48039. },
  48040. herm: {
  48041. height: math.unit(7 + 4/12, "feet"),
  48042. weight: math.unit(243, "lb"),
  48043. name: "Herm",
  48044. image: {
  48045. source: "./media/characters/kaya/herm.svg",
  48046. extra: 975/898,
  48047. bottom: 34/1009
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(7 + 4/12, "feet"),
  48055. default: true
  48056. },
  48057. ]
  48058. ))
  48059. characterMakers.push(() => makeCharacter(
  48060. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48061. {
  48062. female: {
  48063. height: math.unit(9 + 4/12, "feet"),
  48064. weight: math.unit(398, "lb"),
  48065. name: "Female",
  48066. image: {
  48067. source: "./media/characters/kassandra/female.svg",
  48068. extra: 908/839,
  48069. bottom: 61/969
  48070. }
  48071. },
  48072. intersex: {
  48073. height: math.unit(9 + 4/12, "feet"),
  48074. weight: math.unit(398, "lb"),
  48075. name: "Intersex",
  48076. image: {
  48077. source: "./media/characters/kassandra/intersex.svg",
  48078. extra: 908/839,
  48079. bottom: 61/969
  48080. }
  48081. },
  48082. },
  48083. [
  48084. {
  48085. name: "Normal",
  48086. height: math.unit(9 + 4/12, "feet"),
  48087. default: true
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(3, "meters"),
  48096. name: "Front",
  48097. image: {
  48098. source: "./media/characters/amy/front.svg",
  48099. extra: 1380/1343,
  48100. bottom: 70/1450
  48101. }
  48102. },
  48103. back: {
  48104. height: math.unit(3, "meters"),
  48105. name: "Back",
  48106. image: {
  48107. source: "./media/characters/amy/back.svg",
  48108. extra: 1380/1347,
  48109. bottom: 66/1446
  48110. }
  48111. },
  48112. },
  48113. [
  48114. {
  48115. name: "Normal",
  48116. height: math.unit(3, "meters"),
  48117. default: true
  48118. },
  48119. ]
  48120. ))
  48121. characterMakers.push(() => makeCharacter(
  48122. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48123. {
  48124. side: {
  48125. height: math.unit(47, "cm"),
  48126. weight: math.unit(10.8, "kg"),
  48127. name: "Side",
  48128. image: {
  48129. source: "./media/characters/alphaschakal/side.svg",
  48130. extra: 1058/568,
  48131. bottom: 62/1120
  48132. }
  48133. },
  48134. back: {
  48135. height: math.unit(78, "cm"),
  48136. weight: math.unit(10.8, "kg"),
  48137. name: "Back",
  48138. image: {
  48139. source: "./media/characters/alphaschakal/back.svg",
  48140. extra: 1102/942,
  48141. bottom: 185/1287
  48142. }
  48143. },
  48144. head: {
  48145. height: math.unit(28, "cm"),
  48146. name: "Head",
  48147. image: {
  48148. source: "./media/characters/alphaschakal/head.svg",
  48149. extra: 696/508,
  48150. bottom: 0/696
  48151. }
  48152. },
  48153. paw: {
  48154. height: math.unit(16, "cm"),
  48155. name: "Paw",
  48156. image: {
  48157. source: "./media/characters/alphaschakal/paw.svg"
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(47, "cm"),
  48165. default: true
  48166. },
  48167. {
  48168. name: "Macro",
  48169. height: math.unit(340, "cm")
  48170. },
  48171. ]
  48172. ))
  48173. characterMakers.push(() => makeCharacter(
  48174. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48175. {
  48176. front: {
  48177. height: math.unit(36, "earths"),
  48178. name: "Front",
  48179. image: {
  48180. source: "./media/characters/ecobyss/front.svg",
  48181. extra: 1282/1215,
  48182. bottom: 11/1293
  48183. }
  48184. },
  48185. back: {
  48186. height: math.unit(36, "earths"),
  48187. name: "Back",
  48188. image: {
  48189. source: "./media/characters/ecobyss/back.svg",
  48190. extra: 1291/1222,
  48191. bottom: 8/1299
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(36, "earths"),
  48199. default: true
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48205. {
  48206. front: {
  48207. height: math.unit(12, "feet"),
  48208. name: "Front",
  48209. image: {
  48210. source: "./media/characters/vasuk/front.svg",
  48211. extra: 1326/1207,
  48212. bottom: 64/1390
  48213. }
  48214. },
  48215. },
  48216. [
  48217. {
  48218. name: "Normal",
  48219. height: math.unit(12, "feet"),
  48220. default: true
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48226. {
  48227. side: {
  48228. height: math.unit(100, "feet"),
  48229. name: "Side",
  48230. image: {
  48231. source: "./media/characters/linneaus/side.svg",
  48232. extra: 987/807,
  48233. bottom: 47/1034
  48234. }
  48235. },
  48236. },
  48237. [
  48238. {
  48239. name: "Macro",
  48240. height: math.unit(100, "feet"),
  48241. default: true
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48247. {
  48248. front: {
  48249. height: math.unit(8, "feet"),
  48250. weight: math.unit(1200, "lb"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/nyterious-daligdig/front.svg",
  48254. extra: 1284/1094,
  48255. bottom: 84/1368
  48256. }
  48257. },
  48258. back: {
  48259. height: math.unit(8, "feet"),
  48260. weight: math.unit(1200, "lb"),
  48261. name: "Back",
  48262. image: {
  48263. source: "./media/characters/nyterious-daligdig/back.svg",
  48264. extra: 1301/1121,
  48265. bottom: 129/1430
  48266. }
  48267. },
  48268. mouth: {
  48269. height: math.unit(1.464, "feet"),
  48270. name: "Mouth",
  48271. image: {
  48272. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Small",
  48279. height: math.unit(8, "feet"),
  48280. default: true
  48281. },
  48282. {
  48283. name: "Normal",
  48284. height: math.unit(15, "feet")
  48285. },
  48286. {
  48287. name: "Macro",
  48288. height: math.unit(90, "feet")
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48294. {
  48295. front: {
  48296. height: math.unit(7 + 4/12, "feet"),
  48297. weight: math.unit(252, "lb"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/bandel/front.svg",
  48301. extra: 1946/1775,
  48302. bottom: 26/1972
  48303. }
  48304. },
  48305. back: {
  48306. height: math.unit(7 + 4/12, "feet"),
  48307. weight: math.unit(252, "lb"),
  48308. name: "Back",
  48309. image: {
  48310. source: "./media/characters/bandel/back.svg",
  48311. extra: 1940/1770,
  48312. bottom: 25/1965
  48313. }
  48314. },
  48315. maw: {
  48316. height: math.unit(2.15, "feet"),
  48317. name: "Maw",
  48318. image: {
  48319. source: "./media/characters/bandel/maw.svg"
  48320. }
  48321. },
  48322. stomach: {
  48323. height: math.unit(1.95, "feet"),
  48324. name: "Stomach",
  48325. image: {
  48326. source: "./media/characters/bandel/stomach.svg"
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Normal",
  48333. height: math.unit(7 + 4/12, "feet"),
  48334. default: true
  48335. },
  48336. ]
  48337. ))
  48338. characterMakers.push(() => makeCharacter(
  48339. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48340. {
  48341. front: {
  48342. height: math.unit(10 + 5/12, "feet"),
  48343. weight: math.unit(773.5, "kg"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/zed/front.svg",
  48347. extra: 987/941,
  48348. bottom: 52/1039
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Short",
  48355. height: math.unit(5 + 4/12, "feet")
  48356. },
  48357. {
  48358. name: "Average",
  48359. height: math.unit(10 + 5/12, "feet"),
  48360. default: true
  48361. },
  48362. {
  48363. name: "Mini-Macro",
  48364. height: math.unit(24 + 9/12, "feet")
  48365. },
  48366. {
  48367. name: "Macro",
  48368. height: math.unit(249, "feet")
  48369. },
  48370. {
  48371. name: "Mega-Macro",
  48372. height: math.unit(12490, "feet")
  48373. },
  48374. {
  48375. name: "Giga-Macro",
  48376. height: math.unit(24.9, "miles")
  48377. },
  48378. {
  48379. name: "Tera-Macro",
  48380. height: math.unit(24900, "miles")
  48381. },
  48382. {
  48383. name: "Cosmic Scale",
  48384. height: math.unit(38.9, "lightyears")
  48385. },
  48386. {
  48387. name: "Universal Scale",
  48388. height: math.unit(138e12, "lightyears")
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48394. {
  48395. front: {
  48396. height: math.unit(1561, "inches"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/ivan/front.svg",
  48400. extra: 1126/1071,
  48401. bottom: 26/1152
  48402. }
  48403. },
  48404. back: {
  48405. height: math.unit(1561, "inches"),
  48406. name: "Back",
  48407. image: {
  48408. source: "./media/characters/ivan/back.svg",
  48409. extra: 1134/1079,
  48410. bottom: 30/1164
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(1561, "inches"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48424. {
  48425. front: {
  48426. height: math.unit(5 + 7/12, "feet"),
  48427. weight: math.unit(150, "lb"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/robin-arctic-hare/front.svg",
  48431. extra: 1148/974,
  48432. bottom: 20/1168
  48433. }
  48434. },
  48435. },
  48436. [
  48437. {
  48438. name: "Normal",
  48439. height: math.unit(5 + 7/12, "feet"),
  48440. default: true
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48446. {
  48447. side: {
  48448. height: math.unit(5, "feet"),
  48449. name: "Side",
  48450. image: {
  48451. source: "./media/characters/birch/side.svg",
  48452. extra: 985/796,
  48453. bottom: 111/1096
  48454. }
  48455. },
  48456. },
  48457. [
  48458. {
  48459. name: "Normal",
  48460. height: math.unit(5, "feet"),
  48461. default: true
  48462. },
  48463. ]
  48464. ))
  48465. characterMakers.push(() => makeCharacter(
  48466. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48467. {
  48468. front: {
  48469. height: math.unit(4, "feet"),
  48470. name: "Front",
  48471. image: {
  48472. source: "./media/characters/rasp/front.svg",
  48473. extra: 561/478,
  48474. bottom: 74/635
  48475. }
  48476. },
  48477. },
  48478. [
  48479. {
  48480. name: "Normal",
  48481. height: math.unit(4, "feet"),
  48482. default: true
  48483. },
  48484. ]
  48485. ))
  48486. characterMakers.push(() => makeCharacter(
  48487. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48488. {
  48489. front: {
  48490. height: math.unit(4 + 6/12, "feet"),
  48491. name: "Front",
  48492. image: {
  48493. source: "./media/characters/agatha/front.svg",
  48494. extra: 947/933,
  48495. bottom: 42/989
  48496. }
  48497. },
  48498. back: {
  48499. height: math.unit(4 + 6/12, "feet"),
  48500. name: "Back",
  48501. image: {
  48502. source: "./media/characters/agatha/back.svg",
  48503. extra: 935/922,
  48504. bottom: 48/983
  48505. }
  48506. },
  48507. },
  48508. [
  48509. {
  48510. name: "Normal",
  48511. height: math.unit(4 + 6 /12, "feet"),
  48512. default: true
  48513. },
  48514. {
  48515. name: "Max Size",
  48516. height: math.unit(500, "feet")
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48522. {
  48523. side: {
  48524. height: math.unit(30, "feet"),
  48525. name: "Side",
  48526. image: {
  48527. source: "./media/characters/roggy/side.svg",
  48528. extra: 909/643,
  48529. bottom: 63/972
  48530. }
  48531. },
  48532. lounging: {
  48533. height: math.unit(20, "feet"),
  48534. name: "Lounging",
  48535. image: {
  48536. source: "./media/characters/roggy/lounging.svg",
  48537. extra: 643/479,
  48538. bottom: 145/788
  48539. }
  48540. },
  48541. handpaw: {
  48542. height: math.unit(13.1, "feet"),
  48543. name: "Handpaw",
  48544. image: {
  48545. source: "./media/characters/roggy/handpaw.svg"
  48546. }
  48547. },
  48548. footpaw: {
  48549. height: math.unit(15.8, "feet"),
  48550. name: "Footpaw",
  48551. image: {
  48552. source: "./media/characters/roggy/footpaw.svg"
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Menacing",
  48559. height: math.unit(30, "feet"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48566. {
  48567. front: {
  48568. height: math.unit(5 + 7/12, "feet"),
  48569. weight: math.unit(135, "lb"),
  48570. name: "Front",
  48571. image: {
  48572. source: "./media/characters/naomi/front.svg",
  48573. extra: 1209/1154,
  48574. bottom: 129/1338
  48575. }
  48576. },
  48577. back: {
  48578. height: math.unit(5 + 7/12, "feet"),
  48579. weight: math.unit(135, "lb"),
  48580. name: "Back",
  48581. image: {
  48582. source: "./media/characters/naomi/back.svg",
  48583. extra: 1252/1190,
  48584. bottom: 23/1275
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Normal",
  48591. height: math.unit(5 + 7 /12, "feet"),
  48592. default: true
  48593. },
  48594. ]
  48595. ))
  48596. characterMakers.push(() => makeCharacter(
  48597. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48598. {
  48599. side: {
  48600. height: math.unit(35, "meters"),
  48601. name: "Side",
  48602. image: {
  48603. source: "./media/characters/kimpi/side.svg",
  48604. extra: 419/382,
  48605. bottom: 63/482
  48606. }
  48607. },
  48608. hand: {
  48609. height: math.unit(8.96, "meters"),
  48610. name: "Hand",
  48611. image: {
  48612. source: "./media/characters/kimpi/hand.svg"
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(35, "meters"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(4 + 4/12, "feet"),
  48629. name: "Front",
  48630. image: {
  48631. source: "./media/characters/pepper-purrloin/front.svg",
  48632. extra: 1141/1024,
  48633. bottom: 21/1162
  48634. }
  48635. },
  48636. },
  48637. [
  48638. {
  48639. name: "Normal",
  48640. height: math.unit(4 + 4/12, "feet"),
  48641. default: true
  48642. },
  48643. ]
  48644. ))
  48645. characterMakers.push(() => makeCharacter(
  48646. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48647. {
  48648. front: {
  48649. height: math.unit(6 + 2/12, "feet"),
  48650. name: "Front",
  48651. image: {
  48652. source: "./media/characters/raphael/front.svg",
  48653. extra: 1101/962,
  48654. bottom: 59/1160
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(6 + 2/12, "feet"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48668. {
  48669. front: {
  48670. height: math.unit(6, "feet"),
  48671. weight: math.unit(150, "lb"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/victor-williams/front.svg",
  48675. extra: 1894/1825,
  48676. bottom: 67/1961
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(6, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48690. {
  48691. front: {
  48692. height: math.unit(5 + 8/12, "feet"),
  48693. weight: math.unit(150, "lb"),
  48694. name: "Front",
  48695. image: {
  48696. source: "./media/characters/rachel/front.svg",
  48697. extra: 1902/1787,
  48698. bottom: 46/1948
  48699. }
  48700. },
  48701. },
  48702. [
  48703. {
  48704. name: "Base Height",
  48705. height: math.unit(5 + 8/12, "feet"),
  48706. default: true
  48707. },
  48708. {
  48709. name: "Macro",
  48710. height: math.unit(200, "feet")
  48711. },
  48712. {
  48713. name: "Mega Macro",
  48714. height: math.unit(1, "mile")
  48715. },
  48716. {
  48717. name: "Giga Macro",
  48718. height: math.unit(1500, "miles")
  48719. },
  48720. {
  48721. name: "Tera Macro",
  48722. height: math.unit(8000, "miles")
  48723. },
  48724. {
  48725. name: "Tera Macro+",
  48726. height: math.unit(2e5, "miles")
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48732. {
  48733. front: {
  48734. height: math.unit(6.5, "feet"),
  48735. name: "Front",
  48736. image: {
  48737. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48738. extra: 860/819,
  48739. bottom: 307/1167
  48740. }
  48741. },
  48742. back: {
  48743. height: math.unit(6.5, "feet"),
  48744. name: "Back",
  48745. image: {
  48746. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48747. extra: 880/837,
  48748. bottom: 395/1275
  48749. }
  48750. },
  48751. sleeping: {
  48752. height: math.unit(2.79, "feet"),
  48753. name: "Sleeping",
  48754. image: {
  48755. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48756. extra: 465/383,
  48757. bottom: 263/728
  48758. }
  48759. },
  48760. maw: {
  48761. height: math.unit(2.52, "feet"),
  48762. name: "Maw",
  48763. image: {
  48764. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48765. }
  48766. },
  48767. },
  48768. [
  48769. {
  48770. name: "Normal",
  48771. height: math.unit(6.5, "feet"),
  48772. default: true
  48773. },
  48774. ]
  48775. ))
  48776. characterMakers.push(() => makeCharacter(
  48777. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48778. {
  48779. front: {
  48780. height: math.unit(5, "feet"),
  48781. name: "Front",
  48782. image: {
  48783. source: "./media/characters/nova-nerium/front.svg",
  48784. extra: 1548/1392,
  48785. bottom: 374/1922
  48786. }
  48787. },
  48788. back: {
  48789. height: math.unit(5, "feet"),
  48790. name: "Back",
  48791. image: {
  48792. source: "./media/characters/nova-nerium/back.svg",
  48793. extra: 1658/1468,
  48794. bottom: 257/1915
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(5, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(5 + 4/12, "feet"),
  48811. name: "Front",
  48812. image: {
  48813. source: "./media/characters/ashe-pyriph/front.svg",
  48814. extra: 1935/1747,
  48815. bottom: 60/1995
  48816. }
  48817. },
  48818. },
  48819. [
  48820. {
  48821. name: "Normal",
  48822. height: math.unit(5 + 4/12, "feet"),
  48823. default: true
  48824. },
  48825. ]
  48826. ))
  48827. characterMakers.push(() => makeCharacter(
  48828. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48829. {
  48830. front: {
  48831. height: math.unit(8.7, "feet"),
  48832. name: "Front",
  48833. image: {
  48834. source: "./media/characters/flicker-wisp/front.svg",
  48835. extra: 1835/1613,
  48836. bottom: 449/2284
  48837. }
  48838. },
  48839. side: {
  48840. height: math.unit(8.7, "feet"),
  48841. name: "Side",
  48842. image: {
  48843. source: "./media/characters/flicker-wisp/side.svg",
  48844. extra: 1841/1642,
  48845. bottom: 336/2177
  48846. },
  48847. default: true
  48848. },
  48849. maw: {
  48850. height: math.unit(3.35, "feet"),
  48851. name: "Maw",
  48852. image: {
  48853. source: "./media/characters/flicker-wisp/maw.svg",
  48854. extra: 2338/1506,
  48855. bottom: 0/2338
  48856. }
  48857. },
  48858. ovipositor: {
  48859. height: math.unit(4.95, "feet"),
  48860. name: "Ovipositor",
  48861. image: {
  48862. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48863. }
  48864. },
  48865. egg: {
  48866. height: math.unit(0.385, "feet"),
  48867. weight: math.unit(2, "lb"),
  48868. name: "Egg",
  48869. image: {
  48870. source: "./media/characters/flicker-wisp/egg.svg"
  48871. }
  48872. },
  48873. },
  48874. [
  48875. {
  48876. name: "Normal",
  48877. height: math.unit(8.7, "feet"),
  48878. default: true
  48879. },
  48880. ]
  48881. ))
  48882. characterMakers.push(() => makeCharacter(
  48883. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48884. {
  48885. side: {
  48886. height: math.unit(11, "feet"),
  48887. name: "Side",
  48888. image: {
  48889. source: "./media/characters/faefnul/side.svg",
  48890. extra: 1100/1007,
  48891. bottom: 0/1100
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Normal",
  48898. height: math.unit(11, "feet"),
  48899. default: true
  48900. },
  48901. ]
  48902. ))
  48903. characterMakers.push(() => makeCharacter(
  48904. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48905. {
  48906. front: {
  48907. height: math.unit(6 + 2/12, "feet"),
  48908. name: "Front",
  48909. image: {
  48910. source: "./media/characters/shady/front.svg",
  48911. extra: 502/461,
  48912. bottom: 9/511
  48913. }
  48914. },
  48915. kneeling: {
  48916. height: math.unit(4.6, "feet"),
  48917. name: "Kneeling",
  48918. image: {
  48919. source: "./media/characters/shady/kneeling.svg",
  48920. extra: 1328/1219,
  48921. bottom: 117/1445
  48922. }
  48923. },
  48924. maw: {
  48925. height: math.unit(2, "feet"),
  48926. name: "Maw",
  48927. image: {
  48928. source: "./media/characters/shady/maw.svg"
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Nano",
  48935. height: math.unit(1, "mm")
  48936. },
  48937. {
  48938. name: "Micro",
  48939. height: math.unit(12, "mm")
  48940. },
  48941. {
  48942. name: "Tiny",
  48943. height: math.unit(3, "inches")
  48944. },
  48945. {
  48946. name: "Normal",
  48947. height: math.unit(6 + 2/12, "feet"),
  48948. default: true
  48949. },
  48950. {
  48951. name: "Big",
  48952. height: math.unit(15, "feet")
  48953. },
  48954. {
  48955. name: "Macro",
  48956. height: math.unit(150, "feet")
  48957. },
  48958. {
  48959. name: "Titanic",
  48960. height: math.unit(500, "feet")
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48966. {
  48967. front: {
  48968. height: math.unit(12, "feet"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/fenrir/front.svg",
  48972. extra: 968/875,
  48973. bottom: 22/990
  48974. }
  48975. },
  48976. },
  48977. [
  48978. {
  48979. name: "Big",
  48980. height: math.unit(12, "feet"),
  48981. default: true
  48982. },
  48983. ]
  48984. ))
  48985. characterMakers.push(() => makeCharacter(
  48986. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48987. {
  48988. front: {
  48989. height: math.unit(5 + 4/12, "feet"),
  48990. name: "Front",
  48991. image: {
  48992. source: "./media/characters/makar/front.svg",
  48993. extra: 1181/1112,
  48994. bottom: 78/1259
  48995. }
  48996. },
  48997. },
  48998. [
  48999. {
  49000. name: "Normal",
  49001. height: math.unit(5 + 4/12, "feet"),
  49002. default: true
  49003. },
  49004. ]
  49005. ))
  49006. characterMakers.push(() => makeCharacter(
  49007. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49008. {
  49009. front: {
  49010. height: math.unit(5 + 7/12, "feet"),
  49011. name: "Front",
  49012. image: {
  49013. source: "./media/characters/callow/front.svg",
  49014. extra: 1482/1304,
  49015. bottom: 23/1505
  49016. }
  49017. },
  49018. back: {
  49019. height: math.unit(5 + 7/12, "feet"),
  49020. name: "Back",
  49021. image: {
  49022. source: "./media/characters/callow/back.svg",
  49023. extra: 1484/1296,
  49024. bottom: 25/1509
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Micro",
  49031. height: math.unit(3, "inches"),
  49032. default: true
  49033. },
  49034. {
  49035. name: "Normal",
  49036. height: math.unit(5 + 7/12, "feet")
  49037. },
  49038. ]
  49039. ))
  49040. characterMakers.push(() => makeCharacter(
  49041. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49042. {
  49043. front: {
  49044. height: math.unit(6 + 2/12, "feet"),
  49045. name: "Front",
  49046. image: {
  49047. source: "./media/characters/natel/front.svg",
  49048. extra: 1833/1692,
  49049. bottom: 166/1999
  49050. }
  49051. },
  49052. },
  49053. [
  49054. {
  49055. name: "Normal",
  49056. height: math.unit(6 + 2/12, "feet"),
  49057. default: true
  49058. },
  49059. ]
  49060. ))
  49061. characterMakers.push(() => makeCharacter(
  49062. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49063. {
  49064. front: {
  49065. height: math.unit(1.75, "meters"),
  49066. name: "Front",
  49067. image: {
  49068. source: "./media/characters/misu/front.svg",
  49069. extra: 1690/1558,
  49070. bottom: 234/1924
  49071. }
  49072. },
  49073. back: {
  49074. height: math.unit(1.75, "meters"),
  49075. name: "Back",
  49076. image: {
  49077. source: "./media/characters/misu/back.svg",
  49078. extra: 1762/1618,
  49079. bottom: 146/1908
  49080. }
  49081. },
  49082. frontNude: {
  49083. height: math.unit(1.75, "meters"),
  49084. name: "Front (Nude)",
  49085. image: {
  49086. source: "./media/characters/misu/front-nude.svg",
  49087. extra: 1690/1558,
  49088. bottom: 234/1924
  49089. }
  49090. },
  49091. backNude: {
  49092. height: math.unit(1.75, "meters"),
  49093. name: "Back (Nude)",
  49094. image: {
  49095. source: "./media/characters/misu/back-nude.svg",
  49096. extra: 1762/1618,
  49097. bottom: 146/1908
  49098. }
  49099. },
  49100. frontErect: {
  49101. height: math.unit(1.75, "meters"),
  49102. name: "Front (Erect)",
  49103. image: {
  49104. source: "./media/characters/misu/front-erect.svg",
  49105. extra: 1690/1558,
  49106. bottom: 234/1924
  49107. }
  49108. },
  49109. maw: {
  49110. height: math.unit(0.47, "meters"),
  49111. name: "Maw",
  49112. image: {
  49113. source: "./media/characters/misu/maw.svg"
  49114. }
  49115. },
  49116. head: {
  49117. height: math.unit(0.35, "meters"),
  49118. name: "Head",
  49119. image: {
  49120. source: "./media/characters/misu/head.svg"
  49121. }
  49122. },
  49123. rear: {
  49124. height: math.unit(0.47, "meters"),
  49125. name: "Rear",
  49126. image: {
  49127. source: "./media/characters/misu/rear.svg"
  49128. }
  49129. },
  49130. },
  49131. [
  49132. {
  49133. name: "Normal",
  49134. height: math.unit(1.75, "meters")
  49135. },
  49136. {
  49137. name: "Not good for the people",
  49138. height: math.unit(42, "meters")
  49139. },
  49140. {
  49141. name: "Not good for the neighborhood",
  49142. height: math.unit(135, "meters")
  49143. },
  49144. {
  49145. name: "Bit bigger problem",
  49146. height: math.unit(380, "meters"),
  49147. default: true
  49148. },
  49149. {
  49150. name: "Not good for the city",
  49151. height: math.unit(1.5, "km")
  49152. },
  49153. {
  49154. name: "Not good for the county",
  49155. height: math.unit(5.5, "km")
  49156. },
  49157. {
  49158. name: "Not good for the state",
  49159. height: math.unit(25, "km")
  49160. },
  49161. {
  49162. name: "Not good for the country",
  49163. height: math.unit(125, "km")
  49164. },
  49165. {
  49166. name: "Not good for the continent",
  49167. height: math.unit(2100, "km")
  49168. },
  49169. {
  49170. name: "Not good for the planet",
  49171. height: math.unit(35000, "km")
  49172. },
  49173. {
  49174. name: "Just no",
  49175. height: math.unit(8.5e18, "km")
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49181. {
  49182. front: {
  49183. height: math.unit(6.5, "feet"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/poppy/front.svg",
  49187. extra: 1878/1812,
  49188. bottom: 43/1921
  49189. }
  49190. },
  49191. feet: {
  49192. height: math.unit(1.06, "feet"),
  49193. name: "Feet",
  49194. image: {
  49195. source: "./media/characters/poppy/feet.svg",
  49196. extra: 1083/1083,
  49197. bottom: 87/1170
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Human",
  49204. height: math.unit(6.5, "feet")
  49205. },
  49206. {
  49207. name: "Default",
  49208. height: math.unit(300, "feet"),
  49209. default: true
  49210. },
  49211. {
  49212. name: "Huge",
  49213. height: math.unit(850, "feet")
  49214. },
  49215. {
  49216. name: "Mega",
  49217. height: math.unit(8000, "feet")
  49218. },
  49219. {
  49220. name: "Giga",
  49221. height: math.unit(300, "miles")
  49222. },
  49223. ]
  49224. ))
  49225. characterMakers.push(() => makeCharacter(
  49226. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49227. {
  49228. bipedal: {
  49229. height: math.unit(7, "feet"),
  49230. name: "Bipedal",
  49231. image: {
  49232. source: "./media/characters/zener/bipedal.svg",
  49233. extra: 874/805,
  49234. bottom: 109/983
  49235. }
  49236. },
  49237. quadrupedal: {
  49238. height: math.unit(4.64, "feet"),
  49239. name: "Quadrupedal",
  49240. image: {
  49241. source: "./media/characters/zener/quadrupedal.svg",
  49242. extra: 638/507,
  49243. bottom: 190/828
  49244. }
  49245. },
  49246. cock: {
  49247. height: math.unit(18, "inches"),
  49248. name: "Cock",
  49249. image: {
  49250. source: "./media/characters/zener/cock.svg"
  49251. }
  49252. },
  49253. },
  49254. [
  49255. {
  49256. name: "Normal",
  49257. height: math.unit(7, "feet"),
  49258. default: true
  49259. },
  49260. ]
  49261. ))
  49262. characterMakers.push(() => makeCharacter(
  49263. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49264. {
  49265. nude: {
  49266. height: math.unit(5 + 6/12, "feet"),
  49267. name: "Nude",
  49268. image: {
  49269. source: "./media/characters/charlie-dog/nude.svg",
  49270. extra: 768/734,
  49271. bottom: 26/794
  49272. }
  49273. },
  49274. dressed: {
  49275. height: math.unit(5 + 6/12, "feet"),
  49276. name: "Dressed",
  49277. image: {
  49278. source: "./media/characters/charlie-dog/dressed.svg",
  49279. extra: 768/734,
  49280. bottom: 26/794
  49281. }
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(5 + 6/12, "feet"),
  49288. default: true
  49289. },
  49290. ]
  49291. ))
  49292. characterMakers.push(() => makeCharacter(
  49293. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49294. {
  49295. front: {
  49296. height: math.unit(6 + 4/12, "feet"),
  49297. name: "Front",
  49298. image: {
  49299. source: "./media/characters/ir'istrasz/front.svg",
  49300. extra: 1014/977,
  49301. bottom: 65/1079
  49302. }
  49303. },
  49304. back: {
  49305. height: math.unit(6 + 4/12, "feet"),
  49306. name: "Back",
  49307. image: {
  49308. source: "./media/characters/ir'istrasz/back.svg",
  49309. extra: 1024/992,
  49310. bottom: 34/1058
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(6 + 4/12, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49324. {
  49325. front: {
  49326. height: math.unit(5 + 8/12, "feet"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/dee-ditto/front.svg",
  49330. extra: 1874/1785,
  49331. bottom: 68/1942
  49332. }
  49333. },
  49334. back: {
  49335. height: math.unit(5 + 8/12, "feet"),
  49336. name: "Back",
  49337. image: {
  49338. source: "./media/characters/dee-ditto/back.svg",
  49339. extra: 1870/1783,
  49340. bottom: 77/1947
  49341. }
  49342. },
  49343. },
  49344. [
  49345. {
  49346. name: "Normal",
  49347. height: math.unit(5 + 8/12, "feet"),
  49348. default: true
  49349. },
  49350. ]
  49351. ))
  49352. characterMakers.push(() => makeCharacter(
  49353. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49354. {
  49355. front: {
  49356. height: math.unit(7 + 6/12, "feet"),
  49357. name: "Front",
  49358. image: {
  49359. source: "./media/characters/fey/front.svg",
  49360. extra: 995/979,
  49361. bottom: 30/1025
  49362. }
  49363. },
  49364. back: {
  49365. height: math.unit(7 + 6/12, "feet"),
  49366. name: "Back",
  49367. image: {
  49368. source: "./media/characters/fey/back.svg",
  49369. extra: 1079/1008,
  49370. bottom: 5/1084
  49371. }
  49372. },
  49373. dressed: {
  49374. height: math.unit(7 + 6/12, "feet"),
  49375. name: "Dressed",
  49376. image: {
  49377. source: "./media/characters/fey/dressed.svg",
  49378. extra: 995/979,
  49379. bottom: 30/1025
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(7 + 6/12, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49393. {
  49394. standing: {
  49395. height: math.unit(17, "feet"),
  49396. name: "Standing",
  49397. image: {
  49398. source: "./media/characters/aster/standing.svg",
  49399. extra: 1798/1598,
  49400. bottom: 117/1915
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Normal",
  49407. height: math.unit(17, "feet"),
  49408. default: true
  49409. },
  49410. {
  49411. name: "Homewrecker",
  49412. height: math.unit(95, "feet")
  49413. },
  49414. {
  49415. name: "Planet Devourer",
  49416. height: math.unit(1008000, "miles")
  49417. },
  49418. ]
  49419. ))
  49420. characterMakers.push(() => makeCharacter(
  49421. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49422. {
  49423. front: {
  49424. height: math.unit(6 + 5/12, "feet"),
  49425. weight: math.unit(265, "lb"),
  49426. name: "Front",
  49427. image: {
  49428. source: "./media/characters/devon-childs/front.svg",
  49429. extra: 1795/1721,
  49430. bottom: 41/1836
  49431. }
  49432. },
  49433. side: {
  49434. height: math.unit(6 + 5/12, "feet"),
  49435. weight: math.unit(265, "lb"),
  49436. name: "Side",
  49437. image: {
  49438. source: "./media/characters/devon-childs/side.svg",
  49439. extra: 1812/1738,
  49440. bottom: 30/1842
  49441. }
  49442. },
  49443. back: {
  49444. height: math.unit(6 + 5/12, "feet"),
  49445. weight: math.unit(265, "lb"),
  49446. name: "Back",
  49447. image: {
  49448. source: "./media/characters/devon-childs/back.svg",
  49449. extra: 1808/1735,
  49450. bottom: 23/1831
  49451. }
  49452. },
  49453. hand: {
  49454. height: math.unit(1.464, "feet"),
  49455. name: "Hand",
  49456. image: {
  49457. source: "./media/characters/devon-childs/hand.svg"
  49458. }
  49459. },
  49460. foot: {
  49461. height: math.unit(1.6, "feet"),
  49462. name: "Foot",
  49463. image: {
  49464. source: "./media/characters/devon-childs/foot.svg"
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Micro",
  49471. height: math.unit(7, "cm")
  49472. },
  49473. {
  49474. name: "Normal",
  49475. height: math.unit(6 + 5/12, "feet"),
  49476. default: true
  49477. },
  49478. {
  49479. name: "Macro",
  49480. height: math.unit(154, "feet")
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49486. {
  49487. front: {
  49488. height: math.unit(6, "feet"),
  49489. weight: math.unit(180, "lb"),
  49490. name: "Front",
  49491. image: {
  49492. source: "./media/characters/lydemox-vir/front.svg",
  49493. extra: 1632/1435,
  49494. bottom: 58/1690
  49495. }
  49496. },
  49497. frontSFW: {
  49498. height: math.unit(6, "feet"),
  49499. weight: math.unit(180, "lb"),
  49500. name: "Front (SFW)",
  49501. image: {
  49502. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49503. extra: 1632/1435,
  49504. bottom: 58/1690
  49505. }
  49506. },
  49507. back: {
  49508. height: math.unit(6, "feet"),
  49509. weight: math.unit(180, "lb"),
  49510. name: "Back",
  49511. image: {
  49512. source: "./media/characters/lydemox-vir/back.svg",
  49513. extra: 1593/1408,
  49514. bottom: 31/1624
  49515. }
  49516. },
  49517. paw: {
  49518. height: math.unit(1.85, "feet"),
  49519. name: "Paw",
  49520. image: {
  49521. source: "./media/characters/lydemox-vir/paw.svg"
  49522. }
  49523. },
  49524. dick: {
  49525. height: math.unit(1.8, "feet"),
  49526. name: "Dick",
  49527. image: {
  49528. source: "./media/characters/lydemox-vir/dick.svg"
  49529. }
  49530. },
  49531. },
  49532. [
  49533. {
  49534. name: "Macro",
  49535. height: math.unit(100, "feet"),
  49536. default: true
  49537. },
  49538. {
  49539. name: "Teramacro",
  49540. height: math.unit(1, "earth")
  49541. },
  49542. {
  49543. name: "Planetary",
  49544. height: math.unit(20, "earths")
  49545. },
  49546. ]
  49547. ))
  49548. characterMakers.push(() => makeCharacter(
  49549. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49550. {
  49551. front: {
  49552. height: math.unit(15 + 8/12, "feet"),
  49553. weight: math.unit(1237, "kg"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/mia/front.svg",
  49557. extra: 1573/1446,
  49558. bottom: 58/1631
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Small",
  49565. height: math.unit(9 + 5/12, "feet")
  49566. },
  49567. {
  49568. name: "Normal",
  49569. height: math.unit(15 + 8/12, "feet"),
  49570. default: true
  49571. },
  49572. ]
  49573. ))
  49574. characterMakers.push(() => makeCharacter(
  49575. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49576. {
  49577. front: {
  49578. height: math.unit(10 + 6/12, "feet"),
  49579. weight: math.unit(1.3, "tons"),
  49580. name: "Front",
  49581. image: {
  49582. source: "./media/characters/mr-graves/front.svg",
  49583. extra: 1779/1695,
  49584. bottom: 198/1977
  49585. }
  49586. },
  49587. },
  49588. [
  49589. {
  49590. name: "Normal",
  49591. height: math.unit(10 + 6 /12, "feet"),
  49592. default: true
  49593. },
  49594. ]
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49598. {
  49599. dressedFront: {
  49600. height: math.unit(5 + 8/12, "feet"),
  49601. weight: math.unit(125, "lb"),
  49602. name: "Dressed (Front)",
  49603. image: {
  49604. source: "./media/characters/jess/dressed-front.svg",
  49605. extra: 1176/1152,
  49606. bottom: 42/1218
  49607. }
  49608. },
  49609. dressedSide: {
  49610. height: math.unit(5 + 8/12, "feet"),
  49611. weight: math.unit(125, "lb"),
  49612. name: "Dressed (Side)",
  49613. image: {
  49614. source: "./media/characters/jess/dressed-side.svg",
  49615. extra: 1204/1190,
  49616. bottom: 6/1210
  49617. }
  49618. },
  49619. nudeFront: {
  49620. height: math.unit(5 + 8/12, "feet"),
  49621. weight: math.unit(125, "lb"),
  49622. name: "Nude (Front)",
  49623. image: {
  49624. source: "./media/characters/jess/nude-front.svg",
  49625. extra: 1176/1152,
  49626. bottom: 42/1218
  49627. }
  49628. },
  49629. nudeSide: {
  49630. height: math.unit(5 + 8/12, "feet"),
  49631. weight: math.unit(125, "lb"),
  49632. name: "Nude (Side)",
  49633. image: {
  49634. source: "./media/characters/jess/nude-side.svg",
  49635. extra: 1204/1190,
  49636. bottom: 6/1210
  49637. }
  49638. },
  49639. organsFront: {
  49640. height: math.unit(2.83799342105, "feet"),
  49641. name: "Organs (Front)",
  49642. image: {
  49643. source: "./media/characters/jess/organs-front.svg"
  49644. }
  49645. },
  49646. organsSide: {
  49647. height: math.unit(2.64225290474, "feet"),
  49648. name: "Organs (Side)",
  49649. image: {
  49650. source: "./media/characters/jess/organs-side.svg"
  49651. }
  49652. },
  49653. digestiveTractFront: {
  49654. height: math.unit(2.8106580871, "feet"),
  49655. name: "Digestive Tract (Front)",
  49656. image: {
  49657. source: "./media/characters/jess/digestive-tract-front.svg"
  49658. }
  49659. },
  49660. digestiveTractSide: {
  49661. height: math.unit(2.54365045014, "feet"),
  49662. name: "Digestive Tract (Side)",
  49663. image: {
  49664. source: "./media/characters/jess/digestive-tract-side.svg"
  49665. }
  49666. },
  49667. respiratorySystemFront: {
  49668. height: math.unit(1.11196233456, "feet"),
  49669. name: "Respiratory System (Front)",
  49670. image: {
  49671. source: "./media/characters/jess/respiratory-system-front.svg"
  49672. }
  49673. },
  49674. respiratorySystemSide: {
  49675. height: math.unit(0.89327966297, "feet"),
  49676. name: "Respiratory System (Side)",
  49677. image: {
  49678. source: "./media/characters/jess/respiratory-system-side.svg"
  49679. }
  49680. },
  49681. urinaryTractFront: {
  49682. height: math.unit(1.16126356186, "feet"),
  49683. name: "Urinary Tract (Front)",
  49684. image: {
  49685. source: "./media/characters/jess/urinary-tract-front.svg"
  49686. }
  49687. },
  49688. urinaryTractSide: {
  49689. height: math.unit(1.20910039627, "feet"),
  49690. name: "Urinary Tract (Side)",
  49691. image: {
  49692. source: "./media/characters/jess/urinary-tract-side.svg"
  49693. }
  49694. },
  49695. reproductiveOrgansFront: {
  49696. height: math.unit(0.48422591566, "feet"),
  49697. name: "Reproductive Organs (Front)",
  49698. image: {
  49699. source: "./media/characters/jess/reproductive-organs-front.svg"
  49700. }
  49701. },
  49702. reproductiveOrgansSide: {
  49703. height: math.unit(0.61553314481, "feet"),
  49704. name: "Reproductive Organs (Side)",
  49705. image: {
  49706. source: "./media/characters/jess/reproductive-organs-side.svg"
  49707. }
  49708. },
  49709. breastsFront: {
  49710. height: math.unit(0.47690395121, "feet"),
  49711. name: "Breasts (Front)",
  49712. image: {
  49713. source: "./media/characters/jess/breasts-front.svg"
  49714. }
  49715. },
  49716. breastsSide: {
  49717. height: math.unit(0.30556998307, "feet"),
  49718. name: "Breasts (Side)",
  49719. image: {
  49720. source: "./media/characters/jess/breasts-side.svg"
  49721. }
  49722. },
  49723. heartFront: {
  49724. height: math.unit(0.53011022622, "feet"),
  49725. name: "Heart (Front)",
  49726. image: {
  49727. source: "./media/characters/jess/heart-front.svg"
  49728. }
  49729. },
  49730. heartSide: {
  49731. height: math.unit(0.51790695213, "feet"),
  49732. name: "Heart (Side)",
  49733. image: {
  49734. source: "./media/characters/jess/heart-side.svg"
  49735. }
  49736. },
  49737. earsAndNoseFront: {
  49738. height: math.unit(0.29385483995, "feet"),
  49739. name: "Ears and Nose (Front)",
  49740. image: {
  49741. source: "./media/characters/jess/ears-and-nose-front.svg"
  49742. }
  49743. },
  49744. earsAndNoseSide: {
  49745. height: math.unit(0.18109658741, "feet"),
  49746. name: "Ears and Nose (Side)",
  49747. image: {
  49748. source: "./media/characters/jess/ears-and-nose-side.svg"
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(5 + 8/12, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(6, "feet"),
  49765. weight: math.unit(6.64467e-7, "grams"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/wimpering/front.svg",
  49769. extra: 597/587,
  49770. bottom: 34/631
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Micro",
  49777. height: math.unit(0.4, "mm"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(5 + 2/12, "feet"),
  49787. weight: math.unit(110, "lb"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/keltre/front.svg",
  49791. extra: 1099/1057,
  49792. bottom: 22/1121
  49793. }
  49794. },
  49795. back: {
  49796. height: math.unit(5 + 2/12, "feet"),
  49797. weight: math.unit(110, "lb"),
  49798. name: "Back",
  49799. image: {
  49800. source: "./media/characters/keltre/back.svg",
  49801. extra: 1095/1053,
  49802. bottom: 17/1112
  49803. }
  49804. },
  49805. dressed: {
  49806. height: math.unit(5 + 2/12, "feet"),
  49807. weight: math.unit(110, "lb"),
  49808. name: "Dressed",
  49809. image: {
  49810. source: "./media/characters/keltre/dressed.svg",
  49811. extra: 1099/1057,
  49812. bottom: 22/1121
  49813. }
  49814. },
  49815. winter: {
  49816. height: math.unit(5 + 2/12, "feet"),
  49817. weight: math.unit(110, "lb"),
  49818. name: "Winter",
  49819. image: {
  49820. source: "./media/characters/keltre/winter.svg",
  49821. extra: 1099/1057,
  49822. bottom: 22/1121
  49823. }
  49824. },
  49825. head: {
  49826. height: math.unit(1.61 * 0.86, "feet"),
  49827. name: "Head",
  49828. image: {
  49829. source: "./media/characters/keltre/head.svg",
  49830. extra: 534/421,
  49831. bottom: 0/534
  49832. }
  49833. },
  49834. hand: {
  49835. height: math.unit(1.3 * 0.86, "feet"),
  49836. name: "Hand",
  49837. image: {
  49838. source: "./media/characters/keltre/hand.svg"
  49839. }
  49840. },
  49841. foot: {
  49842. height: math.unit(1.8 * 0.86, "feet"),
  49843. name: "Foot",
  49844. image: {
  49845. source: "./media/characters/keltre/foot.svg"
  49846. }
  49847. },
  49848. },
  49849. [
  49850. {
  49851. name: "Fine",
  49852. height: math.unit(1, "inch")
  49853. },
  49854. {
  49855. name: "Dimnutive",
  49856. height: math.unit(4, "inches")
  49857. },
  49858. {
  49859. name: "Tiny",
  49860. height: math.unit(1, "foot")
  49861. },
  49862. {
  49863. name: "Small",
  49864. height: math.unit(3, "feet")
  49865. },
  49866. {
  49867. name: "Normal",
  49868. height: math.unit(5 + 2/12, "feet"),
  49869. default: true
  49870. },
  49871. ]
  49872. ))
  49873. characterMakers.push(() => makeCharacter(
  49874. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49875. {
  49876. front: {
  49877. height: math.unit(6 + 2/12, "feet"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/nox/front.svg",
  49881. extra: 1917/1830,
  49882. bottom: 74/1991
  49883. }
  49884. },
  49885. back: {
  49886. height: math.unit(6 + 2/12, "feet"),
  49887. name: "Back",
  49888. image: {
  49889. source: "./media/characters/nox/back.svg",
  49890. extra: 1896/1815,
  49891. bottom: 21/1917
  49892. }
  49893. },
  49894. head: {
  49895. height: math.unit(1.1, "feet"),
  49896. name: "Head",
  49897. image: {
  49898. source: "./media/characters/nox/head.svg",
  49899. extra: 874/704,
  49900. bottom: 0/874
  49901. }
  49902. },
  49903. tattoo: {
  49904. height: math.unit(0.729, "feet"),
  49905. name: "Tattoo",
  49906. image: {
  49907. source: "./media/characters/nox/tattoo.svg"
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(6 + 2/12, "feet")
  49915. },
  49916. {
  49917. name: "Gigamacro",
  49918. height: math.unit(2, "earths"),
  49919. default: true
  49920. },
  49921. {
  49922. name: "Cosmic",
  49923. height: math.unit(867, "yottameters")
  49924. },
  49925. ]
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49929. {
  49930. front: {
  49931. height: math.unit(6, "feet"),
  49932. weight: math.unit(150, "lb"),
  49933. name: "Front",
  49934. image: {
  49935. source: "./media/characters/caspian/front.svg",
  49936. extra: 1443/1359,
  49937. bottom: 0/1443
  49938. }
  49939. },
  49940. back: {
  49941. height: math.unit(6, "feet"),
  49942. weight: math.unit(150, "lb"),
  49943. name: "Back",
  49944. image: {
  49945. source: "./media/characters/caspian/back.svg",
  49946. extra: 1379/1309,
  49947. bottom: 0/1379
  49948. }
  49949. },
  49950. head: {
  49951. height: math.unit(0.9, "feet"),
  49952. name: "Head",
  49953. image: {
  49954. source: "./media/characters/caspian/head.svg",
  49955. extra: 692/492,
  49956. bottom: 0/692
  49957. }
  49958. },
  49959. headAlt: {
  49960. height: math.unit(0.95, "feet"),
  49961. name: "Head (Alt)",
  49962. image: {
  49963. source: "./media/characters/caspian/head-alt.svg",
  49964. extra: 668/508,
  49965. bottom: 0/668
  49966. }
  49967. },
  49968. hand: {
  49969. height: math.unit(0.8, "feet"),
  49970. name: "Hand",
  49971. image: {
  49972. source: "./media/characters/caspian/hand.svg"
  49973. }
  49974. },
  49975. paw: {
  49976. height: math.unit(0.95, "feet"),
  49977. name: "Paw",
  49978. image: {
  49979. source: "./media/characters/caspian/paw.svg"
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Normal",
  49986. height: math.unit(162, "feet"),
  49987. default: true
  49988. },
  49989. ]
  49990. ))
  49991. characterMakers.push(() => makeCharacter(
  49992. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49993. {
  49994. front: {
  49995. height: math.unit(6, "feet"),
  49996. name: "Front",
  49997. image: {
  49998. source: "./media/characters/myra-aisling/front.svg",
  49999. extra: 1268/1166,
  50000. bottom: 73/1341
  50001. }
  50002. },
  50003. back: {
  50004. height: math.unit(6, "feet"),
  50005. name: "Back",
  50006. image: {
  50007. source: "./media/characters/myra-aisling/back.svg",
  50008. extra: 1249/1149,
  50009. bottom: 79/1328
  50010. }
  50011. },
  50012. dressed: {
  50013. height: math.unit(6, "feet"),
  50014. name: "Dressed",
  50015. image: {
  50016. source: "./media/characters/myra-aisling/dressed.svg",
  50017. extra: 1290/1189,
  50018. bottom: 47/1337
  50019. }
  50020. },
  50021. hand: {
  50022. height: math.unit(1.1, "feet"),
  50023. name: "Hand",
  50024. image: {
  50025. source: "./media/characters/myra-aisling/hand.svg"
  50026. }
  50027. },
  50028. paw: {
  50029. height: math.unit(1.23, "feet"),
  50030. name: "Paw",
  50031. image: {
  50032. source: "./media/characters/myra-aisling/paw.svg"
  50033. }
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Normal",
  50039. height: math.unit(160, "feet"),
  50040. default: true
  50041. },
  50042. ]
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50046. {
  50047. front: {
  50048. height: math.unit(6, "feet"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/tenley-sidero/front.svg",
  50052. extra: 1365/1276,
  50053. bottom: 47/1412
  50054. }
  50055. },
  50056. back: {
  50057. height: math.unit(6, "feet"),
  50058. name: "Back",
  50059. image: {
  50060. source: "./media/characters/tenley-sidero/back.svg",
  50061. extra: 1383/1283,
  50062. bottom: 35/1418
  50063. }
  50064. },
  50065. dressed: {
  50066. height: math.unit(6, "feet"),
  50067. name: "Dressed",
  50068. image: {
  50069. source: "./media/characters/tenley-sidero/dressed.svg",
  50070. extra: 1364/1275,
  50071. bottom: 42/1406
  50072. }
  50073. },
  50074. head: {
  50075. height: math.unit(1.47, "feet"),
  50076. name: "Head",
  50077. image: {
  50078. source: "./media/characters/tenley-sidero/head.svg",
  50079. extra: 610/490,
  50080. bottom: 0/610
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(154, "feet"),
  50088. default: true
  50089. },
  50090. ]
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50094. {
  50095. front: {
  50096. height: math.unit(5, "inches"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/mallory/front.svg",
  50100. extra: 1919/1678,
  50101. bottom: 29/1948
  50102. }
  50103. },
  50104. hand: {
  50105. height: math.unit(0.73, "inches"),
  50106. name: "Hand",
  50107. image: {
  50108. source: "./media/characters/mallory/hand.svg"
  50109. }
  50110. },
  50111. paw: {
  50112. height: math.unit(0.68, "inches"),
  50113. name: "Paw",
  50114. image: {
  50115. source: "./media/characters/mallory/paw.svg"
  50116. }
  50117. },
  50118. },
  50119. [
  50120. {
  50121. name: "Small",
  50122. height: math.unit(5, "inches"),
  50123. default: true
  50124. },
  50125. ]
  50126. ))
  50127. characterMakers.push(() => makeCharacter(
  50128. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50129. {
  50130. naked: {
  50131. height: math.unit(6, "feet"),
  50132. name: "Naked",
  50133. image: {
  50134. source: "./media/characters/mab/naked.svg",
  50135. extra: 1855/1757,
  50136. bottom: 208/2063
  50137. }
  50138. },
  50139. outside: {
  50140. height: math.unit(6, "feet"),
  50141. name: "Outside",
  50142. image: {
  50143. source: "./media/characters/mab/outside.svg",
  50144. extra: 1855/1757,
  50145. bottom: 208/2063
  50146. }
  50147. },
  50148. party: {
  50149. height: math.unit(6, "feet"),
  50150. name: "Party",
  50151. image: {
  50152. source: "./media/characters/mab/party.svg",
  50153. extra: 1855/1757,
  50154. bottom: 208/2063
  50155. }
  50156. },
  50157. },
  50158. [
  50159. {
  50160. name: "Normal",
  50161. height: math.unit(165, "feet"),
  50162. default: true
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50168. {
  50169. feral: {
  50170. height: math.unit(12, "feet"),
  50171. weight: math.unit(20000, "lb"),
  50172. name: "Side",
  50173. image: {
  50174. source: "./media/characters/winter/feral.svg",
  50175. extra: 1286/943,
  50176. bottom: 112/1398
  50177. },
  50178. form: "feral",
  50179. default: true
  50180. },
  50181. feralNsfw: {
  50182. height: math.unit(12, "feet"),
  50183. weight: math.unit(20000, "lb"),
  50184. name: "Side (NSFW)",
  50185. image: {
  50186. source: "./media/characters/winter/feral-nsfw.svg",
  50187. extra: 1286/943,
  50188. bottom: 112/1398
  50189. },
  50190. form: "feral"
  50191. },
  50192. dick: {
  50193. height: math.unit(3.79, "feet"),
  50194. name: "Dick",
  50195. image: {
  50196. source: "./media/characters/winter/dick.svg"
  50197. },
  50198. form: "feral"
  50199. },
  50200. anthro: {
  50201. height: math.unit(12, "feet"),
  50202. weight: math.unit(10, "tons"),
  50203. name: "Anthro",
  50204. image: {
  50205. source: "./media/characters/winter/anthro.svg",
  50206. extra: 1701/1553,
  50207. bottom: 64/1765
  50208. },
  50209. form: "anthro",
  50210. default: true
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Big",
  50216. height: math.unit(12, "feet"),
  50217. default: true,
  50218. form: "feral"
  50219. },
  50220. {
  50221. name: "Big",
  50222. height: math.unit(12, "feet"),
  50223. default: true,
  50224. form: "anthro"
  50225. },
  50226. ],
  50227. {
  50228. "feral": {
  50229. name: "Feral",
  50230. default: true
  50231. },
  50232. "anthro": {
  50233. name: "Anthro"
  50234. }
  50235. }
  50236. ))
  50237. characterMakers.push(() => makeCharacter(
  50238. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50239. {
  50240. front: {
  50241. height: math.unit(4.1, "inches"),
  50242. name: "Front",
  50243. image: {
  50244. source: "./media/characters/alto/front.svg",
  50245. extra: 736/627,
  50246. bottom: 90/826
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Normal",
  50253. height: math.unit(4.1, "inches"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50260. {
  50261. sitting: {
  50262. height: math.unit(3, "feet"),
  50263. name: "Sitting",
  50264. image: {
  50265. source: "./media/characters/ratstrid-v/sitting.svg",
  50266. extra: 355/310,
  50267. bottom: 136/491
  50268. }
  50269. },
  50270. },
  50271. [
  50272. {
  50273. name: "Normal",
  50274. height: math.unit(3, "feet"),
  50275. default: true
  50276. },
  50277. ]
  50278. ))
  50279. characterMakers.push(() => makeCharacter(
  50280. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50281. {
  50282. back: {
  50283. height: math.unit(6, "feet"),
  50284. weight: math.unit(450, "lb"),
  50285. name: "Back",
  50286. image: {
  50287. source: "./media/characters/siz/back.svg",
  50288. extra: 1449/1274,
  50289. bottom: 13/1462
  50290. }
  50291. },
  50292. },
  50293. [
  50294. {
  50295. name: "Smallest",
  50296. height: math.unit(18 + 3/12, "feet")
  50297. },
  50298. {
  50299. name: "Modest",
  50300. height: math.unit(56 + 8/12, "feet"),
  50301. default: true
  50302. },
  50303. {
  50304. name: "Largest",
  50305. height: math.unit(3590, "feet")
  50306. },
  50307. ]
  50308. ))
  50309. characterMakers.push(() => makeCharacter(
  50310. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50311. {
  50312. front: {
  50313. height: math.unit(5 + 9/12, "feet"),
  50314. weight: math.unit(150, "lb"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/ven/front.svg",
  50318. extra: 1372/1320,
  50319. bottom: 73/1445
  50320. }
  50321. },
  50322. side: {
  50323. height: math.unit(5 + 9/12, "feet"),
  50324. weight: math.unit(1150, "lb"),
  50325. name: "Side",
  50326. image: {
  50327. source: "./media/characters/ven/side.svg",
  50328. extra: 1119/1070,
  50329. bottom: 42/1161
  50330. },
  50331. default: true
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(5 + 9/12, "feet"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50344. {
  50345. front: {
  50346. height: math.unit(12, "feet"),
  50347. weight: math.unit(1000, "kg"),
  50348. name: "Front",
  50349. image: {
  50350. source: "./media/characters/maple/front.svg",
  50351. extra: 1193/1081,
  50352. bottom: 22/1215
  50353. }
  50354. },
  50355. },
  50356. [
  50357. {
  50358. name: "Compressed",
  50359. height: math.unit(7, "feet")
  50360. },
  50361. {
  50362. name: "Normal",
  50363. height: math.unit(12, "feet"),
  50364. default: true
  50365. },
  50366. ]
  50367. ))
  50368. characterMakers.push(() => makeCharacter(
  50369. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50370. {
  50371. front: {
  50372. height: math.unit(9, "feet"),
  50373. weight: math.unit(1500, "lb"),
  50374. name: "Front",
  50375. image: {
  50376. source: "./media/characters/nora/front.svg",
  50377. extra: 1348/1286,
  50378. bottom: 218/1566
  50379. }
  50380. },
  50381. erect: {
  50382. height: math.unit(9, "feet"),
  50383. weight: math.unit(11500, "lb"),
  50384. name: "Erect",
  50385. image: {
  50386. source: "./media/characters/nora/erect.svg",
  50387. extra: 1488/1433,
  50388. bottom: 133/1621
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Normal",
  50395. height: math.unit(9, "feet"),
  50396. default: true
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50402. {
  50403. front: {
  50404. height: math.unit(25, "feet"),
  50405. weight: math.unit(27500, "lb"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/north-caudin/front.svg",
  50409. extra: 1184/1082,
  50410. bottom: 23/1207
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Compressed",
  50417. height: math.unit(10, "feet")
  50418. },
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(25, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(9, "feet"),
  50431. weight: math.unit(1250, "lb"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/merrian/front.svg",
  50435. extra: 2393/2304,
  50436. bottom: 40/2433
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(9, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(9, "feet"),
  50453. weight: math.unit(1000, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/hazel/front.svg",
  50457. extra: 2351/2298,
  50458. bottom: 38/2389
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Normal",
  50465. height: math.unit(9, "feet"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(13, "feet"),
  50475. weight: math.unit(3200, "lb"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/emma/front.svg",
  50479. extra: 2263/2029,
  50480. bottom: 68/2331
  50481. }
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(13, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(11 + 9/12, "feet"),
  50497. weight: math.unit(2500, "lb"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/ilumina/front.svg",
  50501. extra: 2248/2209,
  50502. bottom: 164/2412
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Normal",
  50509. height: math.unit(11 + 9/12, "feet"),
  50510. default: true
  50511. },
  50512. ]
  50513. ))
  50514. characterMakers.push(() => makeCharacter(
  50515. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50516. {
  50517. front: {
  50518. height: math.unit(8 + 10/12, "feet"),
  50519. weight: math.unit(1350, "lb"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/moonshine/front.svg",
  50523. extra: 2395/2288,
  50524. bottom: 40/2435
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Normal",
  50531. height: math.unit(8 + 10/12, "feet"),
  50532. default: true
  50533. },
  50534. ]
  50535. ))
  50536. characterMakers.push(() => makeCharacter(
  50537. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50538. {
  50539. front: {
  50540. height: math.unit(14, "feet"),
  50541. weight: math.unit(3400, "lb"),
  50542. name: "Front",
  50543. image: {
  50544. source: "./media/characters/aletia/front.svg",
  50545. extra: 1185/1052,
  50546. bottom: 21/1206
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Compressed",
  50553. height: math.unit(8, "feet")
  50554. },
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(14, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(17, "feet"),
  50567. weight: math.unit(6500, "lb"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/deidra/front.svg",
  50571. extra: 1201/1081,
  50572. bottom: 16/1217
  50573. }
  50574. },
  50575. },
  50576. [
  50577. {
  50578. name: "Compressed",
  50579. height: math.unit(9 + 6/12, "feet")
  50580. },
  50581. {
  50582. name: "Normal",
  50583. height: math.unit(17, "feet"),
  50584. default: true
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50590. {
  50591. front: {
  50592. height: math.unit(7 + 4/12, "feet"),
  50593. weight: math.unit(280, "lb"),
  50594. name: "Front",
  50595. image: {
  50596. source: "./media/characters/freki-yrmori/front.svg",
  50597. extra: 1286/1182,
  50598. bottom: 29/1315
  50599. }
  50600. },
  50601. maw: {
  50602. height: math.unit(0.9, "feet"),
  50603. name: "Maw",
  50604. image: {
  50605. source: "./media/characters/freki-yrmori/maw.svg"
  50606. }
  50607. },
  50608. },
  50609. [
  50610. {
  50611. name: "Normal",
  50612. height: math.unit(7 + 4/12, "feet"),
  50613. default: true
  50614. },
  50615. {
  50616. name: "Macro",
  50617. height: math.unit(38.5, "meters")
  50618. },
  50619. ]
  50620. ))
  50621. characterMakers.push(() => makeCharacter(
  50622. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50623. {
  50624. side: {
  50625. height: math.unit(47.2, "meters"),
  50626. weight: math.unit(10000, "tons"),
  50627. name: "Side",
  50628. image: {
  50629. source: "./media/characters/aetherios/side.svg",
  50630. extra: 2363/642,
  50631. bottom: 221/2584
  50632. }
  50633. },
  50634. top: {
  50635. height: math.unit(240, "meters"),
  50636. weight: math.unit(10000, "tons"),
  50637. name: "Top",
  50638. image: {
  50639. source: "./media/characters/aetherios/top.svg"
  50640. }
  50641. },
  50642. bottom: {
  50643. height: math.unit(240, "meters"),
  50644. weight: math.unit(10000, "tons"),
  50645. name: "Bottom",
  50646. image: {
  50647. source: "./media/characters/aetherios/bottom.svg"
  50648. }
  50649. },
  50650. head: {
  50651. height: math.unit(38.6, "meters"),
  50652. name: "Head",
  50653. image: {
  50654. source: "./media/characters/aetherios/head.svg",
  50655. extra: 1335/1112,
  50656. bottom: 0/1335
  50657. }
  50658. },
  50659. front: {
  50660. height: math.unit(29, "meters"),
  50661. name: "Front",
  50662. image: {
  50663. source: "./media/characters/aetherios/front.svg",
  50664. extra: 1266/953,
  50665. bottom: 158/1424
  50666. }
  50667. },
  50668. maw: {
  50669. height: math.unit(16.37, "meters"),
  50670. name: "Maw",
  50671. image: {
  50672. source: "./media/characters/aetherios/maw.svg",
  50673. extra: 748/637,
  50674. bottom: 0/748
  50675. },
  50676. extraAttributes: {
  50677. preyCapacity: {
  50678. name: "Capacity",
  50679. power: 3,
  50680. type: "volume",
  50681. base: math.unit(1000, "people")
  50682. },
  50683. tongueSize: {
  50684. name: "Tongue Size",
  50685. power: 2,
  50686. type: "area",
  50687. base: math.unit(21, "m^2")
  50688. }
  50689. }
  50690. },
  50691. forepaw: {
  50692. height: math.unit(18, "meters"),
  50693. name: "Forepaw",
  50694. image: {
  50695. source: "./media/characters/aetherios/forepaw.svg"
  50696. }
  50697. },
  50698. hindpaw: {
  50699. height: math.unit(23, "meters"),
  50700. name: "Hindpaw",
  50701. image: {
  50702. source: "./media/characters/aetherios/hindpaw.svg"
  50703. }
  50704. },
  50705. genitals: {
  50706. height: math.unit(42, "meters"),
  50707. name: "Genitals",
  50708. image: {
  50709. source: "./media/characters/aetherios/genitals.svg"
  50710. }
  50711. },
  50712. },
  50713. [
  50714. {
  50715. name: "Normal",
  50716. height: math.unit(47.2, "meters"),
  50717. default: true
  50718. },
  50719. {
  50720. name: "Macro",
  50721. height: math.unit(160, "meters")
  50722. },
  50723. {
  50724. name: "Mega",
  50725. height: math.unit(1.87, "km")
  50726. },
  50727. {
  50728. name: "Giga",
  50729. height: math.unit(40000, "km")
  50730. },
  50731. {
  50732. name: "Stellar",
  50733. height: math.unit(158000000, "km")
  50734. },
  50735. {
  50736. name: "Cosmic",
  50737. height: math.unit(9.46e12, "km")
  50738. },
  50739. ]
  50740. ))
  50741. characterMakers.push(() => makeCharacter(
  50742. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50743. {
  50744. front: {
  50745. height: math.unit(5 + 4/12, "feet"),
  50746. weight: math.unit(80, "lb"),
  50747. name: "Front",
  50748. image: {
  50749. source: "./media/characters/mizu-gieeg/front.svg",
  50750. extra: 850/709,
  50751. bottom: 52/902
  50752. }
  50753. },
  50754. back: {
  50755. height: math.unit(5 + 4/12, "feet"),
  50756. weight: math.unit(80, "lb"),
  50757. name: "Back",
  50758. image: {
  50759. source: "./media/characters/mizu-gieeg/back.svg",
  50760. extra: 882/745,
  50761. bottom: 25/907
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Normal",
  50768. height: math.unit(5 + 4/12, "feet"),
  50769. default: true
  50770. },
  50771. ]
  50772. ))
  50773. characterMakers.push(() => makeCharacter(
  50774. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50775. {
  50776. front: {
  50777. height: math.unit(6, "feet"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/roselle-st-papier/front.svg",
  50781. extra: 1430/1280,
  50782. bottom: 37/1467
  50783. }
  50784. },
  50785. back: {
  50786. height: math.unit(6, "feet"),
  50787. name: "Back",
  50788. image: {
  50789. source: "./media/characters/roselle-st-papier/back.svg",
  50790. extra: 1491/1296,
  50791. bottom: 23/1514
  50792. }
  50793. },
  50794. ear: {
  50795. height: math.unit(1.26, "feet"),
  50796. name: "Ear",
  50797. image: {
  50798. source: "./media/characters/roselle-st-papier/ear.svg"
  50799. }
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Normal",
  50805. height: math.unit(150, "feet"),
  50806. default: true
  50807. },
  50808. ]
  50809. ))
  50810. characterMakers.push(() => makeCharacter(
  50811. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50812. {
  50813. front: {
  50814. height: math.unit(1, "inches"),
  50815. name: "Front",
  50816. image: {
  50817. source: "./media/characters/valargent/front.svg",
  50818. extra: 1825/1694,
  50819. bottom: 62/1887
  50820. }
  50821. },
  50822. back: {
  50823. height: math.unit(1, "inches"),
  50824. name: "Back",
  50825. image: {
  50826. source: "./media/characters/valargent/back.svg",
  50827. extra: 1775/1682,
  50828. bottom: 88/1863
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Micro",
  50835. height: math.unit(1, "inch"),
  50836. default: true
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50842. {
  50843. front: {
  50844. height: math.unit(3.4, "meters"),
  50845. name: "Front",
  50846. image: {
  50847. source: "./media/characters/zarina/front.svg",
  50848. extra: 1733/1425,
  50849. bottom: 93/1826
  50850. }
  50851. },
  50852. squatting: {
  50853. height: math.unit(2.14, "meters"),
  50854. name: "Squatting",
  50855. image: {
  50856. source: "./media/characters/zarina/squatting.svg",
  50857. extra: 1073/788,
  50858. bottom: 63/1136
  50859. }
  50860. },
  50861. back: {
  50862. height: math.unit(2.14, "meters"),
  50863. name: "Back",
  50864. image: {
  50865. source: "./media/characters/zarina/back.svg",
  50866. extra: 1128/885,
  50867. bottom: 0/1128
  50868. }
  50869. },
  50870. },
  50871. [
  50872. {
  50873. name: "Normal",
  50874. height: math.unit(3.4, "meters"),
  50875. default: true
  50876. },
  50877. {
  50878. name: "Big",
  50879. height: math.unit(5, "meters")
  50880. },
  50881. {
  50882. name: "Macro",
  50883. height: math.unit(110, "meters")
  50884. },
  50885. ]
  50886. ))
  50887. characterMakers.push(() => makeCharacter(
  50888. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50889. {
  50890. front: {
  50891. height: math.unit(7, "feet"),
  50892. name: "Front",
  50893. image: {
  50894. source: "./media/characters/ventus-astro-fox/front.svg",
  50895. extra: 1792/1623,
  50896. bottom: 28/1820
  50897. }
  50898. },
  50899. back: {
  50900. height: math.unit(7, "feet"),
  50901. name: "Back",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/back.svg",
  50904. extra: 1789/1620,
  50905. bottom: 31/1820
  50906. }
  50907. },
  50908. outfit: {
  50909. height: math.unit(7, "feet"),
  50910. name: "Outfit",
  50911. image: {
  50912. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50913. extra: 1054/925,
  50914. bottom: 15/1069
  50915. }
  50916. },
  50917. head: {
  50918. height: math.unit(1.12, "feet"),
  50919. name: "Head",
  50920. image: {
  50921. source: "./media/characters/ventus-astro-fox/head.svg",
  50922. extra: 866/504,
  50923. bottom: 0/866
  50924. }
  50925. },
  50926. hand: {
  50927. height: math.unit(1, "feet"),
  50928. name: "Hand",
  50929. image: {
  50930. source: "./media/characters/ventus-astro-fox/hand.svg"
  50931. }
  50932. },
  50933. paw: {
  50934. height: math.unit(1.5, "feet"),
  50935. name: "Paw",
  50936. image: {
  50937. source: "./media/characters/ventus-astro-fox/paw.svg"
  50938. }
  50939. },
  50940. },
  50941. [
  50942. {
  50943. name: "Normal",
  50944. height: math.unit(7, "feet"),
  50945. default: true
  50946. },
  50947. {
  50948. name: "Macro",
  50949. height: math.unit(200, "feet")
  50950. },
  50951. {
  50952. name: "Cosmic",
  50953. height: math.unit(3, "universes")
  50954. },
  50955. ]
  50956. ))
  50957. characterMakers.push(() => makeCharacter(
  50958. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50959. {
  50960. front: {
  50961. height: math.unit(3, "meters"),
  50962. weight: math.unit(7000, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/core-t/front.svg",
  50966. extra: 5729/4941,
  50967. bottom: 1129/6858
  50968. }
  50969. },
  50970. },
  50971. [
  50972. {
  50973. name: "Big",
  50974. height: math.unit(3, "meters"),
  50975. default: true
  50976. },
  50977. ]
  50978. ))
  50979. characterMakers.push(() => makeCharacter(
  50980. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50981. {
  50982. normal: {
  50983. height: math.unit(6 + 6/12, "feet"),
  50984. weight: math.unit(275, "lb"),
  50985. name: "Front",
  50986. image: {
  50987. source: "./media/characters/cadbunny/normal.svg",
  50988. extra: 1129/947,
  50989. bottom: 93/1222
  50990. },
  50991. default: true,
  50992. form: "normal"
  50993. },
  50994. gigantamax: {
  50995. height: math.unit(26, "feet"),
  50996. weight: math.unit(16000, "lb"),
  50997. name: "Front",
  50998. image: {
  50999. source: "./media/characters/cadbunny/gigantamax.svg",
  51000. extra: 1133/944,
  51001. bottom: 90/1223
  51002. },
  51003. default: true,
  51004. form: "gigantamax"
  51005. },
  51006. },
  51007. [
  51008. {
  51009. name: "Normal",
  51010. height: math.unit(6 + 6/12, "feet"),
  51011. default: true,
  51012. form: "normal"
  51013. },
  51014. {
  51015. name: "Small",
  51016. height: math.unit(26, "feet"),
  51017. default: true,
  51018. form: "gigantamax"
  51019. },
  51020. {
  51021. name: "Large",
  51022. height: math.unit(78, "feet"),
  51023. form: "gigantamax"
  51024. },
  51025. ],
  51026. {
  51027. "normal": {
  51028. name: "Normal",
  51029. default: true
  51030. },
  51031. "gigantamax": {
  51032. name: "Gigantamax"
  51033. }
  51034. }
  51035. ))
  51036. characterMakers.push(() => makeCharacter(
  51037. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51038. {
  51039. anthroFront: {
  51040. height: math.unit(8, "feet"),
  51041. weight: math.unit(300, "lb"),
  51042. name: "Front",
  51043. image: {
  51044. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51045. extra: 1272/1176,
  51046. bottom: 53/1325
  51047. },
  51048. form: "anthro",
  51049. default: true
  51050. },
  51051. feralSide: {
  51052. height: math.unit(4, "feet"),
  51053. weight: math.unit(250, "lb"),
  51054. name: "Side",
  51055. image: {
  51056. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51057. extra: 731/621,
  51058. bottom: 0/731
  51059. },
  51060. form: "feral",
  51061. default: true
  51062. },
  51063. },
  51064. [
  51065. {
  51066. name: "Regular",
  51067. height: math.unit(8, "feet"),
  51068. form: "anthro"
  51069. },
  51070. {
  51071. name: "Macro",
  51072. height: math.unit(250, "feet"),
  51073. form: "anthro",
  51074. default: true
  51075. },
  51076. {
  51077. name: "Regular",
  51078. height: math.unit(4, "feet"),
  51079. form: "feral"
  51080. },
  51081. {
  51082. name: "Macro",
  51083. height: math.unit(125, "feet"),
  51084. form: "feral",
  51085. default: true
  51086. },
  51087. ],
  51088. {
  51089. "anthro": {
  51090. name: "Anthro",
  51091. default: true
  51092. },
  51093. "feral": {
  51094. name: "Feral",
  51095. },
  51096. }
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51100. {
  51101. front: {
  51102. height: math.unit(11 + 10/12, "feet"),
  51103. weight: math.unit(1587, "kg"),
  51104. name: "Front",
  51105. image: {
  51106. source: "./media/characters/maple-javira-dragon/front.svg",
  51107. extra: 1136/744,
  51108. bottom: 73/1209
  51109. }
  51110. },
  51111. side: {
  51112. height: math.unit(11 + 10/12, "feet"),
  51113. weight: math.unit(1587, "kg"),
  51114. name: "Side",
  51115. image: {
  51116. source: "./media/characters/maple-javira-dragon/side.svg",
  51117. extra: 712/505,
  51118. bottom: 17/729
  51119. }
  51120. },
  51121. head: {
  51122. height: math.unit(8.05, "feet"),
  51123. name: "Head",
  51124. image: {
  51125. source: "./media/characters/maple-javira-dragon/head.svg",
  51126. extra: 1420/1344,
  51127. bottom: 0/1420
  51128. }
  51129. },
  51130. },
  51131. [
  51132. {
  51133. name: "Normal",
  51134. height: math.unit(11 + 10/12, "feet"),
  51135. default: true
  51136. },
  51137. ]
  51138. ))
  51139. characterMakers.push(() => makeCharacter(
  51140. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51141. {
  51142. front: {
  51143. height: math.unit(117, "cm"),
  51144. weight: math.unit(50, "kg"),
  51145. name: "Front",
  51146. image: {
  51147. source: "./media/characters/sonia-wyverntail/front.svg",
  51148. extra: 708/592,
  51149. bottom: 25/733
  51150. }
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Normal",
  51156. height: math.unit(117, "cm"),
  51157. default: true
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(6 + 5/12, "feet"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/micah/front.svg",
  51169. extra: 1758/1546,
  51170. bottom: 214/1972
  51171. }
  51172. },
  51173. },
  51174. [
  51175. {
  51176. name: "Normal",
  51177. height: math.unit(6 + 5/12, "feet"),
  51178. default: true
  51179. },
  51180. ]
  51181. ))
  51182. characterMakers.push(() => makeCharacter(
  51183. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51184. {
  51185. front: {
  51186. height: math.unit(1.75, "meters"),
  51187. weight: math.unit(100, "kg"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/zarya/front.svg",
  51191. extra: 741/735,
  51192. bottom: 44/785
  51193. },
  51194. extraAttributes: {
  51195. "tailLength": {
  51196. name: "Tail Length",
  51197. power: 1,
  51198. type: "length",
  51199. base: math.unit(180, "cm")
  51200. },
  51201. "pawLength": {
  51202. name: "Paw Length",
  51203. power: 1,
  51204. type: "length",
  51205. base: math.unit(31, "cm")
  51206. },
  51207. }
  51208. },
  51209. side: {
  51210. height: math.unit(1.75, "meters"),
  51211. weight: math.unit(100, "kg"),
  51212. name: "Side",
  51213. image: {
  51214. source: "./media/characters/zarya/side.svg",
  51215. extra: 776/770,
  51216. bottom: 17/793
  51217. },
  51218. extraAttributes: {
  51219. "tailLength": {
  51220. name: "Tail Length",
  51221. power: 1,
  51222. type: "length",
  51223. base: math.unit(180, "cm")
  51224. },
  51225. "pawLength": {
  51226. name: "Paw Length",
  51227. power: 1,
  51228. type: "length",
  51229. base: math.unit(31, "cm")
  51230. },
  51231. }
  51232. },
  51233. back: {
  51234. height: math.unit(1.75, "meters"),
  51235. weight: math.unit(100, "kg"),
  51236. name: "Back",
  51237. image: {
  51238. source: "./media/characters/zarya/back.svg",
  51239. extra: 741/735,
  51240. bottom: 44/785
  51241. },
  51242. extraAttributes: {
  51243. "tailLength": {
  51244. name: "Tail Length",
  51245. power: 1,
  51246. type: "length",
  51247. base: math.unit(180, "cm")
  51248. },
  51249. "pawLength": {
  51250. name: "Paw Length",
  51251. power: 1,
  51252. type: "length",
  51253. base: math.unit(31, "cm")
  51254. },
  51255. }
  51256. },
  51257. frontNoTail: {
  51258. height: math.unit(1.75, "meters"),
  51259. weight: math.unit(100, "kg"),
  51260. name: "Front (No Tail)",
  51261. image: {
  51262. source: "./media/characters/zarya/front-no-tail.svg",
  51263. extra: 741/735,
  51264. bottom: 44/785
  51265. },
  51266. extraAttributes: {
  51267. "tailLength": {
  51268. name: "Tail Length",
  51269. power: 1,
  51270. type: "length",
  51271. base: math.unit(180, "cm")
  51272. },
  51273. "pawLength": {
  51274. name: "Paw Length",
  51275. power: 1,
  51276. type: "length",
  51277. base: math.unit(31, "cm")
  51278. },
  51279. }
  51280. },
  51281. dressed: {
  51282. height: math.unit(1.75, "meters"),
  51283. weight: math.unit(100, "kg"),
  51284. name: "Dressed",
  51285. image: {
  51286. source: "./media/characters/zarya/dressed.svg",
  51287. extra: 683/672,
  51288. bottom: 79/762
  51289. },
  51290. extraAttributes: {
  51291. "tailLength": {
  51292. name: "Tail Length",
  51293. power: 1,
  51294. type: "length",
  51295. base: math.unit(180, "cm")
  51296. },
  51297. "pawLength": {
  51298. name: "Paw Length",
  51299. power: 1,
  51300. type: "length",
  51301. base: math.unit(31, "cm")
  51302. },
  51303. }
  51304. },
  51305. },
  51306. [
  51307. {
  51308. name: "Micro",
  51309. height: math.unit(5, "cm")
  51310. },
  51311. {
  51312. name: "Normal",
  51313. height: math.unit(1.75, "meters"),
  51314. default: true
  51315. },
  51316. {
  51317. name: "Macro",
  51318. height: math.unit(122, "meters")
  51319. },
  51320. ]
  51321. ))
  51322. characterMakers.push(() => makeCharacter(
  51323. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51324. {
  51325. front: {
  51326. height: math.unit(7.5, "feet"),
  51327. name: "Front",
  51328. image: {
  51329. source: "./media/characters/sven-hatisson/front.svg",
  51330. extra: 917/857,
  51331. bottom: 42/959
  51332. }
  51333. },
  51334. back: {
  51335. height: math.unit(7.5, "feet"),
  51336. name: "Back",
  51337. image: {
  51338. source: "./media/characters/sven-hatisson/back.svg",
  51339. extra: 903/856,
  51340. bottom: 15/918
  51341. }
  51342. },
  51343. },
  51344. [
  51345. {
  51346. name: "Base Height",
  51347. height: math.unit(7.5, "feet")
  51348. },
  51349. {
  51350. name: "Usual Height",
  51351. height: math.unit(13.5, "feet"),
  51352. default: true
  51353. },
  51354. {
  51355. name: "Smaller Macro",
  51356. height: math.unit(85, "feet")
  51357. },
  51358. {
  51359. name: "Moderate Macro",
  51360. height: math.unit(320, "feet")
  51361. },
  51362. {
  51363. name: "Large Macro",
  51364. height: math.unit(1000, "feet")
  51365. },
  51366. {
  51367. name: "Largest Size",
  51368. height: math.unit(2, "miles")
  51369. },
  51370. ]
  51371. ))
  51372. characterMakers.push(() => makeCharacter(
  51373. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51374. {
  51375. side: {
  51376. height: math.unit(1.8, "meters"),
  51377. weight: math.unit(275, "kg"),
  51378. name: "Side",
  51379. image: {
  51380. source: "./media/characters/terra/side.svg",
  51381. extra: 1273/1147,
  51382. bottom: 0/1273
  51383. }
  51384. },
  51385. },
  51386. [
  51387. {
  51388. name: "Normal",
  51389. height: math.unit(16.2, "meters"),
  51390. default: true
  51391. },
  51392. ]
  51393. ))
  51394. characterMakers.push(() => makeCharacter(
  51395. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51396. {
  51397. borzoiFront: {
  51398. height: math.unit(6 + 9/12, "feet"),
  51399. name: "Front",
  51400. image: {
  51401. source: "./media/characters/rae/borzoi-front.svg",
  51402. extra: 1161/1098,
  51403. bottom: 31/1192
  51404. },
  51405. form: "borzoi",
  51406. default: true
  51407. },
  51408. werewolfFront: {
  51409. height: math.unit(8 + 7/12, "feet"),
  51410. name: "Front",
  51411. image: {
  51412. source: "./media/characters/rae/werewolf-front.svg",
  51413. extra: 1411/1334,
  51414. bottom: 127/1538
  51415. },
  51416. form: "werewolf",
  51417. default: true
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Normal",
  51423. height: math.unit(6 + 9/12, "feet"),
  51424. default: true,
  51425. form: "borzoi"
  51426. },
  51427. {
  51428. name: "Normal",
  51429. height: math.unit(8 + 7/12, "feet"),
  51430. default: true,
  51431. form: "werewolf"
  51432. },
  51433. ],
  51434. {
  51435. "borzoi": {
  51436. name: "Borzoi",
  51437. default: true
  51438. },
  51439. "werewolf": {
  51440. name: "Werewolf",
  51441. },
  51442. }
  51443. ))
  51444. characterMakers.push(() => makeCharacter(
  51445. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51446. {
  51447. front: {
  51448. height: math.unit(8 + 7/12, "feet"),
  51449. weight: math.unit(482, "lb"),
  51450. name: "Front",
  51451. image: {
  51452. source: "./media/characters/kit/front.svg",
  51453. extra: 1247/1103,
  51454. bottom: 41/1288
  51455. }
  51456. },
  51457. back: {
  51458. height: math.unit(8 + 7/12, "feet"),
  51459. weight: math.unit(482, "lb"),
  51460. name: "Back",
  51461. image: {
  51462. source: "./media/characters/kit/back.svg",
  51463. extra: 1252/1123,
  51464. bottom: 21/1273
  51465. }
  51466. },
  51467. paw: {
  51468. height: math.unit(1.46, "feet"),
  51469. name: "Paw",
  51470. image: {
  51471. source: "./media/characters/kit/paw.svg"
  51472. }
  51473. },
  51474. },
  51475. [
  51476. {
  51477. name: "Normal",
  51478. height: math.unit(2.61, "meters"),
  51479. default: true
  51480. },
  51481. {
  51482. name: "\"Tall\"",
  51483. height: math.unit(8.21, "meters")
  51484. },
  51485. {
  51486. name: "Tall",
  51487. height: math.unit(19.6, "meters")
  51488. },
  51489. {
  51490. name: "Very Tall",
  51491. height: math.unit(57.91, "meters")
  51492. },
  51493. {
  51494. name: "Semi-Macro",
  51495. height: math.unit(138.64, "meters")
  51496. },
  51497. {
  51498. name: "Macro",
  51499. height: math.unit(831.99, "meters")
  51500. },
  51501. {
  51502. name: "EX-Macro",
  51503. height: math.unit(96451121, "meters")
  51504. },
  51505. {
  51506. name: "S1-Omnipotent",
  51507. height: math.unit(4.42074e+9, "meters")
  51508. },
  51509. {
  51510. name: "S2-Omnipotent",
  51511. height: math.unit(9.42074e+17, "meters")
  51512. },
  51513. {
  51514. name: "Omnipotent",
  51515. height: math.unit(4.23112e+24, "meters")
  51516. },
  51517. {
  51518. name: "Hypergod",
  51519. height: math.unit(5.05176e+27, "meters")
  51520. },
  51521. {
  51522. name: "Hypergod-EX",
  51523. height: math.unit(9.45532e+49, "meters")
  51524. },
  51525. {
  51526. name: "Hypergod-SP",
  51527. height: math.unit(9.45532e+195, "meters")
  51528. },
  51529. ]
  51530. ))
  51531. characterMakers.push(() => makeCharacter(
  51532. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51533. {
  51534. side: {
  51535. height: math.unit(0.6, "meters"),
  51536. weight: math.unit(24, "kg"),
  51537. name: "Side",
  51538. image: {
  51539. source: "./media/characters/celeste/side.svg",
  51540. extra: 810/517,
  51541. bottom: 53/863
  51542. }
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Velociraptor",
  51548. height: math.unit(0.6, "meters"),
  51549. default: true
  51550. },
  51551. {
  51552. name: "Utahraptor",
  51553. height: math.unit(1.8, "meters")
  51554. },
  51555. {
  51556. name: "Gallimimus",
  51557. height: math.unit(4.0, "meters")
  51558. },
  51559. {
  51560. name: "Large",
  51561. height: math.unit(20, "meters")
  51562. },
  51563. {
  51564. name: "Planetary",
  51565. height: math.unit(50, "megameters")
  51566. },
  51567. {
  51568. name: "Stellar",
  51569. height: math.unit(1.5, "gigameters")
  51570. },
  51571. {
  51572. name: "Galactic",
  51573. height: math.unit(100, "exameters")
  51574. },
  51575. ]
  51576. ))
  51577. characterMakers.push(() => makeCharacter(
  51578. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51579. {
  51580. front: {
  51581. height: math.unit(6, "feet"),
  51582. weight: math.unit(210, "lb"),
  51583. name: "Front",
  51584. image: {
  51585. source: "./media/characters/glacia/front.svg",
  51586. extra: 958/901,
  51587. bottom: 45/1003
  51588. }
  51589. },
  51590. },
  51591. [
  51592. {
  51593. name: "Macro",
  51594. height: math.unit(1000, "meters"),
  51595. default: true
  51596. },
  51597. ]
  51598. ))
  51599. characterMakers.push(() => makeCharacter(
  51600. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51601. {
  51602. front: {
  51603. height: math.unit(4, "meters"),
  51604. name: "Front",
  51605. image: {
  51606. source: "./media/characters/giri/front.svg",
  51607. extra: 966/894,
  51608. bottom: 21/987
  51609. }
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Normal",
  51615. height: math.unit(4, "meters"),
  51616. default: true
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51622. {
  51623. back: {
  51624. height: math.unit(4, "feet"),
  51625. weight: math.unit(37, "lb"),
  51626. name: "Back",
  51627. image: {
  51628. source: "./media/characters/tin/back.svg",
  51629. extra: 845/780,
  51630. bottom: 28/873
  51631. }
  51632. },
  51633. },
  51634. [
  51635. {
  51636. name: "Normal",
  51637. height: math.unit(4, "feet"),
  51638. default: true
  51639. },
  51640. ]
  51641. ))
  51642. characterMakers.push(() => makeCharacter(
  51643. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51644. {
  51645. front: {
  51646. height: math.unit(25, "feet"),
  51647. name: "Front",
  51648. image: {
  51649. source: "./media/characters/cadenza-vivace/front.svg",
  51650. extra: 1842/1578,
  51651. bottom: 30/1872
  51652. }
  51653. },
  51654. },
  51655. [
  51656. {
  51657. name: "Macro",
  51658. height: math.unit(25, "feet"),
  51659. default: true
  51660. },
  51661. ]
  51662. ))
  51663. characterMakers.push(() => makeCharacter(
  51664. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51665. {
  51666. front: {
  51667. height: math.unit(10, "feet"),
  51668. weight: math.unit(625, "kg"),
  51669. name: "Front",
  51670. image: {
  51671. source: "./media/characters/zain/front.svg",
  51672. extra: 1682/1498,
  51673. bottom: 223/1905
  51674. }
  51675. },
  51676. back: {
  51677. height: math.unit(10, "feet"),
  51678. weight: math.unit(625, "kg"),
  51679. name: "Back",
  51680. image: {
  51681. source: "./media/characters/zain/back.svg",
  51682. extra: 1814/1657,
  51683. bottom: 152/1966
  51684. }
  51685. },
  51686. head: {
  51687. height: math.unit(10, "feet"),
  51688. weight: math.unit(625, "kg"),
  51689. name: "Head",
  51690. image: {
  51691. source: "./media/characters/zain/head.svg",
  51692. extra: 1059/762,
  51693. bottom: 0/1059
  51694. }
  51695. },
  51696. },
  51697. [
  51698. {
  51699. name: "Normal",
  51700. height: math.unit(10, "feet"),
  51701. default: true
  51702. },
  51703. ]
  51704. ))
  51705. characterMakers.push(() => makeCharacter(
  51706. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51707. {
  51708. front: {
  51709. height: math.unit(6 + 5/12, "feet"),
  51710. weight: math.unit(750, "lb"),
  51711. name: "Front",
  51712. image: {
  51713. source: "./media/characters/ruchex/front.svg",
  51714. extra: 877/820,
  51715. bottom: 17/894
  51716. },
  51717. extraAttributes: {
  51718. "width": {
  51719. name: "Width",
  51720. power: 1,
  51721. type: "length",
  51722. base: math.unit(4.757, "feet")
  51723. },
  51724. }
  51725. },
  51726. },
  51727. [
  51728. {
  51729. name: "Normal",
  51730. height: math.unit(6 + 5/12, "feet"),
  51731. default: true
  51732. },
  51733. ]
  51734. ))
  51735. characterMakers.push(() => makeCharacter(
  51736. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51737. {
  51738. dressedFront: {
  51739. height: math.unit(191, "cm"),
  51740. weight: math.unit(80, "kg"),
  51741. name: "Front",
  51742. image: {
  51743. source: "./media/characters/buster/dressed-front.svg",
  51744. extra: 1022/973,
  51745. bottom: 69/1091
  51746. }
  51747. },
  51748. dressedBack: {
  51749. height: math.unit(191, "cm"),
  51750. weight: math.unit(80, "kg"),
  51751. name: "Back",
  51752. image: {
  51753. source: "./media/characters/buster/dressed-back.svg",
  51754. extra: 1018/970,
  51755. bottom: 55/1073
  51756. }
  51757. },
  51758. nudeFront: {
  51759. height: math.unit(191, "cm"),
  51760. weight: math.unit(80, "kg"),
  51761. name: "Front (Nude)",
  51762. image: {
  51763. source: "./media/characters/buster/nude-front.svg",
  51764. extra: 1022/973,
  51765. bottom: 69/1091
  51766. }
  51767. },
  51768. nudeBack: {
  51769. height: math.unit(191, "cm"),
  51770. weight: math.unit(80, "kg"),
  51771. name: "Back (Nude)",
  51772. image: {
  51773. source: "./media/characters/buster/nude-back.svg",
  51774. extra: 1018/970,
  51775. bottom: 55/1073
  51776. }
  51777. },
  51778. dick: {
  51779. height: math.unit(2.59, "feet"),
  51780. name: "Dick",
  51781. image: {
  51782. source: "./media/characters/buster/dick.svg"
  51783. }
  51784. },
  51785. ass: {
  51786. height: math.unit(1.2, "feet"),
  51787. name: "Ass",
  51788. image: {
  51789. source: "./media/characters/buster/ass.svg"
  51790. }
  51791. },
  51792. },
  51793. [
  51794. {
  51795. name: "Normal",
  51796. height: math.unit(191, "cm"),
  51797. default: true
  51798. },
  51799. ]
  51800. ))
  51801. characterMakers.push(() => makeCharacter(
  51802. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51803. {
  51804. side: {
  51805. height: math.unit(8.1, "feet"),
  51806. weight: math.unit(3500, "lb"),
  51807. name: "Side",
  51808. image: {
  51809. source: "./media/characters/sonya/side.svg",
  51810. extra: 1730/1317,
  51811. bottom: 86/1816
  51812. }
  51813. },
  51814. },
  51815. [
  51816. {
  51817. name: "Normal",
  51818. height: math.unit(8.1, "feet"),
  51819. default: true
  51820. },
  51821. ]
  51822. ))
  51823. characterMakers.push(() => makeCharacter(
  51824. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51825. {
  51826. front: {
  51827. height: math.unit(6, "feet"),
  51828. weight: math.unit(150, "lb"),
  51829. name: "Front",
  51830. image: {
  51831. source: "./media/characters/cadence-andrysiak/front.svg",
  51832. extra: 1164/1121,
  51833. bottom: 60/1224
  51834. }
  51835. },
  51836. back: {
  51837. height: math.unit(6, "feet"),
  51838. weight: math.unit(150, "lb"),
  51839. name: "Back",
  51840. image: {
  51841. source: "./media/characters/cadence-andrysiak/back.svg",
  51842. extra: 1200/1165,
  51843. bottom: 9/1209
  51844. }
  51845. },
  51846. dressed: {
  51847. height: math.unit(6, "feet"),
  51848. weight: math.unit(150, "lb"),
  51849. name: "Dressed",
  51850. image: {
  51851. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51852. extra: 1164/1121,
  51853. bottom: 60/1224
  51854. }
  51855. },
  51856. },
  51857. [
  51858. {
  51859. name: "Micro",
  51860. height: math.unit(1, "mm")
  51861. },
  51862. {
  51863. name: "Normal",
  51864. height: math.unit(6, "feet"),
  51865. default: true
  51866. },
  51867. ]
  51868. ))
  51869. characterMakers.push(() => makeCharacter(
  51870. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51871. {
  51872. front: {
  51873. height: math.unit(60, "inches"),
  51874. weight: math.unit(16, "lb"),
  51875. preyCapacity: math.unit(80, "liters"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/penny-lynx/front.svg",
  51879. extra: 1959/1769,
  51880. bottom: 49/2008
  51881. }
  51882. },
  51883. },
  51884. [
  51885. {
  51886. name: "Nokia",
  51887. height: math.unit(2, "inches")
  51888. },
  51889. {
  51890. name: "Desktop",
  51891. height: math.unit(24, "inches")
  51892. },
  51893. {
  51894. name: "TV",
  51895. height: math.unit(60, "inches")
  51896. },
  51897. {
  51898. name: "Jumbotron",
  51899. height: math.unit(12, "feet")
  51900. },
  51901. {
  51902. name: "Billboard",
  51903. height: math.unit(48, "feet"),
  51904. default: true
  51905. },
  51906. {
  51907. name: "IMAX",
  51908. height: math.unit(96, "feet")
  51909. },
  51910. {
  51911. name: "SINGULARITY",
  51912. height: math.unit(864938, "miles")
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(5 + 4/12, "feet"),
  51921. weight: math.unit(230, "lb"),
  51922. name: "Front",
  51923. image: {
  51924. source: "./media/characters/sukebe/front.svg",
  51925. extra: 2130/2038,
  51926. bottom: 90/2220
  51927. }
  51928. },
  51929. back: {
  51930. height: math.unit(3.48, "feet"),
  51931. weight: math.unit(230, "lb"),
  51932. name: "Back",
  51933. image: {
  51934. source: "./media/characters/sukebe/back.svg",
  51935. extra: 1670/1604,
  51936. bottom: 0/1670
  51937. }
  51938. },
  51939. },
  51940. [
  51941. {
  51942. name: "Normal",
  51943. height: math.unit(5 + 4/12, "feet"),
  51944. default: true
  51945. },
  51946. ]
  51947. ))
  51948. characterMakers.push(() => makeCharacter(
  51949. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51950. {
  51951. front: {
  51952. height: math.unit(6, "feet"),
  51953. name: "Front",
  51954. image: {
  51955. source: "./media/characters/nylla/front.svg",
  51956. extra: 1868/1699,
  51957. bottom: 97/1965
  51958. }
  51959. },
  51960. back: {
  51961. height: math.unit(6, "feet"),
  51962. name: "Back",
  51963. image: {
  51964. source: "./media/characters/nylla/back.svg",
  51965. extra: 1889/1712,
  51966. bottom: 93/1982
  51967. }
  51968. },
  51969. frontNsfw: {
  51970. height: math.unit(6, "feet"),
  51971. name: "Front (NSFW)",
  51972. image: {
  51973. source: "./media/characters/nylla/front-nsfw.svg",
  51974. extra: 1868/1699,
  51975. bottom: 97/1965
  51976. },
  51977. extraAttributes: {
  51978. "dickLength": {
  51979. name: "Dick Length",
  51980. power: 1,
  51981. type: "length",
  51982. base: math.unit(1.4, "feet")
  51983. },
  51984. "cumVolume": {
  51985. name: "Cum Volume",
  51986. power: 3,
  51987. type: "volume",
  51988. base: math.unit(100, "mL")
  51989. },
  51990. }
  51991. },
  51992. backNsfw: {
  51993. height: math.unit(6, "feet"),
  51994. name: "Back (NSFW)",
  51995. image: {
  51996. source: "./media/characters/nylla/back-nsfw.svg",
  51997. extra: 1889/1712,
  51998. bottom: 93/1982
  51999. }
  52000. },
  52001. maw: {
  52002. height: math.unit(2.10, "feet"),
  52003. name: "Maw",
  52004. image: {
  52005. source: "./media/characters/nylla/maw.svg"
  52006. }
  52007. },
  52008. paws: {
  52009. height: math.unit(2.06, "feet"),
  52010. name: "Paws",
  52011. image: {
  52012. source: "./media/characters/nylla/paws.svg"
  52013. }
  52014. },
  52015. muzzle: {
  52016. height: math.unit(0.61, "feet"),
  52017. name: "Muzzle",
  52018. image: {
  52019. source: "./media/characters/nylla/muzzle.svg"
  52020. }
  52021. },
  52022. sheath: {
  52023. height: math.unit(1.305, "feet"),
  52024. name: "Sheath",
  52025. image: {
  52026. source: "./media/characters/nylla/sheath.svg"
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Micro",
  52033. height: math.unit(7.5, "inches")
  52034. },
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(7, "feet"),
  52038. default: true
  52039. },
  52040. {
  52041. name: "Macro",
  52042. height: math.unit(60, "feet")
  52043. },
  52044. {
  52045. name: "Mega",
  52046. height: math.unit(200, "feet")
  52047. },
  52048. ]
  52049. ))
  52050. characterMakers.push(() => makeCharacter(
  52051. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52052. {
  52053. front: {
  52054. height: math.unit(10, "feet"),
  52055. weight: math.unit(2300, "lb"),
  52056. name: "Front",
  52057. image: {
  52058. source: "./media/characters/hunt3r/front.svg",
  52059. extra: 1909/1742,
  52060. bottom: 46/1955
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(10, "feet"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52074. {
  52075. dressed: {
  52076. height: math.unit(11, "feet"),
  52077. weight: math.unit(18500, "lb"),
  52078. preyCapacity: math.unit(9, "people"),
  52079. name: "Dressed",
  52080. image: {
  52081. source: "./media/characters/cylphis/dressed.svg",
  52082. extra: 1028/1003,
  52083. bottom: 75/1103
  52084. },
  52085. },
  52086. undressed: {
  52087. height: math.unit(11, "feet"),
  52088. weight: math.unit(18500, "lb"),
  52089. preyCapacity: math.unit(9, "people"),
  52090. name: "Undressed",
  52091. image: {
  52092. source: "./media/characters/cylphis/undressed.svg",
  52093. extra: 1028/1003,
  52094. bottom: 75/1103
  52095. }
  52096. },
  52097. full: {
  52098. height: math.unit(11, "feet"),
  52099. weight: math.unit(18500 + 150*9, "lb"),
  52100. preyCapacity: math.unit(9, "people"),
  52101. name: "Full",
  52102. image: {
  52103. source: "./media/characters/cylphis/full.svg",
  52104. extra: 1028/1003,
  52105. bottom: 75/1103
  52106. }
  52107. },
  52108. },
  52109. [
  52110. {
  52111. name: "Small",
  52112. height: math.unit(8, "feet")
  52113. },
  52114. {
  52115. name: "Normal",
  52116. height: math.unit(11, "feet"),
  52117. default: true
  52118. },
  52119. ]
  52120. ))
  52121. characterMakers.push(() => makeCharacter(
  52122. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52123. {
  52124. front: {
  52125. height: math.unit(2 + 7/12, "feet"),
  52126. name: "Front",
  52127. image: {
  52128. source: "./media/characters/orishan/front.svg",
  52129. extra: 1058/1023,
  52130. bottom: 23/1081
  52131. }
  52132. },
  52133. back: {
  52134. height: math.unit(2 + 7/12, "feet"),
  52135. name: "Back",
  52136. image: {
  52137. source: "./media/characters/orishan/back.svg",
  52138. extra: 1058/1023,
  52139. bottom: 23/1081
  52140. }
  52141. },
  52142. },
  52143. [
  52144. {
  52145. name: "Micro",
  52146. height: math.unit(2, "cm")
  52147. },
  52148. {
  52149. name: "Normal",
  52150. height: math.unit(2 + 7/12, "feet"),
  52151. default: true
  52152. },
  52153. ]
  52154. ))
  52155. characterMakers.push(() => makeCharacter(
  52156. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52157. {
  52158. front: {
  52159. height: math.unit(3, "meters"),
  52160. weight: math.unit(508, "kg"),
  52161. name: "Front",
  52162. image: {
  52163. source: "./media/characters/seranis/front.svg",
  52164. extra: 1478/1454,
  52165. bottom: 41/1519
  52166. }
  52167. },
  52168. },
  52169. [
  52170. {
  52171. name: "Normal",
  52172. height: math.unit(3, "meters"),
  52173. default: true
  52174. },
  52175. {
  52176. name: "Macro",
  52177. height: math.unit(108, "meters")
  52178. },
  52179. {
  52180. name: "Megamacro",
  52181. height: math.unit(1250, "meters")
  52182. },
  52183. ]
  52184. ))
  52185. characterMakers.push(() => makeCharacter(
  52186. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52187. {
  52188. undressed: {
  52189. height: math.unit(5 + 3/12, "feet"),
  52190. name: "Undressed",
  52191. image: {
  52192. source: "./media/characters/ankou/undressed.svg",
  52193. extra: 1301/1213,
  52194. bottom: 87/1388
  52195. }
  52196. },
  52197. dressed: {
  52198. height: math.unit(5 + 3/12, "feet"),
  52199. name: "Dressed",
  52200. image: {
  52201. source: "./media/characters/ankou/dressed.svg",
  52202. extra: 1301/1213,
  52203. bottom: 87/1388
  52204. }
  52205. },
  52206. head: {
  52207. height: math.unit(1.61, "feet"),
  52208. name: "Head",
  52209. image: {
  52210. source: "./media/characters/ankou/head.svg"
  52211. }
  52212. },
  52213. },
  52214. [
  52215. {
  52216. name: "Normal",
  52217. height: math.unit(5 + 3/12, "feet"),
  52218. default: true
  52219. },
  52220. ]
  52221. ))
  52222. characterMakers.push(() => makeCharacter(
  52223. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52224. {
  52225. side: {
  52226. height: math.unit(6 + 3/12, "feet"),
  52227. weight: math.unit(200, "kg"),
  52228. name: "Side",
  52229. image: {
  52230. source: "./media/characters/juniper-skunktaur/side.svg",
  52231. extra: 1574/1229,
  52232. bottom: 38/1612
  52233. }
  52234. },
  52235. front: {
  52236. height: math.unit(6 + 3/12, "feet"),
  52237. weight: math.unit(200, "kg"),
  52238. name: "Front",
  52239. image: {
  52240. source: "./media/characters/juniper-skunktaur/front.svg",
  52241. extra: 1337/1278,
  52242. bottom: 22/1359
  52243. }
  52244. },
  52245. back: {
  52246. height: math.unit(6 + 3/12, "feet"),
  52247. weight: math.unit(200, "kg"),
  52248. name: "Back",
  52249. image: {
  52250. source: "./media/characters/juniper-skunktaur/back.svg",
  52251. extra: 1618/1273,
  52252. bottom: 13/1631
  52253. }
  52254. },
  52255. top: {
  52256. height: math.unit(2.62, "feet"),
  52257. weight: math.unit(200, "kg"),
  52258. name: "Top",
  52259. image: {
  52260. source: "./media/characters/juniper-skunktaur/top.svg"
  52261. }
  52262. },
  52263. },
  52264. [
  52265. {
  52266. name: "Normal",
  52267. height: math.unit(6 + 3/12, "feet"),
  52268. default: true
  52269. },
  52270. ]
  52271. ))
  52272. characterMakers.push(() => makeCharacter(
  52273. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52274. {
  52275. front: {
  52276. height: math.unit(20.5, "feet"),
  52277. name: "Front",
  52278. image: {
  52279. source: "./media/characters/rei/front.svg",
  52280. extra: 1349/1195,
  52281. bottom: 31/1380
  52282. }
  52283. },
  52284. back: {
  52285. height: math.unit(20.5, "feet"),
  52286. name: "Back",
  52287. image: {
  52288. source: "./media/characters/rei/back.svg",
  52289. extra: 1358/1204,
  52290. bottom: 22/1380
  52291. }
  52292. },
  52293. pawsDigi: {
  52294. height: math.unit(3.45, "feet"),
  52295. name: "Paws (Digi)",
  52296. image: {
  52297. source: "./media/characters/rei/paws-digi.svg"
  52298. }
  52299. },
  52300. pawsPlanti: {
  52301. height: math.unit(3.45, "feet"),
  52302. name: "Paws (Planti)",
  52303. image: {
  52304. source: "./media/characters/rei/paws-planti.svg"
  52305. }
  52306. },
  52307. },
  52308. [
  52309. {
  52310. name: "Normal",
  52311. height: math.unit(20.5, "feet"),
  52312. default: true
  52313. },
  52314. ]
  52315. ))
  52316. characterMakers.push(() => makeCharacter(
  52317. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52318. {
  52319. front: {
  52320. height: math.unit(5 + 11/12, "feet"),
  52321. name: "Front",
  52322. image: {
  52323. source: "./media/characters/carina/front.svg",
  52324. extra: 1720/1449,
  52325. bottom: 14/1734
  52326. }
  52327. },
  52328. back: {
  52329. height: math.unit(5 + 11/12, "feet"),
  52330. name: "Back",
  52331. image: {
  52332. source: "./media/characters/carina/back.svg",
  52333. extra: 1493/1445,
  52334. bottom: 17/1510
  52335. }
  52336. },
  52337. paw: {
  52338. height: math.unit(0.92, "feet"),
  52339. name: "Paw",
  52340. image: {
  52341. source: "./media/characters/carina/paw.svg"
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(5 + 11/12, "feet"),
  52349. default: true
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52355. {
  52356. front: {
  52357. height: math.unit(4.88, "meters"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/maya/front.svg",
  52361. extra: 1222/1145,
  52362. bottom: 57/1279
  52363. }
  52364. },
  52365. },
  52366. [
  52367. {
  52368. name: "Normal",
  52369. height: math.unit(4.88, "meters"),
  52370. default: true
  52371. },
  52372. {
  52373. name: "Macro",
  52374. height: math.unit(38.1, "meters")
  52375. },
  52376. {
  52377. name: "Macro+",
  52378. height: math.unit(152.4, "meters")
  52379. },
  52380. {
  52381. name: "Macro++",
  52382. height: math.unit(16.09, "km")
  52383. },
  52384. {
  52385. name: "Mega-macro",
  52386. height: math.unit(700, "megameters")
  52387. },
  52388. ]
  52389. ))
  52390. characterMakers.push(() => makeCharacter(
  52391. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52392. {
  52393. front: {
  52394. height: math.unit(6 + 2/12, "feet"),
  52395. weight: math.unit(500, "lb"),
  52396. preyCapacity: math.unit(4, "people"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/yepir/front.svg"
  52400. }
  52401. },
  52402. side: {
  52403. height: math.unit(6 + 2/12, "feet"),
  52404. weight: math.unit(500, "lb"),
  52405. preyCapacity: math.unit(4, "people"),
  52406. name: "Side",
  52407. image: {
  52408. source: "./media/characters/yepir/side.svg"
  52409. }
  52410. },
  52411. paw: {
  52412. height: math.unit(1.05, "feet"),
  52413. name: "Paw",
  52414. image: {
  52415. source: "./media/characters/yepir/paw.svg"
  52416. }
  52417. },
  52418. },
  52419. [
  52420. {
  52421. name: "Normal",
  52422. height: math.unit(6 + 2/12, "feet"),
  52423. default: true
  52424. },
  52425. ]
  52426. ))
  52427. characterMakers.push(() => makeCharacter(
  52428. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52429. {
  52430. front: {
  52431. height: math.unit(5 + 4/12, "feet"),
  52432. name: "Front",
  52433. image: {
  52434. source: "./media/characters/russec/front.svg",
  52435. extra: 1926/1626,
  52436. bottom: 72/1998
  52437. }
  52438. },
  52439. back: {
  52440. height: math.unit(5 + 4/12, "feet"),
  52441. name: "Back",
  52442. image: {
  52443. source: "./media/characters/russec/back.svg",
  52444. extra: 1910/1591,
  52445. bottom: 48/1958
  52446. }
  52447. },
  52448. },
  52449. [
  52450. {
  52451. name: "Small",
  52452. height: math.unit(5 + 4/12, "feet")
  52453. },
  52454. {
  52455. name: "Normal",
  52456. height: math.unit(72, "feet"),
  52457. default: true
  52458. },
  52459. ]
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52463. {
  52464. side: {
  52465. height: math.unit(12, "feet"),
  52466. name: "Side",
  52467. image: {
  52468. source: "./media/characters/cianus/side.svg",
  52469. extra: 808/526,
  52470. bottom: 61/869
  52471. }
  52472. },
  52473. },
  52474. [
  52475. {
  52476. name: "Normal",
  52477. height: math.unit(12, "feet"),
  52478. default: true
  52479. },
  52480. ]
  52481. ))
  52482. characterMakers.push(() => makeCharacter(
  52483. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52484. {
  52485. front: {
  52486. height: math.unit(9 + 6/12, "feet"),
  52487. weight: math.unit(300, "lb"),
  52488. name: "Front",
  52489. image: {
  52490. source: "./media/characters/ahab/front.svg",
  52491. extra: 1897/1868,
  52492. bottom: 121/2018
  52493. }
  52494. },
  52495. frontNsfw: {
  52496. height: math.unit(9 + 6/12, "feet"),
  52497. weight: math.unit(300, "lb"),
  52498. name: "Front-nsfw",
  52499. image: {
  52500. source: "./media/characters/ahab/front-nsfw.svg",
  52501. extra: 1897/1868,
  52502. bottom: 121/2018
  52503. }
  52504. },
  52505. },
  52506. [
  52507. {
  52508. name: "Normal",
  52509. height: math.unit(9 + 6/12, "feet")
  52510. },
  52511. {
  52512. name: "Macro",
  52513. height: math.unit(657, "feet"),
  52514. default: true
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52520. {
  52521. front: {
  52522. height: math.unit(2.69, "meters"),
  52523. weight: math.unit(132, "kg"),
  52524. name: "Front",
  52525. image: {
  52526. source: "./media/characters/aarkus/front.svg",
  52527. extra: 1400/1231,
  52528. bottom: 34/1434
  52529. }
  52530. },
  52531. back: {
  52532. height: math.unit(2.69, "meters"),
  52533. weight: math.unit(132, "kg"),
  52534. name: "Back",
  52535. image: {
  52536. source: "./media/characters/aarkus/back.svg",
  52537. extra: 1381/1218,
  52538. bottom: 30/1411
  52539. }
  52540. },
  52541. frontNsfw: {
  52542. height: math.unit(2.69, "meters"),
  52543. weight: math.unit(132, "kg"),
  52544. name: "Front (NSFW)",
  52545. image: {
  52546. source: "./media/characters/aarkus/front-nsfw.svg",
  52547. extra: 1400/1231,
  52548. bottom: 34/1434
  52549. }
  52550. },
  52551. foot: {
  52552. height: math.unit(1.45, "feet"),
  52553. name: "Foot",
  52554. image: {
  52555. source: "./media/characters/aarkus/foot.svg"
  52556. }
  52557. },
  52558. head: {
  52559. height: math.unit(2.85, "feet"),
  52560. name: "Head",
  52561. image: {
  52562. source: "./media/characters/aarkus/head.svg"
  52563. }
  52564. },
  52565. headAlt: {
  52566. height: math.unit(3.07, "feet"),
  52567. name: "Head (Alt)",
  52568. image: {
  52569. source: "./media/characters/aarkus/head-alt.svg"
  52570. }
  52571. },
  52572. mouth: {
  52573. height: math.unit(1.25, "feet"),
  52574. name: "Mouth",
  52575. image: {
  52576. source: "./media/characters/aarkus/mouth.svg"
  52577. }
  52578. },
  52579. dick: {
  52580. height: math.unit(1.77, "feet"),
  52581. name: "Dick",
  52582. image: {
  52583. source: "./media/characters/aarkus/dick.svg"
  52584. }
  52585. },
  52586. },
  52587. [
  52588. {
  52589. name: "Normal",
  52590. height: math.unit(2.69, "meters"),
  52591. default: true
  52592. },
  52593. {
  52594. name: "Macro",
  52595. height: math.unit(269, "meters")
  52596. },
  52597. {
  52598. name: "Macro+",
  52599. height: math.unit(672.5, "meters")
  52600. },
  52601. {
  52602. name: "Megamacro",
  52603. height: math.unit(2.017, "km")
  52604. },
  52605. ]
  52606. ))
  52607. characterMakers.push(() => makeCharacter(
  52608. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52609. {
  52610. front: {
  52611. height: math.unit(23.47, "cm"),
  52612. weight: math.unit(600, "grams"),
  52613. name: "Front",
  52614. image: {
  52615. source: "./media/characters/diode/front.svg",
  52616. extra: 1778/1396,
  52617. bottom: 95/1873
  52618. }
  52619. },
  52620. side: {
  52621. height: math.unit(23.47, "cm"),
  52622. weight: math.unit(600, "grams"),
  52623. name: "Side",
  52624. image: {
  52625. source: "./media/characters/diode/side.svg",
  52626. extra: 1831/1404,
  52627. bottom: 86/1917
  52628. }
  52629. },
  52630. wings: {
  52631. height: math.unit(0.683, "feet"),
  52632. name: "Wings",
  52633. image: {
  52634. source: "./media/characters/diode/wings.svg"
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Normal",
  52641. height: math.unit(23.47, "cm"),
  52642. default: true
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(6 + 3/12, "feet"),
  52651. weight: math.unit(250, "lb"),
  52652. name: "Front",
  52653. image: {
  52654. source: "./media/characters/reika/front.svg",
  52655. extra: 1120/1078,
  52656. bottom: 86/1206
  52657. }
  52658. },
  52659. },
  52660. [
  52661. {
  52662. name: "Normal",
  52663. height: math.unit(6 + 3/12, "feet"),
  52664. default: true
  52665. },
  52666. ]
  52667. ))
  52668. characterMakers.push(() => makeCharacter(
  52669. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52670. {
  52671. front: {
  52672. height: math.unit(16 + 8/12, "feet"),
  52673. weight: math.unit(9000, "lb"),
  52674. name: "Front",
  52675. image: {
  52676. source: "./media/characters/lokuto-takama/front.svg",
  52677. extra: 1774/1632,
  52678. bottom: 147/1921
  52679. },
  52680. extraAttributes: {
  52681. "bustWidth": {
  52682. name: "Bust Width",
  52683. power: 1,
  52684. type: "length",
  52685. base: math.unit(2.4, "meters")
  52686. },
  52687. "breastWeight": {
  52688. name: "Breast Weight",
  52689. power: 3,
  52690. type: "mass",
  52691. base: math.unit(1000, "kg")
  52692. },
  52693. }
  52694. },
  52695. },
  52696. [
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(16 + 8/12, "feet"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52706. {
  52707. front: {
  52708. height: math.unit(10, "cm"),
  52709. weight: math.unit(850, "grams"),
  52710. name: "Front",
  52711. image: {
  52712. source: "./media/characters/owak-bone/front.svg",
  52713. extra: 1965/1801,
  52714. bottom: 31/1996
  52715. }
  52716. },
  52717. },
  52718. [
  52719. {
  52720. name: "Normal",
  52721. height: math.unit(10, "cm"),
  52722. default: true
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52728. {
  52729. front: {
  52730. height: math.unit(2 + 6/12, "feet"),
  52731. weight: math.unit(9, "lb"),
  52732. name: "Front",
  52733. image: {
  52734. source: "./media/characters/muffin/front.svg",
  52735. extra: 1220/1195,
  52736. bottom: 84/1304
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(2 + 6/12, "feet"),
  52744. default: true
  52745. },
  52746. ]
  52747. ))
  52748. characterMakers.push(() => makeCharacter(
  52749. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52750. {
  52751. front: {
  52752. height: math.unit(7, "feet"),
  52753. name: "Front",
  52754. image: {
  52755. source: "./media/characters/chimera/front.svg",
  52756. extra: 1752/1614,
  52757. bottom: 68/1820
  52758. }
  52759. },
  52760. },
  52761. [
  52762. {
  52763. name: "Normal",
  52764. height: math.unit(7, "feet")
  52765. },
  52766. {
  52767. name: "Gigamacro",
  52768. height: math.unit(2.9, "gigameters"),
  52769. default: true
  52770. },
  52771. {
  52772. name: "Universal",
  52773. height: math.unit(1.56e26, "yottameters")
  52774. },
  52775. ]
  52776. ))
  52777. characterMakers.push(() => makeCharacter(
  52778. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52779. {
  52780. front: {
  52781. height: math.unit(3, "feet"),
  52782. weight: math.unit(20, "lb"),
  52783. name: "Front",
  52784. image: {
  52785. source: "./media/characters/kit-fennec-fox/front.svg",
  52786. extra: 1027/932,
  52787. bottom: 16/1043
  52788. }
  52789. },
  52790. back: {
  52791. height: math.unit(3, "feet"),
  52792. weight: math.unit(20, "lb"),
  52793. name: "Back",
  52794. image: {
  52795. source: "./media/characters/kit-fennec-fox/back.svg",
  52796. extra: 1027/932,
  52797. bottom: 16/1043
  52798. }
  52799. },
  52800. },
  52801. [
  52802. {
  52803. name: "Normal",
  52804. height: math.unit(3, "feet"),
  52805. default: true
  52806. },
  52807. ]
  52808. ))
  52809. characterMakers.push(() => makeCharacter(
  52810. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52811. {
  52812. front: {
  52813. height: math.unit(167, "cm"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/blue-otter/front.svg",
  52817. extra: 1951/1920,
  52818. bottom: 31/1982
  52819. }
  52820. },
  52821. },
  52822. [
  52823. {
  52824. name: "Otter-Sized",
  52825. height: math.unit(100, "cm")
  52826. },
  52827. {
  52828. name: "Normal",
  52829. height: math.unit(167, "cm"),
  52830. default: true
  52831. },
  52832. ]
  52833. ))
  52834. characterMakers.push(() => makeCharacter(
  52835. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52836. {
  52837. front: {
  52838. height: math.unit(4 + 4/12, "feet"),
  52839. name: "Front",
  52840. image: {
  52841. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52842. extra: 1072/1067,
  52843. bottom: 117/1189
  52844. }
  52845. },
  52846. back: {
  52847. height: math.unit(4 + 4/12, "feet"),
  52848. name: "Back",
  52849. image: {
  52850. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52851. extra: 1135/1129,
  52852. bottom: 57/1192
  52853. }
  52854. },
  52855. head: {
  52856. height: math.unit(1.77, "feet"),
  52857. name: "Head",
  52858. image: {
  52859. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52860. }
  52861. },
  52862. },
  52863. [
  52864. {
  52865. name: "Normal",
  52866. height: math.unit(4 + 4/12, "feet"),
  52867. default: true
  52868. },
  52869. ]
  52870. ))
  52871. characterMakers.push(() => makeCharacter(
  52872. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52873. {
  52874. front: {
  52875. height: math.unit(2, "inches"),
  52876. name: "Front",
  52877. image: {
  52878. source: "./media/characters/carley-hartford/front.svg",
  52879. extra: 1035/988,
  52880. bottom: 23/1058
  52881. }
  52882. },
  52883. back: {
  52884. height: math.unit(2, "inches"),
  52885. name: "Back",
  52886. image: {
  52887. source: "./media/characters/carley-hartford/back.svg",
  52888. extra: 1035/988,
  52889. bottom: 23/1058
  52890. }
  52891. },
  52892. dressed: {
  52893. height: math.unit(2, "inches"),
  52894. name: "Dressed",
  52895. image: {
  52896. source: "./media/characters/carley-hartford/dressed.svg",
  52897. extra: 651/620,
  52898. bottom: 0/651
  52899. }
  52900. },
  52901. },
  52902. [
  52903. {
  52904. name: "Micro",
  52905. height: math.unit(2, "inches"),
  52906. default: true
  52907. },
  52908. {
  52909. name: "Macro",
  52910. height: math.unit(6 + 3/12, "feet")
  52911. },
  52912. ]
  52913. ))
  52914. characterMakers.push(() => makeCharacter(
  52915. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52916. {
  52917. front: {
  52918. height: math.unit(2 + 3/12, "feet"),
  52919. weight: math.unit(15 + 7/16, "lb"),
  52920. name: "Front",
  52921. image: {
  52922. source: "./media/characters/duke/front.svg",
  52923. extra: 910/815,
  52924. bottom: 30/940
  52925. }
  52926. },
  52927. },
  52928. [
  52929. {
  52930. name: "Normal",
  52931. height: math.unit(2 + 3/12, "feet"),
  52932. default: true
  52933. },
  52934. ]
  52935. ))
  52936. characterMakers.push(() => makeCharacter(
  52937. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52938. {
  52939. front: {
  52940. height: math.unit(5 + 4/12, "feet"),
  52941. weight: math.unit(156, "lb"),
  52942. name: "Front",
  52943. image: {
  52944. source: "./media/characters/dein/front.svg",
  52945. extra: 855/815,
  52946. bottom: 48/903
  52947. }
  52948. },
  52949. side: {
  52950. height: math.unit(5 + 4/12, "feet"),
  52951. weight: math.unit(156, "lb"),
  52952. name: "side",
  52953. image: {
  52954. source: "./media/characters/dein/side.svg",
  52955. extra: 846/803,
  52956. bottom: 25/871
  52957. }
  52958. },
  52959. maw: {
  52960. height: math.unit(1.45, "feet"),
  52961. name: "Maw",
  52962. image: {
  52963. source: "./media/characters/dein/maw.svg"
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Ferret Sized",
  52970. height: math.unit(2 + 5/12, "feet")
  52971. },
  52972. {
  52973. name: "Normal",
  52974. height: math.unit(5 + 4/12, "feet"),
  52975. default: true
  52976. },
  52977. ]
  52978. ))
  52979. characterMakers.push(() => makeCharacter(
  52980. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52981. {
  52982. front: {
  52983. height: math.unit(84 + 8/12, "feet"),
  52984. weight: math.unit(942180, "lb"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/daurine-arima/front.svg",
  52988. extra: 1989/1782,
  52989. bottom: 37/2026
  52990. }
  52991. },
  52992. side: {
  52993. height: math.unit(84 + 8/12, "feet"),
  52994. weight: math.unit(942180, "lb"),
  52995. name: "Side",
  52996. image: {
  52997. source: "./media/characters/daurine-arima/side.svg",
  52998. extra: 1997/1790,
  52999. bottom: 21/2018
  53000. }
  53001. },
  53002. back: {
  53003. height: math.unit(84 + 8/12, "feet"),
  53004. weight: math.unit(942180, "lb"),
  53005. name: "Back",
  53006. image: {
  53007. source: "./media/characters/daurine-arima/back.svg",
  53008. extra: 1992/1800,
  53009. bottom: 12/2004
  53010. }
  53011. },
  53012. head: {
  53013. height: math.unit(15.5, "feet"),
  53014. name: "Head",
  53015. image: {
  53016. source: "./media/characters/daurine-arima/head.svg"
  53017. }
  53018. },
  53019. headAlt: {
  53020. height: math.unit(19.19, "feet"),
  53021. name: "Head (Alt)",
  53022. image: {
  53023. source: "./media/characters/daurine-arima/head-alt.svg"
  53024. }
  53025. },
  53026. },
  53027. [
  53028. {
  53029. name: "Minimum height",
  53030. height: math.unit(8 + 10/12, "feet")
  53031. },
  53032. {
  53033. name: "Comfort height",
  53034. height: math.unit(19 + 6 /12, "feet")
  53035. },
  53036. {
  53037. name: "\"Normal\" height",
  53038. height: math.unit(28 + 10/12, "feet")
  53039. },
  53040. {
  53041. name: "Base height",
  53042. height: math.unit(84 + 8/12, "feet"),
  53043. default: true
  53044. },
  53045. {
  53046. name: "Mini-macro",
  53047. height: math.unit(2360, "feet")
  53048. },
  53049. {
  53050. name: "Macro",
  53051. height: math.unit(10, "miles")
  53052. },
  53053. {
  53054. name: "Goddess",
  53055. height: math.unit(9.99e40, "yottameters")
  53056. },
  53057. ]
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53061. {
  53062. front: {
  53063. height: math.unit(2.3, "meters"),
  53064. name: "Front",
  53065. image: {
  53066. source: "./media/characters/cilenomon/front.svg",
  53067. extra: 1963/1778,
  53068. bottom: 54/2017
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(2.3, "meters"),
  53076. default: true
  53077. },
  53078. {
  53079. name: "Big",
  53080. height: math.unit(5, "meters")
  53081. },
  53082. {
  53083. name: "Macro",
  53084. height: math.unit(30, "meters")
  53085. },
  53086. {
  53087. name: "True",
  53088. height: math.unit(1, "universe")
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(5, "feet"),
  53097. name: "Front",
  53098. image: {
  53099. source: "./media/characters/sen-mink/front.svg",
  53100. extra: 1727/1675,
  53101. bottom: 35/1762
  53102. }
  53103. },
  53104. },
  53105. [
  53106. {
  53107. name: "Normal",
  53108. height: math.unit(5, "feet"),
  53109. default: true
  53110. },
  53111. ]
  53112. ))
  53113. characterMakers.push(() => makeCharacter(
  53114. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53115. {
  53116. front: {
  53117. height: math.unit(5.42999, "feet"),
  53118. weight: math.unit(100, "lb"),
  53119. name: "Front",
  53120. image: {
  53121. source: "./media/characters/ophois/front.svg",
  53122. extra: 1429/1286,
  53123. bottom: 60/1489
  53124. }
  53125. },
  53126. },
  53127. [
  53128. {
  53129. name: "Normal",
  53130. height: math.unit(5.42999, "feet"),
  53131. default: true
  53132. },
  53133. ]
  53134. ))
  53135. characterMakers.push(() => makeCharacter(
  53136. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53137. {
  53138. front: {
  53139. height: math.unit(2, "meters"),
  53140. name: "Front",
  53141. image: {
  53142. source: "./media/characters/riley/front.svg",
  53143. extra: 1779/1754,
  53144. bottom: 139/1918
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(2, "meters"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53158. {
  53159. front: {
  53160. height: math.unit(6 + 2/12, "feet"),
  53161. weight: math.unit(195, "lb"),
  53162. preyCapacity: math.unit(6, "people"),
  53163. name: "Front",
  53164. image: {
  53165. source: "./media/characters/shuken-flash/front.svg",
  53166. extra: 1905/1739,
  53167. bottom: 65/1970
  53168. }
  53169. },
  53170. back: {
  53171. height: math.unit(6 + 2/12, "feet"),
  53172. weight: math.unit(195, "lb"),
  53173. preyCapacity: math.unit(6, "people"),
  53174. name: "Back",
  53175. image: {
  53176. source: "./media/characters/shuken-flash/back.svg",
  53177. extra: 1912/1751,
  53178. bottom: 13/1925
  53179. }
  53180. },
  53181. },
  53182. [
  53183. {
  53184. name: "Normal",
  53185. height: math.unit(6 + 2/12, "feet"),
  53186. default: true
  53187. },
  53188. ]
  53189. ))
  53190. characterMakers.push(() => makeCharacter(
  53191. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53192. {
  53193. front: {
  53194. height: math.unit(5 + 9/12, "feet"),
  53195. weight: math.unit(150, "lb"),
  53196. name: "Front",
  53197. image: {
  53198. source: "./media/characters/plat/front.svg",
  53199. extra: 1816/1703,
  53200. bottom: 43/1859
  53201. }
  53202. },
  53203. side: {
  53204. height: math.unit(5 + 9/12, "feet"),
  53205. weight: math.unit(300, "lb"),
  53206. name: "Side",
  53207. image: {
  53208. source: "./media/characters/plat/side.svg",
  53209. extra: 1824/1699,
  53210. bottom: 18/1842
  53211. }
  53212. },
  53213. },
  53214. [
  53215. {
  53216. name: "Normal",
  53217. height: math.unit(5 + 9/12, "feet"),
  53218. default: true
  53219. },
  53220. ]
  53221. ))
  53222. characterMakers.push(() => makeCharacter(
  53223. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53224. {
  53225. front: {
  53226. height: math.unit(9, "feet"),
  53227. weight: math.unit(1800, "lb"),
  53228. name: "Front",
  53229. image: {
  53230. source: "./media/characters/elaine/front.svg",
  53231. extra: 1833/1354,
  53232. bottom: 25/1858
  53233. }
  53234. },
  53235. back: {
  53236. height: math.unit(8.8, "feet"),
  53237. weight: math.unit(1800, "lb"),
  53238. name: "Back",
  53239. image: {
  53240. source: "./media/characters/elaine/back.svg",
  53241. extra: 1641/1233,
  53242. bottom: 53/1694
  53243. }
  53244. },
  53245. },
  53246. [
  53247. {
  53248. name: "Normal",
  53249. height: math.unit(9, "feet"),
  53250. default: true
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(17 + 9/12, "feet"),
  53259. weight: math.unit(8000, "lb"),
  53260. name: "Front",
  53261. image: {
  53262. source: "./media/characters/vera-raven/front.svg",
  53263. extra: 1457/1412,
  53264. bottom: 121/1578
  53265. }
  53266. },
  53267. side: {
  53268. height: math.unit(17 + 9/12, "feet"),
  53269. weight: math.unit(8000, "lb"),
  53270. name: "Side",
  53271. image: {
  53272. source: "./media/characters/vera-raven/side.svg",
  53273. extra: 1510/1464,
  53274. bottom: 54/1564
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Normal",
  53281. height: math.unit(17 + 9/12, "feet"),
  53282. default: true
  53283. },
  53284. ]
  53285. ))
  53286. characterMakers.push(() => makeCharacter(
  53287. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53288. {
  53289. dressed: {
  53290. height: math.unit(6 + 9/12, "feet"),
  53291. name: "Dressed",
  53292. image: {
  53293. source: "./media/characters/nakisha/dressed.svg",
  53294. extra: 1909/1757,
  53295. bottom: 48/1957
  53296. }
  53297. },
  53298. nude: {
  53299. height: math.unit(6 + 9/12, "feet"),
  53300. name: "Nude",
  53301. image: {
  53302. source: "./media/characters/nakisha/nude.svg",
  53303. extra: 1917/1765,
  53304. bottom: 34/1951
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Normal",
  53311. height: math.unit(6 + 9/12, "feet"),
  53312. default: true
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53318. {
  53319. front: {
  53320. height: math.unit(87, "meters"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/serafin/front.svg",
  53324. extra: 1919/1776,
  53325. bottom: 65/1984
  53326. }
  53327. },
  53328. },
  53329. [
  53330. {
  53331. name: "Normal",
  53332. height: math.unit(87, "meters"),
  53333. default: true
  53334. },
  53335. ]
  53336. ))
  53337. characterMakers.push(() => makeCharacter(
  53338. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53339. {
  53340. front: {
  53341. height: math.unit(6, "feet"),
  53342. weight: math.unit(200, "lb"),
  53343. name: "Front",
  53344. image: {
  53345. source: "./media/characters/poptart/front.svg",
  53346. extra: 615/583,
  53347. bottom: 23/638
  53348. }
  53349. },
  53350. back: {
  53351. height: math.unit(6, "feet"),
  53352. weight: math.unit(200, "lb"),
  53353. name: "Back",
  53354. image: {
  53355. source: "./media/characters/poptart/back.svg",
  53356. extra: 617/584,
  53357. bottom: 22/639
  53358. }
  53359. },
  53360. frontNsfw: {
  53361. height: math.unit(6, "feet"),
  53362. weight: math.unit(200, "lb"),
  53363. name: "Front (NSFW)",
  53364. image: {
  53365. source: "./media/characters/poptart/front-nsfw.svg",
  53366. extra: 615/583,
  53367. bottom: 23/638
  53368. }
  53369. },
  53370. backNsfw: {
  53371. height: math.unit(6, "feet"),
  53372. weight: math.unit(200, "lb"),
  53373. name: "Back (NSFW)",
  53374. image: {
  53375. source: "./media/characters/poptart/back-nsfw.svg",
  53376. extra: 617/584,
  53377. bottom: 22/639
  53378. }
  53379. },
  53380. hand: {
  53381. height: math.unit(1.14, "feet"),
  53382. name: "Hand",
  53383. image: {
  53384. source: "./media/characters/poptart/hand.svg"
  53385. }
  53386. },
  53387. foot: {
  53388. height: math.unit(1.5, "feet"),
  53389. name: "Foot",
  53390. image: {
  53391. source: "./media/characters/poptart/foot.svg"
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(6, "feet"),
  53399. default: true
  53400. },
  53401. {
  53402. name: "Grande",
  53403. height: math.unit(350, "feet")
  53404. },
  53405. {
  53406. name: "Massif",
  53407. height: math.unit(967, "feet")
  53408. },
  53409. ]
  53410. ))
  53411. characterMakers.push(() => makeCharacter(
  53412. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53413. {
  53414. hyenaSide: {
  53415. height: math.unit(120, "cm"),
  53416. weight: math.unit(120, "lb"),
  53417. name: "Side",
  53418. image: {
  53419. source: "./media/characters/trance/hyena-side.svg",
  53420. extra: 998/904,
  53421. bottom: 76/1074
  53422. }
  53423. },
  53424. },
  53425. [
  53426. {
  53427. name: "Normal",
  53428. height: math.unit(120, "cm"),
  53429. default: true
  53430. },
  53431. {
  53432. name: "Dire",
  53433. height: math.unit(230, "cm")
  53434. },
  53435. {
  53436. name: "Macro",
  53437. height: math.unit(37, "feet")
  53438. },
  53439. ]
  53440. ))
  53441. characterMakers.push(() => makeCharacter(
  53442. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53443. {
  53444. front: {
  53445. height: math.unit(6 + 3/12, "feet"),
  53446. name: "Front",
  53447. image: {
  53448. source: "./media/characters/michael-berretta/front.svg",
  53449. extra: 515/494,
  53450. bottom: 20/535
  53451. }
  53452. },
  53453. back: {
  53454. height: math.unit(6 + 3/12, "feet"),
  53455. name: "Back",
  53456. image: {
  53457. source: "./media/characters/michael-berretta/back.svg",
  53458. extra: 520/497,
  53459. bottom: 21/541
  53460. }
  53461. },
  53462. frontNsfw: {
  53463. height: math.unit(6 + 3/12, "feet"),
  53464. name: "Front (NSFW)",
  53465. image: {
  53466. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53467. extra: 515/494,
  53468. bottom: 20/535
  53469. }
  53470. },
  53471. dick: {
  53472. height: math.unit(1, "feet"),
  53473. name: "Dick",
  53474. image: {
  53475. source: "./media/characters/michael-berretta/dick.svg"
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(6 + 3/12, "feet"),
  53483. default: true
  53484. },
  53485. {
  53486. name: "Big",
  53487. height: math.unit(12, "feet")
  53488. },
  53489. {
  53490. name: "Macro",
  53491. height: math.unit(187.5, "feet")
  53492. },
  53493. ]
  53494. ))
  53495. characterMakers.push(() => makeCharacter(
  53496. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53497. {
  53498. front: {
  53499. height: math.unit(9 + 9/12, "feet"),
  53500. weight: math.unit(1244, "lb"),
  53501. name: "Front",
  53502. image: {
  53503. source: "./media/characters/stella-edgecomb/front.svg",
  53504. extra: 1835/1706,
  53505. bottom: 49/1884
  53506. }
  53507. },
  53508. pen: {
  53509. height: math.unit(0.95, "feet"),
  53510. name: "Pen",
  53511. image: {
  53512. source: "./media/characters/stella-edgecomb/pen.svg"
  53513. }
  53514. },
  53515. },
  53516. [
  53517. {
  53518. name: "Cozy Bear",
  53519. height: math.unit(0.5, "inches")
  53520. },
  53521. {
  53522. name: "Normal",
  53523. height: math.unit(9 + 9/12, "feet"),
  53524. default: true
  53525. },
  53526. {
  53527. name: "Giga Bear",
  53528. height: math.unit(1, "mile")
  53529. },
  53530. {
  53531. name: "Great Bear",
  53532. height: math.unit(53, "miles")
  53533. },
  53534. {
  53535. name: "Goddess Bear",
  53536. height: math.unit(40000, "miles")
  53537. },
  53538. {
  53539. name: "Sun Bear",
  53540. height: math.unit(900000, "miles")
  53541. },
  53542. ]
  53543. ))
  53544. characterMakers.push(() => makeCharacter(
  53545. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53546. {
  53547. anthroFront: {
  53548. height: math.unit(556, "cm"),
  53549. weight: math.unit(2650, "kg"),
  53550. preyCapacity: math.unit(3, "people"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/ash´iika/front.svg",
  53554. extra: 710/673,
  53555. bottom: 15/725
  53556. },
  53557. form: "anthro",
  53558. default: true
  53559. },
  53560. anthroSide: {
  53561. height: math.unit(556, "cm"),
  53562. weight: math.unit(2650, "kg"),
  53563. preyCapacity: math.unit(3, "people"),
  53564. name: "Side",
  53565. image: {
  53566. source: "./media/characters/ash´iika/side.svg",
  53567. extra: 696/676,
  53568. bottom: 13/709
  53569. },
  53570. form: "anthro"
  53571. },
  53572. anthroDressed: {
  53573. height: math.unit(556, "cm"),
  53574. weight: math.unit(2650, "kg"),
  53575. preyCapacity: math.unit(3, "people"),
  53576. name: "Dressed",
  53577. image: {
  53578. source: "./media/characters/ash´iika/dressed.svg",
  53579. extra: 710/673,
  53580. bottom: 15/725
  53581. },
  53582. form: "anthro"
  53583. },
  53584. anthroHead: {
  53585. height: math.unit(3.5, "feet"),
  53586. name: "Head",
  53587. image: {
  53588. source: "./media/characters/ash´iika/head.svg",
  53589. extra: 348/291,
  53590. bottom: 45/393
  53591. },
  53592. form: "anthro"
  53593. },
  53594. feralSide: {
  53595. height: math.unit(870, "cm"),
  53596. weight: math.unit(17500, "kg"),
  53597. preyCapacity: math.unit(15, "people"),
  53598. name: "Side",
  53599. image: {
  53600. source: "./media/characters/ash´iika/feral.svg",
  53601. extra: 595/199,
  53602. bottom: 7/602
  53603. },
  53604. form: "feral",
  53605. default: true,
  53606. },
  53607. },
  53608. [
  53609. {
  53610. name: "Normal",
  53611. height: math.unit(556, "cm"),
  53612. default: true,
  53613. form: "anthro"
  53614. },
  53615. {
  53616. name: "Macro",
  53617. height: math.unit(88, "meters"),
  53618. form: "anthro"
  53619. },
  53620. {
  53621. name: "Normal",
  53622. height: math.unit(870, "cm"),
  53623. default: true,
  53624. form: "feral"
  53625. },
  53626. {
  53627. name: "Large",
  53628. height: math.unit(25, "meters"),
  53629. form: "feral"
  53630. },
  53631. ],
  53632. {
  53633. "anthro": {
  53634. name: "Anthro",
  53635. default: true
  53636. },
  53637. "feral": {
  53638. name: "Feral",
  53639. },
  53640. }
  53641. ))
  53642. characterMakers.push(() => makeCharacter(
  53643. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53644. {
  53645. front: {
  53646. height: math.unit(10, "feet"),
  53647. weight: math.unit(800, "lb"),
  53648. name: "Front",
  53649. image: {
  53650. source: "./media/characters/yen/front.svg",
  53651. extra: 443/411,
  53652. bottom: 6/449
  53653. }
  53654. },
  53655. sleeping: {
  53656. height: math.unit(10, "feet"),
  53657. weight: math.unit(800, "lb"),
  53658. name: "Sleeping",
  53659. image: {
  53660. source: "./media/characters/yen/sleeping.svg",
  53661. extra: 470/422,
  53662. bottom: 0/470
  53663. }
  53664. },
  53665. head: {
  53666. height: math.unit(2.2, "feet"),
  53667. name: "Head",
  53668. image: {
  53669. source: "./media/characters/yen/head.svg"
  53670. }
  53671. },
  53672. headAlt: {
  53673. height: math.unit(2.1, "feet"),
  53674. name: "Head (Alt)",
  53675. image: {
  53676. source: "./media/characters/yen/head-alt.svg"
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(10, "feet"),
  53684. default: true
  53685. },
  53686. ]
  53687. ))
  53688. characterMakers.push(() => makeCharacter(
  53689. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53690. {
  53691. front: {
  53692. height: math.unit(12, "feet"),
  53693. name: "Front",
  53694. image: {
  53695. source: "./media/characters/citra/front.svg",
  53696. extra: 1950/1710,
  53697. bottom: 47/1997
  53698. }
  53699. },
  53700. },
  53701. [
  53702. {
  53703. name: "Normal",
  53704. height: math.unit(12, "feet"),
  53705. default: true
  53706. },
  53707. ]
  53708. ))
  53709. characterMakers.push(() => makeCharacter(
  53710. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53711. {
  53712. side: {
  53713. height: math.unit(7 + 10/12, "feet"),
  53714. name: "Side",
  53715. image: {
  53716. source: "./media/characters/sholstim/side.svg",
  53717. extra: 786/682,
  53718. bottom: 40/826
  53719. }
  53720. },
  53721. },
  53722. [
  53723. {
  53724. name: "Normal",
  53725. height: math.unit(7 + 10/12, "feet"),
  53726. default: true
  53727. },
  53728. ]
  53729. ))
  53730. characterMakers.push(() => makeCharacter(
  53731. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53732. {
  53733. front: {
  53734. height: math.unit(3.10, "meters"),
  53735. name: "Front",
  53736. image: {
  53737. source: "./media/characters/aggyn/front.svg",
  53738. extra: 1188/963,
  53739. bottom: 24/1212
  53740. }
  53741. },
  53742. },
  53743. [
  53744. {
  53745. name: "Normal",
  53746. height: math.unit(3.10, "meters"),
  53747. default: true
  53748. },
  53749. ]
  53750. ))
  53751. characterMakers.push(() => makeCharacter(
  53752. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53753. {
  53754. front: {
  53755. height: math.unit(7 + 5/12, "feet"),
  53756. weight: math.unit(687, "lb"),
  53757. name: "Front",
  53758. image: {
  53759. source: "./media/characters/alsandair-hergenroether/front.svg",
  53760. extra: 1251/1186,
  53761. bottom: 75/1326
  53762. }
  53763. },
  53764. back: {
  53765. height: math.unit(7 + 5/12, "feet"),
  53766. weight: math.unit(687, "lb"),
  53767. name: "Back",
  53768. image: {
  53769. source: "./media/characters/alsandair-hergenroether/back.svg",
  53770. extra: 1290/1229,
  53771. bottom: 17/1307
  53772. }
  53773. },
  53774. },
  53775. [
  53776. {
  53777. name: "Max Compression",
  53778. height: math.unit(7 + 5/12, "feet"),
  53779. default: true
  53780. },
  53781. {
  53782. name: "\"Normal\"",
  53783. height: math.unit(2, "universes")
  53784. },
  53785. ]
  53786. ))
  53787. characterMakers.push(() => makeCharacter(
  53788. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53789. {
  53790. front: {
  53791. height: math.unit(4 + 1/12, "feet"),
  53792. weight: math.unit(92, "lb"),
  53793. name: "Front",
  53794. image: {
  53795. source: "./media/characters/ie/front.svg",
  53796. extra: 1585/1352,
  53797. bottom: 91/1676
  53798. }
  53799. },
  53800. },
  53801. [
  53802. {
  53803. name: "Normal",
  53804. height: math.unit(4 + 1/12, "feet"),
  53805. default: true
  53806. },
  53807. ]
  53808. ))
  53809. characterMakers.push(() => makeCharacter(
  53810. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53811. {
  53812. anthro: {
  53813. height: math.unit(6, "feet"),
  53814. weight: math.unit(150, "lb"),
  53815. name: "Front",
  53816. image: {
  53817. source: "./media/characters/willow/anthro.svg",
  53818. extra: 1073/986,
  53819. bottom: 34/1107
  53820. },
  53821. form: "anthro",
  53822. default: true
  53823. },
  53824. taur: {
  53825. height: math.unit(6, "feet"),
  53826. weight: math.unit(150, "lb"),
  53827. name: "Side",
  53828. image: {
  53829. source: "./media/characters/willow/taur.svg",
  53830. extra: 647/512,
  53831. bottom: 136/783
  53832. },
  53833. form: "taur",
  53834. default: true
  53835. },
  53836. },
  53837. [
  53838. {
  53839. name: "Humanoid",
  53840. height: math.unit(2.7, "meters"),
  53841. form: "anthro"
  53842. },
  53843. {
  53844. name: "Normal",
  53845. height: math.unit(9, "meters"),
  53846. form: "anthro",
  53847. default: true
  53848. },
  53849. {
  53850. name: "Humanoid",
  53851. height: math.unit(2.1, "meters"),
  53852. form: "taur"
  53853. },
  53854. {
  53855. name: "Normal",
  53856. height: math.unit(7, "meters"),
  53857. form: "taur",
  53858. default: true
  53859. },
  53860. ],
  53861. {
  53862. "anthro": {
  53863. name: "Anthro",
  53864. default: true
  53865. },
  53866. "taur": {
  53867. name: "Taur",
  53868. },
  53869. }
  53870. ))
  53871. characterMakers.push(() => makeCharacter(
  53872. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53873. {
  53874. front: {
  53875. height: math.unit(2 + 5/12, "feet"),
  53876. name: "Front",
  53877. image: {
  53878. source: "./media/characters/kyan/front.svg",
  53879. extra: 460/334,
  53880. bottom: 23/483
  53881. },
  53882. extraAttributes: {
  53883. "toeLength": {
  53884. name: "Toe Length",
  53885. power: 1,
  53886. type: "length",
  53887. base: math.unit(7, "cm")
  53888. },
  53889. "toeclawLength": {
  53890. name: "Toeclaw Length",
  53891. power: 1,
  53892. type: "length",
  53893. base: math.unit(4.7, "cm")
  53894. },
  53895. "earHeight": {
  53896. name: "Ear Height",
  53897. power: 1,
  53898. type: "length",
  53899. base: math.unit(14.1, "cm")
  53900. },
  53901. }
  53902. },
  53903. paws: {
  53904. height: math.unit(0.45, "feet"),
  53905. name: "Paws",
  53906. image: {
  53907. source: "./media/characters/kyan/paws.svg",
  53908. extra: 581/581,
  53909. bottom: 114/695
  53910. }
  53911. },
  53912. },
  53913. [
  53914. {
  53915. name: "Normal",
  53916. height: math.unit(2 + 5/12, "feet"),
  53917. default: true
  53918. },
  53919. ]
  53920. ))
  53921. characterMakers.push(() => makeCharacter(
  53922. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53923. {
  53924. front: {
  53925. height: math.unit(2 + 2/3, "feet"),
  53926. name: "Front",
  53927. image: {
  53928. source: "./media/characters/xazzon/front.svg",
  53929. extra: 1109/984,
  53930. bottom: 42/1151
  53931. }
  53932. },
  53933. back: {
  53934. height: math.unit(2 + 2/3, "feet"),
  53935. name: "Back",
  53936. image: {
  53937. source: "./media/characters/xazzon/back.svg",
  53938. extra: 1095/971,
  53939. bottom: 23/1118
  53940. }
  53941. },
  53942. },
  53943. [
  53944. {
  53945. name: "Normal",
  53946. height: math.unit(2 + 2/3, "feet"),
  53947. default: true
  53948. },
  53949. ]
  53950. ))
  53951. characterMakers.push(() => makeCharacter(
  53952. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53953. {
  53954. dressed: {
  53955. height: math.unit(5 + 7/12, "feet"),
  53956. weight: math.unit(173, "lb"),
  53957. name: "Dressed",
  53958. image: {
  53959. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53960. extra: 3262/2862,
  53961. bottom: 188/3450
  53962. }
  53963. },
  53964. undressed: {
  53965. height: math.unit(5 + 7/12, "feet"),
  53966. weight: math.unit(173, "lb"),
  53967. name: "Undressed",
  53968. image: {
  53969. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53970. extra: 3262/2862,
  53971. bottom: 188/3450
  53972. }
  53973. },
  53974. },
  53975. [
  53976. {
  53977. name: "The void",
  53978. height: math.unit(7.29193e-34, "angstroms")
  53979. },
  53980. {
  53981. name: "Uh-Oh.",
  53982. height: math.unit(5.734e-7, "angstroms")
  53983. },
  53984. {
  53985. name: "Pico",
  53986. height: math.unit(0.876, "angstroms")
  53987. },
  53988. {
  53989. name: "Nano",
  53990. height: math.unit(0.000134200, "mm")
  53991. },
  53992. {
  53993. name: "Micro",
  53994. height: math.unit(0.0673020, "mm")
  53995. },
  53996. {
  53997. name: "Tiny",
  53998. height: math.unit(2.4, "mm")
  53999. },
  54000. {
  54001. name: "Actual Normal",
  54002. height: math.unit(3, "inches"),
  54003. default: true
  54004. },
  54005. {
  54006. name: "Normal",
  54007. height: math.unit(5 + 8/12, "feet")
  54008. },
  54009. {
  54010. name: "Giant",
  54011. height: math.unit(12, "feet")
  54012. },
  54013. {
  54014. name: "City Ruler",
  54015. height: math.unit(270, "meters")
  54016. },
  54017. {
  54018. name: "Giga",
  54019. height: math.unit(1117.6, "km")
  54020. },
  54021. {
  54022. name: "All-Powerful Queen",
  54023. height: math.unit(70.8, "gigameters")
  54024. },
  54025. {
  54026. name: "'Goddess'",
  54027. height: math.unit(600, "yottameters")
  54028. },
  54029. {
  54030. name: "Biggest!",
  54031. height: math.unit(4.23e5, "yottameters")
  54032. },
  54033. ]
  54034. ))
  54035. characterMakers.push(() => makeCharacter(
  54036. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54037. {
  54038. front: {
  54039. height: math.unit(8, "feet"),
  54040. weight: math.unit(300, "lb"),
  54041. name: "Front",
  54042. image: {
  54043. source: "./media/characters/khyla-shadowsong/front.svg",
  54044. extra: 861/798,
  54045. bottom: 32/893
  54046. }
  54047. },
  54048. side: {
  54049. height: math.unit(8, "feet"),
  54050. weight: math.unit(300, "lb"),
  54051. name: "Side",
  54052. image: {
  54053. source: "./media/characters/khyla-shadowsong/side.svg",
  54054. extra: 790/750,
  54055. bottom: 87/877
  54056. }
  54057. },
  54058. back: {
  54059. height: math.unit(8, "feet"),
  54060. weight: math.unit(300, "lb"),
  54061. name: "Back",
  54062. image: {
  54063. source: "./media/characters/khyla-shadowsong/back.svg",
  54064. extra: 855/808,
  54065. bottom: 14/869
  54066. }
  54067. },
  54068. head: {
  54069. height: math.unit(2.7, "feet"),
  54070. name: "Head",
  54071. image: {
  54072. source: "./media/characters/khyla-shadowsong/head.svg"
  54073. }
  54074. },
  54075. },
  54076. [
  54077. {
  54078. name: "Micro",
  54079. height: math.unit(6, "inches")
  54080. },
  54081. {
  54082. name: "Normal",
  54083. height: math.unit(8, "feet"),
  54084. default: true
  54085. },
  54086. ]
  54087. ))
  54088. characterMakers.push(() => makeCharacter(
  54089. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54090. {
  54091. hyperFront: {
  54092. height: math.unit(9 + 4/12, "feet"),
  54093. weight: math.unit(2000, "lb"),
  54094. name: "Front",
  54095. image: {
  54096. source: "./media/characters/tiden/hyper-front.svg",
  54097. extra: 400/382,
  54098. bottom: 6/406
  54099. },
  54100. form: "hyper",
  54101. },
  54102. regularFront: {
  54103. height: math.unit(7 + 10/12, "feet"),
  54104. weight: math.unit(470, "lb"),
  54105. name: "Front",
  54106. image: {
  54107. source: "./media/characters/tiden/regular-front.svg",
  54108. extra: 468/442,
  54109. bottom: 6/474
  54110. },
  54111. form: "regular",
  54112. },
  54113. },
  54114. [
  54115. {
  54116. name: "Normal",
  54117. height: math.unit(9 + 4/12, "feet"),
  54118. default: true,
  54119. form: "hyper"
  54120. },
  54121. {
  54122. name: "Normal",
  54123. height: math.unit(7 + 10/12, "feet"),
  54124. default: true,
  54125. form: "regular"
  54126. },
  54127. ],
  54128. {
  54129. "hyper": {
  54130. name: "Hyper",
  54131. default: true
  54132. },
  54133. "regular": {
  54134. name: "Regular",
  54135. },
  54136. }
  54137. ))
  54138. characterMakers.push(() => makeCharacter(
  54139. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54140. {
  54141. side: {
  54142. height: math.unit(6, "feet"),
  54143. weight: math.unit(150, "lb"),
  54144. name: "Side",
  54145. image: {
  54146. source: "./media/characters/jason-crowe/side.svg",
  54147. extra: 1771/766,
  54148. bottom: 219/1990
  54149. }
  54150. },
  54151. },
  54152. [
  54153. {
  54154. name: "Pocket Gryphon",
  54155. height: math.unit(6, "cm")
  54156. },
  54157. {
  54158. name: "Raven",
  54159. height: math.unit(60, "cm")
  54160. },
  54161. {
  54162. name: "Normal",
  54163. height: math.unit(1, "meter"),
  54164. default: true
  54165. },
  54166. ]
  54167. ))
  54168. characterMakers.push(() => makeCharacter(
  54169. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54170. {
  54171. front: {
  54172. height: math.unit(9 + 6/12, "feet"),
  54173. weight: math.unit(1100, "lb"),
  54174. name: "Front",
  54175. image: {
  54176. source: "./media/characters/django/front.svg",
  54177. extra: 1231/1136,
  54178. bottom: 34/1265
  54179. }
  54180. },
  54181. side: {
  54182. height: math.unit(9 + 6/12, "feet"),
  54183. weight: math.unit(1100, "lb"),
  54184. name: "Side",
  54185. image: {
  54186. source: "./media/characters/django/side.svg",
  54187. extra: 1267/1174,
  54188. bottom: 9/1276
  54189. }
  54190. },
  54191. },
  54192. [
  54193. {
  54194. name: "Normal",
  54195. height: math.unit(9 + 6/12, "feet"),
  54196. default: true
  54197. },
  54198. {
  54199. name: "Macro 1",
  54200. height: math.unit(50, "feet")
  54201. },
  54202. {
  54203. name: "Macro 2",
  54204. height: math.unit(500, "feet")
  54205. },
  54206. {
  54207. name: "Mega Macro",
  54208. height: math.unit(5300, "feet")
  54209. },
  54210. ]
  54211. ))
  54212. characterMakers.push(() => makeCharacter(
  54213. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54214. {
  54215. frontSfw: {
  54216. height: math.unit(120, "cm"),
  54217. weight: math.unit(15, "kg"),
  54218. name: "Front (SFW)",
  54219. image: {
  54220. source: "./media/characters/eri/front-sfw.svg",
  54221. extra: 1014/939,
  54222. bottom: 37/1051
  54223. },
  54224. form: "moth",
  54225. },
  54226. frontNsfw: {
  54227. height: math.unit(120, "cm"),
  54228. weight: math.unit(15, "kg"),
  54229. name: "Front (NSFW)",
  54230. image: {
  54231. source: "./media/characters/eri/front-nsfw.svg",
  54232. extra: 1014/939,
  54233. bottom: 37/1051
  54234. },
  54235. form: "moth",
  54236. default: true
  54237. },
  54238. egg: {
  54239. height: math.unit(10, "cm"),
  54240. name: "Egg",
  54241. image: {
  54242. source: "./media/characters/eri/egg.svg"
  54243. },
  54244. form: "egg",
  54245. default: true
  54246. },
  54247. },
  54248. [
  54249. {
  54250. name: "Normal",
  54251. height: math.unit(120, "cm"),
  54252. default: true,
  54253. form: "moth"
  54254. },
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(10, "cm"),
  54258. default: true,
  54259. form: "egg"
  54260. },
  54261. ],
  54262. {
  54263. "moth": {
  54264. name: "Moth",
  54265. default: true
  54266. },
  54267. "egg": {
  54268. name: "Egg",
  54269. },
  54270. }
  54271. ))
  54272. characterMakers.push(() => makeCharacter(
  54273. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54274. {
  54275. front: {
  54276. height: math.unit(200, "feet"),
  54277. name: "Front",
  54278. image: {
  54279. source: "./media/characters/bishop-dowser/front.svg",
  54280. extra: 933/868,
  54281. bottom: 106/1039
  54282. }
  54283. },
  54284. },
  54285. [
  54286. {
  54287. name: "Giant",
  54288. height: math.unit(200, "feet"),
  54289. default: true
  54290. },
  54291. ]
  54292. ))
  54293. characterMakers.push(() => makeCharacter(
  54294. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54295. {
  54296. front: {
  54297. height: math.unit(2, "meters"),
  54298. preyCapacity: math.unit(3, "people"),
  54299. name: "Front",
  54300. image: {
  54301. source: "./media/characters/fryra/front.svg",
  54302. extra: 1025/948,
  54303. bottom: 30/1055
  54304. },
  54305. extraAttributes: {
  54306. "breastVolume": {
  54307. name: "Breast Volume",
  54308. power: 3,
  54309. type: "volume",
  54310. base: math.unit(8, "liters")
  54311. },
  54312. }
  54313. },
  54314. back: {
  54315. height: math.unit(2, "meters"),
  54316. preyCapacity: math.unit(3, "people"),
  54317. name: "Back",
  54318. image: {
  54319. source: "./media/characters/fryra/back.svg",
  54320. extra: 993/938,
  54321. bottom: 38/1031
  54322. },
  54323. extraAttributes: {
  54324. "breastVolume": {
  54325. name: "Breast Volume",
  54326. power: 3,
  54327. type: "volume",
  54328. base: math.unit(8, "liters")
  54329. },
  54330. }
  54331. },
  54332. head: {
  54333. height: math.unit(1.33, "feet"),
  54334. name: "Head",
  54335. image: {
  54336. source: "./media/characters/fryra/head.svg"
  54337. }
  54338. },
  54339. maw: {
  54340. height: math.unit(0.56, "feet"),
  54341. name: "Maw",
  54342. image: {
  54343. source: "./media/characters/fryra/maw.svg"
  54344. }
  54345. },
  54346. },
  54347. [
  54348. {
  54349. name: "Micro",
  54350. height: math.unit(5, "cm")
  54351. },
  54352. {
  54353. name: "Normal",
  54354. height: math.unit(2, "meters"),
  54355. default: true
  54356. },
  54357. {
  54358. name: "Small Macro",
  54359. height: math.unit(8, "meters")
  54360. },
  54361. {
  54362. name: "Macro",
  54363. height: math.unit(50, "meters")
  54364. },
  54365. {
  54366. name: "Megamacro",
  54367. height: math.unit(1, "km")
  54368. },
  54369. {
  54370. name: "Planetary",
  54371. height: math.unit(300000, "km")
  54372. },
  54373. {
  54374. name: "Universal",
  54375. height: math.unit(250, "lightyears")
  54376. },
  54377. {
  54378. name: "Fabric of Reality",
  54379. height: math.unit(1000, "multiverses")
  54380. },
  54381. ]
  54382. ))
  54383. characterMakers.push(() => makeCharacter(
  54384. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54385. {
  54386. frontDressed: {
  54387. height: math.unit(6 + 2/12, "feet"),
  54388. name: "Front (Dressed)",
  54389. image: {
  54390. source: "./media/characters/fiera/front-dressed.svg",
  54391. extra: 1883/1793,
  54392. bottom: 70/1953
  54393. }
  54394. },
  54395. backDressed: {
  54396. height: math.unit(6 + 2/12, "feet"),
  54397. name: "Back (Dressed)",
  54398. image: {
  54399. source: "./media/characters/fiera/back-dressed.svg",
  54400. extra: 1847/1780,
  54401. bottom: 70/1917
  54402. }
  54403. },
  54404. frontNude: {
  54405. height: math.unit(6 + 2/12, "feet"),
  54406. name: "Front (Nude)",
  54407. image: {
  54408. source: "./media/characters/fiera/front-nude.svg",
  54409. extra: 1875/1785,
  54410. bottom: 66/1941
  54411. }
  54412. },
  54413. backNude: {
  54414. height: math.unit(6 + 2/12, "feet"),
  54415. name: "Back (Nude)",
  54416. image: {
  54417. source: "./media/characters/fiera/back-nude.svg",
  54418. extra: 1855/1788,
  54419. bottom: 44/1899
  54420. }
  54421. },
  54422. maw: {
  54423. height: math.unit(1.3, "feet"),
  54424. name: "Maw",
  54425. image: {
  54426. source: "./media/characters/fiera/maw.svg"
  54427. }
  54428. },
  54429. paw: {
  54430. height: math.unit(1, "feet"),
  54431. name: "Paw",
  54432. image: {
  54433. source: "./media/characters/fiera/paw.svg"
  54434. }
  54435. },
  54436. shoe: {
  54437. height: math.unit(1.05, "feet"),
  54438. name: "Shoe",
  54439. image: {
  54440. source: "./media/characters/fiera/shoe.svg"
  54441. }
  54442. },
  54443. },
  54444. [
  54445. {
  54446. name: "Normal",
  54447. height: math.unit(6 + 2/12, "feet"),
  54448. default: true
  54449. },
  54450. {
  54451. name: "Size Difference",
  54452. height: math.unit(13, "feet")
  54453. },
  54454. {
  54455. name: "Macro",
  54456. height: math.unit(60, "feet")
  54457. },
  54458. {
  54459. name: "Mega Macro",
  54460. height: math.unit(200, "feet")
  54461. },
  54462. ]
  54463. ))
  54464. characterMakers.push(() => makeCharacter(
  54465. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54466. {
  54467. back: {
  54468. height: math.unit(6, "feet"),
  54469. name: "Back",
  54470. image: {
  54471. source: "./media/characters/flare/back.svg",
  54472. extra: 1883/1765,
  54473. bottom: 32/1915
  54474. }
  54475. },
  54476. },
  54477. [
  54478. {
  54479. name: "Normal",
  54480. height: math.unit(6 + 2/12, "feet"),
  54481. default: true
  54482. },
  54483. {
  54484. name: "Size Difference",
  54485. height: math.unit(13, "feet")
  54486. },
  54487. {
  54488. name: "Macro",
  54489. height: math.unit(60, "feet")
  54490. },
  54491. {
  54492. name: "Macro 2",
  54493. height: math.unit(100, "feet")
  54494. },
  54495. {
  54496. name: "Mega Macro",
  54497. height: math.unit(200, "feet")
  54498. },
  54499. ]
  54500. ))
  54501. characterMakers.push(() => makeCharacter(
  54502. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54503. {
  54504. front: {
  54505. height: math.unit(2.2, "m"),
  54506. weight: math.unit(300, "kg"),
  54507. name: "Front",
  54508. image: {
  54509. source: "./media/characters/hanna/front.svg",
  54510. extra: 1696/1502,
  54511. bottom: 206/1902
  54512. }
  54513. },
  54514. },
  54515. [
  54516. {
  54517. name: "Humanoid",
  54518. height: math.unit(2.2, "meters")
  54519. },
  54520. {
  54521. name: "Normal",
  54522. height: math.unit(4.8, "meters"),
  54523. default: true
  54524. },
  54525. ]
  54526. ))
  54527. characterMakers.push(() => makeCharacter(
  54528. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54529. {
  54530. front: {
  54531. height: math.unit(2.8, "meters"),
  54532. name: "Front",
  54533. image: {
  54534. source: "./media/characters/argo/front.svg",
  54535. extra: 731/518,
  54536. bottom: 84/815
  54537. }
  54538. },
  54539. },
  54540. [
  54541. {
  54542. name: "Normal",
  54543. height: math.unit(3, "meters"),
  54544. default: true
  54545. },
  54546. ]
  54547. ))
  54548. characterMakers.push(() => makeCharacter(
  54549. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54550. {
  54551. side: {
  54552. height: math.unit(3.8, "meters"),
  54553. name: "Side",
  54554. image: {
  54555. source: "./media/characters/sybil/side.svg",
  54556. extra: 382/361,
  54557. bottom: 25/407
  54558. }
  54559. },
  54560. },
  54561. [
  54562. {
  54563. name: "Normal",
  54564. height: math.unit(3.8, "meters"),
  54565. default: true
  54566. },
  54567. ]
  54568. ))
  54569. characterMakers.push(() => makeCharacter(
  54570. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54571. {
  54572. side: {
  54573. height: math.unit(6, "meters"),
  54574. name: "Side",
  54575. image: {
  54576. source: "./media/characters/plum/side.svg",
  54577. extra: 858/755,
  54578. bottom: 45/903
  54579. },
  54580. form: "taur",
  54581. default: true
  54582. },
  54583. back: {
  54584. height: math.unit(6.3, "meters"),
  54585. name: "Back",
  54586. image: {
  54587. source: "./media/characters/plum/back.svg",
  54588. extra: 887/813,
  54589. bottom: 32/919
  54590. },
  54591. form: "taur",
  54592. },
  54593. feral: {
  54594. height: math.unit(5.5, "meter"),
  54595. name: "Front",
  54596. image: {
  54597. source: "./media/characters/plum/feral.svg",
  54598. extra: 568/403,
  54599. bottom: 51/619
  54600. },
  54601. form: "feral",
  54602. default: true
  54603. },
  54604. head: {
  54605. height: math.unit(1.46, "meter"),
  54606. name: "Head",
  54607. image: {
  54608. source: "./media/characters/plum/head.svg"
  54609. },
  54610. form: "taur"
  54611. },
  54612. tailTop: {
  54613. height: math.unit(5.6, "meter"),
  54614. name: "Tail (Top)",
  54615. image: {
  54616. source: "./media/characters/plum/tail-top.svg"
  54617. },
  54618. form: "taur",
  54619. },
  54620. tailBottom: {
  54621. height: math.unit(5.6, "meter"),
  54622. name: "Tail (Bottom)",
  54623. image: {
  54624. source: "./media/characters/plum/tail-bottom.svg"
  54625. },
  54626. form: "taur",
  54627. },
  54628. feralHead: {
  54629. height: math.unit(2.56549521, "meter"),
  54630. name: "Head",
  54631. image: {
  54632. source: "./media/characters/plum/head.svg"
  54633. },
  54634. form: "feral"
  54635. },
  54636. feralTailTop: {
  54637. height: math.unit(5.44728435, "meter"),
  54638. name: "Tail (Top)",
  54639. image: {
  54640. source: "./media/characters/plum/tail-top.svg"
  54641. },
  54642. form: "feral",
  54643. },
  54644. feralTailBottom: {
  54645. height: math.unit(5.44728435, "meter"),
  54646. name: "Tail (Bottom)",
  54647. image: {
  54648. source: "./media/characters/plum/tail-bottom.svg"
  54649. },
  54650. form: "feral",
  54651. },
  54652. },
  54653. [
  54654. {
  54655. name: "Normal",
  54656. height: math.unit(6, "meters"),
  54657. default: true,
  54658. form: "taur"
  54659. },
  54660. {
  54661. name: "Normal",
  54662. height: math.unit(5.5, "meters"),
  54663. default: true,
  54664. form: "feral"
  54665. },
  54666. ],
  54667. {
  54668. "taur": {
  54669. name: "Taur",
  54670. default: true
  54671. },
  54672. "feral": {
  54673. name: "Feral",
  54674. },
  54675. }
  54676. ))
  54677. characterMakers.push(() => makeCharacter(
  54678. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54679. {
  54680. front: {
  54681. height: math.unit(6, "feet"),
  54682. weight: math.unit(115, "lb"),
  54683. name: "Front",
  54684. image: {
  54685. source: "./media/characters/celeste-kitsune/front.svg",
  54686. extra: 393/366,
  54687. bottom: 7/400
  54688. }
  54689. },
  54690. side: {
  54691. height: math.unit(6, "feet"),
  54692. weight: math.unit(115, "lb"),
  54693. name: "Side",
  54694. image: {
  54695. source: "./media/characters/celeste-kitsune/side.svg",
  54696. extra: 818/765,
  54697. bottom: 40/858
  54698. }
  54699. },
  54700. },
  54701. [
  54702. {
  54703. name: "Megamacro",
  54704. height: math.unit(1500, "miles"),
  54705. default: true
  54706. },
  54707. ]
  54708. ))
  54709. characterMakers.push(() => makeCharacter(
  54710. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54711. {
  54712. front: {
  54713. height: math.unit(8, "meters"),
  54714. name: "Front",
  54715. image: {
  54716. source: "./media/characters/io/front.svg",
  54717. extra: 865/722,
  54718. bottom: 58/923
  54719. }
  54720. },
  54721. back: {
  54722. height: math.unit(8, "meters"),
  54723. name: "Back",
  54724. image: {
  54725. source: "./media/characters/io/back.svg",
  54726. extra: 920/776,
  54727. bottom: 42/962
  54728. }
  54729. },
  54730. head: {
  54731. height: math.unit(5.09, "meters"),
  54732. name: "Head",
  54733. image: {
  54734. source: "./media/characters/io/head.svg"
  54735. }
  54736. },
  54737. hand: {
  54738. height: math.unit(1.6, "meters"),
  54739. name: "Hand",
  54740. image: {
  54741. source: "./media/characters/io/hand.svg"
  54742. }
  54743. },
  54744. foot: {
  54745. height: math.unit(2.4, "meters"),
  54746. name: "Foot",
  54747. image: {
  54748. source: "./media/characters/io/foot.svg"
  54749. }
  54750. },
  54751. },
  54752. [
  54753. {
  54754. name: "Normal",
  54755. height: math.unit(8, "meters"),
  54756. default: true
  54757. },
  54758. ]
  54759. ))
  54760. characterMakers.push(() => makeCharacter(
  54761. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54762. {
  54763. side: {
  54764. height: math.unit(6 + 3/12, "feet"),
  54765. weight: math.unit(225, "lb"),
  54766. name: "Side",
  54767. image: {
  54768. source: "./media/characters/silas/side.svg",
  54769. extra: 703/653,
  54770. bottom: 23/726
  54771. },
  54772. extraAttributes: {
  54773. "pawLength": {
  54774. name: "Paw Length",
  54775. power: 1,
  54776. type: "length",
  54777. base: math.unit(12, "inches")
  54778. },
  54779. "pawWidth": {
  54780. name: "Paw Width",
  54781. power: 1,
  54782. type: "length",
  54783. base: math.unit(4.5, "inches")
  54784. },
  54785. "pawArea": {
  54786. name: "Paw Area",
  54787. power: 2,
  54788. type: "area",
  54789. base: math.unit(12 * 4.5, "inches^2")
  54790. },
  54791. }
  54792. },
  54793. },
  54794. [
  54795. {
  54796. name: "Normal",
  54797. height: math.unit(6 + 3/12, "feet"),
  54798. default: true
  54799. },
  54800. ]
  54801. ))
  54802. characterMakers.push(() => makeCharacter(
  54803. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54804. {
  54805. back: {
  54806. height: math.unit(1.6, "meters"),
  54807. weight: math.unit(150, "lb"),
  54808. name: "Back",
  54809. image: {
  54810. source: "./media/characters/zari/back.svg",
  54811. extra: 424/411,
  54812. bottom: 32/456
  54813. },
  54814. extraAttributes: {
  54815. "bladderCapacity": {
  54816. name: "Bladder Size",
  54817. power: 3,
  54818. type: "volume",
  54819. base: math.unit(500, "mL")
  54820. },
  54821. "bladderFlow": {
  54822. name: "Flow Rate",
  54823. power: 3,
  54824. type: "volume",
  54825. base: math.unit(25, "mL")
  54826. },
  54827. }
  54828. },
  54829. },
  54830. [
  54831. {
  54832. name: "Normal",
  54833. height: math.unit(1.6, "meters"),
  54834. default: true
  54835. },
  54836. ]
  54837. ))
  54838. characterMakers.push(() => makeCharacter(
  54839. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54840. {
  54841. front: {
  54842. height: math.unit(25, "feet"),
  54843. weight: math.unit(5, "tons"),
  54844. name: "Front",
  54845. image: {
  54846. source: "./media/characters/charlie-human/front.svg",
  54847. extra: 1870/1740,
  54848. bottom: 102/1972
  54849. },
  54850. extraAttributes: {
  54851. "dickLength": {
  54852. name: "Dick Length",
  54853. power: 1,
  54854. type: "length",
  54855. base: math.unit(9, "feet")
  54856. },
  54857. }
  54858. },
  54859. back: {
  54860. height: math.unit(25, "feet"),
  54861. weight: math.unit(5, "tons"),
  54862. name: "Back",
  54863. image: {
  54864. source: "./media/characters/charlie-human/back.svg",
  54865. extra: 1858/1733,
  54866. bottom: 105/1963
  54867. },
  54868. extraAttributes: {
  54869. "dickLength": {
  54870. name: "Dick Length",
  54871. power: 1,
  54872. type: "length",
  54873. base: math.unit(9, "feet")
  54874. },
  54875. }
  54876. },
  54877. },
  54878. [
  54879. {
  54880. name: "\"Normal\"",
  54881. height: math.unit(6 + 4/12, "feet")
  54882. },
  54883. {
  54884. name: "Big",
  54885. height: math.unit(25, "feet"),
  54886. default: true
  54887. },
  54888. ]
  54889. ))
  54890. characterMakers.push(() => makeCharacter(
  54891. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54892. {
  54893. front: {
  54894. height: math.unit(6 + 4/12, "feet"),
  54895. weight: math.unit(320, "lb"),
  54896. name: "Front",
  54897. image: {
  54898. source: "./media/characters/ookitsu/front.svg",
  54899. extra: 1160/976,
  54900. bottom: 38/1198
  54901. }
  54902. },
  54903. frontNsfw: {
  54904. height: math.unit(6 + 4/12, "feet"),
  54905. weight: math.unit(320, "lb"),
  54906. name: "Front (NSFW)",
  54907. image: {
  54908. source: "./media/characters/ookitsu/front-nsfw.svg",
  54909. extra: 1160/976,
  54910. bottom: 38/1198
  54911. }
  54912. },
  54913. back: {
  54914. height: math.unit(6 + 4/12, "feet"),
  54915. weight: math.unit(320, "lb"),
  54916. name: "Back",
  54917. image: {
  54918. source: "./media/characters/ookitsu/back.svg",
  54919. extra: 1030/975,
  54920. bottom: 70/1100
  54921. }
  54922. },
  54923. head: {
  54924. height: math.unit(1.79, "feet"),
  54925. name: "Head",
  54926. image: {
  54927. source: "./media/characters/ookitsu/head.svg"
  54928. }
  54929. },
  54930. hand: {
  54931. height: math.unit(0.92, "feet"),
  54932. name: "Hand",
  54933. image: {
  54934. source: "./media/characters/ookitsu/hand.svg"
  54935. }
  54936. },
  54937. tails: {
  54938. height: math.unit(3.3, "feet"),
  54939. name: "Tails",
  54940. image: {
  54941. source: "./media/characters/ookitsu/tails.svg"
  54942. }
  54943. },
  54944. dick: {
  54945. height: math.unit(1.10833, "feet"),
  54946. name: "Dick",
  54947. image: {
  54948. source: "./media/characters/ookitsu/dick.svg"
  54949. }
  54950. },
  54951. },
  54952. [
  54953. {
  54954. name: "Normal",
  54955. height: math.unit(6 + 4/12, "feet"),
  54956. default: true
  54957. },
  54958. {
  54959. name: "Macro",
  54960. height: math.unit(30, "feet")
  54961. },
  54962. ]
  54963. ))
  54964. characterMakers.push(() => makeCharacter(
  54965. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54966. {
  54967. anthroFront: {
  54968. height: math.unit(6, "feet"),
  54969. weight: math.unit(250, "lb"),
  54970. name: "Front",
  54971. image: {
  54972. source: "./media/characters/jhusky/anthro-front.svg",
  54973. extra: 474/439,
  54974. bottom: 7/481
  54975. },
  54976. form: "anthro",
  54977. default: true
  54978. },
  54979. taurSideSfw: {
  54980. height: math.unit(6 + 4/12, "feet"),
  54981. weight: math.unit(500, "lb"),
  54982. name: "Side (SFW)",
  54983. image: {
  54984. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54985. extra: 1741/1629,
  54986. bottom: 196/1937
  54987. },
  54988. form: "taur",
  54989. default: true
  54990. },
  54991. taurSideNsfw: {
  54992. height: math.unit(6 + 4/12, "feet"),
  54993. weight: math.unit(500, "lb"),
  54994. name: "Taur (NSFW)",
  54995. image: {
  54996. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54997. extra: 1741/1629,
  54998. bottom: 196/1937
  54999. },
  55000. form: "taur",
  55001. },
  55002. },
  55003. [
  55004. {
  55005. name: "Huge",
  55006. height: math.unit(500, "feet"),
  55007. form: "anthro"
  55008. },
  55009. {
  55010. name: "Macro",
  55011. height: math.unit(1000, "feet"),
  55012. default: true,
  55013. form: "anthro"
  55014. },
  55015. {
  55016. name: "Megamacro",
  55017. height: math.unit(10000, "feet"),
  55018. form: "anthro"
  55019. },
  55020. {
  55021. name: "Huge",
  55022. height: math.unit(528, "feet"),
  55023. form: "taur"
  55024. },
  55025. {
  55026. name: "Macro",
  55027. height: math.unit(1056, "feet"),
  55028. default: true,
  55029. form: "taur"
  55030. },
  55031. {
  55032. name: "Megamacro",
  55033. height: math.unit(10556, "feet"),
  55034. form: "taur"
  55035. },
  55036. ],
  55037. {
  55038. "anthro": {
  55039. name: "Anthro",
  55040. default: true
  55041. },
  55042. "taur": {
  55043. name: "Taur",
  55044. },
  55045. }
  55046. ))
  55047. characterMakers.push(() => makeCharacter(
  55048. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55049. {
  55050. front: {
  55051. height: math.unit(8, "feet"),
  55052. weight: math.unit(500, "lb"),
  55053. name: "Front",
  55054. image: {
  55055. source: "./media/characters/armail/front.svg",
  55056. extra: 1753/1669,
  55057. bottom: 155/1908
  55058. }
  55059. },
  55060. back: {
  55061. height: math.unit(8, "feet"),
  55062. weight: math.unit(500, "lb"),
  55063. name: "Back",
  55064. image: {
  55065. source: "./media/characters/armail/back.svg",
  55066. extra: 1872/1803,
  55067. bottom: 63/1935
  55068. }
  55069. },
  55070. },
  55071. [
  55072. {
  55073. name: "Micro",
  55074. height: math.unit(0.25, "feet")
  55075. },
  55076. {
  55077. name: "Normal",
  55078. height: math.unit(8, "feet"),
  55079. default: true
  55080. },
  55081. {
  55082. name: "Mini-macro",
  55083. height: math.unit(30, "feet")
  55084. },
  55085. {
  55086. name: "Macro",
  55087. height: math.unit(400, "feet")
  55088. },
  55089. {
  55090. name: "Mega-macro",
  55091. height: math.unit(6000, "feet")
  55092. },
  55093. ]
  55094. ))
  55095. characterMakers.push(() => makeCharacter(
  55096. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55097. {
  55098. front: {
  55099. height: math.unit(6 + 7/12, "feet"),
  55100. weight: math.unit(210, "lb"),
  55101. name: "Front",
  55102. image: {
  55103. source: "./media/characters/wilfred-t-buxton/front.svg",
  55104. extra: 1068/882,
  55105. bottom: 28/1096
  55106. }
  55107. },
  55108. },
  55109. [
  55110. {
  55111. name: "Normal",
  55112. height: math.unit(6 + 7/12, "feet"),
  55113. default: true
  55114. },
  55115. ]
  55116. ))
  55117. characterMakers.push(() => makeCharacter(
  55118. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55119. {
  55120. front: {
  55121. height: math.unit(5 + 2/12, "feet"),
  55122. weight: math.unit(120, "lb"),
  55123. name: "Front",
  55124. image: {
  55125. source: "./media/characters/leighton-marrow/front.svg",
  55126. extra: 441/409,
  55127. bottom: 37/478
  55128. }
  55129. },
  55130. },
  55131. [
  55132. {
  55133. name: "Normal",
  55134. height: math.unit(5 + 2/12, "feet"),
  55135. default: true
  55136. },
  55137. ]
  55138. ))
  55139. characterMakers.push(() => makeCharacter(
  55140. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55141. {
  55142. front: {
  55143. height: math.unit(4, "meters"),
  55144. weight: math.unit(1200, "kg"),
  55145. name: "Front",
  55146. image: {
  55147. source: "./media/characters/licos/front.svg",
  55148. extra: 1727/1604,
  55149. bottom: 101/1828
  55150. },
  55151. form: "anthro",
  55152. default: true
  55153. },
  55154. taur_side: {
  55155. height: math.unit(20, "meters"),
  55156. weight: math.unit(1100000, "kg"),
  55157. name: "Side",
  55158. image: {
  55159. source: "./media/characters/licos/taur.svg",
  55160. extra: 1158/1091,
  55161. bottom: 80/1238
  55162. },
  55163. form: "taur",
  55164. default: true
  55165. },
  55166. },
  55167. [
  55168. {
  55169. name: "Normal",
  55170. height: math.unit(4, "meters"),
  55171. default: true,
  55172. form: "anthro"
  55173. },
  55174. {
  55175. name: "Normal",
  55176. height: math.unit(20, "meters"),
  55177. default: true,
  55178. form: "taur"
  55179. },
  55180. ],
  55181. {
  55182. "anthro": {
  55183. name: "Anthro",
  55184. default: true
  55185. },
  55186. "taur": {
  55187. name: "Taur",
  55188. },
  55189. }
  55190. ))
  55191. characterMakers.push(() => makeCharacter(
  55192. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55193. {
  55194. front: {
  55195. height: math.unit(10 + 3/12, "feet"),
  55196. name: "Front",
  55197. image: {
  55198. source: "./media/characters/theo-monkey/front.svg",
  55199. extra: 1735/1658,
  55200. bottom: 73/1808
  55201. }
  55202. },
  55203. back: {
  55204. height: math.unit(10 + 3/12, "feet"),
  55205. name: "Back",
  55206. image: {
  55207. source: "./media/characters/theo-monkey/back.svg",
  55208. extra: 1742/1664,
  55209. bottom: 33/1775
  55210. }
  55211. },
  55212. head: {
  55213. height: math.unit(2.29, "feet"),
  55214. name: "Head",
  55215. image: {
  55216. source: "./media/characters/theo-monkey/head.svg"
  55217. }
  55218. },
  55219. handPalm: {
  55220. height: math.unit(1.73, "feet"),
  55221. name: "Hand (Palm)",
  55222. image: {
  55223. source: "./media/characters/theo-monkey/hand-palm.svg"
  55224. }
  55225. },
  55226. handBack: {
  55227. height: math.unit(1.63, "feet"),
  55228. name: "Hand (Back)",
  55229. image: {
  55230. source: "./media/characters/theo-monkey/hand-back.svg"
  55231. }
  55232. },
  55233. footSole: {
  55234. height: math.unit(2.15, "feet"),
  55235. name: "Foot (Sole)",
  55236. image: {
  55237. source: "./media/characters/theo-monkey/foot-sole.svg"
  55238. }
  55239. },
  55240. footSide: {
  55241. height: math.unit(1.6, "feet"),
  55242. name: "Foot (Side)",
  55243. image: {
  55244. source: "./media/characters/theo-monkey/foot-side.svg"
  55245. }
  55246. },
  55247. },
  55248. [
  55249. {
  55250. name: "Normal",
  55251. height: math.unit(10 + 3/12, "feet"),
  55252. default: true
  55253. },
  55254. ]
  55255. ))
  55256. characterMakers.push(() => makeCharacter(
  55257. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55258. {
  55259. front: {
  55260. height: math.unit(11, "feet"),
  55261. weight: math.unit(3000, "lb"),
  55262. preyCapacity: math.unit(10, "people"),
  55263. name: "Front",
  55264. image: {
  55265. source: "./media/characters/brook/front.svg",
  55266. extra: 909/835,
  55267. bottom: 108/1017
  55268. }
  55269. },
  55270. back: {
  55271. height: math.unit(11, "feet"),
  55272. weight: math.unit(3000, "lb"),
  55273. preyCapacity: math.unit(10, "people"),
  55274. name: "Back",
  55275. image: {
  55276. source: "./media/characters/brook/back.svg",
  55277. extra: 976/916,
  55278. bottom: 34/1010
  55279. }
  55280. },
  55281. backAlt: {
  55282. height: math.unit(11, "feet"),
  55283. weight: math.unit(3000, "lb"),
  55284. preyCapacity: math.unit(10, "people"),
  55285. name: "Back (Alt)",
  55286. image: {
  55287. source: "./media/characters/brook/back-alt.svg",
  55288. extra: 1283/1213,
  55289. bottom: 35/1318
  55290. }
  55291. },
  55292. bust: {
  55293. height: math.unit(9.0859030837, "feet"),
  55294. weight: math.unit(3000, "lb"),
  55295. preyCapacity: math.unit(10, "people"),
  55296. name: "Bust",
  55297. image: {
  55298. source: "./media/characters/brook/bust.svg",
  55299. extra: 2043/1923,
  55300. bottom: 0/2043
  55301. }
  55302. },
  55303. },
  55304. [
  55305. {
  55306. name: "Small",
  55307. height: math.unit(11, "feet"),
  55308. default: true
  55309. },
  55310. {
  55311. name: "Towering",
  55312. height: math.unit(5, "km")
  55313. },
  55314. {
  55315. name: "Enormous",
  55316. height: math.unit(25, "earths")
  55317. },
  55318. ]
  55319. ))
  55320. characterMakers.push(() => makeCharacter(
  55321. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55322. {
  55323. front: {
  55324. height: math.unit(4, "feet"),
  55325. weight: math.unit(150, "lb"),
  55326. name: "Front",
  55327. image: {
  55328. source: "./media/characters/squishi/front.svg",
  55329. extra: 1428/1271,
  55330. bottom: 30/1458
  55331. },
  55332. extraAttributes: {
  55333. "pawSize": {
  55334. name: "Paw Size",
  55335. power: 1,
  55336. type: "length",
  55337. base: math.unit(14, "ShoeSizeMensUS"),
  55338. defaultUnit: "ShoeSizeMensUS"
  55339. },
  55340. }
  55341. },
  55342. side: {
  55343. height: math.unit(4, "feet"),
  55344. weight: math.unit(150, "lb"),
  55345. name: "Side",
  55346. image: {
  55347. source: "./media/characters/squishi/side.svg",
  55348. extra: 1428/1271,
  55349. bottom: 30/1458
  55350. },
  55351. extraAttributes: {
  55352. "pawSize": {
  55353. name: "Paw Size",
  55354. power: 1,
  55355. type: "length",
  55356. base: math.unit(14, "ShoeSizeMensUS"),
  55357. defaultUnit: "ShoeSizeMensUS"
  55358. },
  55359. }
  55360. },
  55361. back: {
  55362. height: math.unit(4, "feet"),
  55363. weight: math.unit(150, "lb"),
  55364. name: "Back",
  55365. image: {
  55366. source: "./media/characters/squishi/back.svg",
  55367. extra: 1428/1271,
  55368. bottom: 30/1458
  55369. },
  55370. extraAttributes: {
  55371. "pawSize": {
  55372. name: "Paw Size",
  55373. power: 1,
  55374. type: "length",
  55375. base: math.unit(14, "ShoeSizeMensUS"),
  55376. defaultUnit: "ShoeSizeMensUS"
  55377. },
  55378. }
  55379. },
  55380. },
  55381. [
  55382. {
  55383. name: "Normal",
  55384. height: math.unit(4, "feet"),
  55385. default: true
  55386. },
  55387. ]
  55388. ))
  55389. characterMakers.push(() => makeCharacter(
  55390. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55391. {
  55392. front: {
  55393. height: math.unit(7 + 8/12, "feet"),
  55394. weight: math.unit(333, "lb"),
  55395. name: "Front",
  55396. image: {
  55397. source: "./media/characters/vincent-vasroc/front.svg",
  55398. extra: 1962/1860,
  55399. bottom: 41/2003
  55400. }
  55401. },
  55402. back: {
  55403. height: math.unit(7 + 8/12, "feet"),
  55404. weight: math.unit(333, "lb"),
  55405. name: "Back",
  55406. image: {
  55407. source: "./media/characters/vincent-vasroc/back.svg",
  55408. extra: 1952/1815,
  55409. bottom: 33/1985
  55410. }
  55411. },
  55412. paw: {
  55413. height: math.unit(1.24, "feet"),
  55414. name: "Paw",
  55415. image: {
  55416. source: "./media/characters/vincent-vasroc/paw.svg"
  55417. }
  55418. },
  55419. ear: {
  55420. height: math.unit(0.75, "feet"),
  55421. name: "Ear",
  55422. image: {
  55423. source: "./media/characters/vincent-vasroc/ear.svg"
  55424. }
  55425. },
  55426. },
  55427. [
  55428. {
  55429. name: "Nano",
  55430. height: math.unit(92, "micrometers")
  55431. },
  55432. {
  55433. name: "Normal",
  55434. height: math.unit(7 + 8/12, "feet"),
  55435. default: true
  55436. },
  55437. ]
  55438. ))
  55439. characterMakers.push(() => makeCharacter(
  55440. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55441. {
  55442. frontNsfw: {
  55443. height: math.unit(40, "feet"),
  55444. weight: math.unit(58, "tons"),
  55445. name: "Front (NSFW)",
  55446. image: {
  55447. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55448. extra: 1265/965,
  55449. bottom: 155/1420
  55450. }
  55451. },
  55452. frontSfw: {
  55453. height: math.unit(40, "feet"),
  55454. weight: math.unit(58, "tons"),
  55455. name: "Front (SFW)",
  55456. image: {
  55457. source: "./media/characters/ru-kahn/front-sfw.svg",
  55458. extra: 1265/965,
  55459. bottom: 80/1345
  55460. }
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Small",
  55466. height: math.unit(4, "feet")
  55467. },
  55468. {
  55469. name: "Normal",
  55470. height: math.unit(40, "feet"),
  55471. default: true
  55472. },
  55473. {
  55474. name: "Macro",
  55475. height: math.unit(400, "feet")
  55476. },
  55477. ]
  55478. ))
  55479. characterMakers.push(() => makeCharacter(
  55480. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55481. {
  55482. frontNude: {
  55483. height: math.unit(6 + 5/12, "feet"),
  55484. name: "Front (Nude)",
  55485. image: {
  55486. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55487. extra: 1369/1366,
  55488. bottom: 68/1437
  55489. }
  55490. },
  55491. frontDressed: {
  55492. height: math.unit(6 + 5/12, "feet"),
  55493. name: "Front (Dressed)",
  55494. image: {
  55495. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55496. extra: 1369/1366,
  55497. bottom: 68/1437
  55498. }
  55499. },
  55500. },
  55501. [
  55502. {
  55503. name: "Normal",
  55504. height: math.unit(6 + 5/12, "feet"),
  55505. default: true
  55506. },
  55507. {
  55508. name: "Maximum",
  55509. height: math.unit(1930, "feet")
  55510. },
  55511. ]
  55512. ))
  55513. characterMakers.push(() => makeCharacter(
  55514. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55515. {
  55516. front: {
  55517. height: math.unit(5 + 6/12, "feet"),
  55518. name: "Front",
  55519. image: {
  55520. source: "./media/characters/kaja/front.svg",
  55521. extra: 1874/1514,
  55522. bottom: 117/1991
  55523. }
  55524. },
  55525. },
  55526. [
  55527. {
  55528. name: "Normal",
  55529. height: math.unit(5 + 6/12, "feet"),
  55530. default: true
  55531. },
  55532. ]
  55533. ))
  55534. characterMakers.push(() => makeCharacter(
  55535. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55536. {
  55537. front: {
  55538. height: math.unit(5 + 9/12, "feet"),
  55539. weight: math.unit(200, "lb"),
  55540. name: "Front",
  55541. image: {
  55542. source: "./media/characters/mark-smith/front.svg",
  55543. extra: 1004/943,
  55544. bottom: 58/1062
  55545. }
  55546. },
  55547. back: {
  55548. height: math.unit(5 + 9/12, "feet"),
  55549. weight: math.unit(200, "lb"),
  55550. name: "Back",
  55551. image: {
  55552. source: "./media/characters/mark-smith/back.svg",
  55553. extra: 1023/953,
  55554. bottom: 24/1047
  55555. }
  55556. },
  55557. head: {
  55558. height: math.unit(1.82, "feet"),
  55559. name: "Head",
  55560. image: {
  55561. source: "./media/characters/mark-smith/head.svg"
  55562. }
  55563. },
  55564. hand: {
  55565. height: math.unit(1.4, "feet"),
  55566. name: "Hand",
  55567. image: {
  55568. source: "./media/characters/mark-smith/hand.svg"
  55569. }
  55570. },
  55571. paw: {
  55572. height: math.unit(1.69, "feet"),
  55573. name: "Paw",
  55574. image: {
  55575. source: "./media/characters/mark-smith/paw.svg"
  55576. }
  55577. },
  55578. },
  55579. [
  55580. {
  55581. name: "Micro",
  55582. height: math.unit(0.25, "inches")
  55583. },
  55584. {
  55585. name: "Normal",
  55586. height: math.unit(5 + 9/12, "feet"),
  55587. default: true
  55588. },
  55589. {
  55590. name: "Macro",
  55591. height: math.unit(500, "feet")
  55592. },
  55593. ]
  55594. ))
  55595. characterMakers.push(() => makeCharacter(
  55596. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55597. {
  55598. frontNude: {
  55599. height: math.unit(6, "feet"),
  55600. name: "Front (Nude)",
  55601. image: {
  55602. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55603. extra: 1384/1321,
  55604. bottom: 57/1441
  55605. }
  55606. },
  55607. frontDressed: {
  55608. height: math.unit(6, "feet"),
  55609. name: "Front (Dressed)",
  55610. image: {
  55611. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55612. extra: 1384/1321,
  55613. bottom: 57/1441
  55614. }
  55615. },
  55616. },
  55617. [
  55618. {
  55619. name: "Normal",
  55620. height: math.unit(6, "feet"),
  55621. default: true
  55622. },
  55623. {
  55624. name: "Maximum",
  55625. height: math.unit(1776, "feet")
  55626. },
  55627. ]
  55628. ))
  55629. characterMakers.push(() => makeCharacter(
  55630. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55631. {
  55632. front: {
  55633. height: math.unit(2 + 4/12, "feet"),
  55634. weight: math.unit(350, "lb"),
  55635. name: "Front",
  55636. image: {
  55637. source: "./media/characters/devos/front.svg",
  55638. extra: 958/852,
  55639. bottom: 143/1101
  55640. }
  55641. },
  55642. },
  55643. [
  55644. {
  55645. name: "Base",
  55646. height: math.unit(2 + 4/12, "feet"),
  55647. default: true
  55648. },
  55649. ]
  55650. ))
  55651. characterMakers.push(() => makeCharacter(
  55652. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55653. {
  55654. front: {
  55655. height: math.unit(9 + 2/12, "feet"),
  55656. name: "Front",
  55657. image: {
  55658. source: "./media/characters/hiveheart/front.svg",
  55659. extra: 394/364,
  55660. bottom: 65/459
  55661. }
  55662. },
  55663. back: {
  55664. height: math.unit(9 + 2/12, "feet"),
  55665. name: "Back",
  55666. image: {
  55667. source: "./media/characters/hiveheart/back.svg",
  55668. extra: 374/357,
  55669. bottom: 63/437
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Base",
  55676. height: math.unit(9 + 2/12, "feet"),
  55677. default: true
  55678. },
  55679. ]
  55680. ))
  55681. characterMakers.push(() => makeCharacter(
  55682. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55683. {
  55684. front: {
  55685. height: math.unit(2.5, "inches"),
  55686. weight: math.unit(0.6, "oz"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/bryn/front.svg",
  55690. extra: 1480/1205,
  55691. bottom: 27/1507
  55692. }
  55693. },
  55694. back: {
  55695. height: math.unit(2.5, "inches"),
  55696. weight: math.unit(0.6, "oz"),
  55697. name: "Back",
  55698. image: {
  55699. source: "./media/characters/bryn/back.svg",
  55700. extra: 1475/1201,
  55701. bottom: 39/1514
  55702. }
  55703. },
  55704. foot: {
  55705. height: math.unit(0.4, "inches"),
  55706. name: "Foot",
  55707. image: {
  55708. source: "./media/characters/bryn/foot.svg"
  55709. }
  55710. },
  55711. },
  55712. [
  55713. {
  55714. name: "Normal",
  55715. height: math.unit(2.5, "inches"),
  55716. default: true
  55717. },
  55718. ]
  55719. ))
  55720. characterMakers.push(() => makeCharacter(
  55721. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55722. {
  55723. side: {
  55724. height: math.unit(7, "feet"),
  55725. weight: math.unit(657, "kg"),
  55726. name: "Side",
  55727. image: {
  55728. source: "./media/characters/delta/side.svg",
  55729. extra: 781/212,
  55730. bottom: 7/788
  55731. },
  55732. extraAttributes: {
  55733. "wingspan": {
  55734. name: "Wingspan",
  55735. power: 1,
  55736. type: "length",
  55737. base: math.unit(48, "feet")
  55738. },
  55739. "length": {
  55740. name: "Length",
  55741. power: 1,
  55742. type: "length",
  55743. base: math.unit(21, "feet")
  55744. },
  55745. "pawSize": {
  55746. name: "Paw Size",
  55747. power: 2,
  55748. type: "area",
  55749. base: math.unit(1.5*1.4, "feet^2")
  55750. },
  55751. }
  55752. },
  55753. },
  55754. [
  55755. {
  55756. name: "Normal",
  55757. height: math.unit(6, "feet"),
  55758. default: true
  55759. },
  55760. ]
  55761. ))
  55762. characterMakers.push(() => makeCharacter(
  55763. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55764. {
  55765. front: {
  55766. height: math.unit(6, "feet"),
  55767. name: "Front",
  55768. image: {
  55769. source: "./media/characters/pyrow/front.svg",
  55770. extra: 513/486,
  55771. bottom: 14/527
  55772. }
  55773. },
  55774. frontWing: {
  55775. height: math.unit(6, "feet"),
  55776. name: "Front (Wing)",
  55777. image: {
  55778. source: "./media/characters/pyrow/front-wing.svg",
  55779. extra: 539/383,
  55780. bottom: 20/559
  55781. }
  55782. },
  55783. back: {
  55784. height: math.unit(6, "feet"),
  55785. name: "Back",
  55786. image: {
  55787. source: "./media/characters/pyrow/back.svg",
  55788. extra: 500/473,
  55789. bottom: 9/509
  55790. }
  55791. },
  55792. },
  55793. [
  55794. {
  55795. name: "Normal",
  55796. height: math.unit(6, "feet"),
  55797. default: true
  55798. },
  55799. ]
  55800. ))
  55801. characterMakers.push(() => makeCharacter(
  55802. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55803. {
  55804. front: {
  55805. height: math.unit(5, "meters"),
  55806. weight: math.unit(3, "tonnes"),
  55807. name: "Front",
  55808. image: {
  55809. source: "./media/characters/velikan/front.svg",
  55810. extra: 867/744,
  55811. bottom: 71/938
  55812. },
  55813. extraAttributes: {
  55814. "shoeSize": {
  55815. name: "Shoe Size",
  55816. power: 1,
  55817. type: "length",
  55818. base: math.unit(135, "ShoeSizeUK"),
  55819. defaultUnit: "ShoeSizeUK"
  55820. },
  55821. }
  55822. },
  55823. },
  55824. [
  55825. {
  55826. name: "Normal",
  55827. height: math.unit(5, "meters"),
  55828. default: true
  55829. },
  55830. {
  55831. name: "Macro",
  55832. height: math.unit(1, "km")
  55833. },
  55834. {
  55835. name: "Mega Macro",
  55836. height: math.unit(100, "km")
  55837. },
  55838. {
  55839. name: "Giga Macro",
  55840. height: math.unit(2, "megameters")
  55841. },
  55842. {
  55843. name: "Planetary",
  55844. height: math.unit(22, "megameters")
  55845. },
  55846. {
  55847. name: "Solar",
  55848. height: math.unit(8, "gigameters")
  55849. },
  55850. {
  55851. name: "Cosmic",
  55852. height: math.unit(10, "zettameters")
  55853. },
  55854. {
  55855. name: "Omni",
  55856. height: math.unit(9e260, "multiverses")
  55857. },
  55858. ]
  55859. ))
  55860. characterMakers.push(() => makeCharacter(
  55861. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55862. {
  55863. front: {
  55864. height: math.unit(4 + 3/12, "feet"),
  55865. weight: math.unit(90, "lb"),
  55866. name: "Front",
  55867. image: {
  55868. source: "./media/characters/sabiki/front.svg",
  55869. extra: 1662/1423,
  55870. bottom: 65/1727
  55871. }
  55872. },
  55873. },
  55874. [
  55875. {
  55876. name: "Normal",
  55877. height: math.unit(4 + 3/12, "feet"),
  55878. default: true
  55879. },
  55880. ]
  55881. ))
  55882. characterMakers.push(() => makeCharacter(
  55883. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55884. {
  55885. frontSfw: {
  55886. height: math.unit(2, "mm"),
  55887. name: "Front (SFW)",
  55888. image: {
  55889. source: "./media/characters/carmel/front-sfw.svg",
  55890. extra: 1131/1006,
  55891. bottom: 66/1197
  55892. }
  55893. },
  55894. frontNsfw: {
  55895. height: math.unit(2, "mm"),
  55896. name: "Front (NSFW)",
  55897. image: {
  55898. source: "./media/characters/carmel/front-nsfw.svg",
  55899. extra: 1131/1006,
  55900. bottom: 66/1197
  55901. }
  55902. },
  55903. foot: {
  55904. height: math.unit(0.3, "mm"),
  55905. name: "Foot",
  55906. image: {
  55907. source: "./media/characters/carmel/foot.svg"
  55908. }
  55909. },
  55910. tongue: {
  55911. height: math.unit(0.71, "mm"),
  55912. name: "Tongue",
  55913. image: {
  55914. source: "./media/characters/carmel/tongue.svg"
  55915. }
  55916. },
  55917. dick: {
  55918. height: math.unit(0.085, "mm"),
  55919. name: "Dick",
  55920. image: {
  55921. source: "./media/characters/carmel/dick.svg"
  55922. }
  55923. },
  55924. },
  55925. [
  55926. {
  55927. name: "Micro",
  55928. height: math.unit(2, "mm"),
  55929. default: true
  55930. },
  55931. {
  55932. name: "Normal",
  55933. height: math.unit(4 + 8/12, "feet")
  55934. },
  55935. {
  55936. name: "Mega Macro",
  55937. height: math.unit(250, "feet")
  55938. },
  55939. {
  55940. name: "BIGGER",
  55941. height: math.unit(1000, "feet")
  55942. },
  55943. {
  55944. name: "BIGGEST",
  55945. height: math.unit(2, "miles")
  55946. },
  55947. ]
  55948. ))
  55949. characterMakers.push(() => makeCharacter(
  55950. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55951. {
  55952. front: {
  55953. height: math.unit(6.5, "feet"),
  55954. weight: math.unit(198, "lb"),
  55955. name: "Front",
  55956. image: {
  55957. source: "./media/characters/tamani/anthro.svg",
  55958. extra: 930/890,
  55959. bottom: 34/964
  55960. },
  55961. form: "anthro",
  55962. default: true
  55963. },
  55964. side: {
  55965. height: math.unit(6, "feet"),
  55966. weight: math.unit(198*2, "lb"),
  55967. name: "Side",
  55968. image: {
  55969. source: "./media/characters/tamani/feral.svg",
  55970. extra: 559/519,
  55971. bottom: 43/602
  55972. },
  55973. form: "feral"
  55974. },
  55975. },
  55976. [
  55977. {
  55978. name: "Normal",
  55979. height: math.unit(6.5, "feet"),
  55980. default: true,
  55981. form: "anthro"
  55982. },
  55983. {
  55984. name: "Normal",
  55985. height: math.unit(6, "feet"),
  55986. default: true,
  55987. form: "feral"
  55988. },
  55989. ],
  55990. {
  55991. "anthro": {
  55992. name: "Anthro",
  55993. default: true
  55994. },
  55995. "feral": {
  55996. name: "Feral",
  55997. },
  55998. }
  55999. ))
  56000. characterMakers.push(() => makeCharacter(
  56001. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56002. {
  56003. front: {
  56004. height: math.unit(4 + 1/12, "feet"),
  56005. weight: math.unit(114, "lb"),
  56006. name: "Front",
  56007. image: {
  56008. source: "./media/characters/dex/front.svg",
  56009. extra: 787/680,
  56010. bottom: 18/805
  56011. }
  56012. },
  56013. side: {
  56014. height: math.unit(4 + 1/12, "feet"),
  56015. weight: math.unit(114, "lb"),
  56016. name: "Side",
  56017. image: {
  56018. source: "./media/characters/dex/side.svg",
  56019. extra: 785/680,
  56020. bottom: 12/797
  56021. }
  56022. },
  56023. back: {
  56024. height: math.unit(4 + 1/12, "feet"),
  56025. weight: math.unit(114, "lb"),
  56026. name: "Back",
  56027. image: {
  56028. source: "./media/characters/dex/back.svg",
  56029. extra: 785/681,
  56030. bottom: 17/802
  56031. }
  56032. },
  56033. loungewear: {
  56034. height: math.unit(4 + 1/12, "feet"),
  56035. weight: math.unit(114, "lb"),
  56036. name: "Loungewear",
  56037. image: {
  56038. source: "./media/characters/dex/loungewear.svg",
  56039. extra: 787/680,
  56040. bottom: 18/805
  56041. }
  56042. },
  56043. workout: {
  56044. height: math.unit(4 + 1/12, "feet"),
  56045. weight: math.unit(114, "lb"),
  56046. name: "Workout",
  56047. image: {
  56048. source: "./media/characters/dex/workout.svg",
  56049. extra: 787/680,
  56050. bottom: 18/805
  56051. }
  56052. },
  56053. schoolUniform: {
  56054. height: math.unit(4 + 1/12, "feet"),
  56055. weight: math.unit(114, "lb"),
  56056. name: "School-uniform",
  56057. image: {
  56058. source: "./media/characters/dex/school-uniform.svg",
  56059. extra: 787/680,
  56060. bottom: 18/805
  56061. }
  56062. },
  56063. maw: {
  56064. height: math.unit(0.55, "feet"),
  56065. name: "Maw",
  56066. image: {
  56067. source: "./media/characters/dex/maw.svg"
  56068. }
  56069. },
  56070. paw: {
  56071. height: math.unit(0.87, "feet"),
  56072. name: "Paw",
  56073. image: {
  56074. source: "./media/characters/dex/paw.svg"
  56075. }
  56076. },
  56077. bust: {
  56078. height: math.unit(1.67, "feet"),
  56079. name: "Bust",
  56080. image: {
  56081. source: "./media/characters/dex/bust.svg"
  56082. }
  56083. },
  56084. },
  56085. [
  56086. {
  56087. name: "Normal",
  56088. height: math.unit(4 + 1/12, "feet"),
  56089. default: true
  56090. },
  56091. ]
  56092. ))
  56093. characterMakers.push(() => makeCharacter(
  56094. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56095. {
  56096. front: {
  56097. height: math.unit(4 + 3/12, "feet"),
  56098. weight: math.unit(60, "lb"),
  56099. name: "Front",
  56100. image: {
  56101. source: "./media/characters/silke/front.svg",
  56102. extra: 1334/1122,
  56103. bottom: 21/1355
  56104. }
  56105. },
  56106. back: {
  56107. height: math.unit(4 + 3/12, "feet"),
  56108. weight: math.unit(60, "lb"),
  56109. name: "Back",
  56110. image: {
  56111. source: "./media/characters/silke/back.svg",
  56112. extra: 1328/1092,
  56113. bottom: 16/1344
  56114. }
  56115. },
  56116. dressed: {
  56117. height: math.unit(4 + 3/12, "feet"),
  56118. weight: math.unit(60, "lb"),
  56119. name: "Dressed",
  56120. image: {
  56121. source: "./media/characters/silke/dressed.svg",
  56122. extra: 1334/1122,
  56123. bottom: 43/1377
  56124. }
  56125. },
  56126. },
  56127. [
  56128. {
  56129. name: "Normal",
  56130. height: math.unit(4 + 3/12, "feet"),
  56131. default: true
  56132. },
  56133. ]
  56134. ))
  56135. characterMakers.push(() => makeCharacter(
  56136. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56137. {
  56138. front: {
  56139. height: math.unit(1.58, "meters"),
  56140. weight: math.unit(47, "kg"),
  56141. name: "Front",
  56142. image: {
  56143. source: "./media/characters/wireshark/front.svg",
  56144. extra: 883/838,
  56145. bottom: 66/949
  56146. }
  56147. },
  56148. },
  56149. [
  56150. {
  56151. name: "Normal",
  56152. height: math.unit(1.58, "meters"),
  56153. default: true
  56154. },
  56155. ]
  56156. ))
  56157. characterMakers.push(() => makeCharacter(
  56158. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56159. {
  56160. front: {
  56161. height: math.unit(6, "meters"),
  56162. weight: math.unit(15000, "kg"),
  56163. name: "Front",
  56164. image: {
  56165. source: "./media/characters/gallagher/front.svg",
  56166. extra: 532/493,
  56167. bottom: 0/532
  56168. }
  56169. },
  56170. },
  56171. [
  56172. {
  56173. name: "Normal",
  56174. height: math.unit(6, "meters"),
  56175. default: true
  56176. },
  56177. ]
  56178. ))
  56179. characterMakers.push(() => makeCharacter(
  56180. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56181. {
  56182. front: {
  56183. height: math.unit(2.4, "meters"),
  56184. weight: math.unit(270, "kg"),
  56185. name: "Front",
  56186. image: {
  56187. source: "./media/characters/alice/front.svg",
  56188. extra: 950/900,
  56189. bottom: 36/986
  56190. }
  56191. },
  56192. side: {
  56193. height: math.unit(2.4, "meters"),
  56194. weight: math.unit(270, "kg"),
  56195. name: "Side",
  56196. image: {
  56197. source: "./media/characters/alice/side.svg",
  56198. extra: 921/876,
  56199. bottom: 19/940
  56200. }
  56201. },
  56202. dressed: {
  56203. height: math.unit(2.4, "meters"),
  56204. weight: math.unit(270, "kg"),
  56205. name: "Dressed",
  56206. image: {
  56207. source: "./media/characters/alice/dressed.svg",
  56208. extra: 905/850,
  56209. bottom: 81/986
  56210. }
  56211. },
  56212. fishnet: {
  56213. height: math.unit(2.4, "meters"),
  56214. weight: math.unit(270, "kg"),
  56215. name: "Fishnet",
  56216. image: {
  56217. source: "./media/characters/alice/fishnet.svg",
  56218. extra: 905/850,
  56219. bottom: 81/986
  56220. }
  56221. },
  56222. },
  56223. [
  56224. {
  56225. name: "Normal",
  56226. height: math.unit(2.4, "meters"),
  56227. default: true
  56228. },
  56229. ]
  56230. ))
  56231. characterMakers.push(() => makeCharacter(
  56232. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56233. {
  56234. front: {
  56235. height: math.unit(175.25, "feet"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/fio/front.svg",
  56239. extra: 1883/1591,
  56240. bottom: 34/1917
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Normal",
  56247. height: math.unit(175.25, "cm"),
  56248. default: true
  56249. },
  56250. ]
  56251. ))
  56252. characterMakers.push(() => makeCharacter(
  56253. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56254. {
  56255. side: {
  56256. height: math.unit(6, "meters"),
  56257. weight: math.unit(3400, "kg"),
  56258. preyCapacity: math.unit(1700, "liters"),
  56259. name: "Side",
  56260. image: {
  56261. source: "./media/characters/hass/side.svg",
  56262. extra: 1058/997,
  56263. bottom: 177/1235
  56264. }
  56265. },
  56266. feeding: {
  56267. height: math.unit(6*0.63, "meters"),
  56268. weight: math.unit(3400, "kg"),
  56269. preyCapacity: math.unit(1700, "liters"),
  56270. name: "Feeding",
  56271. image: {
  56272. source: "./media/characters/hass/feeding.svg",
  56273. extra: 689/579,
  56274. bottom: 146/835
  56275. }
  56276. },
  56277. guts: {
  56278. height: math.unit(6, "meters"),
  56279. weight: math.unit(3400, "kg"),
  56280. name: "Guts",
  56281. image: {
  56282. source: "./media/characters/hass/guts.svg",
  56283. extra: 1223/1198,
  56284. bottom: 182/1405
  56285. }
  56286. },
  56287. dickFront: {
  56288. height: math.unit(1.4, "meters"),
  56289. name: "Dick (Front)",
  56290. image: {
  56291. source: "./media/characters/hass/dick-front.svg"
  56292. }
  56293. },
  56294. dickSide: {
  56295. height: math.unit(1.3, "meters"),
  56296. name: "Dick (Side)",
  56297. image: {
  56298. source: "./media/characters/hass/dick-side.svg"
  56299. }
  56300. },
  56301. dickBack: {
  56302. height: math.unit(1.4, "meters"),
  56303. name: "Dick (Back)",
  56304. image: {
  56305. source: "./media/characters/hass/dick-back.svg"
  56306. }
  56307. },
  56308. },
  56309. [
  56310. {
  56311. name: "Normal",
  56312. height: math.unit(6, "meters"),
  56313. default: true
  56314. },
  56315. ]
  56316. ))
  56317. characterMakers.push(() => makeCharacter(
  56318. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56319. {
  56320. front: {
  56321. height: math.unit(4, "feet"),
  56322. weight: math.unit(60, "lb"),
  56323. name: "Front",
  56324. image: {
  56325. source: "./media/characters/hickory-finnegan/front.svg",
  56326. extra: 444/411,
  56327. bottom: 10/454
  56328. }
  56329. },
  56330. side: {
  56331. height: math.unit(4, "feet"),
  56332. weight: math.unit(60, "lb"),
  56333. name: "Side",
  56334. image: {
  56335. source: "./media/characters/hickory-finnegan/side.svg",
  56336. extra: 444/411,
  56337. bottom: 10/454
  56338. }
  56339. },
  56340. back: {
  56341. height: math.unit(4, "feet"),
  56342. weight: math.unit(60, "lb"),
  56343. name: "Back",
  56344. image: {
  56345. source: "./media/characters/hickory-finnegan/back.svg",
  56346. extra: 444/411,
  56347. bottom: 10/454
  56348. }
  56349. },
  56350. },
  56351. [
  56352. {
  56353. name: "Normal",
  56354. height: math.unit(4, "feet"),
  56355. default: true
  56356. },
  56357. ]
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56361. {
  56362. snivy_front: {
  56363. height: math.unit(2, "feet"),
  56364. weight: math.unit(17.9, "lb"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/robin-phox/snivy-front.svg",
  56368. extra: 569/504,
  56369. bottom: 33/602
  56370. },
  56371. form: "snivy",
  56372. default: true
  56373. },
  56374. snivy_frontNsfw: {
  56375. height: math.unit(2, "feet"),
  56376. weight: math.unit(17.9, "lb"),
  56377. name: "Front (NSFW)",
  56378. image: {
  56379. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56380. extra: 569/504,
  56381. bottom: 33/602
  56382. },
  56383. form: "snivy",
  56384. },
  56385. snivy_back: {
  56386. height: math.unit(2, "feet"),
  56387. weight: math.unit(17.9, "lb"),
  56388. name: "Back",
  56389. image: {
  56390. source: "./media/characters/robin-phox/snivy-back.svg",
  56391. extra: 577/508,
  56392. bottom: 21/598
  56393. },
  56394. form: "snivy",
  56395. },
  56396. snivy_foot: {
  56397. height: math.unit(0.68, "feet"),
  56398. name: "Foot",
  56399. image: {
  56400. source: "./media/characters/robin-phox/snivy-foot.svg"
  56401. },
  56402. form: "snivy",
  56403. },
  56404. snivy_sole: {
  56405. height: math.unit(0.68, "feet"),
  56406. name: "Sole",
  56407. image: {
  56408. source: "./media/characters/robin-phox/snivy-sole.svg"
  56409. },
  56410. form: "snivy",
  56411. },
  56412. yoshi_front: {
  56413. height: math.unit(6, "feet"),
  56414. weight: math.unit(150, "lb"),
  56415. name: "Front",
  56416. image: {
  56417. source: "./media/characters/robin-phox/yoshi-front.svg",
  56418. extra: 890/792,
  56419. bottom: 29/919
  56420. },
  56421. form: "yoshi",
  56422. default: true
  56423. },
  56424. yoshi_frontNsfw: {
  56425. height: math.unit(6, "feet"),
  56426. weight: math.unit(150, "lb"),
  56427. name: "Front (NSFW)",
  56428. image: {
  56429. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56430. extra: 890/792,
  56431. bottom: 29/919
  56432. },
  56433. form: "yoshi",
  56434. },
  56435. yoshi_back: {
  56436. height: math.unit(6, "feet"),
  56437. weight: math.unit(150, "lb"),
  56438. name: "Back",
  56439. image: {
  56440. source: "./media/characters/robin-phox/yoshi-back.svg",
  56441. extra: 890/792,
  56442. bottom: 29/919
  56443. },
  56444. form: "yoshi",
  56445. },
  56446. yoshi_foot: {
  56447. height: math.unit(1.5, "feet"),
  56448. name: "Foot",
  56449. image: {
  56450. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56451. },
  56452. form: "yoshi",
  56453. },
  56454. delphox_front: {
  56455. height: math.unit(4 + 11/12, "feet"),
  56456. weight: math.unit(86, "lb"),
  56457. name: "Front",
  56458. image: {
  56459. source: "./media/characters/robin-phox/delphox-front.svg",
  56460. extra: 1266/1069,
  56461. bottom: 32/1298
  56462. },
  56463. form: "delphox",
  56464. default: true
  56465. },
  56466. delphox_frontNsfw: {
  56467. height: math.unit(4 + 11/12, "feet"),
  56468. weight: math.unit(86, "lb"),
  56469. name: "Front (NSFW)",
  56470. image: {
  56471. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56472. extra: 1266/1069,
  56473. bottom: 32/1298
  56474. },
  56475. form: "delphox",
  56476. },
  56477. delphox_back: {
  56478. height: math.unit(4 + 11/12, "feet"),
  56479. weight: math.unit(86, "lb"),
  56480. name: "Back",
  56481. image: {
  56482. source: "./media/characters/robin-phox/delphox-back.svg",
  56483. extra: 1269/1083,
  56484. bottom: 15/1284
  56485. },
  56486. form: "delphox",
  56487. },
  56488. mienshao_front: {
  56489. height: math.unit(4 + 7/12, "feet"),
  56490. weight: math.unit(78.3, "lb"),
  56491. name: "Front",
  56492. image: {
  56493. source: "./media/characters/robin-phox/mienshao-front.svg",
  56494. extra: 1052/970,
  56495. bottom: 108/1160
  56496. },
  56497. form: "mienshao",
  56498. default: true
  56499. },
  56500. mienshao_frontNsfw: {
  56501. height: math.unit(4 + 7/12, "feet"),
  56502. weight: math.unit(78.3, "lb"),
  56503. name: "Front (NSFW)",
  56504. image: {
  56505. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56506. extra: 1052/970,
  56507. bottom: 108/1160
  56508. },
  56509. form: "mienshao",
  56510. },
  56511. mienshao_back: {
  56512. height: math.unit(4 + 7/12, "feet"),
  56513. weight: math.unit(78.3, "lb"),
  56514. name: "Back",
  56515. image: {
  56516. source: "./media/characters/robin-phox/mienshao-back.svg",
  56517. extra: 1102/982,
  56518. bottom: 32/1134
  56519. },
  56520. form: "mienshao",
  56521. },
  56522. inteleon_front: {
  56523. height: math.unit(6 + 3/12, "feet"),
  56524. weight: math.unit(99.6, "lb"),
  56525. name: "Front",
  56526. image: {
  56527. source: "./media/characters/robin-phox/inteleon-front.svg",
  56528. extra: 910/799,
  56529. bottom: 76/986
  56530. },
  56531. form: "inteleon",
  56532. default: true
  56533. },
  56534. inteleon_frontNsfw: {
  56535. height: math.unit(6 + 3/12, "feet"),
  56536. weight: math.unit(99.6, "lb"),
  56537. name: "Front (NSFW)",
  56538. image: {
  56539. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56540. extra: 910/799,
  56541. bottom: 76/986
  56542. },
  56543. form: "inteleon",
  56544. },
  56545. inteleon_back: {
  56546. height: math.unit(6 + 3/12, "feet"),
  56547. weight: math.unit(99.6, "lb"),
  56548. name: "Back",
  56549. image: {
  56550. source: "./media/characters/robin-phox/inteleon-back.svg",
  56551. extra: 907/796,
  56552. bottom: 25/932
  56553. },
  56554. form: "inteleon",
  56555. },
  56556. reshiram_front: {
  56557. height: math.unit(10 + 6/12, "feet"),
  56558. weight: math.unit(727.5, "lb"),
  56559. name: "Front",
  56560. image: {
  56561. source: "./media/characters/robin-phox/reshiram-front.svg",
  56562. extra: 1198/940,
  56563. bottom: 123/1321
  56564. },
  56565. form: "reshiram",
  56566. },
  56567. reshiram_frontNsfw: {
  56568. height: math.unit(10 + 6/12, "feet"),
  56569. weight: math.unit(727.5, "lb"),
  56570. name: "Front-nsfw",
  56571. image: {
  56572. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56573. extra: 1198/940,
  56574. bottom: 123/1321
  56575. },
  56576. form: "reshiram",
  56577. },
  56578. reshiram_back: {
  56579. height: math.unit(10 + 6/12, "feet"),
  56580. weight: math.unit(727.5, "lb"),
  56581. name: "Back",
  56582. image: {
  56583. source: "./media/characters/robin-phox/reshiram-back.svg",
  56584. extra: 1024/904,
  56585. bottom: 85/1109
  56586. },
  56587. form: "reshiram",
  56588. },
  56589. samurott_front: {
  56590. height: math.unit(8, "feet"),
  56591. weight: math.unit(208.6, "lb"),
  56592. name: "Front",
  56593. image: {
  56594. source: "./media/characters/robin-phox/samurott-front.svg",
  56595. extra: 1048/984,
  56596. bottom: 100/1148
  56597. },
  56598. form: "samurott",
  56599. },
  56600. samurott_frontNsfw: {
  56601. height: math.unit(8, "feet"),
  56602. weight: math.unit(208.6, "lb"),
  56603. name: "Front-nsfw",
  56604. image: {
  56605. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56606. extra: 1048/984,
  56607. bottom: 100/1148
  56608. },
  56609. form: "samurott",
  56610. },
  56611. samurott_back: {
  56612. height: math.unit(8, "feet"),
  56613. weight: math.unit(208.6, "lb"),
  56614. name: "Back",
  56615. image: {
  56616. source: "./media/characters/robin-phox/samurott-back.svg",
  56617. extra: 1110/1042,
  56618. bottom: 12/1122
  56619. },
  56620. form: "samurott",
  56621. },
  56622. samurott_feral: {
  56623. height: math.unit(4 + 11/12, "feet"),
  56624. weight: math.unit(208.6, "lb"),
  56625. name: "Feral",
  56626. image: {
  56627. source: "./media/characters/robin-phox/samurott-feral.svg",
  56628. extra: 766/681,
  56629. bottom: 108/874
  56630. },
  56631. form: "samurott",
  56632. },
  56633. },
  56634. [
  56635. {
  56636. name: "Normal",
  56637. height: math.unit(2, "feet"),
  56638. default: true,
  56639. form: "snivy"
  56640. },
  56641. {
  56642. name: "Normal",
  56643. height: math.unit(6, "feet"),
  56644. default: true,
  56645. form: "yoshi"
  56646. },
  56647. {
  56648. name: "Normal",
  56649. height: math.unit(4 + 11/12, "feet"),
  56650. default: true,
  56651. form: "delphox"
  56652. },
  56653. {
  56654. name: "Normal",
  56655. height: math.unit(4 + 7/12, "feet"),
  56656. default: true,
  56657. form: "mienshao"
  56658. },
  56659. {
  56660. name: "Normal",
  56661. height: math.unit(6 + 3/12, "feet"),
  56662. default: true,
  56663. form: "inteleon"
  56664. },
  56665. {
  56666. name: "Normal",
  56667. height: math.unit(10 + 6/12, "feet"),
  56668. default: true,
  56669. form: "reshiram"
  56670. },
  56671. {
  56672. name: "Normal",
  56673. height: math.unit(8, "feet"),
  56674. default: true,
  56675. form: "samurott"
  56676. },
  56677. {
  56678. name: "Macro",
  56679. height: math.unit(500, "feet"),
  56680. allForms: true
  56681. },
  56682. {
  56683. name: "Mega Macro",
  56684. height: math.unit(10, "earths"),
  56685. allForms: true
  56686. },
  56687. {
  56688. name: "Giga Macro",
  56689. height: math.unit(1, "galaxy"),
  56690. allForms: true
  56691. },
  56692. {
  56693. name: "Godly Macro",
  56694. height: math.unit(1e10, "multiverses"),
  56695. allForms: true
  56696. },
  56697. ],
  56698. {
  56699. "snivy": {
  56700. name: "Snivy",
  56701. default: true
  56702. },
  56703. "yoshi": {
  56704. name: "Yoshi",
  56705. },
  56706. "delphox": {
  56707. name: "Delphox",
  56708. },
  56709. "mienshao": {
  56710. name: "Mienshao",
  56711. },
  56712. "inteleon": {
  56713. name: "Inteleon",
  56714. },
  56715. "reshiram": {
  56716. name: "Reshiram",
  56717. },
  56718. "samurott": {
  56719. name: "Samurott",
  56720. },
  56721. }
  56722. ))
  56723. characterMakers.push(() => makeCharacter(
  56724. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56725. {
  56726. front: {
  56727. height: math.unit(4, "feet"),
  56728. name: "Front",
  56729. image: {
  56730. source: "./media/characters/ash-leung/front.svg",
  56731. extra: 1916/1792,
  56732. bottom: 50/1966
  56733. }
  56734. },
  56735. },
  56736. [
  56737. {
  56738. name: "Atomic",
  56739. height: math.unit(1, "angstrom")
  56740. },
  56741. {
  56742. name: "Microscopic",
  56743. height: math.unit(4000, "angstroms")
  56744. },
  56745. {
  56746. name: "Speck",
  56747. height: math.unit(1, "mm")
  56748. },
  56749. {
  56750. name: "Small",
  56751. height: math.unit(1, "inch")
  56752. },
  56753. {
  56754. name: "Normal",
  56755. height: math.unit(4, "feet"),
  56756. default: true
  56757. },
  56758. ]
  56759. ))
  56760. characterMakers.push(() => makeCharacter(
  56761. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56762. {
  56763. frontDressed: {
  56764. height: math.unit(2.08, "meters"),
  56765. weight: math.unit(175, "lb"),
  56766. name: "Front (Dressed)",
  56767. image: {
  56768. source: "./media/characters/carie/front-dressed.svg",
  56769. extra: 456/417,
  56770. bottom: 7/463
  56771. }
  56772. },
  56773. backDressed: {
  56774. height: math.unit(2.08, "meters"),
  56775. weight: math.unit(175, "lb"),
  56776. name: "Back (Dressed)",
  56777. image: {
  56778. source: "./media/characters/carie/back-dressed.svg",
  56779. extra: 455/414,
  56780. bottom: 11/466
  56781. }
  56782. },
  56783. front: {
  56784. height: math.unit(2, "meters"),
  56785. weight: math.unit(175, "lb"),
  56786. name: "Front",
  56787. image: {
  56788. source: "./media/characters/carie/front.svg",
  56789. extra: 438/399,
  56790. bottom: 12/450
  56791. }
  56792. },
  56793. back: {
  56794. height: math.unit(2, "meters"),
  56795. weight: math.unit(175, "lb"),
  56796. name: "Back",
  56797. image: {
  56798. source: "./media/characters/carie/back.svg",
  56799. extra: 438/397,
  56800. bottom: 7/445
  56801. }
  56802. },
  56803. },
  56804. [
  56805. {
  56806. name: "Normal",
  56807. height: math.unit(2.08, "meters"),
  56808. default: true
  56809. },
  56810. {
  56811. name: "Macro",
  56812. height: math.unit(2.08e3, "meters")
  56813. },
  56814. {
  56815. name: "Mega Macro",
  56816. height: math.unit(2.08e6, "meters")
  56817. },
  56818. {
  56819. name: "Giga Macro",
  56820. height: math.unit(2.08e9, "meters")
  56821. },
  56822. {
  56823. name: "Tera Macro",
  56824. height: math.unit(2.08e12, "meters")
  56825. },
  56826. {
  56827. name: "Peta Macro",
  56828. height: math.unit(2.08e15, "meters")
  56829. },
  56830. {
  56831. name: "Exa Macro",
  56832. height: math.unit(2.08e18, "meters")
  56833. },
  56834. {
  56835. name: "Zetta Macro",
  56836. height: math.unit(2.08e21, "meters")
  56837. },
  56838. {
  56839. name: "Yotta Macro",
  56840. height: math.unit(2.08e24, "meters")
  56841. },
  56842. ]
  56843. ))
  56844. characterMakers.push(() => makeCharacter(
  56845. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56846. {
  56847. front: {
  56848. height: math.unit(5 + 2/12, "feet"),
  56849. weight: math.unit(120, "lb"),
  56850. name: "Front",
  56851. image: {
  56852. source: "./media/characters/sai-bree/front.svg",
  56853. extra: 1843/1702,
  56854. bottom: 91/1934
  56855. }
  56856. },
  56857. back: {
  56858. height: math.unit(5 + 2/12, "feet"),
  56859. weight: math.unit(120, "lb"),
  56860. name: "Back",
  56861. image: {
  56862. source: "./media/characters/sai-bree/back.svg",
  56863. extra: 1809/1637,
  56864. bottom: 56/1865
  56865. }
  56866. },
  56867. },
  56868. [
  56869. {
  56870. name: "Normal",
  56871. height: math.unit(5 + 2/12, "feet"),
  56872. default: true
  56873. },
  56874. {
  56875. name: "Macro",
  56876. height: math.unit(500, "feet")
  56877. },
  56878. ]
  56879. ))
  56880. characterMakers.push(() => makeCharacter(
  56881. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56882. {
  56883. side: {
  56884. height: math.unit(0.77, "meters"),
  56885. weight: math.unit(120, "lb"),
  56886. name: "Side",
  56887. image: {
  56888. source: "./media/characters/davwyn/side.svg",
  56889. extra: 1557/1225,
  56890. bottom: 131/1688
  56891. }
  56892. },
  56893. front: {
  56894. height: math.unit(0.835410, "meters"),
  56895. weight: math.unit(120, "lb"),
  56896. name: "Front",
  56897. image: {
  56898. source: "./media/characters/davwyn/front.svg",
  56899. extra: 870/843,
  56900. bottom: 175/1045
  56901. }
  56902. },
  56903. },
  56904. [
  56905. {
  56906. name: "Minidrake",
  56907. height: math.unit(0.77/4, "meters")
  56908. },
  56909. {
  56910. name: "Normal",
  56911. height: math.unit(0.77, "meters"),
  56912. default: true
  56913. },
  56914. ]
  56915. ))
  56916. characterMakers.push(() => makeCharacter(
  56917. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56918. {
  56919. front: {
  56920. height: math.unit(10 + 3/12, "feet"),
  56921. weight: math.unit(2857, "lb"),
  56922. name: "Front",
  56923. image: {
  56924. source: "./media/characters/balans/front.svg",
  56925. extra: 427/402,
  56926. bottom: 26/453
  56927. }
  56928. },
  56929. side: {
  56930. height: math.unit(10 + 3/12, "feet"),
  56931. weight: math.unit(2857, "lb"),
  56932. name: "Side",
  56933. image: {
  56934. source: "./media/characters/balans/side.svg",
  56935. extra: 397/371,
  56936. bottom: 17/414
  56937. }
  56938. },
  56939. back: {
  56940. height: math.unit(10 + 3/12, "feet"),
  56941. weight: math.unit(2857, "lb"),
  56942. name: "Back",
  56943. image: {
  56944. source: "./media/characters/balans/back.svg",
  56945. extra: 408/381,
  56946. bottom: 14/422
  56947. }
  56948. },
  56949. hand: {
  56950. height: math.unit(1.15, "feet"),
  56951. name: "Hand",
  56952. image: {
  56953. source: "./media/characters/balans/hand.svg"
  56954. }
  56955. },
  56956. footRest: {
  56957. height: math.unit(3.1, "feet"),
  56958. name: "Foot (Rest)",
  56959. image: {
  56960. source: "./media/characters/balans/foot-rest.svg"
  56961. }
  56962. },
  56963. footActive: {
  56964. height: math.unit(3.5, "feet"),
  56965. name: "Foot (Active)",
  56966. image: {
  56967. source: "./media/characters/balans/foot-active.svg"
  56968. }
  56969. },
  56970. },
  56971. [
  56972. {
  56973. name: "Normal",
  56974. height: math.unit(10 + 3/12, "feet"),
  56975. default: true
  56976. },
  56977. ]
  56978. ))
  56979. characterMakers.push(() => makeCharacter(
  56980. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  56981. {
  56982. side: {
  56983. height: math.unit(9, "meters"),
  56984. weight: math.unit(114, "tonnes"),
  56985. name: "Side",
  56986. image: {
  56987. source: "./media/characters/eldkveikir/side.svg",
  56988. extra: 1927/338,
  56989. bottom: 42/1969
  56990. }
  56991. },
  56992. sitting: {
  56993. height: math.unit(13.4, "meters"),
  56994. weight: math.unit(114, "tonnes"),
  56995. name: "Sitting",
  56996. image: {
  56997. source: "./media/characters/eldkveikir/sitting.svg",
  56998. extra: 1108/963,
  56999. bottom: 610/1718
  57000. }
  57001. },
  57002. maw: {
  57003. height: math.unit(8.36, "meters"),
  57004. name: "Maw",
  57005. image: {
  57006. source: "./media/characters/eldkveikir/maw.svg"
  57007. }
  57008. },
  57009. hand: {
  57010. height: math.unit(4.84, "meters"),
  57011. name: "Hand",
  57012. image: {
  57013. source: "./media/characters/eldkveikir/hand.svg"
  57014. }
  57015. },
  57016. foot: {
  57017. height: math.unit(6.9, "meters"),
  57018. name: "Foot",
  57019. image: {
  57020. source: "./media/characters/eldkveikir/foot.svg"
  57021. }
  57022. },
  57023. genitals: {
  57024. height: math.unit(9.6, "meters"),
  57025. name: "Genitals",
  57026. image: {
  57027. source: "./media/characters/eldkveikir/genitals.svg"
  57028. }
  57029. },
  57030. },
  57031. [
  57032. {
  57033. name: "Normal",
  57034. height: math.unit(9, "meters"),
  57035. default: true
  57036. },
  57037. ]
  57038. ))
  57039. characterMakers.push(() => makeCharacter(
  57040. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57041. {
  57042. front: {
  57043. height: math.unit(14, "feet"),
  57044. weight: math.unit(4100, "lb"),
  57045. name: "Front",
  57046. image: {
  57047. source: "./media/characters/arrow/front.svg",
  57048. extra: 330/318,
  57049. bottom: 56/386
  57050. }
  57051. },
  57052. },
  57053. [
  57054. {
  57055. name: "Normal",
  57056. height: math.unit(14, "feet"),
  57057. default: true
  57058. },
  57059. {
  57060. name: "Minimacro",
  57061. height: math.unit(63, "feet")
  57062. },
  57063. {
  57064. name: "Macro",
  57065. height: math.unit(630, "feet")
  57066. },
  57067. {
  57068. name: "Megamacro",
  57069. height: math.unit(12600, "feet")
  57070. },
  57071. {
  57072. name: "Gigamacro",
  57073. height: math.unit(18000, "miles")
  57074. },
  57075. ]
  57076. ))
  57077. characterMakers.push(() => makeCharacter(
  57078. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57079. {
  57080. front: {
  57081. height: math.unit(10, "feet"),
  57082. weight: math.unit(2.4, "tons"),
  57083. name: "Front",
  57084. image: {
  57085. source: "./media/characters/3yk-k0-unit/front.svg",
  57086. extra: 573/561,
  57087. bottom: 33/606
  57088. }
  57089. },
  57090. back: {
  57091. height: math.unit(10, "feet"),
  57092. weight: math.unit(2.4, "tons"),
  57093. name: "Back",
  57094. image: {
  57095. source: "./media/characters/3yk-k0-unit/back.svg",
  57096. extra: 614/573,
  57097. bottom: 32/646
  57098. }
  57099. },
  57100. maw: {
  57101. height: math.unit(2.15, "feet"),
  57102. name: "Maw",
  57103. image: {
  57104. source: "./media/characters/3yk-k0-unit/maw.svg"
  57105. }
  57106. },
  57107. },
  57108. [
  57109. {
  57110. name: "Normal",
  57111. height: math.unit(10, "feet"),
  57112. default: true
  57113. },
  57114. ]
  57115. ))
  57116. characterMakers.push(() => makeCharacter(
  57117. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57118. {
  57119. front: {
  57120. height: math.unit(8 + 8/12, "feet"),
  57121. name: "Front",
  57122. image: {
  57123. source: "./media/characters/nemo/front.svg",
  57124. extra: 1308/1217,
  57125. bottom: 57/1365
  57126. }
  57127. },
  57128. },
  57129. [
  57130. {
  57131. name: "Normal",
  57132. height: math.unit(8 + 8/12, "feet"),
  57133. default: true
  57134. },
  57135. ]
  57136. ))
  57137. characterMakers.push(() => makeCharacter(
  57138. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57139. {
  57140. front: {
  57141. height: math.unit(8, "feet"),
  57142. weight: math.unit(760, "lb"),
  57143. name: "Front",
  57144. image: {
  57145. source: "./media/characters/rexx/front.svg",
  57146. extra: 786/750,
  57147. bottom: 17/803
  57148. },
  57149. extraAttributes: {
  57150. "pawLength": {
  57151. name: "Paw Length",
  57152. power: 1,
  57153. type: "length",
  57154. base: math.unit(27, "inches")
  57155. },
  57156. }
  57157. },
  57158. },
  57159. [
  57160. {
  57161. name: "Micro",
  57162. height: math.unit(2, "inches")
  57163. },
  57164. {
  57165. name: "Normal",
  57166. height: math.unit(8, "feet"),
  57167. default: true
  57168. },
  57169. {
  57170. name: "Macro",
  57171. height: math.unit(150, "feet")
  57172. },
  57173. ]
  57174. ))
  57175. //characters
  57176. function makeCharacters() {
  57177. const results = [];
  57178. characterMakers.forEach(character => {
  57179. results.push(character());
  57180. });
  57181. return results;
  57182. }