less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

58899 Zeilen
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: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. }
  2210. //species
  2211. function getSpeciesInfo(speciesList) {
  2212. let result = new Set();
  2213. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2214. result.add(entry)
  2215. });
  2216. return Array.from(result);
  2217. };
  2218. function getSpeciesInfoHelper(species) {
  2219. if (!speciesData[species]) {
  2220. console.warn(species + " doesn't exist");
  2221. return [];
  2222. }
  2223. if (speciesData[species].parents) {
  2224. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2225. } else {
  2226. return [species];
  2227. }
  2228. }
  2229. characterMakers.push(() => makeCharacter(
  2230. {
  2231. name: "Fen",
  2232. species: ["crux"],
  2233. description: {
  2234. title: "Bio",
  2235. text: "Very furry. Sheds on everything."
  2236. },
  2237. tags: [
  2238. "anthro",
  2239. "goo"
  2240. ]
  2241. },
  2242. {
  2243. front: {
  2244. height: math.unit(12, "feet"),
  2245. weight: math.unit(2400, "lb"),
  2246. preyCapacity: math.unit(1, "people"),
  2247. name: "Front",
  2248. image: {
  2249. source: "./media/characters/fen/front.svg",
  2250. extra: 1804/1562,
  2251. bottom: 205/2009
  2252. },
  2253. extraAttributes: {
  2254. pawSize: {
  2255. name: "Paw Size",
  2256. power: 2,
  2257. type: "area",
  2258. base: math.unit(0.35, "m^2")
  2259. }
  2260. }
  2261. },
  2262. diving: {
  2263. height: math.unit(4.9, "meters"),
  2264. weight: math.unit(2400, "lb"),
  2265. name: "Diving",
  2266. image: {
  2267. source: "./media/characters/fen/diving.svg"
  2268. }
  2269. },
  2270. sleeby: {
  2271. height: math.unit(3.45, "meters"),
  2272. weight: math.unit(2400, "lb"),
  2273. name: "Sleeby",
  2274. image: {
  2275. source: "./media/characters/fen/sleeby.svg"
  2276. }
  2277. },
  2278. goo: {
  2279. height: math.unit(12, "feet"),
  2280. weight: math.unit(3600, "lb"),
  2281. volume: math.unit(1000, "liters"),
  2282. preyCapacity: math.unit(6, "people"),
  2283. name: "Goo",
  2284. image: {
  2285. source: "./media/characters/fen/goo.svg",
  2286. extra: 1307/1071,
  2287. bottom: 134/1441
  2288. }
  2289. },
  2290. horror: {
  2291. height: math.unit(13.6, "feet"),
  2292. weight: math.unit(2400, "lb"),
  2293. preyCapacity: math.unit(1, "people"),
  2294. name: "Horror",
  2295. image: {
  2296. source: "./media/characters/fen/horror.svg",
  2297. extra: 893/797,
  2298. bottom: 0/893
  2299. }
  2300. },
  2301. gooNsfw: {
  2302. height: math.unit(12, "feet"),
  2303. weight: math.unit(3750, "lb"),
  2304. volume: math.unit(1000, "liters"),
  2305. preyCapacity: math.unit(6, "people"),
  2306. name: "Goo (NSFW)",
  2307. image: {
  2308. source: "./media/characters/fen/goo-nsfw.svg",
  2309. extra: 1875/1734,
  2310. bottom: 122/1997
  2311. }
  2312. },
  2313. maw: {
  2314. height: math.unit(5.03, "feet"),
  2315. name: "Maw",
  2316. image: {
  2317. source: "./media/characters/fen/maw.svg"
  2318. }
  2319. },
  2320. gooCeiling: {
  2321. height: math.unit(6.6, "feet"),
  2322. weight: math.unit(3000, "lb"),
  2323. volume: math.unit(1000, "liters"),
  2324. preyCapacity: math.unit(6, "people"),
  2325. name: "Maw (Goo)",
  2326. image: {
  2327. source: "./media/characters/fen/goo-maw.svg"
  2328. }
  2329. },
  2330. paw: {
  2331. height: math.unit(3.77, "feet"),
  2332. name: "Paw",
  2333. image: {
  2334. source: "./media/characters/fen/paw.svg"
  2335. },
  2336. extraAttributes: {
  2337. "toeSize": {
  2338. name: "Toe Size",
  2339. power: 2,
  2340. type: "area",
  2341. base: math.unit(0.02875, "m^2")
  2342. },
  2343. "pawSize": {
  2344. name: "Paw Size",
  2345. power: 2,
  2346. type: "area",
  2347. base: math.unit(0.378, "m^2")
  2348. },
  2349. }
  2350. },
  2351. tail: {
  2352. height: math.unit(12.1, "feet"),
  2353. name: "Tail",
  2354. image: {
  2355. source: "./media/characters/fen/tail.svg"
  2356. }
  2357. },
  2358. tailFull: {
  2359. height: math.unit(12.1, "feet"),
  2360. name: "Full Tail",
  2361. image: {
  2362. source: "./media/characters/fen/tail-full.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(2400, "lb"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/fen/back.svg",
  2371. },
  2372. info: {
  2373. description: {
  2374. mode: "append",
  2375. text: "\n\nHe is not currently looking at you."
  2376. }
  2377. }
  2378. },
  2379. full: {
  2380. height: math.unit(1.85, "meter"),
  2381. weight: math.unit(3200, "lb"),
  2382. name: "Full",
  2383. image: {
  2384. source: "./media/characters/fen/full.svg",
  2385. extra: 1133/859,
  2386. bottom: 145/1278
  2387. },
  2388. info: {
  2389. description: {
  2390. mode: "append",
  2391. text: "\n\nMunch."
  2392. }
  2393. }
  2394. },
  2395. gooLounging: {
  2396. height: math.unit(4.53, "feet"),
  2397. weight: math.unit(3000, "lb"),
  2398. preyCapacity: math.unit(6, "people"),
  2399. name: "Goo (Lounging)",
  2400. image: {
  2401. source: "./media/characters/fen/goo-lounging.svg",
  2402. bottom: 116 / 613
  2403. }
  2404. },
  2405. lounging: {
  2406. height: math.unit(10.52, "feet"),
  2407. weight: math.unit(2400, "lb"),
  2408. name: "Lounging",
  2409. image: {
  2410. source: "./media/characters/fen/lounging.svg"
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Small",
  2417. height: math.unit(2.2428, "meter")
  2418. },
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(12, "feet"),
  2422. default: true,
  2423. },
  2424. {
  2425. name: "Big",
  2426. height: math.unit(20, "feet")
  2427. },
  2428. {
  2429. name: "Minimacro",
  2430. height: math.unit(40, "feet"),
  2431. info: {
  2432. description: {
  2433. mode: "append",
  2434. text: "\n\nTOO DAMN BIG"
  2435. }
  2436. }
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(100, "feet"),
  2441. info: {
  2442. description: {
  2443. mode: "append",
  2444. text: "\n\nTOO DAMN BIG"
  2445. }
  2446. }
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(2, "miles")
  2451. },
  2452. {
  2453. name: "Gigamacro",
  2454. height: math.unit(10, "earths")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2460. {
  2461. front: {
  2462. height: math.unit(183, "cm"),
  2463. weight: math.unit(80, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/front.svg",
  2467. bottom: 0.01,
  2468. extra: 2154 / 2081
  2469. }
  2470. },
  2471. frontAlt: {
  2472. height: math.unit(183, "cm"),
  2473. weight: math.unit(80, "kg"),
  2474. name: "Front (alt)",
  2475. image: {
  2476. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2477. }
  2478. },
  2479. back: {
  2480. height: math.unit(183, "cm"),
  2481. weight: math.unit(80, "kg"),
  2482. name: "Back",
  2483. image: {
  2484. source: "./media/characters/sofia-fluttertail/back.svg"
  2485. }
  2486. },
  2487. kneeling: {
  2488. height: math.unit(125, "cm"),
  2489. weight: math.unit(80, "kg"),
  2490. name: "Kneeling",
  2491. image: {
  2492. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2493. extra: 1033 / 977,
  2494. bottom: 23.7 / 1057
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(183 / 5, "cm"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/sofia-fluttertail/maw.svg"
  2502. }
  2503. },
  2504. mawcloseup: {
  2505. height: math.unit(183 / 5 * 0.41, "cm"),
  2506. name: "Maw (Closeup)",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2509. }
  2510. },
  2511. paws: {
  2512. height: math.unit(1.17, "feet"),
  2513. name: "Paws",
  2514. image: {
  2515. source: "./media/characters/sofia-fluttertail/paws.svg",
  2516. extra: 851 / 851,
  2517. bottom: 17 / 868
  2518. }
  2519. },
  2520. },
  2521. [
  2522. {
  2523. name: "Normal",
  2524. height: math.unit(1.83, "meter")
  2525. },
  2526. {
  2527. name: "Size Thief",
  2528. height: math.unit(18, "feet")
  2529. },
  2530. {
  2531. name: "50 Foot Collie",
  2532. height: math.unit(50, "feet")
  2533. },
  2534. {
  2535. name: "Macro",
  2536. height: math.unit(96, "feet"),
  2537. default: true
  2538. },
  2539. {
  2540. name: "Megamerger",
  2541. height: math.unit(650, "feet")
  2542. },
  2543. ]
  2544. ))
  2545. characterMakers.push(() => makeCharacter(
  2546. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2547. {
  2548. front: {
  2549. height: math.unit(7, "feet"),
  2550. weight: math.unit(100, "kg"),
  2551. name: "Front",
  2552. image: {
  2553. source: "./media/characters/march/front.svg",
  2554. extra: 1992/1851,
  2555. bottom: 39/2031
  2556. }
  2557. },
  2558. foot: {
  2559. height: math.unit(0.9, "feet"),
  2560. name: "Foot",
  2561. image: {
  2562. source: "./media/characters/march/foot.svg"
  2563. }
  2564. },
  2565. },
  2566. [
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(7.9, "feet")
  2570. },
  2571. {
  2572. name: "Macro",
  2573. height: math.unit(220, "meters")
  2574. },
  2575. {
  2576. name: "Megamacro",
  2577. height: math.unit(2.98, "km"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Gigamacro",
  2582. height: math.unit(15963, "km")
  2583. },
  2584. {
  2585. name: "Teramacro",
  2586. height: math.unit(2980000000, "km")
  2587. },
  2588. {
  2589. name: "Examacro",
  2590. height: math.unit(250, "parsecs")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/noir/front.svg",
  2603. extra: 1,
  2604. bottom: 0.032
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(6.6, "feet")
  2612. },
  2613. {
  2614. name: "Macro",
  2615. height: math.unit(500, "feet")
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(2.5, "km"),
  2620. default: true
  2621. },
  2622. {
  2623. name: "Gigamacro",
  2624. height: math.unit(22500, "km")
  2625. },
  2626. {
  2627. name: "Teramacro",
  2628. height: math.unit(2500000000, "km")
  2629. },
  2630. {
  2631. name: "Examacro",
  2632. height: math.unit(200, "parsecs")
  2633. },
  2634. ]
  2635. ))
  2636. characterMakers.push(() => makeCharacter(
  2637. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2638. {
  2639. front: {
  2640. height: math.unit(7, "feet"),
  2641. weight: math.unit(100, "kg"),
  2642. name: "Front",
  2643. image: {
  2644. source: "./media/characters/okuri/front.svg",
  2645. extra: 739/665,
  2646. bottom: 39/778
  2647. }
  2648. },
  2649. back: {
  2650. height: math.unit(7, "feet"),
  2651. weight: math.unit(100, "kg"),
  2652. name: "Back",
  2653. image: {
  2654. source: "./media/characters/okuri/back.svg",
  2655. extra: 734/653,
  2656. bottom: 13/747
  2657. }
  2658. },
  2659. sitting: {
  2660. height: math.unit(2.95, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Sitting",
  2663. image: {
  2664. source: "./media/characters/okuri/sitting.svg",
  2665. extra: 370/318,
  2666. bottom: 99/469
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Smallest",
  2673. height: math.unit(5 + 2/12, "feet")
  2674. },
  2675. {
  2676. name: "Smaller",
  2677. height: math.unit(300, "feet")
  2678. },
  2679. {
  2680. name: "Small",
  2681. height: math.unit(1000, "feet")
  2682. },
  2683. {
  2684. name: "Macro",
  2685. height: math.unit(1, "mile")
  2686. },
  2687. {
  2688. name: "Mega Macro (Small)",
  2689. height: math.unit(20, "km")
  2690. },
  2691. {
  2692. name: "Mega Macro (Large)",
  2693. height: math.unit(600, "km")
  2694. },
  2695. {
  2696. name: "Giga Macro",
  2697. height: math.unit(10000, "km")
  2698. },
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(577560, "km"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Large",
  2706. height: math.unit(4, "galaxies")
  2707. },
  2708. {
  2709. name: "Largest",
  2710. height: math.unit(15, "multiverses")
  2711. },
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(7, "feet"),
  2719. weight: math.unit(100, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/manny/front.svg",
  2723. extra: 1,
  2724. bottom: 0.06
  2725. }
  2726. },
  2727. back: {
  2728. height: math.unit(7, "feet"),
  2729. weight: math.unit(100, "kg"),
  2730. name: "Back",
  2731. image: {
  2732. source: "./media/characters/manny/back.svg",
  2733. extra: 1,
  2734. bottom: 0.014
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(7, "feet"),
  2742. },
  2743. {
  2744. name: "Macro",
  2745. height: math.unit(78, "feet"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Macro+",
  2750. height: math.unit(300, "meters")
  2751. },
  2752. {
  2753. name: "Macro++",
  2754. height: math.unit(2400, "meters")
  2755. },
  2756. {
  2757. name: "Megamacro",
  2758. height: math.unit(5167, "meters")
  2759. },
  2760. {
  2761. name: "Gigamacro",
  2762. height: math.unit(41769, "miles")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(7, "feet"),
  2771. weight: math.unit(100, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/adake/front-1.svg"
  2775. }
  2776. },
  2777. frontAlt: {
  2778. height: math.unit(7, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Front (Alt)",
  2781. image: {
  2782. source: "./media/characters/adake/front-2.svg",
  2783. extra: 1,
  2784. bottom: 0.01
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(7, "feet"),
  2789. weight: math.unit(100, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/adake/back.svg",
  2793. }
  2794. },
  2795. kneel: {
  2796. height: math.unit(5.385, "feet"),
  2797. weight: math.unit(100, "kg"),
  2798. name: "Kneeling",
  2799. image: {
  2800. source: "./media/characters/adake/kneel.svg",
  2801. bottom: 0.052
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(7, "feet"),
  2809. },
  2810. {
  2811. name: "Macro",
  2812. height: math.unit(78, "feet"),
  2813. default: true
  2814. },
  2815. {
  2816. name: "Macro+",
  2817. height: math.unit(300, "meters")
  2818. },
  2819. {
  2820. name: "Macro++",
  2821. height: math.unit(2400, "meters")
  2822. },
  2823. {
  2824. name: "Megamacro",
  2825. height: math.unit(5167, "meters")
  2826. },
  2827. {
  2828. name: "Gigamacro",
  2829. height: math.unit(41769, "miles")
  2830. },
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2835. {
  2836. front: {
  2837. height: math.unit(1.65, "meters"),
  2838. weight: math.unit(50, "kg"),
  2839. name: "Front",
  2840. image: {
  2841. source: "./media/characters/elijah/front.svg",
  2842. extra: 858 / 830,
  2843. bottom: 95.5 / 953.8559
  2844. }
  2845. },
  2846. back: {
  2847. height: math.unit(1.65, "meters"),
  2848. weight: math.unit(50, "kg"),
  2849. name: "Back",
  2850. image: {
  2851. source: "./media/characters/elijah/back.svg",
  2852. extra: 895 / 850,
  2853. bottom: 5.3 / 897.956
  2854. }
  2855. },
  2856. frontNsfw: {
  2857. height: math.unit(1.65, "meters"),
  2858. weight: math.unit(50, "kg"),
  2859. name: "Front (NSFW)",
  2860. image: {
  2861. source: "./media/characters/elijah/front-nsfw.svg",
  2862. extra: 858 / 830,
  2863. bottom: 95.5 / 953.8559
  2864. }
  2865. },
  2866. backNsfw: {
  2867. height: math.unit(1.65, "meters"),
  2868. weight: math.unit(50, "kg"),
  2869. name: "Back (NSFW)",
  2870. image: {
  2871. source: "./media/characters/elijah/back-nsfw.svg",
  2872. extra: 895 / 850,
  2873. bottom: 5.3 / 897.956
  2874. }
  2875. },
  2876. dick: {
  2877. height: math.unit(1, "feet"),
  2878. name: "Dick",
  2879. image: {
  2880. source: "./media/characters/elijah/dick.svg"
  2881. }
  2882. },
  2883. beakOpen: {
  2884. height: math.unit(1.25, "feet"),
  2885. name: "Beak (Open)",
  2886. image: {
  2887. source: "./media/characters/elijah/beak-open.svg"
  2888. }
  2889. },
  2890. beakShut: {
  2891. height: math.unit(1.25, "feet"),
  2892. name: "Beak (Shut)",
  2893. image: {
  2894. source: "./media/characters/elijah/beak-shut.svg"
  2895. }
  2896. },
  2897. footFlexing: {
  2898. height: math.unit(1.61, "feet"),
  2899. name: "Foot (Flexing)",
  2900. image: {
  2901. source: "./media/characters/elijah/foot-flexing.svg"
  2902. }
  2903. },
  2904. footStepping: {
  2905. height: math.unit(1.44, "feet"),
  2906. name: "Foot (Stepping)",
  2907. image: {
  2908. source: "./media/characters/elijah/foot-stepping.svg"
  2909. }
  2910. },
  2911. plantigradeLeg: {
  2912. height: math.unit(2.34, "feet"),
  2913. name: "Plantigrade Leg",
  2914. image: {
  2915. source: "./media/characters/elijah/plantigrade-leg.svg"
  2916. }
  2917. },
  2918. plantigradeFootLeft: {
  2919. height: math.unit(0.9, "feet"),
  2920. name: "Plantigrade Foot (Left)",
  2921. image: {
  2922. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2923. }
  2924. },
  2925. plantigradeFootRight: {
  2926. height: math.unit(0.9, "feet"),
  2927. name: "Plantigrade Foot (Right)",
  2928. image: {
  2929. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2930. }
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(1.65, "meters")
  2937. },
  2938. {
  2939. name: "Macro",
  2940. height: math.unit(55, "meters"),
  2941. default: true
  2942. },
  2943. {
  2944. name: "Macro+",
  2945. height: math.unit(105, "meters")
  2946. },
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2951. {
  2952. front: {
  2953. height: math.unit(7 + 2/12, "feet"),
  2954. weight: math.unit(320, "kg"),
  2955. preyCapacity: math.unit(0.276549935, "people"),
  2956. name: "Front",
  2957. image: {
  2958. source: "./media/characters/rai/front.svg",
  2959. extra: 1802/1696,
  2960. bottom: 68/1870
  2961. },
  2962. form: "anthro",
  2963. default: true
  2964. },
  2965. frontDressed: {
  2966. height: math.unit(7 + 2/12, "feet"),
  2967. weight: math.unit(320, "kg"),
  2968. preyCapacity: math.unit(0.276549935, "people"),
  2969. name: "Front (Dressed)",
  2970. image: {
  2971. source: "./media/characters/rai/front-dressed.svg",
  2972. extra: 1802/1696,
  2973. bottom: 68/1870
  2974. },
  2975. form: "anthro"
  2976. },
  2977. side: {
  2978. height: math.unit(7 + 2/12, "feet"),
  2979. weight: math.unit(320, "kg"),
  2980. preyCapacity: math.unit(0.276549935, "people"),
  2981. name: "Side",
  2982. image: {
  2983. source: "./media/characters/rai/side.svg",
  2984. extra: 1789/1710,
  2985. bottom: 115/1904
  2986. },
  2987. form: "anthro"
  2988. },
  2989. back: {
  2990. height: math.unit(7 + 2/12, "feet"),
  2991. weight: math.unit(320, "kg"),
  2992. preyCapacity: math.unit(0.276549935, "people"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/rai/back.svg",
  2996. extra: 1770/1707,
  2997. bottom: 28/1798
  2998. },
  2999. form: "anthro"
  3000. },
  3001. feral: {
  3002. height: math.unit(9.5, "feet"),
  3003. weight: math.unit(640, "kg"),
  3004. preyCapacity: math.unit(4, "people"),
  3005. name: "Feral",
  3006. image: {
  3007. source: "./media/characters/rai/feral.svg",
  3008. extra: 945/553,
  3009. bottom: 176/1121
  3010. },
  3011. form: "feral",
  3012. default: true
  3013. },
  3014. dragon: {
  3015. height: math.unit(23, "feet"),
  3016. weight: math.unit(50000, "lb"),
  3017. name: "Dragon",
  3018. image: {
  3019. source: "./media/characters/rai/dragon.svg",
  3020. extra: 2498 / 2030,
  3021. bottom: 85.2 / 2584
  3022. },
  3023. form: "dragon",
  3024. default: true
  3025. },
  3026. maw: {
  3027. height: math.unit(1.69, "feet"),
  3028. name: "Maw",
  3029. image: {
  3030. source: "./media/characters/rai/maw.svg"
  3031. },
  3032. form: "anthro"
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(7 + 2/12, "feet"),
  3039. form: "anthro"
  3040. },
  3041. {
  3042. name: "Big",
  3043. height: math.unit(11, "feet"),
  3044. form: "anthro"
  3045. },
  3046. {
  3047. name: "Minimacro",
  3048. height: math.unit(77, "feet"),
  3049. form: "anthro"
  3050. },
  3051. {
  3052. name: "Macro",
  3053. height: math.unit(302, "feet"),
  3054. default: true,
  3055. form: "anthro"
  3056. },
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(9.5, "feet"),
  3060. form: "feral",
  3061. default: true
  3062. },
  3063. {
  3064. name: "Normal",
  3065. height: math.unit(23, "feet"),
  3066. form: "dragon",
  3067. default: true
  3068. }
  3069. ],
  3070. {
  3071. "anthro": {
  3072. name: "Anthro",
  3073. default: true
  3074. },
  3075. "feral": {
  3076. name: "Feral",
  3077. },
  3078. "dragon": {
  3079. name: "Dragon",
  3080. },
  3081. }
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3085. {
  3086. frontDressed: {
  3087. height: math.unit(216, "feet"),
  3088. weight: math.unit(7000000, "lb"),
  3089. preyCapacity: math.unit(1321, "people"),
  3090. name: "Front (Dressed)",
  3091. image: {
  3092. source: "./media/characters/jazzy/front-dressed.svg",
  3093. extra: 2738 / 2651,
  3094. bottom: 41.8 / 2786
  3095. }
  3096. },
  3097. backDressed: {
  3098. height: math.unit(216, "feet"),
  3099. weight: math.unit(7000000, "lb"),
  3100. preyCapacity: math.unit(1321, "people"),
  3101. name: "Back (Dressed)",
  3102. image: {
  3103. source: "./media/characters/jazzy/back-dressed.svg",
  3104. extra: 2775 / 2673,
  3105. bottom: 36.8 / 2817
  3106. }
  3107. },
  3108. front: {
  3109. height: math.unit(216, "feet"),
  3110. weight: math.unit(7000000, "lb"),
  3111. preyCapacity: math.unit(1321, "people"),
  3112. name: "Front",
  3113. image: {
  3114. source: "./media/characters/jazzy/front.svg",
  3115. extra: 2738 / 2651,
  3116. bottom: 41.8 / 2786
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(216, "feet"),
  3121. weight: math.unit(7000000, "lb"),
  3122. preyCapacity: math.unit(1321, "people"),
  3123. name: "Back",
  3124. image: {
  3125. source: "./media/characters/jazzy/back.svg",
  3126. extra: 2775 / 2673,
  3127. bottom: 36.8 / 2817
  3128. }
  3129. },
  3130. maw: {
  3131. height: math.unit(20, "feet"),
  3132. name: "Maw",
  3133. image: {
  3134. source: "./media/characters/jazzy/maw.svg"
  3135. }
  3136. },
  3137. paws: {
  3138. height: math.unit(27.5, "feet"),
  3139. name: "Paws",
  3140. image: {
  3141. source: "./media/characters/jazzy/paws.svg"
  3142. }
  3143. },
  3144. eye: {
  3145. height: math.unit(4.4, "feet"),
  3146. name: "Eye",
  3147. image: {
  3148. source: "./media/characters/jazzy/eye.svg"
  3149. }
  3150. },
  3151. droneOffense: {
  3152. height: math.unit(9.5, "inches"),
  3153. name: "Drone (Offense)",
  3154. image: {
  3155. source: "./media/characters/jazzy/drone-offense.svg"
  3156. }
  3157. },
  3158. droneRecon: {
  3159. height: math.unit(9.5, "inches"),
  3160. name: "Drone (Recon)",
  3161. image: {
  3162. source: "./media/characters/jazzy/drone-recon.svg"
  3163. }
  3164. },
  3165. droneDefense: {
  3166. height: math.unit(9.5, "inches"),
  3167. name: "Drone (Defense)",
  3168. image: {
  3169. source: "./media/characters/jazzy/drone-defense.svg"
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Macro",
  3176. height: math.unit(216, "feet"),
  3177. default: true
  3178. },
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3183. {
  3184. front: {
  3185. height: math.unit(9 + 6/12, "feet"),
  3186. weight: math.unit(700, "lb"),
  3187. name: "Front",
  3188. image: {
  3189. source: "./media/characters/flamm/front.svg",
  3190. extra: 1736/1596,
  3191. bottom: 93/1829
  3192. }
  3193. },
  3194. buff: {
  3195. height: math.unit(9 + 6/12, "feet"),
  3196. weight: math.unit(950, "lb"),
  3197. name: "Buff",
  3198. image: {
  3199. source: "./media/characters/flamm/buff.svg",
  3200. extra: 3018/2874,
  3201. bottom: 221/3239
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(9.5, "feet")
  3209. },
  3210. {
  3211. name: "Macro",
  3212. height: math.unit(200, "feet"),
  3213. default: true
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(5 + 3/12, "feet"),
  3222. weight: math.unit(60, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/zephiro/front.svg",
  3226. extra: 1873/1761,
  3227. bottom: 147/2020
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(5 + 3/12, "feet"),
  3232. weight: math.unit(60, "kg"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/zephiro/side.svg",
  3236. extra: 1929/1827,
  3237. bottom: 65/1994
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(5 + 3/12, "feet"),
  3242. weight: math.unit(60, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/zephiro/back.svg",
  3246. extra: 1926/1816,
  3247. bottom: 41/1967
  3248. }
  3249. },
  3250. hand: {
  3251. height: math.unit(0.68, "feet"),
  3252. name: "Hand",
  3253. image: {
  3254. source: "./media/characters/zephiro/hand.svg"
  3255. }
  3256. },
  3257. paw: {
  3258. height: math.unit(1, "feet"),
  3259. name: "Paw",
  3260. image: {
  3261. source: "./media/characters/zephiro/paw.svg"
  3262. }
  3263. },
  3264. beans: {
  3265. height: math.unit(0.93, "feet"),
  3266. name: "Beans",
  3267. image: {
  3268. source: "./media/characters/zephiro/beans.svg"
  3269. }
  3270. },
  3271. },
  3272. [
  3273. {
  3274. name: "Micro",
  3275. height: math.unit(3, "inches")
  3276. },
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(5 + 3 / 12, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(118, "feet")
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3290. {
  3291. front: {
  3292. height: math.unit(5, "feet"),
  3293. weight: math.unit(90, "kg"),
  3294. preyCapacity: math.unit(14, "people"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/fory/front.svg",
  3298. extra: 2862 / 2674,
  3299. bottom: 180 / 3043.8
  3300. },
  3301. form: "weaselbun",
  3302. default: true,
  3303. extraAttributes: {
  3304. "pawSize": {
  3305. name: "Paw Size",
  3306. power: 2,
  3307. type: "area",
  3308. base: math.unit(0.1596, "m^2")
  3309. },
  3310. "pawLength": {
  3311. name: "Paw Length",
  3312. power: 1,
  3313. type: "length",
  3314. base: math.unit(0.7, "m")
  3315. }
  3316. }
  3317. },
  3318. back: {
  3319. height: math.unit(5, "feet"),
  3320. weight: math.unit(90, "kg"),
  3321. preyCapacity: math.unit(14, "people"),
  3322. name: "Back",
  3323. image: {
  3324. source: "./media/characters/fory/back.svg",
  3325. extra: 1790/1672,
  3326. bottom: 84/1874
  3327. },
  3328. form: "weaselbun",
  3329. extraAttributes: {
  3330. "pawSize": {
  3331. name: "Paw Size",
  3332. power: 2,
  3333. type: "area",
  3334. base: math.unit(0.1596, "m^2")
  3335. },
  3336. "pawLength": {
  3337. name: "Paw Length",
  3338. power: 1,
  3339. type: "length",
  3340. base: math.unit(0.7, "m")
  3341. }
  3342. }
  3343. },
  3344. paw: {
  3345. height: math.unit(2.14, "feet"),
  3346. name: "Paw",
  3347. image: {
  3348. source: "./media/characters/fory/paw.svg"
  3349. },
  3350. form: "weaselbun",
  3351. extraAttributes: {
  3352. "pawSize": {
  3353. name: "Paw Size",
  3354. power: 2,
  3355. type: "area",
  3356. base: math.unit(0.1596, "m^2")
  3357. },
  3358. "pawLength": {
  3359. name: "Paw Length",
  3360. power: 1,
  3361. type: "length",
  3362. base: math.unit(0.48, "m")
  3363. }
  3364. }
  3365. },
  3366. bunBack: {
  3367. height: math.unit(3, "feet"),
  3368. weight: math.unit(20, "kg"),
  3369. preyCapacity: math.unit(3, "people"),
  3370. name: "Back",
  3371. image: {
  3372. source: "./media/characters/fory/bun-back.svg",
  3373. extra: 1749/1564,
  3374. bottom: 246/1995
  3375. },
  3376. form: "bun",
  3377. default: true,
  3378. extraAttributes: {
  3379. "pawSize": {
  3380. name: "Paw Size",
  3381. power: 2,
  3382. type: "area",
  3383. base: math.unit(0.072, "m^2")
  3384. },
  3385. "pawLength": {
  3386. name: "Paw Length",
  3387. power: 1,
  3388. type: "length",
  3389. base: math.unit(0.45, "m")
  3390. }
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5, "feet"),
  3398. form: "weaselbun"
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(50, "feet"),
  3403. default: true,
  3404. form: "weaselbun"
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles"),
  3409. form: "weaselbun"
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5, "earths"),
  3414. form: "weaselbun"
  3415. },
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(3, "feet"),
  3419. default: true,
  3420. form: "bun"
  3421. },
  3422. {
  3423. name: "Fun-Size",
  3424. height: math.unit(12, "feet"),
  3425. form: "bun"
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(100, "feet"),
  3430. form: "bun"
  3431. },
  3432. {
  3433. name: "Planetary",
  3434. height: math.unit(3, "earths"),
  3435. form: "bun"
  3436. },
  3437. ],
  3438. {
  3439. "weaselbun": {
  3440. name: "Weaselbun",
  3441. default: true
  3442. },
  3443. "bun": {
  3444. name: "Bun",
  3445. },
  3446. }
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(7, "feet"),
  3453. weight: math.unit(90, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kurrikage/front.svg",
  3457. extra: 1845/1733,
  3458. bottom: 119/1964
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(7, "feet"),
  3463. weight: math.unit(90, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/kurrikage/back.svg",
  3467. extra: 1790/1677,
  3468. bottom: 61/1851
  3469. }
  3470. },
  3471. dressed: {
  3472. height: math.unit(7, "feet"),
  3473. weight: math.unit(90, "kg"),
  3474. name: "Dressed",
  3475. image: {
  3476. source: "./media/characters/kurrikage/dressed.svg",
  3477. extra: 1845/1733,
  3478. bottom: 119/1964
  3479. }
  3480. },
  3481. foot: {
  3482. height: math.unit(1.5, "feet"),
  3483. name: "Foot",
  3484. image: {
  3485. source: "./media/characters/kurrikage/foot.svg"
  3486. }
  3487. },
  3488. staff: {
  3489. height: math.unit(6.7, "feet"),
  3490. name: "Staff",
  3491. image: {
  3492. source: "./media/characters/kurrikage/staff.svg"
  3493. }
  3494. },
  3495. peek: {
  3496. height: math.unit(1.05, "feet"),
  3497. name: "Peeking",
  3498. image: {
  3499. source: "./media/characters/kurrikage/peek.svg",
  3500. bottom: 0.08
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(12, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Big",
  3512. height: math.unit(20, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(500, "feet")
  3517. },
  3518. {
  3519. name: "Megamacro",
  3520. height: math.unit(20, "miles")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(6, "feet"),
  3529. weight: math.unit(75, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/shingo/front.svg",
  3533. extra: 1900/1825,
  3534. bottom: 82/1982
  3535. }
  3536. },
  3537. side: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(75, "kg"),
  3540. name: "Side",
  3541. image: {
  3542. source: "./media/characters/shingo/side.svg",
  3543. extra: 1930/1865,
  3544. bottom: 16/1946
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(75, "kg"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/shingo/back.svg",
  3553. extra: 1922/1852,
  3554. bottom: 16/1938
  3555. }
  3556. },
  3557. frontDressed: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(150, "lb"),
  3560. name: "Front-dressed",
  3561. image: {
  3562. source: "./media/characters/shingo/front-dressed.svg",
  3563. extra: 1900/1825,
  3564. bottom: 82/1982
  3565. }
  3566. },
  3567. paw: {
  3568. height: math.unit(1.29, "feet"),
  3569. name: "Paw",
  3570. image: {
  3571. source: "./media/characters/shingo/paw.svg"
  3572. }
  3573. },
  3574. hand: {
  3575. height: math.unit(1.07, "feet"),
  3576. name: "Hand",
  3577. image: {
  3578. source: "./media/characters/shingo/hand.svg"
  3579. }
  3580. },
  3581. frontAlt: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(75, "kg"),
  3584. name: "Front (Alt)",
  3585. image: {
  3586. source: "./media/characters/shingo/front-alt.svg",
  3587. extra: 3511 / 3338,
  3588. bottom: 0.005
  3589. }
  3590. },
  3591. frontAlt2: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front (Alt 2)",
  3595. image: {
  3596. source: "./media/characters/shingo/front-alt-2.svg",
  3597. extra: 706/681,
  3598. bottom: 11/717
  3599. }
  3600. },
  3601. pawAlt: {
  3602. height: math.unit(1, "feet"),
  3603. name: "Paw (Alt)",
  3604. image: {
  3605. source: "./media/characters/shingo/paw-alt.svg"
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Micro",
  3612. height: math.unit(4, "inches")
  3613. },
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(6, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(108, "feet")
  3622. },
  3623. {
  3624. name: "Macro+",
  3625. height: math.unit(1500, "feet")
  3626. },
  3627. ]
  3628. ))
  3629. characterMakers.push(() => makeCharacter(
  3630. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3631. {
  3632. side: {
  3633. height: math.unit(6, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Side",
  3636. image: {
  3637. source: "./media/characters/aigey/side.svg"
  3638. }
  3639. },
  3640. },
  3641. [
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(200, "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Megamacro",
  3649. height: math.unit(100, "miles")
  3650. },
  3651. ]
  3652. )
  3653. )
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(5 + 5 / 12, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/natasha/front.svg",
  3663. extra: 859 / 824,
  3664. bottom: 23 / 879.6
  3665. }
  3666. },
  3667. frontNsfw: {
  3668. height: math.unit(5 + 5 / 12, "feet"),
  3669. weight: math.unit(75, "kg"),
  3670. name: "Front (NSFW)",
  3671. image: {
  3672. source: "./media/characters/natasha/front-nsfw.svg",
  3673. extra: 859 / 824,
  3674. bottom: 23 / 879.6
  3675. }
  3676. },
  3677. frontErect: {
  3678. height: math.unit(5 + 5 / 12, "feet"),
  3679. weight: math.unit(75, "kg"),
  3680. name: "Front (Erect)",
  3681. image: {
  3682. source: "./media/characters/natasha/front-erect.svg",
  3683. extra: 859 / 824,
  3684. bottom: 23 / 879.6
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(5 + 5 / 12, "feet"),
  3689. weight: math.unit(75, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/natasha/back.svg",
  3693. extra: 887.9 / 852.6,
  3694. bottom: 9.7 / 896.4
  3695. }
  3696. },
  3697. backAlt: {
  3698. height: math.unit(5 + 5 / 12, "feet"),
  3699. weight: math.unit(75, "kg"),
  3700. name: "Back (Alt)",
  3701. image: {
  3702. source: "./media/characters/natasha/back-alt.svg",
  3703. extra: 1236.7 / 1192,
  3704. bottom: 22.3 / 1258.2
  3705. }
  3706. },
  3707. dick: {
  3708. height: math.unit(1.772, "feet"),
  3709. name: "Dick",
  3710. image: {
  3711. source: "./media/characters/natasha/dick.svg"
  3712. }
  3713. },
  3714. paw: {
  3715. height: math.unit(0.250, "meters"),
  3716. name: "Paw",
  3717. image: {
  3718. source: "./media/characters/natasha/paw.svg"
  3719. },
  3720. extraAttributes: {
  3721. "toeSize": {
  3722. name: "Toe Size",
  3723. power: 2,
  3724. type: "area",
  3725. base: math.unit(0.0024, "m^2")
  3726. },
  3727. "padSize": {
  3728. name: "Pad Size",
  3729. power: 2,
  3730. type: "area",
  3731. base: math.unit(0.00889, "m^2")
  3732. },
  3733. "pawSize": {
  3734. name: "Paw Size",
  3735. power: 2,
  3736. type: "area",
  3737. base: math.unit(0.023667, "m^2")
  3738. },
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Shortstack",
  3745. height: math.unit(3, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(5 + 5 / 12, "feet")
  3751. },
  3752. {
  3753. name: "Large",
  3754. height: math.unit(12, "feet")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(100, "feet")
  3759. },
  3760. {
  3761. name: "Macro+",
  3762. height: math.unit(260, "feet")
  3763. },
  3764. {
  3765. name: "Macro++",
  3766. height: math.unit(1, "mile")
  3767. },
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/malik/front.svg",
  3779. extra: 1750/1561,
  3780. bottom: 80/1830
  3781. },
  3782. extraAttributes: {
  3783. "toeSize": {
  3784. name: "Toe Size",
  3785. power: 2,
  3786. type: "area",
  3787. base: math.unit(0.0159, "m^2")
  3788. },
  3789. "pawSize": {
  3790. name: "Paw Size",
  3791. power: 2,
  3792. type: "area",
  3793. base: math.unit(0.09834, "m^2")
  3794. },
  3795. }
  3796. },
  3797. side: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Side",
  3801. image: {
  3802. source: "./media/characters/malik/side.svg",
  3803. extra: 1802/1685,
  3804. bottom: 42/1844
  3805. },
  3806. extraAttributes: {
  3807. "toeSize": {
  3808. name: "Toe Size",
  3809. power: 2,
  3810. type: "area",
  3811. base: math.unit(0.0159, "m^2")
  3812. },
  3813. "pawSize": {
  3814. name: "Paw Size",
  3815. power: 2,
  3816. type: "area",
  3817. base: math.unit(0.09834, "m^2")
  3818. },
  3819. }
  3820. },
  3821. back: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Back",
  3825. image: {
  3826. source: "./media/characters/malik/back.svg",
  3827. extra: 1803/1607,
  3828. bottom: 33/1836
  3829. },
  3830. extraAttributes: {
  3831. "toeSize": {
  3832. name: "Toe Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.0159, "m^2")
  3836. },
  3837. "pawSize": {
  3838. name: "Paw Size",
  3839. power: 2,
  3840. type: "area",
  3841. base: math.unit(0.09834, "m^2")
  3842. },
  3843. }
  3844. },
  3845. },
  3846. [
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(156, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro+",
  3854. height: math.unit(1188, "feet")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/sefer/front.svg",
  3867. extra: 848 / 659,
  3868. bottom: 28.3 / 876.442
  3869. }
  3870. },
  3871. back: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(75, "kg"),
  3874. name: "Back",
  3875. image: {
  3876. source: "./media/characters/sefer/back.svg",
  3877. extra: 864 / 695,
  3878. bottom: 10 / 871
  3879. }
  3880. },
  3881. frontDressed: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(75, "kg"),
  3884. name: "Dressed",
  3885. image: {
  3886. source: "./media/characters/sefer/dressed.svg",
  3887. extra: 839 / 653,
  3888. bottom: 37.6 / 878
  3889. }
  3890. },
  3891. },
  3892. [
  3893. {
  3894. name: "Normal",
  3895. height: math.unit(6, "feet"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Big",
  3900. height: math.unit(8, "meters")
  3901. },
  3902. ]
  3903. ))
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3906. {
  3907. body: {
  3908. height: math.unit(2.2428, "meter"),
  3909. weight: math.unit(124.738, "kg"),
  3910. name: "Body",
  3911. image: {
  3912. extra: 1225 / 1050,
  3913. source: "./media/characters/north/front.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Micro",
  3920. height: math.unit(4, "inches")
  3921. },
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(63, "meters")
  3925. },
  3926. {
  3927. name: "Megamacro",
  3928. height: math.unit(101, "miles"),
  3929. default: true
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3935. {
  3936. angled: {
  3937. height: math.unit(4, "meter"),
  3938. weight: math.unit(150, "kg"),
  3939. name: "Angled",
  3940. image: {
  3941. source: "./media/characters/talan/angled-sfw.svg",
  3942. bottom: 29 / 3734
  3943. }
  3944. },
  3945. angledNsfw: {
  3946. height: math.unit(4, "meter"),
  3947. weight: math.unit(150, "kg"),
  3948. name: "Angled (NSFW)",
  3949. image: {
  3950. source: "./media/characters/talan/angled-nsfw.svg",
  3951. bottom: 29 / 3734
  3952. }
  3953. },
  3954. frontNsfw: {
  3955. height: math.unit(4, "meter"),
  3956. weight: math.unit(150, "kg"),
  3957. name: "Front (NSFW)",
  3958. image: {
  3959. source: "./media/characters/talan/front-nsfw.svg",
  3960. bottom: 29 / 3734
  3961. }
  3962. },
  3963. sideNsfw: {
  3964. height: math.unit(4, "meter"),
  3965. weight: math.unit(150, "kg"),
  3966. name: "Side (NSFW)",
  3967. image: {
  3968. source: "./media/characters/talan/side-nsfw.svg",
  3969. bottom: 29 / 3734
  3970. }
  3971. },
  3972. back: {
  3973. height: math.unit(4, "meter"),
  3974. weight: math.unit(150, "kg"),
  3975. name: "Back",
  3976. image: {
  3977. source: "./media/characters/talan/back.svg"
  3978. }
  3979. },
  3980. dickBottom: {
  3981. height: math.unit(0.621, "meter"),
  3982. name: "Dick (Bottom)",
  3983. image: {
  3984. source: "./media/characters/talan/dick-bottom.svg"
  3985. }
  3986. },
  3987. dickTop: {
  3988. height: math.unit(0.621, "meter"),
  3989. name: "Dick (Top)",
  3990. image: {
  3991. source: "./media/characters/talan/dick-top.svg"
  3992. }
  3993. },
  3994. dickSide: {
  3995. height: math.unit(0.305, "meter"),
  3996. name: "Dick (Side)",
  3997. image: {
  3998. source: "./media/characters/talan/dick-side.svg"
  3999. }
  4000. },
  4001. dickFront: {
  4002. height: math.unit(0.305, "meter"),
  4003. name: "Dick (Front)",
  4004. image: {
  4005. source: "./media/characters/talan/dick-front.svg"
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(4, "meters")
  4013. },
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(100, "meters")
  4017. },
  4018. {
  4019. name: "Megamacro",
  4020. height: math.unit(2, "miles"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(5000, "miles")
  4026. },
  4027. {
  4028. name: "Teramacro",
  4029. height: math.unit(100, "parsecs")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(2, "meter"),
  4038. weight: math.unit(90, "kg"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/gael'rathus/front.svg"
  4042. }
  4043. },
  4044. frontAlt: {
  4045. height: math.unit(2, "meter"),
  4046. weight: math.unit(90, "kg"),
  4047. name: "Front (alt)",
  4048. image: {
  4049. source: "./media/characters/gael'rathus/front-alt.svg"
  4050. }
  4051. },
  4052. frontAlt2: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(90, "kg"),
  4055. name: "Front (alt 2)",
  4056. image: {
  4057. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(9, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Large",
  4069. height: math.unit(25, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(0.25, "miles")
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(10, "miles")
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4083. {
  4084. side: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(140, "kg"),
  4087. name: "Side",
  4088. image: {
  4089. source: "./media/characters/sosha/side.svg",
  4090. extra: 1170/1006,
  4091. bottom: 94/1264
  4092. }
  4093. },
  4094. maw: {
  4095. height: math.unit(2.87, "feet"),
  4096. name: "Maw",
  4097. image: {
  4098. source: "./media/characters/sosha/maw.svg",
  4099. extra: 966/865,
  4100. bottom: 0/966
  4101. }
  4102. },
  4103. cooch: {
  4104. height: math.unit(5.6, "feet"),
  4105. name: "Cooch",
  4106. image: {
  4107. source: "./media/characters/sosha/cooch.svg"
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(12, "feet"),
  4115. default: true
  4116. }
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4121. {
  4122. side: {
  4123. height: math.unit(5 + 5 / 12, "feet"),
  4124. weight: math.unit(170, "kg"),
  4125. name: "Side",
  4126. image: {
  4127. source: "./media/characters/runnola/side.svg",
  4128. extra: 741 / 448,
  4129. bottom: 0.05
  4130. }
  4131. },
  4132. },
  4133. [
  4134. {
  4135. name: "Small",
  4136. height: math.unit(3, "feet")
  4137. },
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(5 + 5 / 12, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Big",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(50, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/kurribird/front.svg",
  4158. bottom: 0.015
  4159. }
  4160. },
  4161. frontAlt: {
  4162. height: math.unit(1.5, "meter"),
  4163. weight: math.unit(50, "kg"),
  4164. name: "Front (Alt)",
  4165. image: {
  4166. source: "./media/characters/kurribird/front-alt.svg",
  4167. extra: 1.45
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7, "feet")
  4175. },
  4176. {
  4177. name: "Big",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "feet")
  4184. },
  4185. {
  4186. name: "Megamacro",
  4187. height: math.unit(2, "miles")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(80, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/elbial/front.svg",
  4200. extra: 1643 / 1556,
  4201. bottom: 60.2 / 1696
  4202. }
  4203. },
  4204. side: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(80, "kg"),
  4207. name: "Side",
  4208. image: {
  4209. source: "./media/characters/elbial/side.svg",
  4210. extra: 1601/1528,
  4211. bottom: 97/1698
  4212. }
  4213. },
  4214. back: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(80, "kg"),
  4217. name: "Back",
  4218. image: {
  4219. source: "./media/characters/elbial/back.svg",
  4220. extra: 1653/1569,
  4221. bottom: 20/1673
  4222. }
  4223. },
  4224. frontDressed: {
  4225. height: math.unit(2, "meter"),
  4226. weight: math.unit(80, "kg"),
  4227. name: "Front (Dressed)",
  4228. image: {
  4229. source: "./media/characters/elbial/front-dressed.svg",
  4230. extra: 1638/1569,
  4231. bottom: 70/1708
  4232. }
  4233. },
  4234. genitals: {
  4235. height: math.unit(2 / 3.367, "meter"),
  4236. name: "Genitals",
  4237. image: {
  4238. source: "./media/characters/elbial/genitals.svg"
  4239. }
  4240. },
  4241. },
  4242. [
  4243. {
  4244. name: "Large",
  4245. height: math.unit(100, "feet")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(500, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(10, "miles")
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(25000, "miles")
  4259. },
  4260. {
  4261. name: "Full-Size",
  4262. height: math.unit(8000000, "gigaparsecs")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(60, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/noah/front.svg"
  4275. }
  4276. },
  4277. talons: {
  4278. height: math.unit(0.315, "meter"),
  4279. name: "Talons",
  4280. image: {
  4281. source: "./media/characters/noah/talons.svg"
  4282. }
  4283. }
  4284. },
  4285. [
  4286. {
  4287. name: "Large",
  4288. height: math.unit(50, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(750, "feet"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(50, "miles")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(100000, "miles")
  4302. },
  4303. {
  4304. name: "Full-Size",
  4305. height: math.unit(3000000000, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/natalya/front.svg"
  4318. }
  4319. },
  4320. back: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(80, "kg"),
  4323. name: "Back",
  4324. image: {
  4325. source: "./media/characters/natalya/back.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(150, "feet"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Megamacro",
  4337. height: math.unit(5, "miles")
  4338. },
  4339. {
  4340. name: "Full-Size",
  4341. height: math.unit(600, "kiloparsecs")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(50, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/erestrebah/front.svg",
  4354. extra: 1262/1162,
  4355. bottom: 96/1358
  4356. }
  4357. },
  4358. back: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(50, "kg"),
  4361. name: "Back",
  4362. image: {
  4363. source: "./media/characters/erestrebah/back.svg",
  4364. extra: 1257/1139,
  4365. bottom: 13/1270
  4366. }
  4367. },
  4368. wing: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(50, "kg"),
  4371. name: "Wing",
  4372. image: {
  4373. source: "./media/characters/erestrebah/wing.svg",
  4374. extra: 1262/1162,
  4375. bottom: 96/1358
  4376. }
  4377. },
  4378. mouth: {
  4379. height: math.unit(0.39, "feet"),
  4380. name: "Mouth",
  4381. image: {
  4382. source: "./media/characters/erestrebah/mouth.svg"
  4383. }
  4384. }
  4385. },
  4386. [
  4387. {
  4388. name: "Normal",
  4389. height: math.unit(10, "feet")
  4390. },
  4391. {
  4392. name: "Large",
  4393. height: math.unit(50, "feet"),
  4394. default: true
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(300, "feet")
  4399. },
  4400. {
  4401. name: "Macro+",
  4402. height: math.unit(750, "feet")
  4403. },
  4404. {
  4405. name: "Megamacro",
  4406. height: math.unit(3, "miles")
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(2, "meter"),
  4415. weight: math.unit(80, "kg"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/jennifer/front.svg",
  4419. bottom: 0.11,
  4420. extra: 1.16
  4421. }
  4422. },
  4423. frontAlt: {
  4424. height: math.unit(2, "meter"),
  4425. weight: math.unit(80, "kg"),
  4426. name: "Front (Alt)",
  4427. image: {
  4428. source: "./media/characters/jennifer/front-alt.svg"
  4429. }
  4430. }
  4431. },
  4432. [
  4433. {
  4434. name: "Canon Height",
  4435. height: math.unit(120, "feet"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Macro+",
  4440. height: math.unit(300, "feet")
  4441. },
  4442. {
  4443. name: "Megamacro",
  4444. height: math.unit(20000, "feet")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(2, "meter"),
  4453. weight: math.unit(50, "kg"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/kalista/front.svg",
  4457. extra: 1314/1145,
  4458. bottom: 101/1415
  4459. }
  4460. },
  4461. back: {
  4462. height: math.unit(2, "meter"),
  4463. weight: math.unit(50, "kg"),
  4464. name: "Back",
  4465. image: {
  4466. source: "./media/characters/kalista/back.svg",
  4467. extra: 1366 / 1156,
  4468. bottom: 33.9 / 1362.78
  4469. }
  4470. }
  4471. },
  4472. [
  4473. {
  4474. name: "Uncomfortably Small",
  4475. height: math.unit(10, "feet")
  4476. },
  4477. {
  4478. name: "Small",
  4479. height: math.unit(30, "feet")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(100, "feet"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Macro+",
  4488. height: math.unit(2000, "feet")
  4489. },
  4490. {
  4491. name: "True Form",
  4492. height: math.unit(8924, "miles")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(2, "meter"),
  4501. weight: math.unit(120, "kg"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/ggv/front.svg"
  4505. }
  4506. },
  4507. side: {
  4508. height: math.unit(2, "meter"),
  4509. weight: math.unit(120, "kg"),
  4510. name: "Side",
  4511. image: {
  4512. source: "./media/characters/ggv/side.svg"
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Extremely Puny",
  4519. height: math.unit(9 + 5 / 12, "feet")
  4520. },
  4521. {
  4522. name: "Horribly Small",
  4523. height: math.unit(47.7, "miles"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Reasonably Sized",
  4528. height: math.unit(25000, "parsecs")
  4529. },
  4530. {
  4531. name: "Slightly Uncompressed",
  4532. height: math.unit(7.77e31, "parsecs")
  4533. },
  4534. {
  4535. name: "Omniversal",
  4536. height: math.unit(1e300, "meters")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(75, "lb"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/napalm/front.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(75, "lb"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/napalm/back.svg"
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Standard",
  4563. height: math.unit(55, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4570. {
  4571. front: {
  4572. height: math.unit(7 + 5 / 6, "feet"),
  4573. weight: math.unit(325, "lb"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/asana/front.svg",
  4577. extra: 1133 / 1060,
  4578. bottom: 15.2 / 1148.6
  4579. }
  4580. },
  4581. back: {
  4582. height: math.unit(7 + 5 / 6, "feet"),
  4583. weight: math.unit(325, "lb"),
  4584. name: "Back",
  4585. image: {
  4586. source: "./media/characters/asana/back.svg",
  4587. extra: 1114 / 1043,
  4588. bottom: 5 / 1120
  4589. }
  4590. },
  4591. dressedDark: {
  4592. height: math.unit(7 + 5 / 6, "feet"),
  4593. weight: math.unit(325, "lb"),
  4594. name: "Dressed (Dark)",
  4595. image: {
  4596. source: "./media/characters/asana/dressed-dark.svg",
  4597. extra: 1133 / 1060,
  4598. bottom: 15.2 / 1148.6
  4599. }
  4600. },
  4601. dressedLight: {
  4602. height: math.unit(7 + 5 / 6, "feet"),
  4603. weight: math.unit(325, "lb"),
  4604. name: "Dressed (Light)",
  4605. image: {
  4606. source: "./media/characters/asana/dressed-light.svg",
  4607. extra: 1133 / 1060,
  4608. bottom: 15.2 / 1148.6
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Standard",
  4615. height: math.unit(7 + 5 / 6, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Large",
  4620. height: math.unit(10, "meters")
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(2500, "meters")
  4625. },
  4626. {
  4627. name: "Megamacro",
  4628. height: math.unit(5e6, "meters")
  4629. },
  4630. {
  4631. name: "Examacro",
  4632. height: math.unit(5e12, "lightyears")
  4633. },
  4634. {
  4635. name: "Max Size",
  4636. height: math.unit(1e31, "lightyears")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(2, "meter"),
  4645. weight: math.unit(60, "kg"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/ebony/front.svg",
  4649. bottom: 0.03,
  4650. extra: 1045 / 810 + 0.03
  4651. }
  4652. },
  4653. side: {
  4654. height: math.unit(2, "meter"),
  4655. weight: math.unit(60, "kg"),
  4656. name: "Side",
  4657. image: {
  4658. source: "./media/characters/ebony/side.svg",
  4659. bottom: 0.03,
  4660. extra: 1045 / 810 + 0.03
  4661. }
  4662. },
  4663. back: {
  4664. height: math.unit(2, "meter"),
  4665. weight: math.unit(60, "kg"),
  4666. name: "Back",
  4667. image: {
  4668. source: "./media/characters/ebony/back.svg",
  4669. bottom: 0.01,
  4670. extra: 1045 / 810 + 0.01
  4671. }
  4672. },
  4673. },
  4674. [
  4675. // TODO check why I did this lol
  4676. {
  4677. name: "Standard",
  4678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(200, "feet")
  4684. },
  4685. {
  4686. name: "Gigamacro",
  4687. height: math.unit(13000, "km")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(175, "lb"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/mountain/front.svg",
  4700. extra: 972 / 955,
  4701. bottom: 64 / 1036.6
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(175, "lb"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/mountain/back.svg",
  4710. extra: 970 / 950,
  4711. bottom: 28.25 / 999
  4712. }
  4713. },
  4714. },
  4715. [
  4716. {
  4717. name: "Large",
  4718. height: math.unit(20, "meters")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(300, "meters")
  4723. },
  4724. {
  4725. name: "Gigamacro",
  4726. height: math.unit(10000, "km"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Examacro",
  4731. height: math.unit(10e9, "lightyears")
  4732. }
  4733. ]
  4734. ))
  4735. characterMakers.push(() => makeCharacter(
  4736. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4737. {
  4738. front: {
  4739. height: math.unit(8, "feet"),
  4740. weight: math.unit(500, "lb"),
  4741. name: "Front",
  4742. image: {
  4743. source: "./media/characters/rick/front.svg"
  4744. }
  4745. }
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(8, "feet"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(5, "km")
  4756. }
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(8, "feet"),
  4764. weight: math.unit(120, "lb"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/ona/front.svg"
  4768. }
  4769. },
  4770. frontAlt: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(120, "lb"),
  4773. name: "Front (Alt)",
  4774. image: {
  4775. source: "./media/characters/ona/front-alt.svg"
  4776. }
  4777. },
  4778. back: {
  4779. height: math.unit(8, "feet"),
  4780. weight: math.unit(120, "lb"),
  4781. name: "Back",
  4782. image: {
  4783. source: "./media/characters/ona/back.svg"
  4784. }
  4785. },
  4786. foot: {
  4787. height: math.unit(1.1, "feet"),
  4788. name: "Foot",
  4789. image: {
  4790. source: "./media/characters/ona/foot.svg"
  4791. }
  4792. }
  4793. },
  4794. [
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(70, "km"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Gigamacro",
  4802. height: math.unit(681818, "miles")
  4803. },
  4804. {
  4805. name: "Examacro",
  4806. height: math.unit(3800000, "lightyears")
  4807. },
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4812. {
  4813. front: {
  4814. height: math.unit(12, "feet"),
  4815. weight: math.unit(3000, "lb"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/mech/front.svg",
  4819. extra: 2900 / 2770,
  4820. bottom: 110 / 3010
  4821. }
  4822. },
  4823. back: {
  4824. height: math.unit(12, "feet"),
  4825. weight: math.unit(3000, "lb"),
  4826. name: "Back",
  4827. image: {
  4828. source: "./media/characters/mech/back.svg",
  4829. extra: 3011 / 2890,
  4830. bottom: 94 / 3105
  4831. }
  4832. },
  4833. maw: {
  4834. height: math.unit(3.07, "feet"),
  4835. name: "Maw",
  4836. image: {
  4837. source: "./media/characters/mech/maw.svg"
  4838. }
  4839. },
  4840. head: {
  4841. height: math.unit(3.07, "feet"),
  4842. name: "Head",
  4843. image: {
  4844. source: "./media/characters/mech/head.svg"
  4845. }
  4846. },
  4847. dick: {
  4848. height: math.unit(1.43, "feet"),
  4849. name: "Dick",
  4850. image: {
  4851. source: "./media/characters/mech/dick.svg"
  4852. }
  4853. },
  4854. },
  4855. [
  4856. {
  4857. name: "Normal",
  4858. height: math.unit(12, "feet")
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(300, "feet"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro+",
  4867. height: math.unit(1500, "feet")
  4868. },
  4869. ]
  4870. ))
  4871. characterMakers.push(() => makeCharacter(
  4872. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4873. {
  4874. front: {
  4875. height: math.unit(1.3, "meter"),
  4876. weight: math.unit(30, "kg"),
  4877. name: "Front",
  4878. image: {
  4879. source: "./media/characters/gregory/front.svg",
  4880. }
  4881. }
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(1.3, "meter"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(20, "meter")
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(2.8, "meter"),
  4900. weight: math.unit(200, "kg"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/elory/front.svg",
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(2.8, "meter"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(38, "meter")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(470, "feet"),
  4924. weight: math.unit(924, "tons"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/angelpatamon/front.svg",
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(470, "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Deity Size I",
  4939. height: math.unit(28651.2, "km")
  4940. },
  4941. {
  4942. name: "Deity Size II",
  4943. height: math.unit(171907.2, "km")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4949. {
  4950. side: {
  4951. height: math.unit(7.2, "meter"),
  4952. weight: math.unit(8.2, "tons"),
  4953. name: "Side",
  4954. image: {
  4955. source: "./media/characters/cryae/side.svg",
  4956. extra: 3500 / 1500
  4957. }
  4958. }
  4959. },
  4960. [
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(7.2, "meter"),
  4964. default: true
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(175, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/xera/front.svg",
  4977. extra: 2377 / 1972,
  4978. bottom: 75.5 / 2452
  4979. }
  4980. },
  4981. side: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(175, "lb"),
  4984. name: "Side",
  4985. image: {
  4986. source: "./media/characters/xera/side.svg",
  4987. extra: 2345 / 2019,
  4988. bottom: 39.7 / 2384
  4989. }
  4990. },
  4991. back: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(175, "lb"),
  4994. name: "Back",
  4995. image: {
  4996. source: "./media/characters/xera/back.svg",
  4997. extra: 2095 / 1984,
  4998. bottom: 67 / 2166
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Small",
  5005. height: math.unit(10, "feet")
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(500, "meters"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Macro+",
  5014. height: math.unit(10, "km")
  5015. },
  5016. {
  5017. name: "Gigamacro",
  5018. height: math.unit(25000, "km")
  5019. },
  5020. {
  5021. name: "Teramacro",
  5022. height: math.unit(3e6, "km")
  5023. }
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(175, "lb"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/nebula/front.svg",
  5035. extra: 2566 / 2362,
  5036. bottom: 81 / 2644
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Small",
  5043. height: math.unit(4.5, "meters")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(1500, "meters"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Megamacro",
  5052. height: math.unit(150, "km")
  5053. },
  5054. {
  5055. name: "Gigamacro",
  5056. height: math.unit(27000, "km")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5062. {
  5063. front: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(225, "lb"),
  5066. name: "Front",
  5067. image: {
  5068. source: "./media/characters/abysgar/front.svg",
  5069. extra: 1739/1614,
  5070. bottom: 71/1810
  5071. }
  5072. },
  5073. frontNsfw: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(225, "lb"),
  5076. name: "Front (NSFW)",
  5077. image: {
  5078. source: "./media/characters/abysgar/front-nsfw.svg",
  5079. extra: 1739/1614,
  5080. bottom: 71/1810
  5081. }
  5082. },
  5083. back: {
  5084. height: math.unit(4.6, "feet"),
  5085. weight: math.unit(225, "lb"),
  5086. name: "Back",
  5087. image: {
  5088. source: "./media/characters/abysgar/back.svg",
  5089. extra: 1384/1327,
  5090. bottom: 0/1384
  5091. }
  5092. },
  5093. head: {
  5094. height: math.unit(1.25, "feet"),
  5095. name: "Head",
  5096. image: {
  5097. source: "./media/characters/abysgar/head.svg",
  5098. extra: 669/569,
  5099. bottom: 0/669
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Small",
  5106. height: math.unit(4.5, "meters")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(1250, "meters"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Megamacro",
  5115. height: math.unit(125, "km")
  5116. },
  5117. {
  5118. name: "Gigamacro",
  5119. height: math.unit(26000, "km")
  5120. }
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(180, "lb"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/yakuz/front.svg"
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(5, "meters")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(1500, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(200, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(100000, "km")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(175, "lb"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/mirova/front.svg",
  5164. extra: 3334 / 3071,
  5165. bottom: 42 / 3375.6
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Small",
  5172. height: math.unit(5, "meters")
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(900, "meters"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Megamacro",
  5181. height: math.unit(135, "km")
  5182. },
  5183. {
  5184. name: "Gigamacro",
  5185. height: math.unit(20000, "km")
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5191. {
  5192. side: {
  5193. height: math.unit(28.35, "feet"),
  5194. weight: math.unit(99.75, "tons"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/asana-mech/side.svg",
  5198. extra: 923 / 699,
  5199. bottom: 50 / 975
  5200. }
  5201. },
  5202. chaingun: {
  5203. height: math.unit(7, "feet"),
  5204. weight: math.unit(2400, "lb"),
  5205. name: "Chaingun",
  5206. image: {
  5207. source: "./media/characters/asana-mech/chaingun.svg"
  5208. }
  5209. },
  5210. laser: {
  5211. height: math.unit(7.12, "feet"),
  5212. weight: math.unit(2000, "lb"),
  5213. name: "Laser",
  5214. image: {
  5215. source: "./media/characters/asana-mech/laser.svg"
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(28.35, "feet"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Macro",
  5227. height: math.unit(2500, "feet")
  5228. },
  5229. {
  5230. name: "Megamacro",
  5231. height: math.unit(25, "miles")
  5232. },
  5233. {
  5234. name: "Examacro",
  5235. height: math.unit(6e8, "lightyears")
  5236. },
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5241. {
  5242. front: {
  5243. height: math.unit(5, "meters"),
  5244. weight: math.unit(1000, "kg"),
  5245. name: "Front",
  5246. image: {
  5247. source: "./media/characters/asche/front.svg",
  5248. extra: 1258 / 1190,
  5249. bottom: 47 / 1305
  5250. }
  5251. },
  5252. frontUnderwear: {
  5253. height: math.unit(5, "meters"),
  5254. weight: math.unit(1000, "kg"),
  5255. name: "Front (Underwear)",
  5256. image: {
  5257. source: "./media/characters/asche/front-underwear.svg",
  5258. extra: 1258 / 1190,
  5259. bottom: 47 / 1305
  5260. }
  5261. },
  5262. frontDressed: {
  5263. height: math.unit(5, "meters"),
  5264. weight: math.unit(1000, "kg"),
  5265. name: "Front (Dressed)",
  5266. image: {
  5267. source: "./media/characters/asche/front-dressed.svg",
  5268. extra: 1258 / 1190,
  5269. bottom: 47 / 1305
  5270. }
  5271. },
  5272. frontArmor: {
  5273. height: math.unit(5, "meters"),
  5274. weight: math.unit(1000, "kg"),
  5275. name: "Front (Armored)",
  5276. image: {
  5277. source: "./media/characters/asche/front-armored.svg",
  5278. extra: 1374 / 1308,
  5279. bottom: 23 / 1397
  5280. }
  5281. },
  5282. mp724: {
  5283. height: math.unit(0.96, "meters"),
  5284. weight: math.unit(38, "kg"),
  5285. name: "H&K MP724",
  5286. image: {
  5287. source: "./media/characters/asche/h&k-mp724.svg"
  5288. }
  5289. },
  5290. side: {
  5291. height: math.unit(5, "meters"),
  5292. weight: math.unit(1000, "kg"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/asche/side.svg",
  5296. extra: 1717 / 1609,
  5297. bottom: 0.005
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(5, "meters"),
  5302. weight: math.unit(1000, "kg"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/asche/back.svg",
  5306. extra: 1570 / 1501
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "DEFCON 5",
  5313. height: math.unit(5, "meters")
  5314. },
  5315. {
  5316. name: "DEFCON 4",
  5317. height: math.unit(500, "meters"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "DEFCON 3",
  5322. height: math.unit(5, "km")
  5323. },
  5324. {
  5325. name: "DEFCON 2",
  5326. height: math.unit(500, "km")
  5327. },
  5328. {
  5329. name: "DEFCON 1",
  5330. height: math.unit(500000, "km")
  5331. },
  5332. {
  5333. name: "DEFCON 0",
  5334. height: math.unit(3, "gigaparsecs")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(7, "feet"),
  5343. weight: math.unit(92.7, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/gale/front.svg",
  5347. extra: 977/919,
  5348. bottom: 105/1082
  5349. }
  5350. },
  5351. side: {
  5352. height: math.unit(6.7, "feet"),
  5353. weight: math.unit(92.7, "kg"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/gale/side.svg",
  5357. extra: 978/922,
  5358. bottom: 140/1118
  5359. }
  5360. },
  5361. back: {
  5362. height: math.unit(7, "feet"),
  5363. weight: math.unit(92.7, "kg"),
  5364. name: "Back",
  5365. image: {
  5366. source: "./media/characters/gale/back.svg",
  5367. extra: 966/920,
  5368. bottom: 61/1027
  5369. }
  5370. },
  5371. maw: {
  5372. height: math.unit(2.23, "feet"),
  5373. name: "Maw",
  5374. image: {
  5375. source: "./media/characters/gale/maw.svg"
  5376. }
  5377. },
  5378. foot: {
  5379. height: math.unit(2.1, "feet"),
  5380. name: "Foot",
  5381. image: {
  5382. source: "./media/characters/gale/foot.svg"
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(7, "feet")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(150, "feet"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Macro+",
  5398. height: math.unit(300, "feet")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(5 + 10/12, "feet"),
  5407. weight: math.unit(67, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/draylen/front.svg",
  5411. extra: 832/777,
  5412. bottom: 85/917
  5413. }
  5414. }
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(5 + 10/12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(150, "feet"),
  5424. default: true
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5430. {
  5431. front: {
  5432. height: math.unit(7 + 9 / 12, "feet"),
  5433. weight: math.unit(379, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/chez/front.svg"
  5437. }
  5438. },
  5439. side: {
  5440. height: math.unit(7 + 9 / 12, "feet"),
  5441. weight: math.unit(379, "lbs"),
  5442. name: "Side",
  5443. image: {
  5444. source: "./media/characters/chez/side.svg"
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(7 + 9 / 12, "feet"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "God King",
  5456. height: math.unit(9750000, "meters")
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(275, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/kaylum/front.svg",
  5469. bottom: 0.01,
  5470. extra: 1166 / 1031
  5471. }
  5472. },
  5473. frontWingless: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(275, "lbs"),
  5476. name: "Front (Wingless)",
  5477. image: {
  5478. source: "./media/characters/kaylum/front-wingless.svg",
  5479. bottom: 0.01,
  5480. extra: 1117 / 1031
  5481. }
  5482. }
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(3.05, "meters")
  5488. },
  5489. {
  5490. name: "Master",
  5491. height: math.unit(5.5, "meters")
  5492. },
  5493. {
  5494. name: "Rampage",
  5495. height: math.unit(19, "meters")
  5496. },
  5497. {
  5498. name: "Macro Lite",
  5499. height: math.unit(37, "meters")
  5500. },
  5501. {
  5502. name: "Hyper Predator",
  5503. height: math.unit(61, "meters")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(138, "meters"),
  5508. default: true
  5509. }
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5514. {
  5515. front: {
  5516. height: math.unit(5 + 5 / 12, "feet"),
  5517. weight: math.unit(120, "lbs"),
  5518. name: "Front",
  5519. image: {
  5520. source: "./media/characters/geta/front.svg",
  5521. extra: 1003/933,
  5522. bottom: 21/1024
  5523. }
  5524. },
  5525. paw: {
  5526. height: math.unit(0.35, "feet"),
  5527. name: "Paw",
  5528. image: {
  5529. source: "./media/characters/geta/paw.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Micro",
  5536. height: math.unit(3, "inches"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5 + 5 / 12, "feet")
  5542. }
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(300, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/tyrnn/front.svg"
  5554. }
  5555. }
  5556. },
  5557. [
  5558. {
  5559. name: "Main Height",
  5560. height: math.unit(355, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Fave. Height",
  5565. height: math.unit(2400, "feet")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(300, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/appledectomy/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(2500, "feet")
  5585. },
  5586. {
  5587. name: "Megamacro",
  5588. height: math.unit(50, "miles"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Gigamacro",
  5593. height: math.unit(5000, "miles")
  5594. },
  5595. {
  5596. name: "Teramacro",
  5597. height: math.unit(250000, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(200, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/vulpes/front.svg",
  5610. extra: 573 / 543,
  5611. bottom: 0.033
  5612. }
  5613. },
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(200, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/vulpes/side.svg",
  5620. extra: 577 / 549,
  5621. bottom: 11 / 588
  5622. }
  5623. },
  5624. back: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(200, "lbs"),
  5627. name: "Back",
  5628. image: {
  5629. source: "./media/characters/vulpes/back.svg",
  5630. extra: 573 / 549,
  5631. bottom: 20 / 593
  5632. }
  5633. },
  5634. feet: {
  5635. height: math.unit(1.276, "feet"),
  5636. name: "Feet",
  5637. image: {
  5638. source: "./media/characters/vulpes/feet.svg"
  5639. }
  5640. },
  5641. maw: {
  5642. height: math.unit(1.18, "feet"),
  5643. name: "Maw",
  5644. image: {
  5645. source: "./media/characters/vulpes/maw.svg"
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(2, "inches")
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(6.3, "feet")
  5657. },
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(850, "feet")
  5661. },
  5662. {
  5663. name: "Megamacro",
  5664. height: math.unit(7500, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Gigamacro",
  5669. height: math.unit(570000, "miles")
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5675. {
  5676. front: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(210, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/rain-fallen/front.svg"
  5682. }
  5683. },
  5684. side: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(210, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/rain-fallen/side.svg"
  5690. }
  5691. },
  5692. back: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(210, "lbs"),
  5695. name: "Back",
  5696. image: {
  5697. source: "./media/characters/rain-fallen/back.svg"
  5698. }
  5699. },
  5700. feral: {
  5701. height: math.unit(9, "feet"),
  5702. weight: math.unit(700, "lbs"),
  5703. name: "Feral",
  5704. image: {
  5705. source: "./media/characters/rain-fallen/feral.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Meddling with Mortals",
  5712. height: math.unit(8 + 8/12, "feet")
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(5, "meter")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(150, "meter"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Megamacro",
  5725. height: math.unit(278e6, "meter")
  5726. },
  5727. {
  5728. name: "Gigamacro",
  5729. height: math.unit(2e9, "meter")
  5730. },
  5731. {
  5732. name: "Teramacro",
  5733. height: math.unit(8e12, "meter")
  5734. },
  5735. {
  5736. name: "Devourer",
  5737. height: math.unit(14, "zettameters")
  5738. },
  5739. {
  5740. name: "Scarlet King",
  5741. height: math.unit(18, "yottameters")
  5742. },
  5743. {
  5744. name: "Void",
  5745. height: math.unit(1e88, "yottameters")
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5751. {
  5752. standing: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(180, "lbs"),
  5755. name: "Standing",
  5756. image: {
  5757. source: "./media/characters/zaakira/standing.svg",
  5758. extra: 1599/1504,
  5759. bottom: 39/1638
  5760. }
  5761. },
  5762. laying: {
  5763. height: math.unit(3.3, "feet"),
  5764. weight: math.unit(180, "lbs"),
  5765. name: "Laying",
  5766. image: {
  5767. source: "./media/characters/zaakira/laying.svg"
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(12, "feet")
  5775. },
  5776. {
  5777. name: "Macro",
  5778. height: math.unit(279, "feet"),
  5779. default: true
  5780. }
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5785. {
  5786. femSfw: {
  5787. height: math.unit(8, "feet"),
  5788. weight: math.unit(350, "lb"),
  5789. name: "Fem",
  5790. image: {
  5791. source: "./media/characters/sigvald/fem-sfw.svg",
  5792. extra: 182 / 164,
  5793. bottom: 8.7 / 190.5
  5794. }
  5795. },
  5796. femNsfw: {
  5797. height: math.unit(8, "feet"),
  5798. weight: math.unit(350, "lb"),
  5799. name: "Fem (NSFW)",
  5800. image: {
  5801. source: "./media/characters/sigvald/fem-nsfw.svg",
  5802. extra: 182 / 164,
  5803. bottom: 8.7 / 190.5
  5804. }
  5805. },
  5806. maleNsfw: {
  5807. height: math.unit(8, "feet"),
  5808. weight: math.unit(350, "lb"),
  5809. name: "Male (NSFW)",
  5810. image: {
  5811. source: "./media/characters/sigvald/male-nsfw.svg",
  5812. extra: 182 / 164,
  5813. bottom: 8.7 / 190.5
  5814. }
  5815. },
  5816. hermNsfw: {
  5817. height: math.unit(8, "feet"),
  5818. weight: math.unit(350, "lb"),
  5819. name: "Herm (NSFW)",
  5820. image: {
  5821. source: "./media/characters/sigvald/herm-nsfw.svg",
  5822. extra: 182 / 164,
  5823. bottom: 8.7 / 190.5
  5824. }
  5825. },
  5826. dick: {
  5827. height: math.unit(2.36, "feet"),
  5828. name: "Dick",
  5829. image: {
  5830. source: "./media/characters/sigvald/dick.svg"
  5831. }
  5832. },
  5833. eye: {
  5834. height: math.unit(0.31, "feet"),
  5835. name: "Eye",
  5836. image: {
  5837. source: "./media/characters/sigvald/eye.svg"
  5838. }
  5839. },
  5840. mouth: {
  5841. height: math.unit(0.92, "feet"),
  5842. name: "Mouth",
  5843. image: {
  5844. source: "./media/characters/sigvald/mouth.svg"
  5845. }
  5846. },
  5847. paws: {
  5848. height: math.unit(2.2, "feet"),
  5849. name: "Paws",
  5850. image: {
  5851. source: "./media/characters/sigvald/paws.svg"
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(8, "feet")
  5859. },
  5860. {
  5861. name: "Large",
  5862. height: math.unit(12, "feet")
  5863. },
  5864. {
  5865. name: "Larger",
  5866. height: math.unit(20, "feet")
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(150, "feet")
  5871. },
  5872. {
  5873. name: "Macro+",
  5874. height: math.unit(200, "feet"),
  5875. default: true
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5881. {
  5882. side: {
  5883. height: math.unit(12, "feet"),
  5884. weight: math.unit(2000, "kg"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/scott/side.svg",
  5888. extra: 754 / 724,
  5889. bottom: 0.069
  5890. }
  5891. },
  5892. upright: {
  5893. height: math.unit(12, "feet"),
  5894. weight: math.unit(2000, "kg"),
  5895. name: "Upright",
  5896. image: {
  5897. source: "./media/characters/scott/upright.svg",
  5898. extra: 3881 / 3722,
  5899. bottom: 0.05
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(12, "feet"),
  5907. default: true
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5913. {
  5914. side: {
  5915. height: math.unit(8, "meters"),
  5916. weight: math.unit(84755, "lbs"),
  5917. name: "Side",
  5918. image: {
  5919. source: "./media/characters/tobias/side.svg",
  5920. extra: 1474 / 1096,
  5921. bottom: 38.9 / 1513.1235
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(8, "meters"),
  5929. default: true
  5930. },
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5935. {
  5936. front: {
  5937. height: math.unit(5.5, "feet"),
  5938. weight: math.unit(400, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/kieran/front.svg",
  5942. extra: 2694 / 2364,
  5943. bottom: 217 / 2908
  5944. }
  5945. },
  5946. side: {
  5947. height: math.unit(5.5, "feet"),
  5948. weight: math.unit(400, "lbs"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/kieran/side.svg",
  5952. extra: 875 / 777,
  5953. bottom: 84.6 / 959
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(5.5, "feet"),
  5961. default: true
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5967. {
  5968. side: {
  5969. height: math.unit(2, "meters"),
  5970. weight: math.unit(70, "kg"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/sanya/side.svg",
  5974. bottom: 0.02,
  5975. extra: 1.02
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Small",
  5982. height: math.unit(2, "meters")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(3, "meters")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(16, "meters"),
  5991. default: true
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(2, "meters"),
  6000. weight: math.unit(120, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/miranda/front.svg",
  6004. extra: 195 / 185,
  6005. bottom: 10.9 / 206.5
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(2, "meters"),
  6010. weight: math.unit(120, "kg"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/miranda/back.svg",
  6014. extra: 201 / 193,
  6015. bottom: 2.3 / 203.7
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(10, "feet"),
  6023. default: true
  6024. }
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "James", species: ["deer"], tags: ["anthro"] },
  6029. {
  6030. side: {
  6031. height: math.unit(2, "meters"),
  6032. weight: math.unit(100, "kg"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/james/front.svg",
  6036. extra: 10 / 8.5
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(8.5, "feet"),
  6044. default: true
  6045. }
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(9.5, "feet"),
  6053. weight: math.unit(2500, "lbs"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/heather/side.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(9.5, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6.5, "feet"),
  6073. weight: math.unit(400, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/lukas/side.svg",
  6077. extra: 7.25 / 6.5
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6.5, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6091. {
  6092. side: {
  6093. height: math.unit(5, "feet"),
  6094. weight: math.unit(3000, "lbs"),
  6095. name: "Side",
  6096. image: {
  6097. source: "./media/characters/louise/side.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(5, "feet"),
  6105. default: true
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6111. {
  6112. side: {
  6113. height: math.unit(6, "feet"),
  6114. weight: math.unit(150, "lbs"),
  6115. name: "Side",
  6116. image: {
  6117. source: "./media/characters/ramona/side.svg",
  6118. extra: 871/854,
  6119. bottom: 41/912
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(6 + 4/12, "feet")
  6127. },
  6128. {
  6129. name: "Minimacro",
  6130. height: math.unit(5.3, "meters"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(20, "stories")
  6136. },
  6137. {
  6138. name: "Macro+",
  6139. height: math.unit(50, "stories")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6145. {
  6146. standing: {
  6147. height: math.unit(5.75, "feet"),
  6148. weight: math.unit(160, "lbs"),
  6149. name: "Standing",
  6150. image: {
  6151. source: "./media/characters/deerpuff/standing.svg",
  6152. extra: 682 / 624
  6153. }
  6154. },
  6155. sitting: {
  6156. height: math.unit(5.75 / 1.79, "feet"),
  6157. weight: math.unit(160, "lbs"),
  6158. name: "Sitting",
  6159. image: {
  6160. source: "./media/characters/deerpuff/sitting.svg",
  6161. bottom: 44 / 400,
  6162. extra: 1
  6163. }
  6164. },
  6165. taurLaying: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(400, "lbs"),
  6168. name: "Taur (Laying)",
  6169. image: {
  6170. source: "./media/characters/deerpuff/taur-laying.svg"
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Puffball",
  6177. height: math.unit(6, "inches")
  6178. },
  6179. {
  6180. name: "Normalpuff",
  6181. height: math.unit(5.75, "feet")
  6182. },
  6183. {
  6184. name: "Macropuff",
  6185. height: math.unit(1500, "feet"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Megapuff",
  6190. height: math.unit(500, "miles")
  6191. },
  6192. {
  6193. name: "Gigapuff",
  6194. height: math.unit(250000, "miles")
  6195. },
  6196. {
  6197. name: "Omegapuff",
  6198. height: math.unit(1000, "lightyears")
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6204. {
  6205. stomping: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(170, "lbs"),
  6208. name: "Stomping",
  6209. image: {
  6210. source: "./media/characters/vivian/stomping.svg"
  6211. }
  6212. },
  6213. sitting: {
  6214. height: math.unit(6 / 1.75, "feet"),
  6215. weight: math.unit(170, "lbs"),
  6216. name: "Sitting",
  6217. image: {
  6218. source: "./media/characters/vivian/sitting.svg",
  6219. bottom: 1 / 6.4,
  6220. extra: 1,
  6221. }
  6222. },
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(7, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(10, "stories")
  6233. },
  6234. {
  6235. name: "Macro+",
  6236. height: math.unit(30, "stories")
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(10, "miles")
  6241. },
  6242. {
  6243. name: "Megamacro+",
  6244. height: math.unit(2750000, "meters")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(160, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/prince/front.svg",
  6257. extra: 1938/1682,
  6258. bottom: 45/1983
  6259. }
  6260. },
  6261. back: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(160, "lbs"),
  6264. name: "Back",
  6265. image: {
  6266. source: "./media/characters/prince/back.svg",
  6267. extra: 1955/1726,
  6268. bottom: 6/1961
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(7.75, "feet"),
  6276. default: true
  6277. },
  6278. {
  6279. name: "Not cute",
  6280. height: math.unit(17, "feet")
  6281. },
  6282. {
  6283. name: "I said NOT",
  6284. height: math.unit(91, "feet")
  6285. },
  6286. {
  6287. name: "Please stop",
  6288. height: math.unit(560, "feet")
  6289. },
  6290. {
  6291. name: "What have you done",
  6292. height: math.unit(2200, "feet")
  6293. },
  6294. {
  6295. name: "Deer God",
  6296. height: math.unit(3.6, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6302. {
  6303. standing: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(300, "lbs"),
  6306. name: "Standing",
  6307. image: {
  6308. source: "./media/characters/psymon/standing.svg",
  6309. extra: 1888 / 1810,
  6310. bottom: 0.05
  6311. }
  6312. },
  6313. slithering: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(300, "lbs"),
  6316. name: "Slithering",
  6317. image: {
  6318. source: "./media/characters/psymon/slithering.svg",
  6319. extra: 1330 / 1224
  6320. }
  6321. },
  6322. slitheringAlt: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(300, "lbs"),
  6325. name: "Slithering (Alt)",
  6326. image: {
  6327. source: "./media/characters/psymon/slithering-alt.svg",
  6328. extra: 1330 / 1224
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(11.25, "feet"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Large",
  6340. height: math.unit(27, "feet")
  6341. },
  6342. {
  6343. name: "Giant",
  6344. height: math.unit(87, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(365, "feet")
  6349. },
  6350. {
  6351. name: "Megamacro",
  6352. height: math.unit(3, "miles")
  6353. },
  6354. {
  6355. name: "World Serpent",
  6356. height: math.unit(8000, "miles")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(180, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/daimos/front.svg",
  6369. extra: 4160 / 3897,
  6370. bottom: 0.021
  6371. }
  6372. }
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(8, "feet"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Big Dog",
  6382. height: math.unit(22, "feet")
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(127, "feet")
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(3600, "feet")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6396. {
  6397. side: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(180, "lbs"),
  6400. name: "Side",
  6401. image: {
  6402. source: "./media/characters/blake/side.svg",
  6403. extra: 1212 / 1120,
  6404. bottom: 0.05
  6405. }
  6406. },
  6407. crouched: {
  6408. height: math.unit(6 * 0.57, "feet"),
  6409. weight: math.unit(180, "lbs"),
  6410. name: "Crouched",
  6411. image: {
  6412. source: "./media/characters/blake/crouched.svg",
  6413. extra: 840 / 587,
  6414. bottom: 0.04
  6415. }
  6416. },
  6417. bent: {
  6418. height: math.unit(6 * 0.75, "feet"),
  6419. weight: math.unit(180, "lbs"),
  6420. name: "Bent",
  6421. image: {
  6422. source: "./media/characters/blake/bent.svg",
  6423. extra: 592 / 544,
  6424. bottom: 0.035
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(8 + 1 / 6, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Big Backside",
  6436. height: math.unit(37, "feet")
  6437. },
  6438. {
  6439. name: "Subway Shredder",
  6440. height: math.unit(72, "feet")
  6441. },
  6442. {
  6443. name: "City Carver",
  6444. height: math.unit(1675, "feet")
  6445. },
  6446. {
  6447. name: "Tectonic Tweaker",
  6448. height: math.unit(2300, "miles")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(180, "lbs"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/guisetto/front.svg",
  6461. extra: 856 / 817,
  6462. bottom: 0.06
  6463. }
  6464. },
  6465. airborne: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(180, "lbs"),
  6468. name: "Airborne",
  6469. image: {
  6470. source: "./media/characters/guisetto/airborne.svg",
  6471. extra: 584 / 525
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(10 + 11 / 12, "feet"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Large",
  6483. height: math.unit(35, "feet")
  6484. },
  6485. {
  6486. name: "Macro",
  6487. height: math.unit(475, "feet")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(180, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/luxor/front.svg",
  6500. extra: 2940 / 2152
  6501. }
  6502. },
  6503. back: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(180, "lbs"),
  6506. name: "Back",
  6507. image: {
  6508. source: "./media/characters/luxor/back.svg",
  6509. extra: 1083 / 960
  6510. }
  6511. },
  6512. },
  6513. [
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(5 + 5 / 6, "feet"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Lamp",
  6521. height: math.unit(50, "feet")
  6522. },
  6523. {
  6524. name: "Lämp",
  6525. height: math.unit(300, "feet")
  6526. },
  6527. {
  6528. name: "The sun is a lamp",
  6529. height: math.unit(250000, "miles")
  6530. },
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6535. {
  6536. front: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(50, "lbs"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/huoyan/front.svg"
  6542. }
  6543. },
  6544. side: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(180, "lbs"),
  6547. name: "Side",
  6548. image: {
  6549. source: "./media/characters/huoyan/side.svg"
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Chef",
  6556. height: math.unit(9, "feet")
  6557. },
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(65, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(780, "feet")
  6566. },
  6567. {
  6568. name: "Flaming Mountain",
  6569. height: math.unit(4.8, "miles")
  6570. },
  6571. {
  6572. name: "Celestial",
  6573. height: math.unit(765000, "miles")
  6574. },
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(5 + 3 / 4, "feet"),
  6582. weight: math.unit(120, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/tails/front.svg"
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(5 + 3 / 4, "feet"),
  6593. default: true
  6594. }
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(4, "feet"),
  6602. weight: math.unit(50, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/rainy/front.svg"
  6606. }
  6607. }
  6608. },
  6609. [
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(800, "feet"),
  6613. default: true
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(150, "lbs"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rainier/front.svg"
  6626. }
  6627. }
  6628. },
  6629. [
  6630. {
  6631. name: "Micro",
  6632. height: math.unit(2, "mm"),
  6633. default: true
  6634. }
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(8 + 4/12, "feet"),
  6642. weight: math.unit(450, "kilograms"),
  6643. volume: math.unit(5, "cups"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/andy-renard/front.svg",
  6647. extra: 1839/1726,
  6648. bottom: 134/1973
  6649. }
  6650. },
  6651. back: {
  6652. height: math.unit(8 + 4/12, "feet"),
  6653. weight: math.unit(450, "kilograms"),
  6654. volume: math.unit(5, "cups"),
  6655. name: "Back",
  6656. image: {
  6657. source: "./media/characters/andy-renard/back.svg",
  6658. extra: 1838/1710,
  6659. bottom: 105/1943
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Tall",
  6666. height: math.unit(8 + 4/12, "feet")
  6667. },
  6668. {
  6669. name: "Mini Macro",
  6670. height: math.unit(15, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Macro",
  6675. height: math.unit(100, "feet")
  6676. },
  6677. {
  6678. name: "Mega Macro",
  6679. height: math.unit(1000, "feet")
  6680. },
  6681. {
  6682. name: "Giga Macro",
  6683. height: math.unit(10, "miles")
  6684. },
  6685. {
  6686. name: "God Macro",
  6687. height: math.unit(1, "multiverse")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(210, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/cimmaron/front-sfw.svg",
  6700. extra: 701 / 676,
  6701. bottom: 0.046
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(210, "lbs"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/cimmaron/back-sfw.svg",
  6710. extra: 701 / 676,
  6711. bottom: 0.046
  6712. }
  6713. },
  6714. frontNsfw: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(210, "lbs"),
  6717. name: "Front (NSFW)",
  6718. image: {
  6719. source: "./media/characters/cimmaron/front-nsfw.svg",
  6720. extra: 701 / 676,
  6721. bottom: 0.046
  6722. }
  6723. },
  6724. backNsfw: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(210, "lbs"),
  6727. name: "Back (NSFW)",
  6728. image: {
  6729. source: "./media/characters/cimmaron/back-nsfw.svg",
  6730. extra: 701 / 676,
  6731. bottom: 0.046
  6732. }
  6733. },
  6734. dick: {
  6735. height: math.unit(1.714, "feet"),
  6736. name: "Dick",
  6737. image: {
  6738. source: "./media/characters/cimmaron/dick.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(6, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Macro Mayor",
  6750. height: math.unit(350, "meters")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(200, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/akari/front.svg",
  6763. extra: 962 / 901,
  6764. bottom: 0.04
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(5, "inches"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(7, "feet")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(140, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/cynosura/front.svg",
  6789. extra: 437/410,
  6790. bottom: 9/446
  6791. }
  6792. },
  6793. back: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(140, "lbs"),
  6796. name: "Back",
  6797. image: {
  6798. source: "./media/characters/cynosura/back.svg",
  6799. extra: 1304/1160,
  6800. bottom: 71/1375
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(4, "inches")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5.75, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Tall",
  6816. height: math.unit(10, "feet")
  6817. },
  6818. {
  6819. name: "Big",
  6820. height: math.unit(20, "feet")
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(50, "feet")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(13 + 2/12, "feet"),
  6833. weight: math.unit(800, "kg"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/gin/front.svg",
  6837. extra: 1312/1191,
  6838. bottom: 45/1357
  6839. }
  6840. },
  6841. mouth: {
  6842. height: math.unit(2.39 * 1.8, "feet"),
  6843. name: "Mouth",
  6844. image: {
  6845. source: "./media/characters/gin/mouth.svg"
  6846. }
  6847. },
  6848. hand: {
  6849. height: math.unit(1.57 * 2.19, "feet"),
  6850. name: "Hand",
  6851. image: {
  6852. source: "./media/characters/gin/hand.svg"
  6853. }
  6854. },
  6855. foot: {
  6856. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6857. name: "Foot",
  6858. image: {
  6859. source: "./media/characters/gin/foot.svg"
  6860. }
  6861. },
  6862. sole: {
  6863. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6864. name: "Sole",
  6865. image: {
  6866. source: "./media/characters/gin/sole.svg"
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Very Small",
  6873. height: math.unit(13 + 2 / 12, "feet")
  6874. },
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(600, "miles")
  6878. },
  6879. {
  6880. name: "Regular",
  6881. height: math.unit(20, "earths"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(2.2, "solarradii")
  6887. },
  6888. {
  6889. name: "Teramacro",
  6890. height: math.unit(1.2, "galaxies")
  6891. },
  6892. {
  6893. name: "Omegamacro",
  6894. height: math.unit(200, "universes")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6 + 1 / 6, "feet"),
  6903. weight: math.unit(178, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/guy/front.svg"
  6907. }
  6908. }
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(6 + 1 / 6, "feet"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Large",
  6918. height: math.unit(25 + 7 / 12, "feet")
  6919. },
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(60 + 9 / 12, "feet")
  6923. },
  6924. {
  6925. name: "Macro+",
  6926. height: math.unit(246, "feet")
  6927. },
  6928. {
  6929. name: "Macro++",
  6930. height: math.unit(878, "feet")
  6931. }
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(9, "feet"),
  6939. weight: math.unit(800, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/tiberius/front.svg",
  6943. extra: 2295 / 2071
  6944. }
  6945. },
  6946. back: {
  6947. height: math.unit(9, "feet"),
  6948. weight: math.unit(800, "lbs"),
  6949. name: "Back",
  6950. image: {
  6951. source: "./media/characters/tiberius/back.svg",
  6952. extra: 2373 / 2160
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(9, "feet"),
  6960. default: true
  6961. }
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6966. {
  6967. front: {
  6968. height: math.unit(6, "feet"),
  6969. weight: math.unit(600, "lbs"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/surgo/front.svg",
  6973. extra: 3591 / 2227
  6974. }
  6975. },
  6976. back: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(600, "lbs"),
  6979. name: "Back",
  6980. image: {
  6981. source: "./media/characters/surgo/back.svg",
  6982. extra: 3557 / 2228
  6983. }
  6984. },
  6985. laying: {
  6986. height: math.unit(6 * 0.85, "feet"),
  6987. weight: math.unit(600, "lbs"),
  6988. name: "Laying",
  6989. image: {
  6990. source: "./media/characters/surgo/laying.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(6, "feet"),
  6998. default: true
  6999. }
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7004. {
  7005. side: {
  7006. height: math.unit(6, "feet"),
  7007. weight: math.unit(150, "lbs"),
  7008. name: "Side",
  7009. image: {
  7010. source: "./media/characters/cibus/side.svg",
  7011. extra: 800 / 400
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(6, "feet"),
  7019. default: true
  7020. }
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(240, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/nibbles/front.svg"
  7032. }
  7033. },
  7034. side: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(240, "lbs"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/nibbles/side.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(9, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7053. {
  7054. side: {
  7055. height: math.unit(5 + 1 / 6, "feet"),
  7056. weight: math.unit(130, "lbs"),
  7057. name: "Side",
  7058. image: {
  7059. source: "./media/characters/rikky/side.svg",
  7060. extra: 851 / 801
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(5 + 1 / 6, "feet")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(152, "feet"),
  7072. default: true
  7073. },
  7074. {
  7075. name: "Megamacro",
  7076. height: math.unit(7, "miles")
  7077. }
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7082. {
  7083. side: {
  7084. height: math.unit(370, "cm"),
  7085. weight: math.unit(350, "lbs"),
  7086. name: "Side",
  7087. image: {
  7088. source: "./media/characters/malfressa/side.svg"
  7089. }
  7090. },
  7091. walking: {
  7092. height: math.unit(370, "cm"),
  7093. weight: math.unit(350, "lbs"),
  7094. name: "Walking",
  7095. image: {
  7096. source: "./media/characters/malfressa/walking.svg"
  7097. }
  7098. },
  7099. feral: {
  7100. height: math.unit(2500, "cm"),
  7101. weight: math.unit(100000, "lbs"),
  7102. name: "Feral",
  7103. image: {
  7104. source: "./media/characters/malfressa/feral.svg",
  7105. extra: 2108 / 837,
  7106. bottom: 0.02
  7107. }
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(370, "cm")
  7114. },
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(300, "meters"),
  7118. default: true
  7119. }
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(60, "kg"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/jaro/front.svg",
  7131. extra: 845/817,
  7132. bottom: 45/890
  7133. }
  7134. },
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(60, "kg"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/jaro/back.svg",
  7141. extra: 847/817,
  7142. bottom: 34/881
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Micro",
  7149. height: math.unit(7, "inches")
  7150. },
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(5.5, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Minimacro",
  7158. height: math.unit(20, "feet")
  7159. },
  7160. {
  7161. name: "Macro",
  7162. height: math.unit(200, "meters")
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(195, "lb"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/rogue/front.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(90, "feet"),
  7182. default: true
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7188. {
  7189. standing: {
  7190. height: math.unit(5 + 8 / 12, "feet"),
  7191. weight: math.unit(140, "lb"),
  7192. name: "Standing",
  7193. image: {
  7194. source: "./media/characters/piper/standing.svg",
  7195. extra: 1440/1284,
  7196. bottom: 66/1506
  7197. }
  7198. },
  7199. running: {
  7200. height: math.unit(5 + 8 / 12, "feet"),
  7201. weight: math.unit(140, "lb"),
  7202. name: "Running",
  7203. image: {
  7204. source: "./media/characters/piper/running.svg",
  7205. extra: 3948/3655,
  7206. bottom: 0/3948
  7207. }
  7208. },
  7209. sole: {
  7210. height: math.unit(0.81, "feet"),
  7211. weight: math.unit(2, "kg"),
  7212. name: "Sole",
  7213. image: {
  7214. source: "./media/characters/piper/sole.svg"
  7215. }
  7216. },
  7217. nipple: {
  7218. height: math.unit(0.25, "feet"),
  7219. weight: math.unit(1.5, "lb"),
  7220. name: "Nipple",
  7221. image: {
  7222. source: "./media/characters/piper/nipple.svg"
  7223. }
  7224. },
  7225. head: {
  7226. height: math.unit(1.1, "feet"),
  7227. name: "Head",
  7228. image: {
  7229. source: "./media/characters/piper/head.svg"
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Micro",
  7236. height: math.unit(2, "inches")
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(5 + 8 / 12, "feet")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(250, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Megamacro",
  7249. height: math.unit(7, "miles")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(220, "lb"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/gemini/front.svg"
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(220, "lb"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/gemini/back.svg"
  7270. }
  7271. },
  7272. kneeling: {
  7273. height: math.unit(6 / 1.5, "feet"),
  7274. weight: math.unit(220, "lb"),
  7275. name: "Kneeling",
  7276. image: {
  7277. source: "./media/characters/gemini/kneeling.svg",
  7278. bottom: 0.02
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(300, "meters"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(6900, "meters")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7296. {
  7297. anthro: {
  7298. height: math.unit(2.35, "meters"),
  7299. weight: math.unit(73, "kg"),
  7300. name: "Anthro",
  7301. image: {
  7302. source: "./media/characters/alicia/anthro.svg",
  7303. extra: 2571 / 2385,
  7304. bottom: 75 / 2648
  7305. }
  7306. },
  7307. paw: {
  7308. height: math.unit(1.32, "feet"),
  7309. name: "Paw",
  7310. image: {
  7311. source: "./media/characters/alicia/paw.svg"
  7312. }
  7313. },
  7314. feral: {
  7315. height: math.unit(1.69, "meters"),
  7316. weight: math.unit(73, "kg"),
  7317. name: "Feral",
  7318. image: {
  7319. source: "./media/characters/alicia/feral.svg",
  7320. extra: 2123 / 1715,
  7321. bottom: 222 / 2349
  7322. }
  7323. },
  7324. },
  7325. [
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(2.35, "meters")
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(60, "meters"),
  7333. default: true
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(10000, "kilometers")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(7, "feet"),
  7346. weight: math.unit(250, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/archy/front.svg"
  7350. }
  7351. }
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(1, "inch")
  7357. },
  7358. {
  7359. name: "Shorty",
  7360. height: math.unit(5, "feet")
  7361. },
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(7, "feet")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(600, "meters"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(1, "mile")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(1.65, "meters"),
  7382. weight: math.unit(74, "kg"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/berri/front.svg",
  7386. extra: 857 / 837,
  7387. bottom: 18 / 877
  7388. }
  7389. },
  7390. bum: {
  7391. height: math.unit(1.46, "feet"),
  7392. name: "Bum",
  7393. image: {
  7394. source: "./media/characters/berri/bum.svg"
  7395. }
  7396. },
  7397. mouth: {
  7398. height: math.unit(0.44, "feet"),
  7399. name: "Mouth",
  7400. image: {
  7401. source: "./media/characters/berri/mouth.svg"
  7402. }
  7403. },
  7404. paw: {
  7405. height: math.unit(0.826, "feet"),
  7406. name: "Paw",
  7407. image: {
  7408. source: "./media/characters/berri/paw.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(1.65, "meters")
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(60, "m"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Megamacro",
  7424. height: math.unit(9.213, "km")
  7425. },
  7426. {
  7427. name: "Planet Eater",
  7428. height: math.unit(489, "megameters")
  7429. },
  7430. {
  7431. name: "Teramacro",
  7432. height: math.unit(2471635000000, "meters")
  7433. },
  7434. {
  7435. name: "Examacro",
  7436. height: math.unit(8.0624e+26, "meters")
  7437. }
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(1.72, "meters"),
  7445. weight: math.unit(68, "kg"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/lexi/front.svg"
  7449. }
  7450. }
  7451. },
  7452. [
  7453. {
  7454. name: "Very Smol",
  7455. height: math.unit(10, "mm")
  7456. },
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(6.8, "cm"),
  7460. default: true
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(1.72, "m")
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(1.69, "meters"),
  7473. weight: math.unit(68, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/martin/front.svg",
  7477. extra: 596 / 581
  7478. }
  7479. }
  7480. },
  7481. [
  7482. {
  7483. name: "Micro",
  7484. height: math.unit(6.85, "cm"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(1.69, "m")
  7490. }
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(1.69, "meters"),
  7498. weight: math.unit(68, "kg"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/juno/front.svg"
  7502. }
  7503. }
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(7, "cm")
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(1.89, "m")
  7513. },
  7514. {
  7515. name: "Macro",
  7516. height: math.unit(353, "meters"),
  7517. default: true
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(1.93, "meters"),
  7526. weight: math.unit(83, "kg"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/samantha/front.svg"
  7530. }
  7531. },
  7532. frontClothed: {
  7533. height: math.unit(1.93, "meters"),
  7534. weight: math.unit(83, "kg"),
  7535. name: "Front (Clothed)",
  7536. image: {
  7537. source: "./media/characters/samantha/front-clothed.svg"
  7538. }
  7539. },
  7540. back: {
  7541. height: math.unit(1.93, "meters"),
  7542. weight: math.unit(83, "kg"),
  7543. name: "Back",
  7544. image: {
  7545. source: "./media/characters/samantha/back.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(1.93, "m")
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(74, "meters"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro+",
  7561. height: math.unit(223, "meters"),
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(8381, "meters"),
  7566. },
  7567. {
  7568. name: "Megamacro+",
  7569. height: math.unit(12000, "kilometers")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(1.92, "meters"),
  7578. weight: math.unit(80, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/dr-clay/front.svg"
  7582. }
  7583. },
  7584. frontClothed: {
  7585. height: math.unit(1.92, "meters"),
  7586. weight: math.unit(80, "kg"),
  7587. name: "Front (Clothed)",
  7588. image: {
  7589. source: "./media/characters/dr-clay/front-clothed.svg"
  7590. }
  7591. }
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(1.92, "m")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(214, "meters"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Macro+",
  7605. height: math.unit(12.237, "meters"),
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(557, "megameters"),
  7610. },
  7611. {
  7612. name: "Unimaginable",
  7613. height: math.unit(120e9, "lightyears")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(2, "meters"),
  7622. weight: math.unit(80, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Teramacro",
  7632. height: math.unit(500000, "lightyears"),
  7633. default: true
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7639. {
  7640. crux: {
  7641. height: math.unit(2, "meters"),
  7642. weight: math.unit(150, "kg"),
  7643. name: "Crux",
  7644. image: {
  7645. source: "./media/characters/vemus/crux.svg",
  7646. extra: 1074/936,
  7647. bottom: 23/1097
  7648. }
  7649. },
  7650. skunkTanuki: {
  7651. height: math.unit(2, "meters"),
  7652. weight: math.unit(150, "kg"),
  7653. name: "Skunk-Tanuki",
  7654. image: {
  7655. source: "./media/characters/vemus/skunk-tanuki.svg",
  7656. extra: 926/893,
  7657. bottom: 20/946
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(4, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Big",
  7669. height: math.unit(8, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(100, "meters")
  7674. },
  7675. {
  7676. name: "Macro+",
  7677. height: math.unit(1500, "meters")
  7678. },
  7679. {
  7680. name: "Stellar",
  7681. height: math.unit(14e8, "meters")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(2, "meters"),
  7690. weight: math.unit(70, "kg"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/beherit/front.svg",
  7694. extra: 1234/1109,
  7695. bottom: 55/1289
  7696. }
  7697. }
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(6, "feet")
  7703. },
  7704. {
  7705. name: "Lorg",
  7706. height: math.unit(25, "feet"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Lorger",
  7711. height: math.unit(75, "feet")
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(200, "meters")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(2, "meters"),
  7724. weight: math.unit(150, "kg"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/everett/front.svg",
  7728. extra: 1017/866,
  7729. bottom: 86/1103
  7730. }
  7731. },
  7732. paw: {
  7733. height: math.unit(2 / 3.6, "meters"),
  7734. name: "Paw",
  7735. image: {
  7736. source: "./media/characters/everett/paw.svg"
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(15, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Lorg",
  7748. height: math.unit(70, "feet"),
  7749. default: true
  7750. },
  7751. {
  7752. name: "Lorger",
  7753. height: math.unit(250, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(500, "meters")
  7758. },
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(2, "meters"),
  7766. weight: math.unit(86, "kg"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/rose/front.svg",
  7770. extra: 1785/1636,
  7771. bottom: 30/1815
  7772. },
  7773. form: "liom",
  7774. default: true
  7775. },
  7776. frontSporty: {
  7777. height: math.unit(2, "meters"),
  7778. weight: math.unit(86, "kg"),
  7779. name: "Front (Sporty)",
  7780. image: {
  7781. source: "./media/characters/rose/front-sporty.svg",
  7782. extra: 350/335,
  7783. bottom: 10/360
  7784. },
  7785. form: "liom"
  7786. },
  7787. frontAlt: {
  7788. height: math.unit(1.6, "meters"),
  7789. weight: math.unit(86, "kg"),
  7790. name: "Front (Alt)",
  7791. image: {
  7792. source: "./media/characters/rose/front-alt.svg",
  7793. extra: 299/283,
  7794. bottom: 3/302
  7795. },
  7796. form: "liom"
  7797. },
  7798. plush: {
  7799. height: math.unit(2, "meters"),
  7800. weight: math.unit(86/3, "kg"),
  7801. name: "Plush",
  7802. image: {
  7803. source: "./media/characters/rose/plush.svg",
  7804. extra: 361/337,
  7805. bottom: 11/372
  7806. },
  7807. form: "plush",
  7808. default: true
  7809. },
  7810. faeStanding: {
  7811. height: math.unit(10, "cm"),
  7812. weight: math.unit(10, "grams"),
  7813. name: "Standing",
  7814. image: {
  7815. source: "./media/characters/rose/fae-standing.svg",
  7816. extra: 1189/1060,
  7817. bottom: 27/1216
  7818. },
  7819. form: "fae",
  7820. default: true
  7821. },
  7822. faeSitting: {
  7823. height: math.unit(5, "cm"),
  7824. weight: math.unit(10, "grams"),
  7825. name: "Sitting",
  7826. image: {
  7827. source: "./media/characters/rose/fae-sitting.svg",
  7828. extra: 737/577,
  7829. bottom: 356/1093
  7830. },
  7831. form: "fae"
  7832. },
  7833. faePaw: {
  7834. height: math.unit(1.35, "cm"),
  7835. name: "Paw",
  7836. image: {
  7837. source: "./media/characters/rose/fae-paw.svg"
  7838. },
  7839. form: "fae"
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "True Micro",
  7845. height: math.unit(9, "cm"),
  7846. form: "liom"
  7847. },
  7848. {
  7849. name: "Micro",
  7850. height: math.unit(16, "cm"),
  7851. form: "liom"
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(1.85, "meters"),
  7856. default: true,
  7857. form: "liom"
  7858. },
  7859. {
  7860. name: "Mini-Macro",
  7861. height: math.unit(5, "meters"),
  7862. form: "liom"
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(15, "meters"),
  7867. form: "liom"
  7868. },
  7869. {
  7870. name: "True Macro",
  7871. height: math.unit(40, "meters"),
  7872. form: "liom"
  7873. },
  7874. {
  7875. name: "City Scale",
  7876. height: math.unit(1, "km"),
  7877. form: "liom"
  7878. },
  7879. {
  7880. name: "Plushie",
  7881. height: math.unit(9, "cm"),
  7882. form: "plush",
  7883. default: true
  7884. },
  7885. {
  7886. name: "Fae",
  7887. height: math.unit(10, "cm"),
  7888. form: "fae",
  7889. default: true
  7890. },
  7891. ],
  7892. {
  7893. "liom": {
  7894. name: "Liom"
  7895. },
  7896. "plush": {
  7897. name: "Plush"
  7898. },
  7899. "fae": {
  7900. name: "Fae Fox",
  7901. default: true
  7902. }
  7903. }
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(2, "meters"),
  7910. weight: math.unit(350, "lbs"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/regal/front.svg"
  7914. }
  7915. },
  7916. back: {
  7917. height: math.unit(2, "meters"),
  7918. weight: math.unit(350, "lbs"),
  7919. name: "Back",
  7920. image: {
  7921. source: "./media/characters/regal/back.svg"
  7922. }
  7923. },
  7924. },
  7925. [
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(350, "feet"),
  7929. default: true
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(4 + 11 / 12, "feet"),
  7938. weight: math.unit(100, "lbs"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/opal/front.svg"
  7942. }
  7943. },
  7944. frontAlt: {
  7945. height: math.unit(4 + 11 / 12, "feet"),
  7946. weight: math.unit(100, "lbs"),
  7947. name: "Front (Alt)",
  7948. image: {
  7949. source: "./media/characters/opal/front-alt.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Small",
  7956. height: math.unit(4 + 11 / 12, "feet")
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(20, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(120, "feet")
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(80, "miles")
  7970. },
  7971. {
  7972. name: "True Size",
  7973. height: math.unit(100000, "lightyears")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(200, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/vector-wuff/front.svg"
  7986. }
  7987. }
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(2.8, "meters")
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(450, "meters"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Megamacro",
  8001. height: math.unit(15, "kilometers")
  8002. }
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(256, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/dannik/front.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(69.57, "meters"),
  8021. default: true
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(120, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/azura-saharah/front.svg"
  8034. }
  8035. },
  8036. back: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Back",
  8040. image: {
  8041. source: "./media/characters/azura-saharah/back.svg"
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(100, "feet"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8055. {
  8056. side: {
  8057. height: math.unit(5 + 4 / 12, "feet"),
  8058. weight: math.unit(163, "lbs"),
  8059. name: "Side",
  8060. image: {
  8061. source: "./media/characters/kennedy/side.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Standard Doggo",
  8068. height: math.unit(5 + 4 / 12, "feet")
  8069. },
  8070. {
  8071. name: "Big Doggo",
  8072. height: math.unit(25 + 3 / 12, "feet"),
  8073. default: true
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(5 + 5/12, "feet"),
  8082. weight: math.unit(100, "lbs"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/odios-de-lunar/front.svg",
  8086. extra: 1468/1323,
  8087. bottom: 22/1490
  8088. }
  8089. }
  8090. },
  8091. [
  8092. {
  8093. name: "Micro",
  8094. height: math.unit(3, "inches")
  8095. },
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(5.5, "feet"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(100, "feet")
  8104. },
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8109. {
  8110. back: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(220, "lbs"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/mandake/back.svg"
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(7, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(78, "feet")
  8128. },
  8129. {
  8130. name: "Macro+",
  8131. height: math.unit(300, "meters")
  8132. },
  8133. {
  8134. name: "Macro++",
  8135. height: math.unit(2400, "feet")
  8136. },
  8137. {
  8138. name: "Megamacro",
  8139. height: math.unit(5167, "meters")
  8140. },
  8141. {
  8142. name: "Gigamacro",
  8143. height: math.unit(41769, "miles")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(120, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/yozey/front.svg"
  8156. }
  8157. },
  8158. frontAlt: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(120, "lbs"),
  8161. name: "Front (Alt)",
  8162. image: {
  8163. source: "./media/characters/yozey/front-alt.svg"
  8164. }
  8165. },
  8166. side: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(120, "lbs"),
  8169. name: "Side",
  8170. image: {
  8171. source: "./media/characters/yozey/side.svg"
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(3, "inches"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(6, "feet")
  8184. }
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(103, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/valeska-voss/front.svg"
  8196. }
  8197. }
  8198. },
  8199. [
  8200. {
  8201. name: "Mini-Sized Sub",
  8202. height: math.unit(3.1, "inches")
  8203. },
  8204. {
  8205. name: "Mid-Sized Sub",
  8206. height: math.unit(6.2, "inches")
  8207. },
  8208. {
  8209. name: "Full-Sized Sub",
  8210. height: math.unit(9.3, "inches")
  8211. },
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 2 / 12, "foot"),
  8215. default: true
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(160, "lbs"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/gene-zeta/front.svg",
  8228. extra: 3006 / 2826,
  8229. bottom: 182 / 3188
  8230. }
  8231. }
  8232. },
  8233. [
  8234. {
  8235. name: "Micro",
  8236. height: math.unit(6, "inches")
  8237. },
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(5 + 11 / 12, "foot"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(140, "feet")
  8246. },
  8247. {
  8248. name: "Supercharged",
  8249. height: math.unit(2500, "feet")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(6, "feet"),
  8258. weight: math.unit(350, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/razinox/front.svg",
  8262. extra: 1686 / 1548,
  8263. bottom: 28.2 / 1868
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(350, "lbs"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/razinox/back.svg",
  8272. extra: 1660 / 1590,
  8273. bottom: 15 / 1665
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(10 + 8 / 12, "foot")
  8281. },
  8282. {
  8283. name: "Minimacro",
  8284. height: math.unit(15, "foot")
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(60, "foot"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(5, "miles")
  8294. },
  8295. {
  8296. name: "Gigamacro",
  8297. height: math.unit(6000, "miles")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(150, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/cobalt/front.svg"
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(8 + 1 / 12, "foot")
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(111, "foot"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Supracosmic",
  8325. height: math.unit(1e42, "feet")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(5, "inches"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/amanda/front.svg",
  8337. extra: 926/791,
  8338. bottom: 38/964
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(5, "inches"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/amanda/back.svg",
  8346. extra: 909/805,
  8347. bottom: 43/952
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(5, "inches"),
  8355. default: true
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(2.75, "meters"),
  8364. weight: math.unit(1200, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/teal/front.svg",
  8368. extra: 2463 / 2320,
  8369. bottom: 166 / 2629
  8370. }
  8371. },
  8372. back: {
  8373. height: math.unit(2.75, "meters"),
  8374. weight: math.unit(1200, "lb"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/teal/back.svg",
  8378. extra: 2580 / 2489,
  8379. bottom: 151 / 2731
  8380. }
  8381. },
  8382. sitting: {
  8383. height: math.unit(1.9, "meters"),
  8384. weight: math.unit(1200, "lb"),
  8385. name: "Sitting",
  8386. image: {
  8387. source: "./media/characters/teal/sitting.svg",
  8388. extra: 623 / 590,
  8389. bottom: 121 / 744
  8390. }
  8391. },
  8392. standing: {
  8393. height: math.unit(2.75, "meters"),
  8394. weight: math.unit(1200, "lb"),
  8395. name: "Standing",
  8396. image: {
  8397. source: "./media/characters/teal/standing.svg",
  8398. extra: 923 / 893,
  8399. bottom: 60 / 983
  8400. }
  8401. },
  8402. stretching: {
  8403. height: math.unit(3.65, "meters"),
  8404. weight: math.unit(1200, "lb"),
  8405. name: "Stretching",
  8406. image: {
  8407. source: "./media/characters/teal/stretching.svg",
  8408. extra: 1276 / 1244,
  8409. bottom: 0 / 1276
  8410. }
  8411. },
  8412. legged: {
  8413. height: math.unit(1.3, "meters"),
  8414. weight: math.unit(100, "lb"),
  8415. name: "Legged",
  8416. image: {
  8417. source: "./media/characters/teal/legged.svg",
  8418. extra: 462 / 437,
  8419. bottom: 24 / 486
  8420. }
  8421. },
  8422. naga: {
  8423. height: math.unit(5.4, "meters"),
  8424. weight: math.unit(4000, "lb"),
  8425. name: "Naga",
  8426. image: {
  8427. source: "./media/characters/teal/naga.svg",
  8428. extra: 1902 / 1858,
  8429. bottom: 0 / 1902
  8430. }
  8431. },
  8432. hand: {
  8433. height: math.unit(0.52, "meters"),
  8434. name: "Hand",
  8435. image: {
  8436. source: "./media/characters/teal/hand.svg"
  8437. }
  8438. },
  8439. maw: {
  8440. height: math.unit(0.43, "meters"),
  8441. name: "Maw",
  8442. image: {
  8443. source: "./media/characters/teal/maw.svg"
  8444. }
  8445. },
  8446. slit: {
  8447. height: math.unit(0.25, "meters"),
  8448. name: "Slit",
  8449. image: {
  8450. source: "./media/characters/teal/slit.svg"
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(2.75, "meters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(300, "feet")
  8463. },
  8464. {
  8465. name: "Macro+",
  8466. height: math.unit(2000, "feet")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8472. {
  8473. frontCat: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(180, "lbs"),
  8476. name: "Front (Cat)",
  8477. image: {
  8478. source: "./media/characters/ravin-amulet/front-cat.svg"
  8479. }
  8480. },
  8481. frontCatAlt: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(180, "lbs"),
  8484. name: "Front (Alt, Cat)",
  8485. image: {
  8486. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8487. }
  8488. },
  8489. frontWerewolf: {
  8490. height: math.unit(6 * 1.2, "feet"),
  8491. weight: math.unit(225, "lbs"),
  8492. name: "Front (Werewolf)",
  8493. image: {
  8494. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8495. }
  8496. },
  8497. backWerewolf: {
  8498. height: math.unit(6 * 1.2, "feet"),
  8499. weight: math.unit(225, "lbs"),
  8500. name: "Back (Werewolf)",
  8501. image: {
  8502. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Nano",
  8509. height: math.unit(1, "micrometer")
  8510. },
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(1, "inch")
  8514. },
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(6, "feet"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(60, "feet")
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(165, "lbs"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/fluoresce/front.svg"
  8535. }
  8536. }
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(6, "cm")
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(5 + 7 / 12, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(56, "feet")
  8551. },
  8552. {
  8553. name: "Megamacro",
  8554. height: math.unit(1.9, "miles")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(9 + 6 / 12, "feet"),
  8563. weight: math.unit(523, "lbs"),
  8564. name: "Side",
  8565. image: {
  8566. source: "./media/characters/aurora/side.svg",
  8567. extra: 474/393,
  8568. bottom: 5/479
  8569. }
  8570. }
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(9 + 6 / 12, "feet")
  8576. },
  8577. {
  8578. name: "Macro",
  8579. height: math.unit(96, "feet"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Macro+",
  8584. height: math.unit(243, "feet")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(194, "cm"),
  8593. weight: math.unit(90, "kg"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/ranek/front.svg",
  8597. extra: 1862/1791,
  8598. bottom: 80/1942
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(194, "cm"),
  8603. weight: math.unit(90, "kg"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/ranek/back.svg",
  8607. extra: 1853/1787,
  8608. bottom: 74/1927
  8609. }
  8610. },
  8611. feral: {
  8612. height: math.unit(30, "cm"),
  8613. weight: math.unit(1.6, "lbs"),
  8614. name: "Feral",
  8615. image: {
  8616. source: "./media/characters/ranek/feral.svg",
  8617. extra: 990/631,
  8618. bottom: 29/1019
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(194, "cm"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(100, "meters")
  8631. },
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8636. {
  8637. front: {
  8638. height: math.unit(5 + 6 / 12, "feet"),
  8639. weight: math.unit(153, "lbs"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/andrew-cooper/front.svg"
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Nano",
  8649. height: math.unit(1, "mm")
  8650. },
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(2, "inches")
  8654. },
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(5 + 6 / 12, "feet"),
  8658. default: true
  8659. }
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(180, "lbs"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/akane-sato/front.svg",
  8671. extra: 1219 / 1140
  8672. }
  8673. },
  8674. back: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(180, "lbs"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/akane-sato/back.svg",
  8680. extra: 1219 / 1170
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(2.5, "meters")
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(250, "meters"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Megamacro",
  8696. height: math.unit(25, "km")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8702. {
  8703. front: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(65, "kg"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/rook/front.svg",
  8709. extra: 960 / 950
  8710. }
  8711. }
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(8.8, "feet")
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(88, "feet"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Megamacro",
  8725. height: math.unit(8, "miles")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(12 + 2 / 12, "feet"),
  8734. weight: math.unit(808, "lbs"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/prodigy/front.svg"
  8738. }
  8739. }
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(12 + 2 / 12, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(143, "feet")
  8750. },
  8751. {
  8752. name: "Macro+",
  8753. height: math.unit(400, "feet")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(6, "feet"),
  8762. weight: math.unit(225, "lbs"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/daniel/front.svg"
  8766. }
  8767. },
  8768. leaning: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(225, "lbs"),
  8771. name: "Leaning",
  8772. image: {
  8773. source: "./media/characters/daniel/leaning.svg"
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(1000, "feet"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(88, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/chiros/front.svg",
  8794. extra: 306 / 226
  8795. }
  8796. },
  8797. side: {
  8798. height: math.unit(6, "feet"),
  8799. weight: math.unit(88, "lbs"),
  8800. name: "Side",
  8801. image: {
  8802. source: "./media/characters/chiros/side.svg",
  8803. extra: 306 / 226
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(6, "cm"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(100, "lbs"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/selka/front.svg",
  8824. extra: 947 / 887
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5, "cm"),
  8832. default: true
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(8 + 3 / 12, "feet"),
  8841. weight: math.unit(424, "lbs"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/verin/front.svg",
  8845. extra: 1845 / 1550
  8846. }
  8847. },
  8848. frontArmored: {
  8849. height: math.unit(8 + 3 / 12, "feet"),
  8850. weight: math.unit(424, "lbs"),
  8851. name: "Front (Armored)",
  8852. image: {
  8853. source: "./media/characters/verin/front-armor.svg",
  8854. extra: 1845 / 1550,
  8855. bottom: 0.01
  8856. }
  8857. },
  8858. back: {
  8859. height: math.unit(8 + 3 / 12, "feet"),
  8860. weight: math.unit(424, "lbs"),
  8861. name: "Back",
  8862. image: {
  8863. source: "./media/characters/verin/back.svg",
  8864. bottom: 0.1,
  8865. extra: 1
  8866. }
  8867. },
  8868. foot: {
  8869. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8870. name: "Foot",
  8871. image: {
  8872. source: "./media/characters/verin/foot.svg"
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(8 + 3 / 12, "feet")
  8880. },
  8881. {
  8882. name: "Minimacro",
  8883. height: math.unit(21, "feet"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(626, "feet")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(2.718, "meters"),
  8897. weight: math.unit(150, "lbs"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/sovrim-terraquian/front.svg",
  8901. extra: 1752/1689,
  8902. bottom: 36/1788
  8903. }
  8904. },
  8905. back: {
  8906. height: math.unit(2.718, "meters"),
  8907. weight: math.unit(150, "lbs"),
  8908. name: "Back",
  8909. image: {
  8910. source: "./media/characters/sovrim-terraquian/back.svg",
  8911. extra: 1698/1657,
  8912. bottom: 58/1756
  8913. }
  8914. },
  8915. tongue: {
  8916. height: math.unit(2.865, "feet"),
  8917. name: "Tongue",
  8918. image: {
  8919. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8920. }
  8921. },
  8922. hand: {
  8923. height: math.unit(1.61, "feet"),
  8924. name: "Hand",
  8925. image: {
  8926. source: "./media/characters/sovrim-terraquian/hand.svg"
  8927. }
  8928. },
  8929. foot: {
  8930. height: math.unit(1.05, "feet"),
  8931. name: "Foot",
  8932. image: {
  8933. source: "./media/characters/sovrim-terraquian/foot.svg"
  8934. }
  8935. },
  8936. footAlt: {
  8937. height: math.unit(0.88, "feet"),
  8938. name: "Foot (Alt)",
  8939. image: {
  8940. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Micro",
  8947. height: math.unit(2, "inches")
  8948. },
  8949. {
  8950. name: "Small",
  8951. height: math.unit(1, "meter")
  8952. },
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(Math.E, "meters"),
  8956. default: true
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(20, "meters")
  8961. },
  8962. {
  8963. name: "Macro+",
  8964. height: math.unit(400, "meters")
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(7, "feet"),
  8973. weight: math.unit(489, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/reece-silvermane/front.svg",
  8977. bottom: 0.02,
  8978. extra: 1
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Macro",
  8985. height: math.unit(1.5, "miles"),
  8986. default: true
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(78, "kg"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/kane/front.svg",
  8999. extra: 978 / 899
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(2.1, "m"),
  9007. },
  9008. {
  9009. name: "Macro",
  9010. height: math.unit(1, "km"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(6, "feet"),
  9020. weight: math.unit(200, "kg"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/tegon/front.svg",
  9024. bottom: 0.01,
  9025. extra: 1
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(1, "inch")
  9033. },
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(6 + 3 / 12, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(300, "feet")
  9042. },
  9043. {
  9044. name: "Megamacro",
  9045. height: math.unit(69, "miles")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9051. {
  9052. side: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(2304, "lbs"),
  9055. name: "Side",
  9056. image: {
  9057. source: "./media/characters/arcturax/side.svg",
  9058. extra: 790 / 376,
  9059. bottom: 0.01
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Micro",
  9066. height: math.unit(2, "inch")
  9067. },
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(6, "feet")
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(39, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(7, "miles")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(50, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/sentri/front.svg",
  9092. extra: 1750 / 1570,
  9093. bottom: 0.025
  9094. }
  9095. },
  9096. frontAlt: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(50, "lbs"),
  9099. name: "Front (Alt)",
  9100. image: {
  9101. source: "./media/characters/sentri/front-alt.svg",
  9102. extra: 1750 / 1570,
  9103. bottom: 0.025
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Normal",
  9110. height: math.unit(15, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(2500, "feet")
  9116. }
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(5 + 8 / 12, "feet"),
  9124. weight: math.unit(130, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/corvin/front.svg",
  9128. extra: 1803 / 1629
  9129. }
  9130. },
  9131. frontShirt: {
  9132. height: math.unit(5 + 8 / 12, "feet"),
  9133. weight: math.unit(130, "lbs"),
  9134. name: "Front (Shirt)",
  9135. image: {
  9136. source: "./media/characters/corvin/front-shirt.svg",
  9137. extra: 1803 / 1629
  9138. }
  9139. },
  9140. frontPoncho: {
  9141. height: math.unit(5 + 8 / 12, "feet"),
  9142. weight: math.unit(130, "lbs"),
  9143. name: "Front (Poncho)",
  9144. image: {
  9145. source: "./media/characters/corvin/front-poncho.svg",
  9146. extra: 1803 / 1629
  9147. }
  9148. },
  9149. side: {
  9150. height: math.unit(5 + 8 / 12, "feet"),
  9151. weight: math.unit(130, "lbs"),
  9152. name: "Side",
  9153. image: {
  9154. source: "./media/characters/corvin/side.svg",
  9155. extra: 1012 / 945
  9156. }
  9157. },
  9158. back: {
  9159. height: math.unit(5 + 8 / 12, "feet"),
  9160. weight: math.unit(130, "lbs"),
  9161. name: "Back",
  9162. image: {
  9163. source: "./media/characters/corvin/back.svg",
  9164. extra: 1803 / 1629
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(3, "inches")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(5 + 8 / 12, "feet")
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(300, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(500, "miles")
  9185. }
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(135, "lbs"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/q/front.svg",
  9197. extra: 854 / 752,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. back: {
  9202. height: math.unit(6, "feet"),
  9203. weight: math.unit(130, "lbs"),
  9204. name: "Back",
  9205. image: {
  9206. source: "./media/characters/q/back.svg",
  9207. extra: 854 / 752
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(90, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Extra Macro",
  9219. height: math.unit(300, "feet"),
  9220. },
  9221. {
  9222. name: "BIG WALF",
  9223. height: math.unit(750, "feet"),
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(3, "feet"),
  9232. weight: math.unit(28, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/citrine/front.svg"
  9236. }
  9237. }
  9238. },
  9239. [
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(3, "feet"),
  9243. default: true
  9244. }
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9249. {
  9250. front: {
  9251. height: math.unit(14, "feet"),
  9252. weight: math.unit(1450, "kg"),
  9253. preyCapacity: math.unit(15, "people"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/aura-starwind/front.svg",
  9257. extra: 1440/1327,
  9258. bottom: 11/1451
  9259. }
  9260. },
  9261. side: {
  9262. height: math.unit(14, "feet"),
  9263. weight: math.unit(1450, "kg"),
  9264. preyCapacity: math.unit(15, "people"),
  9265. name: "Side",
  9266. image: {
  9267. source: "./media/characters/aura-starwind/side.svg",
  9268. extra: 1654 / 1497
  9269. }
  9270. },
  9271. taur: {
  9272. height: math.unit(18, "feet"),
  9273. weight: math.unit(5500, "kg"),
  9274. preyCapacity: math.unit(50, "people"),
  9275. name: "Taur",
  9276. image: {
  9277. source: "./media/characters/aura-starwind/taur.svg",
  9278. extra: 1760 / 1650
  9279. }
  9280. },
  9281. feral: {
  9282. height: math.unit(46, "feet"),
  9283. weight: math.unit(25000, "kg"),
  9284. preyCapacity: math.unit(120, "people"),
  9285. name: "Feral",
  9286. image: {
  9287. source: "./media/characters/aura-starwind/feral.svg"
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(14, "feet"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(50, "meters")
  9300. },
  9301. {
  9302. name: "Megamacro",
  9303. height: math.unit(5000, "meters")
  9304. },
  9305. {
  9306. name: "Gigamacro",
  9307. height: math.unit(100000, "kilometers")
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(2 + 7 / 12, "feet"),
  9316. weight: math.unit(32, "lbs"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/rivet/front.svg",
  9320. extra: 1716 / 1658,
  9321. bottom: 0.03
  9322. }
  9323. },
  9324. foot: {
  9325. height: math.unit(0.551, "feet"),
  9326. name: "Rivet's Foot",
  9327. image: {
  9328. source: "./media/characters/rivet/foot.svg"
  9329. },
  9330. rename: true
  9331. }
  9332. },
  9333. [
  9334. {
  9335. name: "Micro",
  9336. height: math.unit(1.5, "inches"),
  9337. },
  9338. {
  9339. name: "Normal",
  9340. height: math.unit(2 + 7 / 12, "feet"),
  9341. default: true
  9342. },
  9343. {
  9344. name: "Macro",
  9345. height: math.unit(85, "feet")
  9346. },
  9347. {
  9348. name: "Megamacro",
  9349. height: math.unit(2.2, "km")
  9350. }
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(5 + 9 / 12, "feet"),
  9358. weight: math.unit(150, "lbs"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/coffee/front.svg",
  9362. extra: 946/880,
  9363. bottom: 66/1012
  9364. }
  9365. },
  9366. foot: {
  9367. height: math.unit(1.29, "feet"),
  9368. name: "Foot",
  9369. image: {
  9370. source: "./media/characters/coffee/foot.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches"),
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(5 + 9 / 12, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(800, "feet")
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(25, "miles")
  9391. }
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(200, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/chari-gal/front.svg",
  9403. extra: 1568 / 1385,
  9404. bottom: 0.047
  9405. }
  9406. },
  9407. gigantamax: {
  9408. height: math.unit(6 * 16, "feet"),
  9409. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9410. name: "Gigantamax",
  9411. image: {
  9412. source: "./media/characters/chari-gal/gigantamax.svg",
  9413. extra: 1124 / 888,
  9414. bottom: 0.03
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(5 + 7 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(200, "feet"),
  9426. default: true
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(150, "lbs"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/nova/front.svg",
  9439. extra: 5000 / 4722,
  9440. bottom: 0.02
  9441. }
  9442. }
  9443. },
  9444. [
  9445. {
  9446. name: "Micro-",
  9447. height: math.unit(0.8, "inches")
  9448. },
  9449. {
  9450. name: "Micro",
  9451. height: math.unit(2, "inches"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9458. {
  9459. koboldFront: {
  9460. height: math.unit(3 + 1 / 12, "feet"),
  9461. weight: math.unit(21.7, "lbs"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/argent/kobold-front.svg",
  9465. extra: 1471 / 1331,
  9466. bottom: 100.8 / 1575.5
  9467. },
  9468. form: "kobold",
  9469. default: true
  9470. },
  9471. dragonFront: {
  9472. height: math.unit(75, "inches"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/argent/dragon-front.svg",
  9476. extra: 1389/1248,
  9477. bottom: 54/1443
  9478. },
  9479. form: "dragon",
  9480. },
  9481. dragonBack: {
  9482. height: math.unit(75, "inches"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/argent/dragon-back.svg",
  9486. extra: 1399/1271,
  9487. bottom: 23/1422
  9488. },
  9489. form: "dragon",
  9490. },
  9491. dragonDressed: {
  9492. height: math.unit(75, "inches"),
  9493. name: "Dressed",
  9494. image: {
  9495. source: "./media/characters/argent/dragon-dressed.svg",
  9496. extra: 1350/1215,
  9497. bottom: 26/1376
  9498. },
  9499. form: "dragon"
  9500. },
  9501. dragonHead: {
  9502. height: math.unit(23.5, "inches"),
  9503. name: "Head",
  9504. image: {
  9505. source: "./media/characters/argent/dragon-head.svg"
  9506. },
  9507. form: "dragon",
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches"),
  9514. form: "kobold",
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(3 + 1 / 12, "feet"),
  9519. form: "kobold",
  9520. default: true
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(120, "feet"),
  9525. form: "kobold",
  9526. },
  9527. {
  9528. name: "Speck",
  9529. height: math.unit(1, "mm"),
  9530. form: "dragon",
  9531. },
  9532. {
  9533. name: "Tiny",
  9534. height: math.unit(1, "cm"),
  9535. form: "dragon",
  9536. },
  9537. {
  9538. name: "Micro",
  9539. height: math.unit(5, "cm"),
  9540. form: "dragon",
  9541. },
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(75, "inches"),
  9545. form: "dragon",
  9546. default: true
  9547. },
  9548. {
  9549. name: "Extra Tall",
  9550. height: math.unit(9, "feet"),
  9551. form: "dragon",
  9552. },
  9553. {
  9554. name: "Inconvenient",
  9555. height: math.unit(5, "meters"),
  9556. form: "dragon",
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(70, "meters"),
  9561. form: "dragon",
  9562. },
  9563. {
  9564. name: "Macro+",
  9565. height: math.unit(250, "meters"),
  9566. form: "dragon",
  9567. },
  9568. {
  9569. name: "Megamacro",
  9570. height: math.unit(20, "km"),
  9571. form: "dragon",
  9572. },
  9573. {
  9574. name: "Mountainous",
  9575. height: math.unit(100, "km"),
  9576. form: "dragon",
  9577. },
  9578. {
  9579. name: "Continental",
  9580. height: math.unit(2, "megameters"),
  9581. form: "dragon",
  9582. },
  9583. {
  9584. name: "Too Big",
  9585. height: math.unit(900, "megameters"),
  9586. form: "dragon",
  9587. },
  9588. ],
  9589. {
  9590. "kobold": {
  9591. name: "Kobold",
  9592. default: true
  9593. },
  9594. "dragon": {
  9595. name: "Dragon",
  9596. },
  9597. }
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9601. {
  9602. lamp: {
  9603. height: math.unit(7 * 1559 / 989, "feet"),
  9604. name: "Magic Lamp",
  9605. image: {
  9606. source: "./media/characters/mira-al-cul/lamp.svg",
  9607. extra: 1617 / 1559
  9608. }
  9609. },
  9610. front: {
  9611. height: math.unit(7, "feet"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/mira-al-cul/front.svg",
  9615. extra: 1044 / 990
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Heavily Restricted",
  9622. height: math.unit(7 * 1559 / 989, "feet")
  9623. },
  9624. {
  9625. name: "Freshly Freed",
  9626. height: math.unit(50 * 1559 / 989, "feet")
  9627. },
  9628. {
  9629. name: "World Encompassing",
  9630. height: math.unit(10000 * 1559 / 989, "miles")
  9631. },
  9632. {
  9633. name: "Galactic",
  9634. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9635. },
  9636. {
  9637. name: "Palmed Universe",
  9638. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Multiversal Matriarch",
  9643. height: math.unit(8.87e10, "yottameters")
  9644. },
  9645. {
  9646. name: "Void Mother",
  9647. height: math.unit(3.14e110, "yottaparsecs")
  9648. },
  9649. {
  9650. name: "Toying with Transcendence",
  9651. height: math.unit(1e307, "meters")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9657. {
  9658. front: {
  9659. height: math.unit(17 + 1 / 12, "feet"),
  9660. weight: math.unit(476.2 * 5, "lbs"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/kuro-shi-uchū/front.svg",
  9664. extra: 2329 / 1835,
  9665. bottom: 0.02
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(2, "inches")
  9673. },
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(12, "meters")
  9677. },
  9678. {
  9679. name: "Planetary",
  9680. height: math.unit(0.00929, "AU"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Universal",
  9685. height: math.unit(20, "gigaparsecs")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(5 + 2 / 12, "feet"),
  9694. weight: math.unit(120, "lbs"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/katherine/front.svg",
  9698. extra: 2075 / 1969
  9699. }
  9700. },
  9701. dress: {
  9702. height: math.unit(5 + 2 / 12, "feet"),
  9703. weight: math.unit(120, "lbs"),
  9704. name: "Dress",
  9705. image: {
  9706. source: "./media/characters/katherine/dress.svg",
  9707. extra: 2258 / 2064
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Micro",
  9714. height: math.unit(1, "inches"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(5 + 2 / 12, "feet")
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(100, "meters")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(80, "miles")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(7 + 8 / 12, "feet"),
  9736. weight: math.unit(250, "lbs"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/yevis/front.svg",
  9740. extra: 1938 / 1755
  9741. }
  9742. }
  9743. },
  9744. [
  9745. {
  9746. name: "Mortal",
  9747. height: math.unit(7 + 8 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Battle",
  9751. height: math.unit(25 + 11 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Wrath",
  9755. height: math.unit(1654 + 11 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Planet Destroyer",
  9759. height: math.unit(12000, "miles")
  9760. },
  9761. {
  9762. name: "Galaxy Conqueror",
  9763. height: math.unit(1.45, "zettameters"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Universal War",
  9768. height: math.unit(184, "gigaparsecs")
  9769. },
  9770. {
  9771. name: "Eternity War",
  9772. height: math.unit(1.98e55, "yottaparsecs")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(5 + 8 / 12, "feet"),
  9781. weight: math.unit(63, "kg"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/xavier/front.svg",
  9785. extra: 944 / 883
  9786. }
  9787. },
  9788. frontStretch: {
  9789. height: math.unit(5 + 8 / 12, "feet"),
  9790. weight: math.unit(63, "kg"),
  9791. name: "Stretching",
  9792. image: {
  9793. source: "./media/characters/xavier/front-stretch.svg",
  9794. extra: 962 / 820
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(5 + 8 / 12, "feet")
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(100, "meters"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "McLargeHuge",
  9810. height: math.unit(10, "miles")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(5 + 5 / 12, "feet"),
  9819. weight: math.unit(150, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/joshii/front.svg",
  9823. extra: 765 / 653,
  9824. bottom: 51 / 816
  9825. }
  9826. },
  9827. foot: {
  9828. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9829. name: "Foot",
  9830. image: {
  9831. source: "./media/characters/joshii/foot.svg"
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(2, "inches")
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(5 + 5 / 12, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(785, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(24.5, "miles")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(150, "lb"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/goddess-elizabeth/front.svg",
  9864. extra: 1800 / 1525,
  9865. bottom: 0.005
  9866. }
  9867. },
  9868. foot: {
  9869. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9870. name: "Foot",
  9871. image: {
  9872. source: "./media/characters/goddess-elizabeth/foot.svg"
  9873. }
  9874. },
  9875. mouth: {
  9876. height: math.unit(6, "feet"),
  9877. name: "Mouth",
  9878. image: {
  9879. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Micro",
  9886. height: math.unit(12, "feet")
  9887. },
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(80, "miles"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(15000, "parsecs")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(5 + 9 / 12, "feet"),
  9904. weight: math.unit(144, "lb"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/kara/front.svg"
  9908. }
  9909. },
  9910. feet: {
  9911. height: math.unit(6 / 6.765, "feet"),
  9912. name: "Kara's Feet",
  9913. rename: true,
  9914. image: {
  9915. source: "./media/characters/kara/feet.svg"
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(5 + 9 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(174, "feet"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(18, "feet"),
  9936. weight: math.unit(4050, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/tyrone/front.svg",
  9940. extra: 2405 / 2270,
  9941. bottom: 182 / 2587
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(18, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(300, "feet")
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(15, "km")
  9958. },
  9959. {
  9960. name: "Gigamacro",
  9961. height: math.unit(500, "km")
  9962. },
  9963. {
  9964. name: "Teramacro",
  9965. height: math.unit(0.5, "gigameters")
  9966. },
  9967. {
  9968. name: "Omnimacro",
  9969. height: math.unit(1e252, "yottauniverse")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(7 + 8 / 12, "feet"),
  9978. weight: math.unit(120, "lb"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/danny/front.svg",
  9982. extra: 1490 / 1350
  9983. }
  9984. },
  9985. back: {
  9986. height: math.unit(7 + 8 / 12, "feet"),
  9987. weight: math.unit(120, "lb"),
  9988. name: "Back",
  9989. image: {
  9990. source: "./media/characters/danny/back.svg",
  9991. extra: 1490 / 1350
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Normal",
  9998. height: math.unit(7 + 8 / 12, "feet"),
  9999. default: true
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(3.5, "inches"),
  10008. weight: math.unit(19, "grams"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/mallow/front.svg",
  10012. extra: 471 / 431
  10013. }
  10014. },
  10015. back: {
  10016. height: math.unit(3.5, "inches"),
  10017. weight: math.unit(19, "grams"),
  10018. name: "Back",
  10019. image: {
  10020. source: "./media/characters/mallow/back.svg",
  10021. extra: 471 / 431
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(3.5, "inches"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(9, "feet"),
  10038. weight: math.unit(230, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/starry-aqua/front.svg"
  10042. }
  10043. },
  10044. back: {
  10045. height: math.unit(9, "feet"),
  10046. weight: math.unit(230, "kg"),
  10047. name: "Back",
  10048. image: {
  10049. source: "./media/characters/starry-aqua/back.svg"
  10050. }
  10051. },
  10052. hand: {
  10053. height: math.unit(9 * 0.1168, "feet"),
  10054. name: "Hand",
  10055. image: {
  10056. source: "./media/characters/starry-aqua/hand.svg"
  10057. }
  10058. },
  10059. foot: {
  10060. height: math.unit(9 * 0.18, "feet"),
  10061. name: "Foot",
  10062. image: {
  10063. source: "./media/characters/starry-aqua/foot.svg"
  10064. }
  10065. }
  10066. },
  10067. [
  10068. {
  10069. name: "Micro",
  10070. height: math.unit(3, "inches")
  10071. },
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(9, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(300, "feet"),
  10079. default: true
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(3200, "feet")
  10084. }
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(15, "feet"),
  10092. weight: math.unit(5026, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/luka-towers/front.svg",
  10096. extra: 1269/1133,
  10097. bottom: 51/1320
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(15, "feet"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Minimacro",
  10109. height: math.unit(25, "feet")
  10110. },
  10111. {
  10112. name: "Macro",
  10113. height: math.unit(320, "feet")
  10114. },
  10115. {
  10116. name: "Megamacro",
  10117. height: math.unit(35000, "feet")
  10118. },
  10119. {
  10120. name: "Gigamacro",
  10121. height: math.unit(4000, "miles")
  10122. },
  10123. {
  10124. name: "Teramacro",
  10125. height: math.unit(15000, "miles")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10131. {
  10132. front: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(150, "lb"),
  10135. name: "Front",
  10136. image: {
  10137. source: "./media/characters/natalie-nightring/front.svg",
  10138. extra: 1,
  10139. bottom: 0.06
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Uh Oh",
  10146. height: math.unit(0.1, "mm")
  10147. },
  10148. {
  10149. name: "Small",
  10150. height: math.unit(3, "inches")
  10151. },
  10152. {
  10153. name: "Human Scale",
  10154. height: math.unit(6, "feet")
  10155. },
  10156. {
  10157. name: "Librarian",
  10158. height: math.unit(50, "feet"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Immense",
  10163. height: math.unit(200, "miles")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(6, "feet"),
  10172. weight: math.unit(180, "lbs"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/danni-rosie/front.svg",
  10176. extra: 1260 / 1128,
  10177. bottom: 0.022
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Micro",
  10184. height: math.unit(2, "inches"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(5 + 9 / 12, "feet"),
  10194. weight: math.unit(220, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/samantha-kruse/front.svg",
  10198. extra: (985 / 935),
  10199. bottom: 0.03
  10200. }
  10201. },
  10202. frontUndressed: {
  10203. height: math.unit(5 + 9 / 12, "feet"),
  10204. weight: math.unit(220, "lb"),
  10205. name: "Front (Undressed)",
  10206. image: {
  10207. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10208. extra: (973 / 923),
  10209. bottom: 0.025
  10210. }
  10211. },
  10212. fat: {
  10213. height: math.unit(5 + 9 / 12, "feet"),
  10214. weight: math.unit(900, "lb"),
  10215. name: "Front (Fat)",
  10216. image: {
  10217. source: "./media/characters/samantha-kruse/fat.svg",
  10218. extra: 2688 / 2561
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 9 / 12, "feet"),
  10226. default: true
  10227. }
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10232. {
  10233. back: {
  10234. height: math.unit(5 + 4 / 12, "feet"),
  10235. weight: math.unit(4963, "lb"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/amelia-rosie/back.svg",
  10239. extra: 1113 / 963,
  10240. bottom: 0.01
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Level 0",
  10247. height: math.unit(5 + 4 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Level 1",
  10251. height: math.unit(164597, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Level 2",
  10256. height: math.unit(956243, "miles")
  10257. },
  10258. {
  10259. name: "Level 3",
  10260. height: math.unit(29421709423, "miles")
  10261. },
  10262. {
  10263. name: "Level 4",
  10264. height: math.unit(154, "lightyears")
  10265. },
  10266. {
  10267. name: "Level 5",
  10268. height: math.unit(4738272, "lightyears")
  10269. },
  10270. {
  10271. name: "Level 6",
  10272. height: math.unit(145787152896, "lightyears")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(5 + 11 / 12, "feet"),
  10281. weight: math.unit(65, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/rook-kitara/front.svg",
  10285. extra: 1347 / 1274,
  10286. bottom: 0.005
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Totally Unfair",
  10293. height: math.unit(1.8, "mm")
  10294. },
  10295. {
  10296. name: "Lap Rookie",
  10297. height: math.unit(1.4, "feet")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(5 + 11 / 12, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "How Did This Happen",
  10306. height: math.unit(80, "miles")
  10307. }
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(7, "feet"),
  10315. weight: math.unit(300, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/pisces/front.svg",
  10319. extra: 2255 / 2115,
  10320. bottom: 0.03
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(7, "feet"),
  10325. weight: math.unit(300, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/pisces/back.svg",
  10329. extra: 2146 / 2055,
  10330. bottom: 0.04
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(7, "feet"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Swimming Pool",
  10342. height: math.unit(12.2, "meters")
  10343. },
  10344. {
  10345. name: "Olympic Swimming Pool",
  10346. height: math.unit(56.3, "meters")
  10347. },
  10348. {
  10349. name: "Lake Superior",
  10350. height: math.unit(93900, "meters")
  10351. },
  10352. {
  10353. name: "Mediterranean Sea",
  10354. height: math.unit(644457, "meters")
  10355. },
  10356. {
  10357. name: "World's Oceans",
  10358. height: math.unit(4567491, "meters")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(2.3, "meters"),
  10367. weight: math.unit(120, "kg"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/zelas/front.svg"
  10371. }
  10372. },
  10373. side: {
  10374. height: math.unit(2.3, "meters"),
  10375. weight: math.unit(120, "kg"),
  10376. name: "Side",
  10377. image: {
  10378. source: "./media/characters/zelas/side.svg"
  10379. }
  10380. },
  10381. back: {
  10382. height: math.unit(2.3, "meters"),
  10383. weight: math.unit(120, "kg"),
  10384. name: "Back",
  10385. image: {
  10386. source: "./media/characters/zelas/back.svg"
  10387. }
  10388. },
  10389. foot: {
  10390. height: math.unit(1.116, "feet"),
  10391. name: "Foot",
  10392. image: {
  10393. source: "./media/characters/zelas/foot.svg"
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(2.3, "meters")
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(30, "meters"),
  10405. default: true
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(1, "inch"),
  10414. weight: math.unit(0.21, "grams"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/talbot/front.svg",
  10418. extra: 594 / 544
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Micro",
  10425. height: math.unit(1, "inch"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10432. {
  10433. front: {
  10434. height: math.unit(3 + 3 / 12, "feet"),
  10435. weight: math.unit(51.8, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/fliss/front.svg",
  10439. extra: 840 / 640
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Teeny Tiny",
  10446. height: math.unit(1, "mm")
  10447. },
  10448. {
  10449. name: "Small",
  10450. height: math.unit(1, "inch"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Standard Sylveon",
  10455. height: math.unit(3 + 3 / 12, "feet")
  10456. },
  10457. {
  10458. name: "Large Nuisance",
  10459. height: math.unit(33, "feet")
  10460. },
  10461. {
  10462. name: "City Filler",
  10463. height: math.unit(3000, "feet")
  10464. },
  10465. {
  10466. name: "New Horizon",
  10467. height: math.unit(6000, "miles")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(5, "cm"),
  10476. weight: math.unit(1.94, "g"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/fleta/front.svg",
  10480. extra: 835 / 803
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(5, "cm"),
  10485. weight: math.unit(1.94, "g"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/fleta/back.svg",
  10489. extra: 835 / 803
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Micro",
  10496. height: math.unit(5, "cm"),
  10497. default: true
  10498. },
  10499. ]
  10500. ))
  10501. characterMakers.push(() => makeCharacter(
  10502. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10503. {
  10504. front: {
  10505. height: math.unit(6, "feet"),
  10506. weight: math.unit(225, "lb"),
  10507. name: "Front",
  10508. image: {
  10509. source: "./media/characters/dominic/front.svg",
  10510. extra: 1770 / 1620,
  10511. bottom: 0.025
  10512. }
  10513. },
  10514. back: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(225, "lb"),
  10517. name: "Back",
  10518. image: {
  10519. source: "./media/characters/dominic/back.svg",
  10520. extra: 1745 / 1620,
  10521. bottom: 0.065
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Nano",
  10528. height: math.unit(0.1, "mm")
  10529. },
  10530. {
  10531. name: "Micro-",
  10532. height: math.unit(1, "mm")
  10533. },
  10534. {
  10535. name: "Micro",
  10536. height: math.unit(4, "inches")
  10537. },
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(6 + 4 / 12, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(115, "feet")
  10546. },
  10547. {
  10548. name: "Macro+",
  10549. height: math.unit(955, "feet")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(8990, "feet")
  10554. },
  10555. {
  10556. name: "Gigmacro",
  10557. height: math.unit(9310, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(1567005010, "miles")
  10562. },
  10563. {
  10564. name: "Examacro",
  10565. height: math.unit(1425, "parsecs")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(400, "feet"),
  10574. weight: math.unit(44444444, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/major-colonel/front.svg"
  10578. }
  10579. },
  10580. back: {
  10581. height: math.unit(400, "feet"),
  10582. weight: math.unit(44444444, "lb"),
  10583. name: "Back",
  10584. image: {
  10585. source: "./media/characters/major-colonel/back.svg"
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(400, "feet"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10599. {
  10600. catFront: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(120, "lb"),
  10603. name: "Front (Cat Side)",
  10604. image: {
  10605. source: "./media/characters/axel-lycan/cat-front.svg",
  10606. extra: 430 / 402,
  10607. bottom: 43 / 472.35
  10608. }
  10609. },
  10610. catBack: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(120, "lb"),
  10613. name: "Back (Cat Side)",
  10614. image: {
  10615. source: "./media/characters/axel-lycan/cat-back.svg",
  10616. extra: 447 / 419,
  10617. bottom: 23.3 / 469
  10618. }
  10619. },
  10620. wolfFront: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(120, "lb"),
  10623. name: "Front (Wolf Side)",
  10624. image: {
  10625. source: "./media/characters/axel-lycan/wolf-front.svg",
  10626. extra: 485 / 456,
  10627. bottom: 19 / 504
  10628. }
  10629. },
  10630. wolfBack: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(120, "lb"),
  10633. name: "Back (Wolf Side)",
  10634. image: {
  10635. source: "./media/characters/axel-lycan/wolf-back.svg",
  10636. extra: 475 / 438,
  10637. bottom: 39.2 / 514
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Macro",
  10644. height: math.unit(1, "km"),
  10645. default: true
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10651. {
  10652. front: {
  10653. height: math.unit(5 + 9 / 12, "feet"),
  10654. weight: math.unit(175, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/vanrel-hyena/front.svg",
  10658. extra: 1086 / 1010,
  10659. bottom: 0.04
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Normal",
  10666. height: math.unit(5 + 9 / 12, "feet"),
  10667. default: true
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(103, "lb"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/abbott-absol/front.svg",
  10680. extra: 2010 / 1842
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Megamicro",
  10687. height: math.unit(0.1, "mm")
  10688. },
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(1, "inch")
  10692. },
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(6, "feet"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(264, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/hector/front.svg",
  10709. extra: 2280 / 2130,
  10710. bottom: 0.07
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(12.25, "foot"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(160, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/sal/front.svg",
  10735. extra: 1846 / 1699,
  10736. bottom: 0.04
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(10, "miles"),
  10744. default: true
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10750. {
  10751. front: {
  10752. height: math.unit(3, "meters"),
  10753. weight: math.unit(450, "kg"),
  10754. name: "front",
  10755. image: {
  10756. source: "./media/characters/ranger/front.svg",
  10757. extra: 2401 / 2243,
  10758. bottom: 0.05
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(3, "meters"),
  10766. default: true
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(14, "feet"),
  10775. weight: math.unit(800, "kg"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/theresa/front.svg",
  10779. extra: 3575 / 3346,
  10780. bottom: 0.03
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(14, "feet"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(3, "kg"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/ine/front.svg",
  10801. extra: 678 / 539,
  10802. bottom: 0.023
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(2.265, "feet"),
  10810. default: true
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(5, "feet"),
  10819. weight: math.unit(30, "kg"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/vial/front.svg",
  10823. extra: 1365 / 1277,
  10824. bottom: 0.04
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(5, "feet"),
  10832. default: true
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10838. {
  10839. side: {
  10840. height: math.unit(3.4, "meters"),
  10841. weight: math.unit(1000, "lb"),
  10842. name: "Side",
  10843. image: {
  10844. source: "./media/characters/rovoska/side.svg",
  10845. extra: 4403 / 1515
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(3.4, "meters"),
  10853. default: true
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(8, "feet"),
  10862. weight: math.unit(315, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/gunner-rotthbauer/front.svg"
  10866. }
  10867. },
  10868. back: {
  10869. height: math.unit(8, "feet"),
  10870. weight: math.unit(315, "lb"),
  10871. name: "Back",
  10872. image: {
  10873. source: "./media/characters/gunner-rotthbauer/back.svg"
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Micro",
  10880. height: math.unit(3.5, "inches")
  10881. },
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(8, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Macro",
  10889. height: math.unit(250, "feet")
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(1, "AU")
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(5 + 5 / 12, "feet"),
  10902. weight: math.unit(140, "lb"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/allatia/front.svg",
  10906. extra: 1227 / 1180,
  10907. bottom: 0.027
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(5 + 5 / 12, "feet")
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(250, "feet"),
  10919. default: true
  10920. },
  10921. {
  10922. name: "Megamacro",
  10923. height: math.unit(8, "miles")
  10924. }
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(120, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/tene/front.svg",
  10936. extra: 814/750,
  10937. bottom: 36/850
  10938. }
  10939. },
  10940. stomping: {
  10941. height: math.unit(2.025, "meters"),
  10942. weight: math.unit(120, "lb"),
  10943. name: "Stomping",
  10944. image: {
  10945. source: "./media/characters/tene/stomping.svg",
  10946. extra: 885/821,
  10947. bottom: 15/900
  10948. }
  10949. },
  10950. sitting: {
  10951. height: math.unit(1, "meter"),
  10952. weight: math.unit(120, "lb"),
  10953. name: "Sitting",
  10954. image: {
  10955. source: "./media/characters/tene/sitting.svg",
  10956. extra: 396/366,
  10957. bottom: 79/475
  10958. }
  10959. },
  10960. smiling: {
  10961. height: math.unit(1.2, "feet"),
  10962. name: "Smiling",
  10963. image: {
  10964. source: "./media/characters/tene/smiling.svg",
  10965. extra: 1364/1071,
  10966. bottom: 0/1364
  10967. }
  10968. },
  10969. smug: {
  10970. height: math.unit(1.3, "feet"),
  10971. name: "Smug",
  10972. image: {
  10973. source: "./media/characters/tene/smug.svg",
  10974. extra: 1323/1082,
  10975. bottom: 0/1323
  10976. }
  10977. },
  10978. feral: {
  10979. height: math.unit(3.9, "feet"),
  10980. weight: math.unit(250, "lb"),
  10981. name: "Feral",
  10982. image: {
  10983. source: "./media/characters/tene/feral.svg",
  10984. extra: 717 / 458,
  10985. bottom: 0.179
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(6, "feet")
  10993. },
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(300, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(5, "miles")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11007. {
  11008. side: {
  11009. height: math.unit(6, "feet"),
  11010. name: "Side",
  11011. image: {
  11012. source: "./media/characters/evander/side.svg",
  11013. extra: 877 / 477
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(0.83, "meters"),
  11021. default: true
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(12, "feet"),
  11030. weight: math.unit(1000, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11034. extra: 1762 / 1611
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(12, "feet"),
  11039. weight: math.unit(1000, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11043. extra: 1762 / 1611
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(12, "feet"),
  11051. default: true
  11052. },
  11053. {
  11054. name: "Kaiju",
  11055. height: math.unit(150, "feet")
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11061. {
  11062. front: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Front",
  11066. image: {
  11067. source: "./media/characters/zero-alurus/front.svg"
  11068. }
  11069. },
  11070. back: {
  11071. height: math.unit(6, "feet"),
  11072. weight: math.unit(150, "lb"),
  11073. name: "Back",
  11074. image: {
  11075. source: "./media/characters/zero-alurus/back.svg"
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(5 + 10 / 12, "feet")
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(60, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Macro+",
  11091. height: math.unit(450, "feet")
  11092. },
  11093. ]
  11094. ))
  11095. characterMakers.push(() => makeCharacter(
  11096. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11097. {
  11098. front: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(200, "lb"),
  11101. name: "Front",
  11102. image: {
  11103. source: "./media/characters/mega-shi/front.svg",
  11104. extra: 1279 / 1250,
  11105. bottom: 0.02
  11106. }
  11107. },
  11108. back: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(200, "lb"),
  11111. name: "Back",
  11112. image: {
  11113. source: "./media/characters/mega-shi/back.svg",
  11114. extra: 1279 / 1250,
  11115. bottom: 0.02
  11116. }
  11117. },
  11118. },
  11119. [
  11120. {
  11121. name: "Micro",
  11122. height: math.unit(16 + 6 / 12, "feet")
  11123. },
  11124. {
  11125. name: "Third Dimension",
  11126. height: math.unit(40, "meters")
  11127. },
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(660, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(10, "miles")
  11136. },
  11137. {
  11138. name: "Planetary Launch",
  11139. height: math.unit(500, "miles")
  11140. },
  11141. {
  11142. name: "Interstellar",
  11143. height: math.unit(1e9, "miles")
  11144. },
  11145. {
  11146. name: "Leaving the Universe",
  11147. height: math.unit(1, "gigaparsec")
  11148. },
  11149. {
  11150. name: "Travelling Universes",
  11151. height: math.unit(30e15, "parsecs")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(5 + 4/12, "feet"),
  11160. weight: math.unit(120, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/odyssey/front.svg",
  11164. extra: 1747/1571,
  11165. bottom: 47/1794
  11166. }
  11167. },
  11168. side: {
  11169. height: math.unit(5.1, "feet"),
  11170. weight: math.unit(120, "lb"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/odyssey/side.svg",
  11174. extra: 1847/1619,
  11175. bottom: 47/1894
  11176. }
  11177. },
  11178. lounging: {
  11179. height: math.unit(1.464, "feet"),
  11180. weight: math.unit(120, "lb"),
  11181. name: "Lounging",
  11182. image: {
  11183. source: "./media/characters/odyssey/lounging.svg",
  11184. extra: 1235/837,
  11185. bottom: 551/1786
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(5 + 4 / 12, "feet")
  11193. },
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(1, "km")
  11197. },
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(3000, "km")
  11201. },
  11202. {
  11203. name: "Gigamacro",
  11204. height: math.unit(1, "AU"),
  11205. default: true
  11206. },
  11207. {
  11208. name: "Omniversal",
  11209. height: math.unit(100e14, "lightyears")
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(5 + 10/12, "feet"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/mekuto/front.svg",
  11221. extra: 875/835,
  11222. bottom: 46/921
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Minimicro",
  11229. height: math.unit(0.2, "inches")
  11230. },
  11231. {
  11232. name: "Micro",
  11233. height: math.unit(1.5, "inches")
  11234. },
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(5 + 10 / 12, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Minimacro",
  11242. height: math.unit(17 + 9 / 12, "feet")
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(177.5, "feet")
  11247. },
  11248. {
  11249. name: "Megamacro",
  11250. height: math.unit(152, "miles")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11256. {
  11257. front: {
  11258. height: math.unit(6.5, "inches"),
  11259. weight: math.unit(13, "oz"),
  11260. name: "Front",
  11261. image: {
  11262. source: "./media/characters/dafydd-tomos/front.svg",
  11263. extra: 2990 / 2603,
  11264. bottom: 0.03
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Micro",
  11271. height: math.unit(6.5, "inches"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(150, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/splinter/front.svg",
  11285. extra: 2990 / 2882,
  11286. bottom: 0.04
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/splinter/back.svg",
  11295. extra: 2990 / 2882,
  11296. bottom: 0.04
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(6, "feet")
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(230, "meters"),
  11308. default: true
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(4 + 10 / 12, "feet"),
  11317. weight: math.unit(480, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/snow-gabumon/front.svg",
  11321. extra: 1140 / 963,
  11322. bottom: 0.058
  11323. }
  11324. },
  11325. back: {
  11326. height: math.unit(4 + 10 / 12, "feet"),
  11327. weight: math.unit(480, "lb"),
  11328. name: "Back",
  11329. image: {
  11330. source: "./media/characters/snow-gabumon/back.svg",
  11331. extra: 1115 / 962,
  11332. bottom: 0.041
  11333. }
  11334. },
  11335. frontUndresed: {
  11336. height: math.unit(4 + 10 / 12, "feet"),
  11337. weight: math.unit(480, "lb"),
  11338. name: "Front (Undressed)",
  11339. image: {
  11340. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11341. extra: 1061 / 960,
  11342. bottom: 0.045
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Micro",
  11349. height: math.unit(1, "inch")
  11350. },
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(4 + 10 / 12, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(200, "feet")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(120, "miles")
  11363. },
  11364. {
  11365. name: "Gigamacro",
  11366. height: math.unit(9800, "miles")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(1.7, "meters"),
  11375. weight: math.unit(140, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/moody/front.svg",
  11379. extra: 3226 / 3007,
  11380. bottom: 0.087
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Micro",
  11387. height: math.unit(1, "mm")
  11388. },
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(1.7, "meters"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(80, "meters")
  11397. },
  11398. {
  11399. name: "Macro+",
  11400. height: math.unit(500, "meters")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(6, "feet"),
  11409. weight: math.unit(150, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/zyas/front.svg",
  11413. extra: 1180 / 1120,
  11414. bottom: 0.045
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(10, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(500, "feet")
  11427. },
  11428. {
  11429. name: "Megamacro",
  11430. height: math.unit(5, "miles")
  11431. },
  11432. {
  11433. name: "Teramacro",
  11434. height: math.unit(150000, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(6, "feet"),
  11443. weight: math.unit(150, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/cuon/front.svg",
  11447. extra: 1390 / 1320,
  11448. bottom: 0.008
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Micro",
  11455. height: math.unit(3, "inches")
  11456. },
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(18 + 9 / 12, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Macro",
  11464. height: math.unit(360, "feet")
  11465. },
  11466. {
  11467. name: "Megamacro",
  11468. height: math.unit(360, "miles")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(2.4, "meters"),
  11477. weight: math.unit(70, "kg"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/nyanuxk/front.svg",
  11481. extra: 1172 / 1084,
  11482. bottom: 0.065
  11483. }
  11484. },
  11485. side: {
  11486. height: math.unit(2.4, "meters"),
  11487. weight: math.unit(70, "kg"),
  11488. name: "Side",
  11489. image: {
  11490. source: "./media/characters/nyanuxk/side.svg",
  11491. extra: 1190 / 1132,
  11492. bottom: 0.007
  11493. }
  11494. },
  11495. back: {
  11496. height: math.unit(2.4, "meters"),
  11497. weight: math.unit(70, "kg"),
  11498. name: "Back",
  11499. image: {
  11500. source: "./media/characters/nyanuxk/back.svg",
  11501. extra: 1200 / 1141,
  11502. bottom: 0.015
  11503. }
  11504. },
  11505. foot: {
  11506. height: math.unit(0.52, "meters"),
  11507. name: "Foot",
  11508. image: {
  11509. source: "./media/characters/nyanuxk/foot.svg"
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Micro",
  11516. height: math.unit(2, "cm")
  11517. },
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(2.4, "meters"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Smaller Macro",
  11525. height: math.unit(120, "meters")
  11526. },
  11527. {
  11528. name: "Bigger Macro",
  11529. height: math.unit(1.2, "km")
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(15, "kilometers")
  11534. },
  11535. {
  11536. name: "Gigamacro",
  11537. height: math.unit(2000, "km")
  11538. },
  11539. {
  11540. name: "Teramacro",
  11541. height: math.unit(500000, "km")
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11547. {
  11548. side: {
  11549. height: math.unit(6, "feet"),
  11550. name: "Side",
  11551. image: {
  11552. source: "./media/characters/ailbhe/side.svg",
  11553. extra: 757 / 464,
  11554. bottom: 0.041
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(1.07, "meters"),
  11562. default: true
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(120, "kg"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/zevulfius/front.svg",
  11575. extra: 965 / 903
  11576. }
  11577. },
  11578. side: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(120, "kg"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/zevulfius/side.svg",
  11584. extra: 939 / 900
  11585. }
  11586. },
  11587. back: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(120, "kg"),
  11590. name: "Back",
  11591. image: {
  11592. source: "./media/characters/zevulfius/back.svg",
  11593. extra: 918 / 854,
  11594. bottom: 0.005
  11595. }
  11596. },
  11597. foot: {
  11598. height: math.unit(6 / 3.72, "feet"),
  11599. name: "Foot",
  11600. image: {
  11601. source: "./media/characters/zevulfius/foot.svg"
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(750, "meters")
  11609. },
  11610. {
  11611. name: "Megamacro",
  11612. height: math.unit(20, "km"),
  11613. default: true
  11614. },
  11615. {
  11616. name: "Gigamacro",
  11617. height: math.unit(2000, "km")
  11618. },
  11619. {
  11620. name: "Teramacro",
  11621. height: math.unit(250000, "km")
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(100, "feet"),
  11630. weight: math.unit(350, "kg"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/rikes/front.svg",
  11634. extra: 1565 / 1483,
  11635. bottom: 0.017
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(100, "feet"),
  11643. default: true
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(8, "feet"),
  11652. weight: math.unit(356, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/adam-silver-mane/front.svg",
  11656. extra: 1036/937,
  11657. bottom: 63/1099
  11658. }
  11659. },
  11660. side: {
  11661. height: math.unit(8, "feet"),
  11662. weight: math.unit(356, "lb"),
  11663. name: "Side",
  11664. image: {
  11665. source: "./media/characters/adam-silver-mane/side.svg",
  11666. extra: 997/901,
  11667. bottom: 59/1056
  11668. }
  11669. },
  11670. frontNsfw: {
  11671. height: math.unit(8, "feet"),
  11672. weight: math.unit(356, "lb"),
  11673. name: "Front (NSFW)",
  11674. image: {
  11675. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11676. extra: 1036/937,
  11677. bottom: 63/1099
  11678. }
  11679. },
  11680. sideNsfw: {
  11681. height: math.unit(8, "feet"),
  11682. weight: math.unit(356, "lb"),
  11683. name: "Side (NSFW)",
  11684. image: {
  11685. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11686. extra: 997/901,
  11687. bottom: 59/1056
  11688. }
  11689. },
  11690. dick: {
  11691. height: math.unit(2.1, "feet"),
  11692. name: "Dick",
  11693. image: {
  11694. source: "./media/characters/adam-silver-mane/dick.svg"
  11695. }
  11696. },
  11697. taur: {
  11698. height: math.unit(16, "feet"),
  11699. weight: math.unit(1500, "kg"),
  11700. name: "Taur",
  11701. image: {
  11702. source: "./media/characters/adam-silver-mane/taur.svg",
  11703. extra: 1713 / 1571,
  11704. bottom: 0.01
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(8, "feet")
  11712. },
  11713. {
  11714. name: "Minimacro",
  11715. height: math.unit(80, "feet")
  11716. },
  11717. {
  11718. name: "MDA",
  11719. height: math.unit(80, "meters")
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(800, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(8000, "feet")
  11729. },
  11730. {
  11731. name: "Gigamacro",
  11732. height: math.unit(800, "miles")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(80000, "miles")
  11737. },
  11738. {
  11739. name: "Celestial",
  11740. height: math.unit(8e6, "miles")
  11741. },
  11742. {
  11743. name: "Star Dragon",
  11744. height: math.unit(800000, "parsecs")
  11745. },
  11746. {
  11747. name: "Godly",
  11748. height: math.unit(800, "teraparsecs")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(6, "feet"),
  11757. weight: math.unit(150, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/ky'owin/front.svg",
  11761. extra: 3862/3053,
  11762. bottom: 74/3936
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(6 + 8 / 12, "feet")
  11770. },
  11771. {
  11772. name: "Large",
  11773. height: math.unit(68, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(132, "feet")
  11778. },
  11779. {
  11780. name: "Macro+",
  11781. height: math.unit(340, "feet")
  11782. },
  11783. {
  11784. name: "Macro++",
  11785. height: math.unit(680, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(1, "mile")
  11791. },
  11792. {
  11793. name: "Megamacro+",
  11794. height: math.unit(10, "miles")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(4, "feet"),
  11803. weight: math.unit(50, "lb"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/mal/front.svg",
  11807. extra: 785 / 724,
  11808. bottom: 0.07
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Micro",
  11815. height: math.unit(4, "inches")
  11816. },
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(4, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(200, "feet")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/jordan-deware/front.svg",
  11837. extra: 1191 / 1012
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Nano",
  11844. height: math.unit(0.01, "mm")
  11845. },
  11846. {
  11847. name: "Minimicro",
  11848. height: math.unit(1, "mm")
  11849. },
  11850. {
  11851. name: "Micro",
  11852. height: math.unit(0.5, "inches")
  11853. },
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(4, "feet"),
  11857. default: true
  11858. },
  11859. {
  11860. name: "Minimacro",
  11861. height: math.unit(40, "meters")
  11862. },
  11863. {
  11864. name: "Small Macro",
  11865. height: math.unit(400, "meters")
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(4, "miles")
  11870. },
  11871. {
  11872. name: "Megamacro",
  11873. height: math.unit(40, "miles")
  11874. },
  11875. {
  11876. name: "Megamacro+",
  11877. height: math.unit(400, "miles")
  11878. },
  11879. {
  11880. name: "Gigamacro",
  11881. height: math.unit(400000, "miles")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11887. {
  11888. side: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Side",
  11892. image: {
  11893. source: "./media/characters/kimiko/side.svg",
  11894. extra: 600 / 358
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(15, "feet"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(220, "feet")
  11907. },
  11908. {
  11909. name: "Macro+",
  11910. height: math.unit(1450, "feet")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(11500, "feet")
  11915. },
  11916. {
  11917. name: "Gigamacro",
  11918. height: math.unit(9500, "miles")
  11919. },
  11920. {
  11921. name: "Teramacro",
  11922. height: math.unit(2208005005, "miles")
  11923. },
  11924. {
  11925. name: "Examacro",
  11926. height: math.unit(2750, "parsecs")
  11927. },
  11928. {
  11929. name: "Zettamacro",
  11930. height: math.unit(101500, "parsecs")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(70, "kg"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/andrew-sleepy/front.svg"
  11943. }
  11944. },
  11945. side: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(70, "kg"),
  11948. name: "Side",
  11949. image: {
  11950. source: "./media/characters/andrew-sleepy/side.svg"
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Micro",
  11957. height: math.unit(1, "mm"),
  11958. default: true
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/judio/front.svg",
  11971. extra: 1258 / 1110
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(5 + 6 / 12, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(1000, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(10, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11993. {
  11994. frontDressed: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(68, "kg"),
  11997. name: "Front (Dressed)",
  11998. image: {
  11999. source: "./media/characters/nomaxice/front-dressed.svg",
  12000. extra: 1137/824,
  12001. bottom: 74/1211
  12002. }
  12003. },
  12004. frontShorts: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(68, "kg"),
  12007. name: "Front (Shorts)",
  12008. image: {
  12009. source: "./media/characters/nomaxice/front-shorts.svg",
  12010. extra: 1137/824,
  12011. bottom: 74/1211
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(68, "kg"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/nomaxice/back.svg",
  12020. extra: 822/786,
  12021. bottom: 39/861
  12022. }
  12023. },
  12024. hand: {
  12025. height: math.unit(0.565, "feet"),
  12026. name: "Hand",
  12027. image: {
  12028. source: "./media/characters/nomaxice/hand.svg"
  12029. }
  12030. },
  12031. foot: {
  12032. height: math.unit(1, "feet"),
  12033. name: "Foot",
  12034. image: {
  12035. source: "./media/characters/nomaxice/foot.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Micro",
  12042. height: math.unit(8, "cm")
  12043. },
  12044. {
  12045. name: "Norm",
  12046. height: math.unit(1.82, "m")
  12047. },
  12048. {
  12049. name: "Norm+",
  12050. height: math.unit(8.8, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Big",
  12055. height: math.unit(8, "meters")
  12056. },
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(18, "meters")
  12060. },
  12061. {
  12062. name: "Macro+",
  12063. height: math.unit(88, "meters")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(12, "feet"),
  12072. weight: math.unit(1.5, "tons"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/dydros/front.svg",
  12076. extra: 863 / 800,
  12077. bottom: 0.015
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(12, "feet"),
  12082. weight: math.unit(1.5, "tons"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/dydros/back.svg",
  12086. extra: 900 / 843,
  12087. bottom: 0.005
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(12, "feet"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(100, "kg"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/riggi/front.svg",
  12108. extra: 5787 / 5303
  12109. }
  12110. },
  12111. hyper: {
  12112. height: math.unit(6 * 5 / 3, "feet"),
  12113. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12114. name: "Hyper",
  12115. image: {
  12116. source: "./media/characters/riggi/hyper.svg",
  12117. extra: 3595 / 3485
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Small Macro",
  12124. height: math.unit(50, "feet")
  12125. },
  12126. {
  12127. name: "Default",
  12128. height: math.unit(200, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Loom",
  12133. height: math.unit(10000, "feet")
  12134. },
  12135. {
  12136. name: "Cruising Altitude",
  12137. height: math.unit(30000, "feet")
  12138. },
  12139. {
  12140. name: "Megamacro",
  12141. height: math.unit(100, "miles")
  12142. },
  12143. {
  12144. name: "Continent Sized",
  12145. height: math.unit(2800, "miles")
  12146. },
  12147. {
  12148. name: "Earth Sized",
  12149. height: math.unit(8000, "miles")
  12150. },
  12151. ]
  12152. ))
  12153. characterMakers.push(() => makeCharacter(
  12154. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12155. {
  12156. front: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(250, "lb"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/alexi/front.svg",
  12162. extra: 3483 / 3291,
  12163. bottom: 0.04
  12164. }
  12165. },
  12166. back: {
  12167. height: math.unit(6, "feet"),
  12168. weight: math.unit(250, "lb"),
  12169. name: "Back",
  12170. image: {
  12171. source: "./media/characters/alexi/back.svg",
  12172. extra: 3533 / 3356,
  12173. bottom: 0.021
  12174. }
  12175. },
  12176. frontTransforming: {
  12177. height: math.unit(8.58, "feet"),
  12178. weight: math.unit(1300, "lb"),
  12179. name: "Transforming",
  12180. image: {
  12181. source: "./media/characters/alexi/front-transforming.svg",
  12182. extra: 437 / 409,
  12183. bottom: 19 / 458.66
  12184. }
  12185. },
  12186. frontTransformed: {
  12187. height: math.unit(12.5, "feet"),
  12188. weight: math.unit(4000, "lb"),
  12189. name: "Transformed",
  12190. image: {
  12191. source: "./media/characters/alexi/front-transformed.svg",
  12192. extra: 639 / 614,
  12193. bottom: 30.55 / 671
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(14, "feet"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Minimacro",
  12205. height: math.unit(30, "meters")
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(500, "meters")
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(9000, "km")
  12214. },
  12215. {
  12216. name: "Teramacro",
  12217. height: math.unit(384000, "km")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(150, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/kayroo/front.svg",
  12230. extra: 1153 / 1038,
  12231. bottom: 0.06
  12232. }
  12233. },
  12234. foot: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "lb"),
  12237. name: "Foot",
  12238. image: {
  12239. source: "./media/characters/kayroo/foot.svg"
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(8, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Minimacro",
  12251. height: math.unit(250, "feet")
  12252. },
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(2800, "feet")
  12256. },
  12257. {
  12258. name: "Megamacro",
  12259. height: math.unit(5200, "feet")
  12260. },
  12261. {
  12262. name: "Gigamacro",
  12263. height: math.unit(27000, "feet")
  12264. },
  12265. {
  12266. name: "Omega",
  12267. height: math.unit(45000, "feet")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(18, "feet"),
  12276. weight: math.unit(5800, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/rhys/front.svg",
  12280. extra: 3386 / 3090,
  12281. bottom: 0.07
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(18, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Working Size",
  12293. height: math.unit(200, "feet")
  12294. },
  12295. {
  12296. name: "Demolition Size",
  12297. height: math.unit(2000, "feet")
  12298. },
  12299. {
  12300. name: "Maximum Licensed Size",
  12301. height: math.unit(5, "miles")
  12302. },
  12303. {
  12304. name: "Maximum Observed Size",
  12305. height: math.unit(10, "yottameters")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12311. {
  12312. front: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(250, "lb"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/toto/front.svg",
  12318. extra: 527 / 479,
  12319. bottom: 0.05
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Micro",
  12326. height: math.unit(3, "feet")
  12327. },
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(10, "feet")
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(150, "feet"),
  12335. default: true
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(1200, "feet")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "King", species: ["lion"], tags: ["anthro"] },
  12345. {
  12346. back: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/king/back.svg"
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Micro",
  12358. height: math.unit(2, "inches")
  12359. },
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(8, "feet")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(200, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Megamacro",
  12371. height: math.unit(50, "miles")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(11, "feet"),
  12380. weight: math.unit(1400, "lb"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/cordite/front.svg",
  12384. extra: 1919/1827,
  12385. bottom: 40/1959
  12386. }
  12387. },
  12388. side: {
  12389. height: math.unit(11, "feet"),
  12390. weight: math.unit(1400, "lb"),
  12391. name: "Side",
  12392. image: {
  12393. source: "./media/characters/cordite/side.svg",
  12394. extra: 1908/1793,
  12395. bottom: 38/1946
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(11, "feet"),
  12400. weight: math.unit(1400, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/cordite/back.svg",
  12404. extra: 1938/1837,
  12405. bottom: 10/1948
  12406. }
  12407. },
  12408. feral: {
  12409. height: math.unit(2, "feet"),
  12410. weight: math.unit(90, "lb"),
  12411. name: "Feral",
  12412. image: {
  12413. source: "./media/characters/cordite/feral.svg",
  12414. extra: 1260 / 755,
  12415. bottom: 0.05
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(11, "feet"),
  12423. default: true
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12429. {
  12430. front: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(150, "lb"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/pianostrong/front.svg",
  12436. extra: 6577 / 6254,
  12437. bottom: 0.02
  12438. }
  12439. },
  12440. side: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(150, "lb"),
  12443. name: "Side",
  12444. image: {
  12445. source: "./media/characters/pianostrong/side.svg",
  12446. extra: 6106 / 5730
  12447. }
  12448. },
  12449. back: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Back",
  12453. image: {
  12454. source: "./media/characters/pianostrong/back.svg",
  12455. extra: 6085 / 5733,
  12456. bottom: 0.01
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(100, "feet")
  12464. },
  12465. {
  12466. name: "Macro+",
  12467. height: math.unit(300, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Macro++",
  12472. height: math.unit(1000, "feet")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/kona/front.svg",
  12485. extra: 2960 / 2629,
  12486. bottom: 0.005
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(11 + 8 / 12, "feet")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(850, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro+",
  12502. height: math.unit(1.5, "km"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(80, "miles")
  12508. },
  12509. {
  12510. name: "Gigamacro",
  12511. height: math.unit(3500, "miles")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12517. {
  12518. side: {
  12519. height: math.unit(1.9, "meters"),
  12520. weight: math.unit(326, "kg"),
  12521. name: "Side",
  12522. image: {
  12523. source: "./media/characters/levi/side.svg",
  12524. extra: 1704 / 1334,
  12525. bottom: 0.02
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(1.9, "meters"),
  12533. default: true
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(20, "meters")
  12538. },
  12539. {
  12540. name: "Macro+",
  12541. height: math.unit(200, "meters")
  12542. },
  12543. {
  12544. name: "Megamacro",
  12545. height: math.unit(2, "km")
  12546. },
  12547. {
  12548. name: "Megamacro+",
  12549. height: math.unit(20, "km")
  12550. },
  12551. {
  12552. name: "Gigamacro",
  12553. height: math.unit(2500, "km")
  12554. },
  12555. {
  12556. name: "Gigamacro+",
  12557. height: math.unit(120000, "km")
  12558. },
  12559. {
  12560. name: "Teramacro",
  12561. height: math.unit(7.77e6, "km")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6 + 4/12, "feet"),
  12570. weight: math.unit(190, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/bmc/front.svg",
  12574. extra: 1626/1472,
  12575. bottom: 79/1705
  12576. }
  12577. },
  12578. back: {
  12579. height: math.unit(6 + 4/12, "feet"),
  12580. weight: math.unit(190, "lb"),
  12581. name: "Back",
  12582. image: {
  12583. source: "./media/characters/bmc/back.svg",
  12584. extra: 1640/1479,
  12585. bottom: 45/1685
  12586. }
  12587. },
  12588. frontArmor: {
  12589. height: math.unit(6 + 4/12, "feet"),
  12590. weight: math.unit(190, "lb"),
  12591. name: "Front-armor",
  12592. image: {
  12593. source: "./media/characters/bmc/front-armor.svg",
  12594. extra: 1538/1468,
  12595. bottom: 79/1617
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Human-sized",
  12602. height: math.unit(6 + 4 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Interactive Size",
  12606. height: math.unit(25, "feet")
  12607. },
  12608. {
  12609. name: "Small",
  12610. height: math.unit(250, "feet")
  12611. },
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(1250, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Good Day",
  12619. height: math.unit(88, "miles")
  12620. },
  12621. {
  12622. name: "Largest Measured Size",
  12623. height: math.unit(105.960, "galaxies")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(20, "feet"),
  12632. weight: math.unit(2016, "kg"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/sven-the-kaiju/front.svg",
  12636. extra: 1277/1250,
  12637. bottom: 35/1312
  12638. }
  12639. },
  12640. mouth: {
  12641. height: math.unit(1.85, "feet"),
  12642. name: "Mouth",
  12643. image: {
  12644. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Fairy",
  12651. height: math.unit(6, "inches")
  12652. },
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(20, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Rampage",
  12660. height: math.unit(200, "feet")
  12661. },
  12662. {
  12663. name: "Archfey Forest Guardian",
  12664. height: math.unit(1, "mile")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(4, "meters"),
  12673. weight: math.unit(2, "tons"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/marik/front.svg",
  12677. extra: 1057 / 1003,
  12678. bottom: 0.08
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(4, "meters"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Macro",
  12690. height: math.unit(20, "meters")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(50, "km")
  12695. },
  12696. {
  12697. name: "Gigamacro",
  12698. height: math.unit(100, "km")
  12699. },
  12700. {
  12701. name: "Alpha Macro",
  12702. height: math.unit(7.88e7, "yottameters")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(110, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/mel/front.svg",
  12715. extra: 736 / 617,
  12716. bottom: 0.017
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Pico",
  12723. height: math.unit(3, "pm")
  12724. },
  12725. {
  12726. name: "Nano",
  12727. height: math.unit(3, "nm")
  12728. },
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(0.3, "mm"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Micro+",
  12736. height: math.unit(3, "mm")
  12737. },
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(5 + 10.5 / 12, "feet")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12746. {
  12747. kaiju: {
  12748. height: math.unit(1.75, "meters"),
  12749. weight: math.unit(55, "kg"),
  12750. name: "Kaiju",
  12751. image: {
  12752. source: "./media/characters/lykonous/kaiju.svg",
  12753. extra: 1055 / 946,
  12754. bottom: 0.135
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(2.5, "meters"),
  12762. default: true
  12763. },
  12764. {
  12765. name: "Kaiju Dragon",
  12766. height: math.unit(60, "meters")
  12767. },
  12768. {
  12769. name: "Mega Kaiju",
  12770. height: math.unit(120, "km")
  12771. },
  12772. {
  12773. name: "Giga Kaiju",
  12774. height: math.unit(200, "megameters")
  12775. },
  12776. {
  12777. name: "Terra Kaiju",
  12778. height: math.unit(400, "gigameters")
  12779. },
  12780. {
  12781. name: "Kaiju Dragon God",
  12782. height: math.unit(13000, "exaparsecs")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(150, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/blü/front.svg",
  12795. extra: 1883 / 1564,
  12796. bottom: 0.031
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(13, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Big Boi",
  12808. height: math.unit(150, "meters")
  12809. },
  12810. {
  12811. name: "Mini Stomper",
  12812. height: math.unit(300, "meters")
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(1000, "meters")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(11000, "meters")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(11000, "km")
  12825. },
  12826. {
  12827. name: "Teramacro",
  12828. height: math.unit(420000, "km")
  12829. },
  12830. {
  12831. name: "Examacro",
  12832. height: math.unit(120, "parsecs")
  12833. },
  12834. {
  12835. name: "God Tho",
  12836. height: math.unit(98000000000, "parsecs")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12842. {
  12843. taurFront: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(200, "lb"),
  12846. name: "Taur (Front)",
  12847. image: {
  12848. source: "./media/characters/scales/taur-front.svg",
  12849. extra: 1,
  12850. bottom: 0.05
  12851. }
  12852. },
  12853. taurBack: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(200, "lb"),
  12856. name: "Taur (Back)",
  12857. image: {
  12858. source: "./media/characters/scales/taur-back.svg",
  12859. extra: 1,
  12860. bottom: 0.08
  12861. }
  12862. },
  12863. anthro: {
  12864. height: math.unit(6 * 7 / 12, "feet"),
  12865. weight: math.unit(100, "lb"),
  12866. name: "Anthro",
  12867. image: {
  12868. source: "./media/characters/scales/anthro.svg",
  12869. extra: 1,
  12870. bottom: 0.06
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(12, "feet"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/koragos/front.svg",
  12891. extra: 841 / 794,
  12892. bottom: 0.035
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/koragos/back.svg",
  12901. extra: 841 / 810,
  12902. bottom: 0.022
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(6 + 11 / 12, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(490, "feet")
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(10, "miles")
  12919. },
  12920. {
  12921. name: "Gigamacro",
  12922. height: math.unit(50, "miles")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6, "feet"),
  12931. weight: math.unit(250, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/xylrem/front.svg",
  12935. extra: 3323 / 3050,
  12936. bottom: 0.065
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Micro",
  12943. height: math.unit(4, "feet")
  12944. },
  12945. {
  12946. name: "Normal",
  12947. height: math.unit(16, "feet"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Macro",
  12952. height: math.unit(2720, "feet")
  12953. },
  12954. {
  12955. name: "Megamacro",
  12956. height: math.unit(25000, "miles")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(8, "feet"),
  12965. weight: math.unit(250, "kg"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/ikideru/front.svg",
  12969. extra: 930 / 870,
  12970. bottom: 0.087
  12971. }
  12972. },
  12973. back: {
  12974. height: math.unit(8, "feet"),
  12975. weight: math.unit(250, "kg"),
  12976. name: "Back",
  12977. image: {
  12978. source: "./media/characters/ikideru/back.svg",
  12979. extra: 919 / 852,
  12980. bottom: 0.055
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Rare",
  12987. height: math.unit(8, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Playful Loom",
  12992. height: math.unit(80, "feet")
  12993. },
  12994. {
  12995. name: "City Leaner",
  12996. height: math.unit(230, "feet")
  12997. },
  12998. {
  12999. name: "Megamacro",
  13000. height: math.unit(2500, "feet")
  13001. },
  13002. {
  13003. name: "Gigamacro",
  13004. height: math.unit(26400, "feet")
  13005. },
  13006. {
  13007. name: "Tectonic Shifter",
  13008. height: math.unit(1.7, "megameters")
  13009. },
  13010. {
  13011. name: "Planet Carer",
  13012. height: math.unit(21, "megameters")
  13013. },
  13014. {
  13015. name: "God",
  13016. height: math.unit(11157.22, "parsecs")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(120, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/neo/front.svg"
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(2, "inches"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Human Size",
  13040. height: math.unit(5 + 8 / 12, "feet")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(13 + 10 / 12, "feet"),
  13049. weight: math.unit(5320, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/chauncey-chantz/front.svg",
  13053. extra: 1587 / 1435,
  13054. bottom: 0.02
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(13 + 10 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(45, "feet")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(250, "miles")
  13071. },
  13072. {
  13073. name: "Planetary",
  13074. height: math.unit(10000, "miles")
  13075. },
  13076. {
  13077. name: "Galactic",
  13078. height: math.unit(40000, "parsecs")
  13079. },
  13080. {
  13081. name: "Universal",
  13082. height: math.unit(1, "yottameter")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13088. {
  13089. front: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/epifox/front.svg",
  13095. extra: 1,
  13096. bottom: 0.075
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Micro",
  13103. height: math.unit(6, "inches")
  13104. },
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(12, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Macro",
  13112. height: math.unit(3810, "feet")
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(500, "miles")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(1.8796, "m"),
  13125. weight: math.unit(230, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/colin-t/front.svg",
  13129. extra: 1272 / 1193,
  13130. bottom: 0.07
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(0.571, "meters")
  13138. },
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(1.8796, "meters"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Tall",
  13146. height: math.unit(4, "meters")
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(67.241, "meters")
  13151. },
  13152. {
  13153. name: "Megamacro",
  13154. height: math.unit(371.856, "meters")
  13155. },
  13156. {
  13157. name: "Planetary",
  13158. height: math.unit(12631.5689, "km")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(1.85, "meters"),
  13167. weight: math.unit(80, "kg"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/matvei/front.svg",
  13171. extra: 456/447,
  13172. bottom: 8/464
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(1.85, "meters"),
  13177. weight: math.unit(80, "kg"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/matvei/back.svg",
  13181. extra: 434/427,
  13182. bottom: 11/445
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(1.85, "meters"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(5 + 9 / 12, "feet"),
  13199. weight: math.unit(70, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/quincy/front.svg",
  13203. extra: 3041 / 2751
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(5 + 9 / 12, "feet"),
  13208. weight: math.unit(70, "lb"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/quincy/back.svg",
  13212. extra: 3041 / 2751
  13213. }
  13214. },
  13215. flying: {
  13216. height: math.unit(5 + 4 / 12, "feet"),
  13217. weight: math.unit(70, "lb"),
  13218. name: "Flying",
  13219. image: {
  13220. source: "./media/characters/quincy/flying.svg",
  13221. extra: 1044 / 930
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Micro",
  13228. height: math.unit(3, "cm")
  13229. },
  13230. {
  13231. name: "Normal",
  13232. height: math.unit(5 + 9 / 12, "feet")
  13233. },
  13234. {
  13235. name: "Macro",
  13236. height: math.unit(200, "meters"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(1000, "meters")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(3 + 11/12, "feet"),
  13250. weight: math.unit(50, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/vanrel/front.svg",
  13254. extra: 1104/949,
  13255. bottom: 52/1156
  13256. }
  13257. },
  13258. back: {
  13259. height: math.unit(3 + 11/12, "feet"),
  13260. weight: math.unit(50, "lb"),
  13261. name: "Back",
  13262. image: {
  13263. source: "./media/characters/vanrel/back.svg",
  13264. extra: 1119/976,
  13265. bottom: 37/1156
  13266. }
  13267. },
  13268. tome: {
  13269. height: math.unit(1.35, "feet"),
  13270. weight: math.unit(10, "lb"),
  13271. name: "Vanrel's Tome",
  13272. rename: true,
  13273. image: {
  13274. source: "./media/characters/vanrel/tome.svg"
  13275. }
  13276. },
  13277. beans: {
  13278. height: math.unit(0.89, "feet"),
  13279. name: "Beans",
  13280. image: {
  13281. source: "./media/characters/vanrel/beans.svg"
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(3 + 11/12, "feet"),
  13289. default: true
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(7 + 5 / 12, "feet"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/kuiper-vanrel/front.svg",
  13301. extra: 1219/1169,
  13302. bottom: 69/1288
  13303. }
  13304. },
  13305. back: {
  13306. height: math.unit(7 + 5 / 12, "feet"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/kuiper-vanrel/back.svg",
  13310. extra: 1236/1193,
  13311. bottom: 27/1263
  13312. }
  13313. },
  13314. foot: {
  13315. height: math.unit(0.55, "meters"),
  13316. name: "Foot",
  13317. image: {
  13318. source: "./media/characters/kuiper-vanrel/foot.svg",
  13319. }
  13320. },
  13321. battle: {
  13322. height: math.unit(6.824, "feet"),
  13323. name: "Battle",
  13324. image: {
  13325. source: "./media/characters/kuiper-vanrel/battle.svg",
  13326. extra: 1466 / 1327,
  13327. bottom: 29 / 1492.5
  13328. }
  13329. },
  13330. meerkui: {
  13331. height: math.unit(18, "inches"),
  13332. name: "Meerkui",
  13333. image: {
  13334. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13335. extra: 1354/1289,
  13336. bottom: 69/1423
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(7 + 5 / 12, "feet"),
  13344. default: true
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(8 + 5 / 12, "feet"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/keset-vanrel/front.svg",
  13356. extra: 1231/1148,
  13357. bottom: 82/1313
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(8 + 5 / 12, "feet"),
  13362. name: "Back",
  13363. image: {
  13364. source: "./media/characters/keset-vanrel/back.svg",
  13365. extra: 1240/1174,
  13366. bottom: 33/1273
  13367. }
  13368. },
  13369. hand: {
  13370. height: math.unit(0.6, "meters"),
  13371. name: "Hand",
  13372. image: {
  13373. source: "./media/characters/keset-vanrel/hand.svg"
  13374. }
  13375. },
  13376. foot: {
  13377. height: math.unit(0.94978, "meters"),
  13378. name: "Foot",
  13379. image: {
  13380. source: "./media/characters/keset-vanrel/foot.svg"
  13381. }
  13382. },
  13383. battle: {
  13384. height: math.unit(7.408, "feet"),
  13385. name: "Battle",
  13386. image: {
  13387. source: "./media/characters/keset-vanrel/battle.svg",
  13388. extra: 1890 / 1386,
  13389. bottom: 73.28 / 1970
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(8 + 5 / 12, "feet"),
  13397. default: true
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/neos/front.svg",
  13410. extra: 1696 / 992,
  13411. bottom: 0.14
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(54, "cm"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Macro",
  13423. height: math.unit(100, "m")
  13424. },
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(10, "km")
  13428. },
  13429. {
  13430. name: "Megamacro+",
  13431. height: math.unit(100, "km")
  13432. },
  13433. {
  13434. name: "Gigamacro",
  13435. height: math.unit(100, "Mm")
  13436. },
  13437. {
  13438. name: "Teramacro",
  13439. height: math.unit(100, "Gm")
  13440. },
  13441. {
  13442. name: "Examacro",
  13443. height: math.unit(100, "Em")
  13444. },
  13445. {
  13446. name: "Godly",
  13447. height: math.unit(10000, "Ym")
  13448. },
  13449. {
  13450. name: "Beyond Godly",
  13451. height: math.unit(25, "multiverses")
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13457. {
  13458. feminine: {
  13459. height: math.unit(5, "feet"),
  13460. weight: math.unit(100, "lb"),
  13461. name: "Feminine",
  13462. image: {
  13463. source: "./media/characters/sammy-mouse/feminine.svg",
  13464. extra: 2526 / 2425,
  13465. bottom: 0.123
  13466. }
  13467. },
  13468. masculine: {
  13469. height: math.unit(5, "feet"),
  13470. weight: math.unit(100, "lb"),
  13471. name: "Masculine",
  13472. image: {
  13473. source: "./media/characters/sammy-mouse/masculine.svg",
  13474. extra: 2526 / 2425,
  13475. bottom: 0.123
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Micro",
  13482. height: math.unit(5, "inches")
  13483. },
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(5, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(60, "feet")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(4, "feet"),
  13500. weight: math.unit(50, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/kole/front.svg",
  13504. extra: 1423 / 1303,
  13505. bottom: 0.025
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(4, "feet"),
  13510. weight: math.unit(50, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/kole/back.svg",
  13514. extra: 1426 / 1280,
  13515. bottom: 0.02
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(4, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(2.5, "feet"),
  13532. weight: math.unit(32, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/rufran/front.svg",
  13536. extra: 1313/885,
  13537. bottom: 94/1407
  13538. }
  13539. },
  13540. side: {
  13541. height: math.unit(2.5, "feet"),
  13542. weight: math.unit(32, "lb"),
  13543. name: "Side",
  13544. image: {
  13545. source: "./media/characters/rufran/side.svg",
  13546. extra: 1109/852,
  13547. bottom: 118/1227
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(2.5, "feet"),
  13552. weight: math.unit(32, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/rufran/back.svg",
  13556. extra: 1280/878,
  13557. bottom: 131/1411
  13558. }
  13559. },
  13560. mouth: {
  13561. height: math.unit(1.13, "feet"),
  13562. name: "Mouth",
  13563. image: {
  13564. source: "./media/characters/rufran/mouth.svg"
  13565. }
  13566. },
  13567. foot: {
  13568. height: math.unit(1.33, "feet"),
  13569. name: "Foot",
  13570. image: {
  13571. source: "./media/characters/rufran/foot.svg"
  13572. }
  13573. },
  13574. koboldFront: {
  13575. height: math.unit(2 + 6 / 12, "feet"),
  13576. weight: math.unit(20, "lb"),
  13577. name: "Front (Kobold)",
  13578. image: {
  13579. source: "./media/characters/rufran/kobold-front.svg",
  13580. extra: 2041 / 1839,
  13581. bottom: 0.055
  13582. }
  13583. },
  13584. koboldBack: {
  13585. height: math.unit(2 + 6 / 12, "feet"),
  13586. weight: math.unit(20, "lb"),
  13587. name: "Back (Kobold)",
  13588. image: {
  13589. source: "./media/characters/rufran/kobold-back.svg",
  13590. extra: 2054 / 1839,
  13591. bottom: 0.01
  13592. }
  13593. },
  13594. koboldHand: {
  13595. height: math.unit(0.2166, "meters"),
  13596. name: "Hand (Kobold)",
  13597. image: {
  13598. source: "./media/characters/rufran/kobold-hand.svg"
  13599. }
  13600. },
  13601. koboldFoot: {
  13602. height: math.unit(0.185, "meters"),
  13603. name: "Foot (Kobold)",
  13604. image: {
  13605. source: "./media/characters/rufran/kobold-foot.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Micro",
  13612. height: math.unit(1, "inch")
  13613. },
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(2 + 6 / 12, "feet"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Big",
  13621. height: math.unit(60, "feet")
  13622. },
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(325, "feet")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(0.3, "meters"),
  13634. weight: math.unit(3.5, "kg"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/chip/front.svg",
  13638. extra: 748 / 674
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(1, "inch"),
  13646. default: true
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13652. {
  13653. side: {
  13654. height: math.unit(2.3, "meters"),
  13655. weight: math.unit(3500, "lb"),
  13656. name: "Side",
  13657. image: {
  13658. source: "./media/characters/torvid/side.svg",
  13659. extra: 1972 / 722,
  13660. bottom: 0.035
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(2.3, "meters"),
  13668. default: true
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(2, "meters"),
  13677. weight: math.unit(150.5, "kg"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/susan/front.svg",
  13681. extra: 693 / 635,
  13682. bottom: 0.05
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(505, "miles"),
  13690. default: true
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/raindrops/front.svg",
  13703. extra: 2655 / 2461,
  13704. bottom: 49 / 2705
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Back",
  13711. image: {
  13712. source: "./media/characters/raindrops/back.svg",
  13713. extra: 2574 / 2400,
  13714. bottom: 65 / 2634
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(6, "inches")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(6 + 2 / 12, "feet")
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(131, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(15, "miles")
  13735. },
  13736. {
  13737. name: "Gigamacro",
  13738. height: math.unit(4000, "miles")
  13739. },
  13740. {
  13741. name: "Teramacro",
  13742. height: math.unit(315000, "miles")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(2.794, "meters"),
  13751. weight: math.unit(325, "kg"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/tezwa/front.svg",
  13755. extra: 2083 / 1906,
  13756. bottom: 0.031
  13757. }
  13758. },
  13759. foot: {
  13760. height: math.unit(0.687, "meters"),
  13761. name: "Foot",
  13762. image: {
  13763. source: "./media/characters/tezwa/foot.svg"
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(9 + 2 / 12, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(58, "feet"),
  13780. weight: math.unit(89000, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/typhus/front.svg",
  13784. extra: 816 / 800,
  13785. bottom: 0.065
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Macro",
  13792. height: math.unit(58, "feet"),
  13793. default: true
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(12, "feet"),
  13802. weight: math.unit(6, "tonnes"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/lyra-von-wulf/front.svg",
  13806. extra: 1,
  13807. bottom: 0.10
  13808. }
  13809. },
  13810. frontMecha: {
  13811. height: math.unit(12, "feet"),
  13812. weight: math.unit(12, "tonnes"),
  13813. name: "Front (Mecha)",
  13814. image: {
  13815. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13816. extra: 1,
  13817. bottom: 0.042
  13818. }
  13819. },
  13820. maw: {
  13821. height: math.unit(2.2, "feet"),
  13822. name: "Maw",
  13823. image: {
  13824. source: "./media/characters/lyra-von-wulf/maw.svg"
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Classic",
  13836. height: math.unit(50, "feet")
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(500, "feet")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(1, "mile")
  13845. },
  13846. {
  13847. name: "Gigamacro",
  13848. height: math.unit(400, "miles")
  13849. },
  13850. {
  13851. name: "Teramacro",
  13852. height: math.unit(22000, "miles")
  13853. },
  13854. {
  13855. name: "Solarmacro",
  13856. height: math.unit(8600000, "miles")
  13857. },
  13858. {
  13859. name: "Galactic",
  13860. height: math.unit(1057000, "lightyears")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6 + 10 / 12, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/dixon/front.svg",
  13873. extra: 3361 / 3209,
  13874. bottom: 0.01
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(6 + 10 / 12, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Big",
  13886. height: math.unit(12, "meters")
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(500, "meters")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(2, "km")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(185, "cm"),
  13903. weight: math.unit(68, "kg"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/kauko/front.svg",
  13907. extra: 1455 / 1421,
  13908. bottom: 0.03
  13909. }
  13910. },
  13911. back: {
  13912. height: math.unit(185, "cm"),
  13913. weight: math.unit(68, "kg"),
  13914. name: "Back",
  13915. image: {
  13916. source: "./media/characters/kauko/back.svg",
  13917. extra: 1455 / 1421,
  13918. bottom: 0.004
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(185, "cm"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13932. {
  13933. frontSfw: {
  13934. height: math.unit(5, "meters"),
  13935. weight: math.unit(4250, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/varg/front-sfw.svg",
  13939. extra: 1103/1010,
  13940. bottom: 50/1153
  13941. },
  13942. form: "anthro",
  13943. default: true
  13944. },
  13945. backSfw: {
  13946. height: math.unit(5, "meters"),
  13947. weight: math.unit(4250, "lb"),
  13948. name: "Back",
  13949. image: {
  13950. source: "./media/characters/varg/back-sfw.svg",
  13951. extra: 1038/1022,
  13952. bottom: 36/1074
  13953. },
  13954. form: "anthro"
  13955. },
  13956. frontNsfw: {
  13957. height: math.unit(5, "meters"),
  13958. weight: math.unit(4250, "lb"),
  13959. name: "Front (NSFW)",
  13960. image: {
  13961. source: "./media/characters/varg/front-nsfw.svg",
  13962. extra: 1103/1010,
  13963. bottom: 50/1153
  13964. },
  13965. form: "anthro"
  13966. },
  13967. sheath: {
  13968. height: math.unit(3.8, "feet"),
  13969. weight: math.unit(90, "kilograms"),
  13970. name: "Sheath",
  13971. image: {
  13972. source: "./media/characters/varg/sheath.svg"
  13973. },
  13974. form: "anthro"
  13975. },
  13976. dick: {
  13977. height: math.unit(4.6, "feet"),
  13978. weight: math.unit(451, "kilograms"),
  13979. name: "Dick",
  13980. image: {
  13981. source: "./media/characters/varg/dick.svg"
  13982. },
  13983. form: "anthro"
  13984. },
  13985. feralSfw: {
  13986. height: math.unit(5, "meters"),
  13987. weight: math.unit(100000, "lb"),
  13988. name: "Side",
  13989. image: {
  13990. source: "./media/characters/varg/feral-sfw.svg",
  13991. extra: 1065/511,
  13992. bottom: 211/1276
  13993. },
  13994. form: "feral",
  13995. default: true
  13996. },
  13997. feralNsfw: {
  13998. height: math.unit(5, "meters"),
  13999. weight: math.unit(100000, "lb"),
  14000. name: "Side (NSFW)",
  14001. image: {
  14002. source: "./media/characters/varg/feral-nsfw.svg",
  14003. extra: 1065/511,
  14004. bottom: 211/1276
  14005. },
  14006. form: "feral",
  14007. },
  14008. feralSheath: {
  14009. height: math.unit(9.8, "feet"),
  14010. weight: math.unit(2000, "kilograms"),
  14011. name: "Sheath",
  14012. image: {
  14013. source: "./media/characters/varg/sheath.svg"
  14014. },
  14015. form: "feral"
  14016. },
  14017. feralDick: {
  14018. height: math.unit(13.11, "feet"),
  14019. weight: math.unit(10440, "kilograms"),
  14020. name: "Dick",
  14021. image: {
  14022. source: "./media/characters/varg/dick.svg"
  14023. },
  14024. form: "feral"
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(5, "meters"),
  14031. form: "anthro"
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(200, "meters"),
  14036. form: "anthro"
  14037. },
  14038. {
  14039. name: "Megamacro",
  14040. height: math.unit(20, "kilometers"),
  14041. form: "anthro"
  14042. },
  14043. {
  14044. name: "True Size",
  14045. height: math.unit(211, "km"),
  14046. form: "anthro",
  14047. default: true
  14048. },
  14049. {
  14050. name: "Gigamacro",
  14051. height: math.unit(1000, "km"),
  14052. form: "anthro"
  14053. },
  14054. {
  14055. name: "Gigamacro+",
  14056. height: math.unit(8000, "km"),
  14057. form: "anthro"
  14058. },
  14059. {
  14060. name: "Teramacro",
  14061. height: math.unit(1000000, "km"),
  14062. form: "anthro"
  14063. },
  14064. {
  14065. name: "Normal",
  14066. height: math.unit(5, "meters"),
  14067. form: "feral"
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(200, "meters"),
  14072. form: "feral"
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(20, "kilometers"),
  14077. form: "feral"
  14078. },
  14079. {
  14080. name: "True Size",
  14081. height: math.unit(211, "km"),
  14082. form: "feral",
  14083. default: true
  14084. },
  14085. {
  14086. name: "Gigamacro",
  14087. height: math.unit(1000, "km"),
  14088. form: "feral"
  14089. },
  14090. {
  14091. name: "Gigamacro+",
  14092. height: math.unit(8000, "km"),
  14093. form: "feral"
  14094. },
  14095. {
  14096. name: "Teramacro",
  14097. height: math.unit(1000000, "km"),
  14098. form: "feral"
  14099. },
  14100. ],
  14101. {
  14102. "anthro": {
  14103. name: "Anthro",
  14104. default: true
  14105. },
  14106. "feral": {
  14107. name: "Feral",
  14108. },
  14109. }
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(7 + 7 / 12, "feet"),
  14116. weight: math.unit(267, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/dayza/front.svg",
  14120. extra: 1262 / 1200,
  14121. bottom: 0.035
  14122. }
  14123. },
  14124. side: {
  14125. height: math.unit(7 + 7 / 12, "feet"),
  14126. weight: math.unit(267, "lb"),
  14127. name: "Side",
  14128. image: {
  14129. source: "./media/characters/dayza/side.svg",
  14130. extra: 1295 / 1245,
  14131. bottom: 0.05
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(7 + 7 / 12, "feet"),
  14136. weight: math.unit(267, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/dayza/back.svg",
  14140. extra: 1241 / 1170
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(7 + 7 / 12, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(155, "feet")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6 + 5 / 12, "feet"),
  14161. weight: math.unit(160, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/xanthos/front.svg",
  14165. extra: 1,
  14166. bottom: 0.04
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(6 + 5 / 12, "feet"),
  14171. weight: math.unit(160, "lb"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/xanthos/back.svg",
  14175. extra: 1,
  14176. bottom: 0.03
  14177. }
  14178. },
  14179. hand: {
  14180. height: math.unit(0.928, "feet"),
  14181. name: "Hand",
  14182. image: {
  14183. source: "./media/characters/xanthos/hand.svg"
  14184. }
  14185. },
  14186. foot: {
  14187. height: math.unit(1.286, "feet"),
  14188. name: "Foot",
  14189. image: {
  14190. source: "./media/characters/xanthos/foot.svg"
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(6 + 5 / 12, "feet"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Normal+",
  14202. height: math.unit(6, "meters")
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(40, "feet")
  14207. },
  14208. {
  14209. name: "Macro+",
  14210. height: math.unit(200, "meters")
  14211. },
  14212. {
  14213. name: "Megamacro",
  14214. height: math.unit(20, "km")
  14215. },
  14216. {
  14217. name: "Megamacro+",
  14218. height: math.unit(100, "km")
  14219. },
  14220. {
  14221. name: "Gigamacro",
  14222. height: math.unit(200, "megameters")
  14223. },
  14224. {
  14225. name: "Gigamacro+",
  14226. height: math.unit(1.5, "gigameters")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6 + 3 / 12, "feet"),
  14235. weight: math.unit(215, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/grynn/front.svg",
  14239. extra: 4627 / 4209,
  14240. bottom: 0.047
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Micro",
  14247. height: math.unit(6, "inches")
  14248. },
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(6 + 3 / 12, "feet"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Big",
  14256. height: math.unit(104, "feet")
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(944, "feet")
  14261. },
  14262. {
  14263. name: "Macro+",
  14264. height: math.unit(9480, "feet")
  14265. },
  14266. {
  14267. name: "Megamacro",
  14268. height: math.unit(78752, "feet")
  14269. },
  14270. {
  14271. name: "Megamacro+",
  14272. height: math.unit(630128, "feet")
  14273. },
  14274. {
  14275. name: "Megamacro++",
  14276. height: math.unit(3150695, "feet")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(7 + 5 / 12, "feet"),
  14285. weight: math.unit(450, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/mocha-aura/front.svg",
  14289. extra: 1907 / 1817,
  14290. bottom: 0.04
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(7 + 5 / 12, "feet"),
  14295. weight: math.unit(450, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/mocha-aura/back.svg",
  14299. extra: 1900 / 1825,
  14300. bottom: 0.045
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Nano",
  14307. height: math.unit(1, "nm")
  14308. },
  14309. {
  14310. name: "Megamicro",
  14311. height: math.unit(1, "mm")
  14312. },
  14313. {
  14314. name: "Micro",
  14315. height: math.unit(3, "inches")
  14316. },
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(7 + 5 / 12, "feet"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Macro",
  14324. height: math.unit(30, "feet")
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(3500, "feet")
  14329. },
  14330. {
  14331. name: "Teramacro",
  14332. height: math.unit(500000, "miles")
  14333. },
  14334. {
  14335. name: "Petamacro",
  14336. height: math.unit(50000000000000000, "parsecs")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/ilisha-devya/front.svg",
  14349. extra: 1053/1049,
  14350. bottom: 270/1323
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/ilisha-devya/back.svg",
  14359. extra: 1131/1128,
  14360. bottom: 39/1170
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(500, "feet"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Megamacro",
  14372. height: math.unit(10, "miles")
  14373. },
  14374. {
  14375. name: "Gigamacro",
  14376. height: math.unit(100000, "miles")
  14377. },
  14378. {
  14379. name: "Examacro",
  14380. height: math.unit(1e9, "lightyears")
  14381. },
  14382. {
  14383. name: "Omniversal",
  14384. height: math.unit(1e33, "lightyears")
  14385. },
  14386. {
  14387. name: "Beyond Infinite",
  14388. height: math.unit(1e100, "lightyears")
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14394. {
  14395. Side: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Side",
  14399. image: {
  14400. source: "./media/characters/mira/side.svg",
  14401. extra: 900 / 799,
  14402. bottom: 0.02
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Human Size",
  14409. height: math.unit(6, "feet")
  14410. },
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(100, "feet"),
  14414. default: true
  14415. },
  14416. {
  14417. name: "Megamacro",
  14418. height: math.unit(10, "miles")
  14419. },
  14420. {
  14421. name: "Gigamacro",
  14422. height: math.unit(25000, "miles")
  14423. },
  14424. {
  14425. name: "Teramacro",
  14426. height: math.unit(300, "AU")
  14427. },
  14428. {
  14429. name: "Full Size",
  14430. height: math.unit(4.5e10, "lightyears")
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/holly/front.svg",
  14443. extra: 639 / 606
  14444. }
  14445. },
  14446. back: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Back",
  14450. image: {
  14451. source: "./media/characters/holly/back.svg",
  14452. extra: 623 / 598
  14453. }
  14454. },
  14455. frontWorking: {
  14456. height: math.unit(6, "feet"),
  14457. weight: math.unit(150, "lb"),
  14458. name: "Front (Working)",
  14459. image: {
  14460. source: "./media/characters/holly/front-working.svg",
  14461. extra: 607 / 577,
  14462. bottom: 0.048
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(12 + 3 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/porter/front.svg",
  14483. extra: 1,
  14484. bottom: 0.01
  14485. }
  14486. },
  14487. frontRobes: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Front (Robes)",
  14491. image: {
  14492. source: "./media/characters/porter/front-robes.svg",
  14493. extra: 1.01,
  14494. bottom: 0.01
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(11 + 9 / 12, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14508. {
  14509. legendary: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(150, "lb"),
  14512. name: "Legendary",
  14513. image: {
  14514. source: "./media/characters/lucy/legendary.svg",
  14515. extra: 1355 / 1100,
  14516. bottom: 0.045
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Legendary",
  14523. height: math.unit(86882 * 2, "miles"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(150, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/drusilla/front.svg",
  14537. extra: 678 / 635,
  14538. bottom: 0.03
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(150, "lb"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/drusilla/back.svg",
  14547. extra: 678 / 635,
  14548. bottom: 0.005
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Macro",
  14555. height: math.unit(100, "feet")
  14556. },
  14557. {
  14558. name: "Canon Height",
  14559. height: math.unit(2000, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(180, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/renard-thatch/front.svg",
  14573. extra: 2411 / 2275,
  14574. bottom: 0.01
  14575. }
  14576. },
  14577. frontPosing: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(180, "lb"),
  14580. name: "Front (Posing)",
  14581. image: {
  14582. source: "./media/characters/renard-thatch/front-posing.svg",
  14583. extra: 2381 / 2261,
  14584. bottom: 0.01
  14585. }
  14586. },
  14587. back: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(180, "lb"),
  14590. name: "Back",
  14591. image: {
  14592. source: "./media/characters/renard-thatch/back.svg",
  14593. extra: 2428 / 2288
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Micro",
  14600. height: math.unit(3, "inches")
  14601. },
  14602. {
  14603. name: "Default",
  14604. height: math.unit(6, "feet"),
  14605. default: true
  14606. },
  14607. {
  14608. name: "Macro",
  14609. height: math.unit(75, "feet")
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(1450, "feet"),
  14618. weight: math.unit(1.21e6, "tons"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/sekvra/front.svg",
  14622. extra: 1193/1190,
  14623. bottom: 78/1271
  14624. }
  14625. },
  14626. side: {
  14627. height: math.unit(1450, "feet"),
  14628. weight: math.unit(1.21e6, "tons"),
  14629. name: "Side",
  14630. image: {
  14631. source: "./media/characters/sekvra/side.svg",
  14632. extra: 1193/1190,
  14633. bottom: 52/1245
  14634. }
  14635. },
  14636. back: {
  14637. height: math.unit(1450, "feet"),
  14638. weight: math.unit(1.21e6, "tons"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/sekvra/back.svg",
  14642. extra: 1219/1216,
  14643. bottom: 21/1240
  14644. }
  14645. },
  14646. frontClothed: {
  14647. height: math.unit(1450, "feet"),
  14648. weight: math.unit(1.21e6, "tons"),
  14649. name: "Front (Clothed)",
  14650. image: {
  14651. source: "./media/characters/sekvra/front-clothed.svg",
  14652. extra: 1192/1189,
  14653. bottom: 79/1271
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Macro",
  14660. height: math.unit(1450, "feet"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Megamacro",
  14665. height: math.unit(15000, "feet")
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/carmine/front.svg",
  14678. extra: 1,
  14679. bottom: 0.035
  14680. }
  14681. },
  14682. frontArmor: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front (Armor)",
  14686. image: {
  14687. source: "./media/characters/carmine/front-armor.svg",
  14688. extra: 1,
  14689. bottom: 0.035
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Large",
  14696. height: math.unit(1, "mile")
  14697. },
  14698. {
  14699. name: "Huge",
  14700. height: math.unit(40, "miles"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Colossal",
  14705. height: math.unit(2500, "miles")
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/elyssia/front.svg",
  14718. extra: 2201 / 2035,
  14719. bottom: 0.05
  14720. }
  14721. },
  14722. frontClothed: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(150, "lb"),
  14725. name: "Front (Clothed)",
  14726. image: {
  14727. source: "./media/characters/elyssia/front-clothed.svg",
  14728. extra: 2201 / 2035,
  14729. bottom: 0.05
  14730. }
  14731. },
  14732. back: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(150, "lb"),
  14735. name: "Back",
  14736. image: {
  14737. source: "./media/characters/elyssia/back.svg",
  14738. extra: 2201 / 2035,
  14739. bottom: 0.013
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Smaller",
  14746. height: math.unit(150, "feet")
  14747. },
  14748. {
  14749. name: "Standard",
  14750. height: math.unit(1400, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Distracted",
  14755. height: math.unit(15000, "feet")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(7 + 4/12, "feet"),
  14764. weight: math.unit(690, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/geno-maxwell/front.svg",
  14768. extra: 984/856,
  14769. bottom: 87/1071
  14770. }
  14771. },
  14772. back: {
  14773. height: math.unit(7 + 4/12, "feet"),
  14774. weight: math.unit(690, "lb"),
  14775. name: "Back",
  14776. image: {
  14777. source: "./media/characters/geno-maxwell/back.svg",
  14778. extra: 981/854,
  14779. bottom: 57/1038
  14780. }
  14781. },
  14782. frontCostume: {
  14783. height: math.unit(7 + 4/12, "feet"),
  14784. weight: math.unit(690, "lb"),
  14785. name: "Front (Costume)",
  14786. image: {
  14787. source: "./media/characters/geno-maxwell/front-costume.svg",
  14788. extra: 984/856,
  14789. bottom: 87/1071
  14790. }
  14791. },
  14792. backcostume: {
  14793. height: math.unit(7 + 4/12, "feet"),
  14794. weight: math.unit(690, "lb"),
  14795. name: "Back (Costume)",
  14796. image: {
  14797. source: "./media/characters/geno-maxwell/back-costume.svg",
  14798. extra: 981/854,
  14799. bottom: 57/1038
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Micro",
  14806. height: math.unit(3, "inches")
  14807. },
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(7 + 4 / 12, "feet"),
  14811. default: true
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(220, "feet")
  14816. },
  14817. {
  14818. name: "Megamacro",
  14819. height: math.unit(11, "miles")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(7 + 4/12, "feet"),
  14828. weight: math.unit(750, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/regena-maxwell/front.svg",
  14832. extra: 984/856,
  14833. bottom: 87/1071
  14834. }
  14835. },
  14836. back: {
  14837. height: math.unit(7 + 4/12, "feet"),
  14838. weight: math.unit(750, "lb"),
  14839. name: "Back",
  14840. image: {
  14841. source: "./media/characters/regena-maxwell/back.svg",
  14842. extra: 981/854,
  14843. bottom: 57/1038
  14844. }
  14845. },
  14846. frontCostume: {
  14847. height: math.unit(7 + 4/12, "feet"),
  14848. weight: math.unit(750, "lb"),
  14849. name: "Front (Costume)",
  14850. image: {
  14851. source: "./media/characters/regena-maxwell/front-costume.svg",
  14852. extra: 984/856,
  14853. bottom: 87/1071
  14854. }
  14855. },
  14856. backcostume: {
  14857. height: math.unit(7 + 4/12, "feet"),
  14858. weight: math.unit(750, "lb"),
  14859. name: "Back (Costume)",
  14860. image: {
  14861. source: "./media/characters/regena-maxwell/back-costume.svg",
  14862. extra: 981/854,
  14863. bottom: 57/1038
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(7 + 4 / 12, "feet"),
  14871. default: true
  14872. },
  14873. {
  14874. name: "Macro",
  14875. height: math.unit(220, "feet")
  14876. },
  14877. {
  14878. name: "Megamacro",
  14879. height: math.unit(11, "miles")
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(6, "feet"),
  14888. weight: math.unit(150, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14892. extra: 860 / 690,
  14893. bottom: 0.03
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(1.7, "meters"),
  14901. default: true
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(6, "feet"),
  14910. weight: math.unit(150, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/quilly/front.svg",
  14914. extra: 890 / 776
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Gigamacro",
  14921. height: math.unit(404090, "miles"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(7 + 8 / 12, "feet"),
  14931. weight: math.unit(350, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/tempest/front.svg",
  14935. extra: 1175 / 1086,
  14936. bottom: 0.02
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(7 + 8 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14950. {
  14951. side: {
  14952. height: math.unit(4 + 5 / 12, "feet"),
  14953. weight: math.unit(80, "lb"),
  14954. name: "Side",
  14955. image: {
  14956. source: "./media/characters/rodger/side.svg",
  14957. extra: 1235 / 1118
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Micro",
  14964. height: math.unit(1, "inch")
  14965. },
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(4 + 5 / 12, "feet"),
  14969. default: true
  14970. },
  14971. {
  14972. name: "Macro",
  14973. height: math.unit(120, "feet")
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/danyel/front.svg",
  14986. extra: 1185 / 1123,
  14987. bottom: 0.05
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Shrunken",
  14994. height: math.unit(0.5, "mm")
  14995. },
  14996. {
  14997. name: "Micro",
  14998. height: math.unit(1, "mm"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Upsized",
  15003. height: math.unit(5 + 5 / 12, "feet")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(5 + 6 / 12, "feet"),
  15012. weight: math.unit(200, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/vivian-bijoux/front.svg",
  15016. extra: 1217/1209,
  15017. bottom: 76/1293
  15018. }
  15019. },
  15020. back: {
  15021. height: math.unit(5 + 6 / 12, "feet"),
  15022. weight: math.unit(200, "lb"),
  15023. name: "Back",
  15024. image: {
  15025. source: "./media/characters/vivian-bijoux/back.svg",
  15026. extra: 1214/1208,
  15027. bottom: 51/1265
  15028. }
  15029. },
  15030. dressed: {
  15031. height: math.unit(5 + 6 / 12, "feet"),
  15032. weight: math.unit(200, "lb"),
  15033. name: "Dressed",
  15034. image: {
  15035. source: "./media/characters/vivian-bijoux/dressed.svg",
  15036. extra: 1217/1209,
  15037. bottom: 76/1293
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5 + 6 / 12, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Bad Dream",
  15049. height: math.unit(500, "feet")
  15050. },
  15051. {
  15052. name: "Nightmare",
  15053. height: math.unit(500, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6 + 1 / 12, "feet"),
  15062. weight: math.unit(260, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/zeta/front.svg",
  15066. extra: 1968 / 1889,
  15067. bottom: 0.06
  15068. }
  15069. },
  15070. back: {
  15071. height: math.unit(6 + 1 / 12, "feet"),
  15072. weight: math.unit(260, "lb"),
  15073. name: "Back",
  15074. image: {
  15075. source: "./media/characters/zeta/back.svg",
  15076. extra: 1944 / 1858,
  15077. bottom: 0.03
  15078. }
  15079. },
  15080. hand: {
  15081. height: math.unit(1.112, "feet"),
  15082. name: "Hand",
  15083. image: {
  15084. source: "./media/characters/zeta/hand.svg"
  15085. }
  15086. },
  15087. foot: {
  15088. height: math.unit(1.48, "feet"),
  15089. name: "Foot",
  15090. image: {
  15091. source: "./media/characters/zeta/foot.svg"
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Micro",
  15098. height: math.unit(6, "inches")
  15099. },
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(6 + 1 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(20, "feet")
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(150, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/jamie-larsen/front.svg",
  15120. extra: 962 / 933,
  15121. bottom: 0.02
  15122. }
  15123. },
  15124. back: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Back",
  15128. image: {
  15129. source: "./media/characters/jamie-larsen/back.svg",
  15130. extra: 997 / 946
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(28 + 7 / 12, "feet"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro+",
  15142. height: math.unit(180, "feet")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(10, "miles")
  15147. },
  15148. {
  15149. name: "Gigamacro",
  15150. height: math.unit(200000, "miles")
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(120, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/vance/front.svg",
  15163. extra: 1980 / 1890,
  15164. bottom: 0.09
  15165. }
  15166. },
  15167. back: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(120, "lb"),
  15170. name: "Back",
  15171. image: {
  15172. source: "./media/characters/vance/back.svg",
  15173. extra: 2081 / 1994,
  15174. bottom: 0.014
  15175. }
  15176. },
  15177. hand: {
  15178. height: math.unit(0.88, "feet"),
  15179. name: "Hand",
  15180. image: {
  15181. source: "./media/characters/vance/hand.svg"
  15182. }
  15183. },
  15184. foot: {
  15185. height: math.unit(0.64, "feet"),
  15186. name: "Foot",
  15187. image: {
  15188. source: "./media/characters/vance/foot.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Small",
  15195. height: math.unit(90, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(100, "meters")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(15, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(180, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/xochitl/front.svg",
  15217. extra: 2297 / 2261,
  15218. bottom: 0.065
  15219. }
  15220. },
  15221. back: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(180, "lb"),
  15224. name: "Back",
  15225. image: {
  15226. source: "./media/characters/xochitl/back.svg",
  15227. extra: 2386 / 2354,
  15228. bottom: 0.01
  15229. }
  15230. },
  15231. foot: {
  15232. height: math.unit(6 / 5 * 1.15, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Foot",
  15235. image: {
  15236. source: "./media/characters/xochitl/foot.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(80, "feet")
  15244. },
  15245. {
  15246. name: "Macro+",
  15247. height: math.unit(400, "feet"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Gigamacro",
  15252. height: math.unit(80000, "miles")
  15253. },
  15254. {
  15255. name: "Gigamacro+",
  15256. height: math.unit(400000, "miles")
  15257. },
  15258. {
  15259. name: "Teramacro",
  15260. height: math.unit(300, "AU")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/vincent/front.svg",
  15273. extra: 1130 / 1080,
  15274. bottom: 0.055
  15275. }
  15276. },
  15277. beak: {
  15278. height: math.unit(6 * 0.1, "feet"),
  15279. name: "Beak",
  15280. image: {
  15281. source: "./media/characters/vincent/beak.svg"
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(6 * 0.85, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Hand",
  15288. image: {
  15289. source: "./media/characters/vincent/hand.svg"
  15290. }
  15291. },
  15292. foot: {
  15293. height: math.unit(6 * 0.19, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Foot",
  15296. image: {
  15297. source: "./media/characters/vincent/foot.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Base",
  15304. height: math.unit(6 + 5 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(300, "feet")
  15310. },
  15311. {
  15312. name: "Megamacro",
  15313. height: math.unit(2, "miles")
  15314. },
  15315. {
  15316. name: "Gigamacro",
  15317. height: math.unit(1000, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(2, "meters"),
  15326. weight: math.unit(500, "kg"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/coatl/front.svg",
  15330. extra: 3948 / 3500,
  15331. bottom: 0.082
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(4, "meters")
  15339. },
  15340. {
  15341. name: "Macro",
  15342. height: math.unit(100, "meters"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro+",
  15347. height: math.unit(300, "meters")
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(3, "gigameters")
  15352. },
  15353. {
  15354. name: "Megamacro+",
  15355. height: math.unit(300, "terameters")
  15356. },
  15357. {
  15358. name: "Megamacro++",
  15359. height: math.unit(3, "lightyears")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(50, "kg"),
  15369. name: "front",
  15370. image: {
  15371. source: "./media/characters/shiroryu/front.svg",
  15372. extra: 1990 / 1935
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Mortal Mingling",
  15379. height: math.unit(3, "meters")
  15380. },
  15381. {
  15382. name: "Kaiju-ish",
  15383. height: math.unit(250, "meters")
  15384. },
  15385. {
  15386. name: "Somewhat Godly",
  15387. height: math.unit(400, "km"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Planetary",
  15392. height: math.unit(300, "megameters")
  15393. },
  15394. {
  15395. name: "Galaxy-dwarfing",
  15396. height: math.unit(450, "kiloparsecs")
  15397. },
  15398. {
  15399. name: "Universe Eater",
  15400. height: math.unit(150, "gigaparsecs")
  15401. },
  15402. {
  15403. name: "Almost Immeasurable",
  15404. height: math.unit(1.3e266, "yottaparsecs")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/umeko/front.svg",
  15417. extra: 1,
  15418. bottom: 0.019
  15419. }
  15420. },
  15421. frontArmored: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(150, "lb"),
  15424. name: "Front (Armored)",
  15425. image: {
  15426. source: "./media/characters/umeko/front-armored.svg",
  15427. extra: 1,
  15428. bottom: 0.021
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(220, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Guardian Dragon",
  15440. height: math.unit(50, "miles")
  15441. },
  15442. {
  15443. name: "Cosmic",
  15444. height: math.unit(800000, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/cassidy/front.svg",
  15457. extra: 810/808,
  15458. bottom: 41/851
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Canon Height",
  15465. height: math.unit(120, "feet"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Macro+",
  15470. height: math.unit(400, "feet")
  15471. },
  15472. {
  15473. name: "Macro++",
  15474. height: math.unit(4000, "feet")
  15475. },
  15476. {
  15477. name: "Megamacro",
  15478. height: math.unit(3, "miles")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/isaac/front.svg",
  15491. extra: 896 / 815,
  15492. bottom: 0.11
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Human Size",
  15499. height: math.unit(8, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Macro",
  15504. height: math.unit(400, "feet")
  15505. },
  15506. {
  15507. name: "Megamacro",
  15508. height: math.unit(50, "miles")
  15509. },
  15510. {
  15511. name: "Canon Height",
  15512. height: math.unit(200, "AU")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(72, "kg"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/sleekit/front.svg",
  15525. extra: 4693 / 4487,
  15526. bottom: 0.012
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Minimum Height",
  15533. height: math.unit(10, "meters")
  15534. },
  15535. {
  15536. name: "Smaller",
  15537. height: math.unit(25, "meters")
  15538. },
  15539. {
  15540. name: "Larger",
  15541. height: math.unit(38, "meters"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Maximum height",
  15546. height: math.unit(100, "meters")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(150, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/nillia/front.svg",
  15559. extra: 2195 / 2037,
  15560. bottom: 0.005
  15561. }
  15562. },
  15563. back: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Back",
  15567. image: {
  15568. source: "./media/characters/nillia/back.svg",
  15569. extra: 2195 / 2037,
  15570. bottom: 0.005
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Canon Height",
  15577. height: math.unit(489, "feet"),
  15578. default: true
  15579. }
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(150, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/mesmyriza/front.svg",
  15591. extra: 2067 / 1784,
  15592. bottom: 0.035
  15593. }
  15594. },
  15595. foot: {
  15596. height: math.unit(6 / (250 / 35), "feet"),
  15597. name: "Foot",
  15598. image: {
  15599. source: "./media/characters/mesmyriza/foot.svg"
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(457, "meters"),
  15607. default: true
  15608. },
  15609. {
  15610. name: "Megamacro",
  15611. height: math.unit(8, "megameters")
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(250, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/saudade/front.svg",
  15624. extra: 1172 / 1139,
  15625. bottom: 0.035
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Micro",
  15632. height: math.unit(3, "inches")
  15633. },
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(6, "feet"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Macro",
  15641. height: math.unit(50, "feet")
  15642. },
  15643. {
  15644. name: "Megamacro",
  15645. height: math.unit(2800, "feet")
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(5 + 4 / 12, "feet"),
  15654. weight: math.unit(100, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/keireer/front.svg",
  15658. extra: 716 / 666,
  15659. bottom: 0.05
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(5 + 4 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(5.5, "feet"),
  15676. weight: math.unit(90, "kg"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/mirja/front.svg",
  15680. extra: 1452/1262,
  15681. bottom: 67/1519
  15682. }
  15683. },
  15684. frontDressed: {
  15685. height: math.unit(5.5, "feet"),
  15686. weight: math.unit(90, "lb"),
  15687. name: "Front (Dressed)",
  15688. image: {
  15689. source: "./media/characters/mirja/dressed.svg",
  15690. extra: 1452/1262,
  15691. bottom: 67/1519
  15692. }
  15693. },
  15694. back: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(90, "lb"),
  15697. name: "Back",
  15698. image: {
  15699. source: "./media/characters/mirja/back.svg",
  15700. extra: 1892/1795,
  15701. bottom: 48/1940
  15702. }
  15703. },
  15704. maw: {
  15705. height: math.unit(1.312, "feet"),
  15706. name: "Maw",
  15707. image: {
  15708. source: "./media/characters/mirja/maw.svg"
  15709. }
  15710. },
  15711. paw: {
  15712. height: math.unit(1.15, "feet"),
  15713. name: "Paw",
  15714. image: {
  15715. source: "./media/characters/mirja/paw.svg"
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "\"Incognito\"",
  15722. height: math.unit(3, "meters")
  15723. },
  15724. {
  15725. name: "Strolling Size",
  15726. height: math.unit(15, "km")
  15727. },
  15728. {
  15729. name: "Larger Strolling Size",
  15730. height: math.unit(400, "km")
  15731. },
  15732. {
  15733. name: "Preferred Size",
  15734. height: math.unit(5000, "km"),
  15735. default: true
  15736. },
  15737. {
  15738. name: "True Size",
  15739. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(15, "feet"),
  15748. weight: math.unit(880, "kg"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/nightraver/front.svg",
  15752. extra: 2444 / 2160,
  15753. bottom: 0.027
  15754. }
  15755. },
  15756. back: {
  15757. height: math.unit(15, "feet"),
  15758. weight: math.unit(880, "kg"),
  15759. name: "Back",
  15760. image: {
  15761. source: "./media/characters/nightraver/back.svg",
  15762. extra: 2309 / 2180,
  15763. bottom: 0.005
  15764. }
  15765. },
  15766. sole: {
  15767. height: math.unit(2.878, "feet"),
  15768. name: "Sole",
  15769. image: {
  15770. source: "./media/characters/nightraver/sole.svg"
  15771. }
  15772. },
  15773. foot: {
  15774. height: math.unit(2.285, "feet"),
  15775. name: "Foot",
  15776. image: {
  15777. source: "./media/characters/nightraver/foot.svg"
  15778. }
  15779. },
  15780. maw: {
  15781. height: math.unit(2.67, "feet"),
  15782. name: "Maw",
  15783. image: {
  15784. source: "./media/characters/nightraver/maw.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Micro",
  15791. height: math.unit(1, "cm")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(15, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(300, "feet")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(300, "miles")
  15805. },
  15806. {
  15807. name: "Gigamacro",
  15808. height: math.unit(10000, "miles")
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15814. {
  15815. side: {
  15816. height: math.unit(2, "inches"),
  15817. weight: math.unit(5, "grams"),
  15818. name: "Side",
  15819. image: {
  15820. source: "./media/characters/arc/side.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Micro",
  15827. height: math.unit(2, "inches"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(1.1938, "meters"),
  15837. weight: math.unit(54, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/nebula-shahar/front.svg",
  15841. extra: 1642 / 1436,
  15842. bottom: 0.06
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Megamicro",
  15849. height: math.unit(0.3, "mm")
  15850. },
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(3, "cm")
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(138, "cm"),
  15858. default: true
  15859. },
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(30, "m")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(5.24, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/shayla/front.svg",
  15875. extra: 1512 / 1414,
  15876. bottom: 0.01
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(5.24, "feet"),
  15881. weight: math.unit(150, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/shayla/back.svg",
  15885. extra: 1512 / 1414
  15886. }
  15887. },
  15888. hand: {
  15889. height: math.unit(0.7781496062992126, "feet"),
  15890. name: "Hand",
  15891. image: {
  15892. source: "./media/characters/shayla/hand.svg"
  15893. }
  15894. },
  15895. foot: {
  15896. height: math.unit(1.4206036745406823, "feet"),
  15897. name: "Foot",
  15898. image: {
  15899. source: "./media/characters/shayla/foot.svg"
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(0.32, "feet")
  15907. },
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5.24, "feet"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(492.12, "feet")
  15916. },
  15917. {
  15918. name: "Megamacro",
  15919. height: math.unit(186.41, "miles")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(2.2, "m"),
  15928. weight: math.unit(120, "kg"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/pia-jr/front.svg",
  15932. extra: 1000 / 970,
  15933. bottom: 0.035
  15934. }
  15935. },
  15936. hand: {
  15937. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15938. name: "Hand",
  15939. image: {
  15940. source: "./media/characters/pia-jr/hand.svg"
  15941. }
  15942. },
  15943. paw: {
  15944. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15945. name: "Paw",
  15946. image: {
  15947. source: "./media/characters/pia-jr/paw.svg"
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Micro",
  15954. height: math.unit(1.2, "cm")
  15955. },
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(2.2, "m"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Macro",
  15963. height: math.unit(180, "m")
  15964. },
  15965. {
  15966. name: "Megamacro",
  15967. height: math.unit(420, "km")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(2, "m"),
  15976. weight: math.unit(115, "kg"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/pia-sr/front.svg",
  15980. extra: 760 / 730,
  15981. bottom: 0.015
  15982. }
  15983. },
  15984. back: {
  15985. height: math.unit(2, "m"),
  15986. weight: math.unit(115, "kg"),
  15987. name: "Back",
  15988. image: {
  15989. source: "./media/characters/pia-sr/back.svg",
  15990. extra: 760 / 730,
  15991. bottom: 0.01
  15992. }
  15993. },
  15994. hand: {
  15995. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15996. name: "Hand",
  15997. image: {
  15998. source: "./media/characters/pia-sr/hand.svg"
  15999. }
  16000. },
  16001. foot: {
  16002. height: math.unit(1.83, "feet"),
  16003. name: "Foot",
  16004. image: {
  16005. source: "./media/characters/pia-sr/foot.svg"
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Micro",
  16012. height: math.unit(88, "mm")
  16013. },
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(2, "m"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(200, "m")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(420, "km")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(8 + 2 / 12, "feet"),
  16034. weight: math.unit(300, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/kibibyte/front.svg",
  16038. extra: 2221 / 2098,
  16039. bottom: 0.04
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(8 + 2 / 12, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Socialable Macro",
  16051. height: math.unit(50, "feet")
  16052. },
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(300, "feet")
  16056. },
  16057. {
  16058. name: "Megamacro",
  16059. height: math.unit(500, "miles")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/felix/front.svg",
  16072. extra: 762 / 722,
  16073. bottom: 0.02
  16074. }
  16075. },
  16076. frontClothed: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front (Clothed)",
  16080. image: {
  16081. source: "./media/characters/felix/front-clothed.svg",
  16082. extra: 762 / 722,
  16083. bottom: 0.02
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(6 + 8 / 12, "feet"),
  16091. default: true
  16092. },
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(2600, "feet")
  16096. },
  16097. {
  16098. name: "Megamacro",
  16099. height: math.unit(450, "miles")
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(6 + 1 / 12, "feet"),
  16108. weight: math.unit(250, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/tobo/front.svg",
  16112. extra: 608 / 586,
  16113. bottom: 0.023
  16114. }
  16115. },
  16116. back: {
  16117. height: math.unit(6 + 1 / 12, "feet"),
  16118. weight: math.unit(250, "lb"),
  16119. name: "Back",
  16120. image: {
  16121. source: "./media/characters/tobo/back.svg",
  16122. extra: 608 / 586
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Nano",
  16129. height: math.unit(2, "nm")
  16130. },
  16131. {
  16132. name: "Megamicro",
  16133. height: math.unit(0.1, "mm")
  16134. },
  16135. {
  16136. name: "Micro",
  16137. height: math.unit(1, "inch"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Human-sized",
  16142. height: math.unit(6 + 1 / 12, "feet")
  16143. },
  16144. {
  16145. name: "Macro",
  16146. height: math.unit(250, "feet")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(75, "miles")
  16151. },
  16152. {
  16153. name: "Texas-sized",
  16154. height: math.unit(750, "miles")
  16155. },
  16156. {
  16157. name: "Teramacro",
  16158. height: math.unit(50000, "miles")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(269, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/danny-kapowsky/front.svg",
  16171. extra: 766 / 736,
  16172. bottom: 0.044
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(269, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/danny-kapowsky/back.svg",
  16181. extra: 797 / 760,
  16182. bottom: 0.025
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(150, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro+",
  16194. height: math.unit(200, "feet")
  16195. },
  16196. {
  16197. name: "Macro++",
  16198. height: math.unit(300, "feet")
  16199. },
  16200. {
  16201. name: "Macro+++",
  16202. height: math.unit(400, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16208. {
  16209. side: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(170, "lb"),
  16212. name: "Side",
  16213. image: {
  16214. source: "./media/characters/finn/side.svg",
  16215. extra: 1953 / 1807,
  16216. bottom: 0.057
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(14445, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 6 / 12, "feet"),
  16233. weight: math.unit(125, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/roy/front.svg",
  16237. extra: 1,
  16238. bottom: 0.11
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Micro",
  16245. height: math.unit(3, "inches"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(5 + 6 / 12, "feet")
  16251. },
  16252. {
  16253. name: "Lesser Macro",
  16254. height: math.unit(60, "feet")
  16255. },
  16256. {
  16257. name: "Greater Macro",
  16258. height: math.unit(120, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(100, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/aevsivs/front.svg",
  16271. extra: 1,
  16272. bottom: 0.03
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(100, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/aevsivs/back.svg"
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Micro",
  16287. height: math.unit(2, "inches"),
  16288. default: true
  16289. },
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(5, "feet")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 7 / 12, "feet"),
  16301. weight: math.unit(159, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/hildegard/front.svg",
  16305. extra: 289 / 269,
  16306. bottom: 7.63 / 297.8
  16307. }
  16308. },
  16309. back: {
  16310. height: math.unit(5 + 7 / 12, "feet"),
  16311. weight: math.unit(159, "lb"),
  16312. name: "Back",
  16313. image: {
  16314. source: "./media/characters/hildegard/back.svg",
  16315. extra: 280 / 260,
  16316. bottom: 2.3 / 282
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(5 + 7 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16330. {
  16331. bernard: {
  16332. height: math.unit(2 + 7 / 12, "feet"),
  16333. weight: math.unit(66, "lb"),
  16334. name: "Bernard",
  16335. rename: true,
  16336. image: {
  16337. source: "./media/characters/bernard-wilder/bernard.svg",
  16338. extra: 192 / 128,
  16339. bottom: 0.05
  16340. }
  16341. },
  16342. wilder: {
  16343. height: math.unit(5 + 8 / 12, "feet"),
  16344. weight: math.unit(143, "lb"),
  16345. name: "Wilder",
  16346. rename: true,
  16347. image: {
  16348. source: "./media/characters/bernard-wilder/wilder.svg",
  16349. extra: 361 / 312,
  16350. bottom: 0.02
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(2 + 7 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16364. {
  16365. anthro: {
  16366. height: math.unit(6 + 1 / 12, "feet"),
  16367. weight: math.unit(155, "lb"),
  16368. name: "Anthro",
  16369. image: {
  16370. source: "./media/characters/hearth/anthro.svg",
  16371. extra: 1178/1136,
  16372. bottom: 28/1206
  16373. }
  16374. },
  16375. feral: {
  16376. height: math.unit(3.78, "feet"),
  16377. weight: math.unit(35, "kg"),
  16378. name: "Feral",
  16379. image: {
  16380. source: "./media/characters/hearth/feral.svg",
  16381. extra: 153 / 135,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(6 + 1 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(182, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/ingrid/front.svg",
  16403. extra: 294 / 268,
  16404. bottom: 0.027
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16418. {
  16419. eevee: {
  16420. height: math.unit(2 + 10 / 12, "feet"),
  16421. weight: math.unit(86, "lb"),
  16422. name: "Malgam",
  16423. image: {
  16424. source: "./media/characters/malgam/eevee.svg",
  16425. extra: 952/784,
  16426. bottom: 38/990
  16427. }
  16428. },
  16429. sylveon: {
  16430. height: math.unit(4, "feet"),
  16431. weight: math.unit(101, "lb"),
  16432. name: "Future Malgam",
  16433. rename: true,
  16434. image: {
  16435. source: "./media/characters/malgam/sylveon.svg",
  16436. extra: 371 / 325,
  16437. bottom: 0.015
  16438. }
  16439. },
  16440. gigantamax: {
  16441. height: math.unit(50, "feet"),
  16442. name: "Gigantamax Malgam",
  16443. rename: true,
  16444. image: {
  16445. source: "./media/characters/malgam/gigantamax.svg"
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(2 + 10 / 12, "feet"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(5 + 11 / 12, "feet"),
  16462. weight: math.unit(188, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/fleur/front.svg",
  16466. extra: 309 / 283,
  16467. bottom: 0.007
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(5 + 11 / 12, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(5 + 4 / 12, "feet"),
  16484. weight: math.unit(122, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/jude/front.svg",
  16488. extra: 288 / 273,
  16489. bottom: 0.03
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(5 + 4 / 12, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(5 + 11 / 12, "feet"),
  16506. weight: math.unit(190, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/seara/front.svg",
  16510. extra: 1,
  16511. bottom: 0.05
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(5 + 11 / 12, "feet"),
  16519. default: true
  16520. },
  16521. ]
  16522. ))
  16523. characterMakers.push(() => makeCharacter(
  16524. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16525. {
  16526. front: {
  16527. height: math.unit(16 + 5 / 12, "feet"),
  16528. weight: math.unit(524, "lb"),
  16529. name: "Front",
  16530. image: {
  16531. source: "./media/characters/caspian-lugia/front.svg",
  16532. extra: 1,
  16533. bottom: 0.04
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Normal",
  16540. height: math.unit(16 + 5 / 12, "feet"),
  16541. default: true
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(5 + 7 / 12, "feet"),
  16550. weight: math.unit(170, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/mika/front.svg",
  16554. extra: 1,
  16555. bottom: 0.016
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(5 + 7 / 12, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(6 + 2 / 12, "feet"),
  16572. weight: math.unit(268, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/sol/front.svg",
  16576. extra: 247 / 231,
  16577. bottom: 0.05
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 2 / 12, "feet"),
  16585. default: true
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16591. {
  16592. buizel: {
  16593. height: math.unit(2 + 5 / 12, "feet"),
  16594. weight: math.unit(87, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/umiko/buizel.svg",
  16598. extra: 172 / 157,
  16599. bottom: 0.01
  16600. },
  16601. form: "buizel",
  16602. default: true
  16603. },
  16604. floatzel: {
  16605. height: math.unit(5 + 9 / 12, "feet"),
  16606. weight: math.unit(250, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/umiko/floatzel.svg",
  16610. extra: 1076/1006,
  16611. bottom: 15/1091
  16612. },
  16613. form: "floatzel",
  16614. default: true
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(2 + 5 / 12, "feet"),
  16621. form: "buizel",
  16622. default: true
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5 + 9 / 12, "feet"),
  16627. form: "floatzel",
  16628. default: true
  16629. },
  16630. ],
  16631. {
  16632. "buizel": {
  16633. name: "Buizel"
  16634. },
  16635. "floatzel": {
  16636. name: "Floatzel",
  16637. default: true
  16638. }
  16639. }
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(6 + 2 / 12, "feet"),
  16646. weight: math.unit(146, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/iliac/front.svg",
  16650. extra: 389 / 365,
  16651. bottom: 0.035
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(6 + 2 / 12, "feet"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(170, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/topaz/front.svg",
  16672. extra: 317 / 303,
  16673. bottom: 0.055
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(6, "feet"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(5 + 11 / 12, "feet"),
  16690. weight: math.unit(144, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/gabriel/front.svg",
  16694. extra: 285 / 262,
  16695. bottom: 0.004
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(5 + 11 / 12, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16709. {
  16710. side: {
  16711. height: math.unit(6 + 5 / 12, "feet"),
  16712. weight: math.unit(300, "lb"),
  16713. name: "Side",
  16714. image: {
  16715. source: "./media/characters/tempest-suicune/side.svg",
  16716. extra: 195 / 154,
  16717. bottom: 0.04
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(6 + 5 / 12, "feet"),
  16725. default: true
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(7 + 2 / 12, "feet"),
  16734. weight: math.unit(322, "lb"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/vulcan/front.svg",
  16738. extra: 154 / 147,
  16739. bottom: 0.04
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(7 + 2 / 12, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(5 + 10 / 12, "feet"),
  16756. weight: math.unit(264, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/gault/front.svg",
  16760. extra: 161 / 140,
  16761. bottom: 0.028
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(5 + 10 / 12, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/shard/front.svg",
  16782. extra: 273 / 238,
  16783. bottom: 0.02
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(3 + 6 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 11 / 12, "feet"),
  16800. weight: math.unit(146, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/ashe/front.svg",
  16804. extra: 400 / 373,
  16805. bottom: 0.01
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(5 + 11 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(5 + 5 / 12, "feet"),
  16822. weight: math.unit(135, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/beatrix/front.svg",
  16826. extra: 392 / 379,
  16827. bottom: 0.01
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(6 + 2/12, "feet"),
  16844. weight: math.unit(135, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/ignatius/front.svg",
  16848. extra: 1380/1259,
  16849. bottom: 27/1407
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(6 + 2/12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6 + 2 / 12, "feet"),
  16866. weight: math.unit(138, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/mei-li/front.svg",
  16870. extra: 237 / 229,
  16871. bottom: 0.03
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(6 + 2 / 12, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(2 + 4 / 12, "feet"),
  16888. weight: math.unit(62, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/puru/front.svg",
  16892. extra: 206 / 149,
  16893. bottom: 0.06
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(2 + 4 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16907. {
  16908. anthro: {
  16909. height: math.unit(5 + 8/12, "feet"),
  16910. weight: math.unit(200, "lb"),
  16911. energyNeed: math.unit(2000, "kcal"),
  16912. name: "Anthro",
  16913. image: {
  16914. source: "./media/characters/kee/anthro.svg",
  16915. extra: 3251/3184,
  16916. bottom: 250/3501
  16917. }
  16918. },
  16919. taur: {
  16920. height: math.unit(11, "feet"),
  16921. weight: math.unit(500, "lb"),
  16922. energyNeed: math.unit(5000, "kcal"),
  16923. name: "Taur",
  16924. image: {
  16925. source: "./media/characters/kee/taur.svg",
  16926. extra: 1362/1320,
  16927. bottom: 83/1445
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(5 + 8/12, "feet"),
  16935. default: true
  16936. },
  16937. {
  16938. name: "Macro",
  16939. height: math.unit(35, "feet")
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16945. {
  16946. anthro: {
  16947. height: math.unit(7, "feet"),
  16948. weight: math.unit(190, "lb"),
  16949. name: "Anthro",
  16950. image: {
  16951. source: "./media/characters/cobalt-dracha/anthro.svg",
  16952. extra: 231 / 225,
  16953. bottom: 0.04
  16954. }
  16955. },
  16956. feral: {
  16957. height: math.unit(9 + 7 / 12, "feet"),
  16958. weight: math.unit(294, "lb"),
  16959. name: "Feral",
  16960. image: {
  16961. source: "./media/characters/cobalt-dracha/feral.svg",
  16962. extra: 692 / 633,
  16963. bottom: 0.05
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(7, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16977. {
  16978. fallen: {
  16979. height: math.unit(11 + 8 / 12, "feet"),
  16980. weight: math.unit(485, "lb"),
  16981. name: "Java (Fallen)",
  16982. rename: true,
  16983. image: {
  16984. source: "./media/characters/java/fallen.svg",
  16985. extra: 226 / 208,
  16986. bottom: 0.005
  16987. }
  16988. },
  16989. godkin: {
  16990. height: math.unit(10 + 6 / 12, "feet"),
  16991. weight: math.unit(328, "lb"),
  16992. name: "Java (Godkin)",
  16993. rename: true,
  16994. image: {
  16995. source: "./media/characters/java/godkin.svg",
  16996. extra: 1104/1068,
  16997. bottom: 36/1140
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(11 + 8 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(5 + 9 / 12, "feet"),
  17014. weight: math.unit(170, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/purna/front.svg",
  17018. extra: 239 / 229,
  17019. bottom: 0.01
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(5 + 9 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17033. {
  17034. front: {
  17035. height: math.unit(5 + 9 / 12, "feet"),
  17036. weight: math.unit(142, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/kuva/front.svg",
  17040. extra: 281 / 271,
  17041. bottom: 0.006
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(5 + 9 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17055. {
  17056. anthro: {
  17057. height: math.unit(9 + 2 / 12, "feet"),
  17058. weight: math.unit(270, "lb"),
  17059. name: "Anthro",
  17060. image: {
  17061. source: "./media/characters/embra/anthro.svg",
  17062. extra: 200 / 187,
  17063. bottom: 0.02
  17064. }
  17065. },
  17066. feral: {
  17067. height: math.unit(18 + 8 / 12, "feet"),
  17068. weight: math.unit(576, "lb"),
  17069. name: "Feral",
  17070. image: {
  17071. source: "./media/characters/embra/feral.svg",
  17072. extra: 152 / 137,
  17073. bottom: 0.037
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(9 + 2 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17087. {
  17088. anthro: {
  17089. height: math.unit(10 + 9 / 12, "feet"),
  17090. weight: math.unit(224, "lb"),
  17091. name: "Anthro",
  17092. image: {
  17093. source: "./media/characters/grottos/anthro.svg",
  17094. extra: 350 / 332,
  17095. bottom: 0.045
  17096. }
  17097. },
  17098. feral: {
  17099. height: math.unit(20 + 7 / 12, "feet"),
  17100. weight: math.unit(629, "lb"),
  17101. name: "Feral",
  17102. image: {
  17103. source: "./media/characters/grottos/feral.svg",
  17104. extra: 207 / 190,
  17105. bottom: 0.05
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(10 + 9 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17119. {
  17120. anthro: {
  17121. height: math.unit(9 + 6 / 12, "feet"),
  17122. weight: math.unit(298, "lb"),
  17123. name: "Anthro",
  17124. image: {
  17125. source: "./media/characters/frifna/anthro.svg",
  17126. extra: 282 / 269,
  17127. bottom: 0.015
  17128. }
  17129. },
  17130. feral: {
  17131. height: math.unit(16 + 2 / 12, "feet"),
  17132. weight: math.unit(624, "lb"),
  17133. name: "Feral",
  17134. image: {
  17135. source: "./media/characters/frifna/feral.svg"
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(9 + 6 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(6 + 2 / 12, "feet"),
  17152. weight: math.unit(168, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/elise/front.svg",
  17156. extra: 276 / 271
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(6 + 2 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17170. {
  17171. front: {
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. weight: math.unit(210, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/glade/front.svg",
  17177. extra: 258 / 247,
  17178. bottom: 0.008
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(5 + 10 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(5 + 10 / 12, "feet"),
  17195. weight: math.unit(129, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/rina/front.svg",
  17199. extra: 266 / 255,
  17200. bottom: 0.005
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(5 + 10 / 12, "feet"),
  17208. default: true
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(6 + 1 / 12, "feet"),
  17217. weight: math.unit(192, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/veronica/front.svg",
  17221. extra: 319 / 309,
  17222. bottom: 0.005
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(6 + 1 / 12, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(9 + 3 / 12, "feet"),
  17239. weight: math.unit(1100, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/braxton/front.svg",
  17243. extra: 1057 / 984,
  17244. bottom: 0.05
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(9 + 3 / 12, "feet")
  17252. },
  17253. {
  17254. name: "Giant",
  17255. height: math.unit(300, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(700, "feet")
  17261. },
  17262. {
  17263. name: "Megamacro",
  17264. height: math.unit(6000, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6 + 7 / 12, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/blue-feyonics/front.svg",
  17277. extra: 1403 / 1306,
  17278. bottom: 0.047
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6 + 7 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(1.8, "meters"),
  17295. weight: math.unit(60, "kg"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/maxwell/front.svg",
  17299. extra: 2060 / 1873
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Micro",
  17306. height: math.unit(1, "mm")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(1.8, "meter"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(30, "meters")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(10, "km")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(150, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/jack/front.svg",
  17332. extra: 1754 / 1640,
  17333. bottom: 0.01
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(80000, "feet"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Max size",
  17345. height: math.unit(10, "lightyears")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17351. {
  17352. urban: {
  17353. height: math.unit(5, "feet"),
  17354. weight: math.unit(240, "lb"),
  17355. name: "Urban",
  17356. image: {
  17357. source: "./media/characters/cafat/urban.svg",
  17358. extra: 1223/1126,
  17359. bottom: 205/1428
  17360. }
  17361. },
  17362. summer: {
  17363. height: math.unit(5, "feet"),
  17364. weight: math.unit(240, "lb"),
  17365. name: "Summer",
  17366. image: {
  17367. source: "./media/characters/cafat/summer.svg",
  17368. extra: 1223/1126,
  17369. bottom: 205/1428
  17370. }
  17371. },
  17372. winter: {
  17373. height: math.unit(5, "feet"),
  17374. weight: math.unit(240, "lb"),
  17375. name: "Winter",
  17376. image: {
  17377. source: "./media/characters/cafat/winter.svg",
  17378. extra: 1223/1126,
  17379. bottom: 205/1428
  17380. }
  17381. },
  17382. lingerie: {
  17383. height: math.unit(5, "feet"),
  17384. weight: math.unit(240, "lb"),
  17385. name: "Lingerie",
  17386. image: {
  17387. source: "./media/characters/cafat/lingerie.svg",
  17388. extra: 1223/1126,
  17389. bottom: 205/1428
  17390. }
  17391. },
  17392. upright: {
  17393. height: math.unit(6.3, "feet"),
  17394. weight: math.unit(240, "lb"),
  17395. name: "Upright",
  17396. image: {
  17397. source: "./media/characters/cafat/upright.svg",
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. uprightFull: {
  17402. height: math.unit(6.3, "feet"),
  17403. weight: math.unit(240, "lb"),
  17404. name: "Upright (Full)",
  17405. image: {
  17406. source: "./media/characters/cafat/upright-full.svg",
  17407. bottom: 0.01
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Small",
  17414. height: math.unit(5, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Large",
  17419. height: math.unit(13, "feet")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(150, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/verin-raharra/front.svg",
  17432. extra: 5019 / 4835,
  17433. bottom: 0.023
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(7 + 5 / 12, "feet"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Upsized",
  17445. height: math.unit(20, "feet")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(7, "feet"),
  17454. weight: math.unit(230, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/nakata/front.svg",
  17458. extra: 1.005,
  17459. bottom: 0.01
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(7, "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Big",
  17471. height: math.unit(14, "feet")
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(400, "feet")
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(4.91, "feet"),
  17484. weight: math.unit(100, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/lily/front.svg",
  17488. extra: 1585 / 1415,
  17489. bottom: 0.02
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(4.91, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17503. {
  17504. laying: {
  17505. height: math.unit(4 + 4 / 12, "feet"),
  17506. weight: math.unit(600, "lb"),
  17507. name: "Laying",
  17508. image: {
  17509. source: "./media/characters/sheila/laying.svg",
  17510. extra: 1333 / 1265,
  17511. bottom: 0.16
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 4 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(6, "feet"),
  17528. weight: math.unit(190, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/sax/front.svg",
  17532. extra: 1187 / 973,
  17533. bottom: 0.042
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(4, "inches"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(150, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/pandora/front.svg",
  17554. extra: 2720 / 2556,
  17555. bottom: 0.015
  17556. }
  17557. },
  17558. back: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Back",
  17562. image: {
  17563. source: "./media/characters/pandora/back.svg",
  17564. extra: 2720 / 2556,
  17565. bottom: 0.01
  17566. }
  17567. },
  17568. beans: {
  17569. height: math.unit(6 / 8, "feet"),
  17570. name: "Beans",
  17571. image: {
  17572. source: "./media/characters/pandora/beans.svg"
  17573. }
  17574. },
  17575. collar: {
  17576. height: math.unit(0.31, "feet"),
  17577. name: "Collar",
  17578. image: {
  17579. source: "./media/characters/pandora/collar.svg"
  17580. }
  17581. },
  17582. skirt: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(150, "lb"),
  17585. name: "Skirt",
  17586. image: {
  17587. source: "./media/characters/pandora/skirt.svg",
  17588. extra: 1622 / 1525,
  17589. bottom: 0.015
  17590. }
  17591. },
  17592. hoodie: {
  17593. height: math.unit(6, "feet"),
  17594. weight: math.unit(150, "lb"),
  17595. name: "Hoodie",
  17596. image: {
  17597. source: "./media/characters/pandora/hoodie.svg",
  17598. extra: 1622 / 1525,
  17599. bottom: 0.015
  17600. }
  17601. },
  17602. casual: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(150, "lb"),
  17605. name: "Casual",
  17606. image: {
  17607. source: "./media/characters/pandora/casual.svg",
  17608. extra: 1622 / 1525,
  17609. bottom: 0.015
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(6, "feet")
  17617. },
  17618. {
  17619. name: "Big Steppy",
  17620. height: math.unit(1, "km"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Galactic Steppy",
  17625. height: math.unit(2, "gigameters")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17631. {
  17632. side: {
  17633. height: math.unit(10, "feet"),
  17634. weight: math.unit(800, "kg"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/venio-darcony/side.svg",
  17638. extra: 1373 / 1003,
  17639. bottom: 0.037
  17640. }
  17641. },
  17642. front: {
  17643. height: math.unit(19, "feet"),
  17644. weight: math.unit(800, "kg"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/venio-darcony/front.svg"
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(19, "feet"),
  17652. weight: math.unit(800, "kg"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/venio-darcony/back.svg"
  17656. }
  17657. },
  17658. sideNsfw: {
  17659. height: math.unit(10, "feet"),
  17660. weight: math.unit(800, "kg"),
  17661. name: "Side (NSFW)",
  17662. image: {
  17663. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17664. extra: 1373 / 1003,
  17665. bottom: 0.037
  17666. }
  17667. },
  17668. frontNsfw: {
  17669. height: math.unit(19, "feet"),
  17670. weight: math.unit(800, "kg"),
  17671. name: "Front (NSFW)",
  17672. image: {
  17673. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17674. }
  17675. },
  17676. backNsfw: {
  17677. height: math.unit(19, "feet"),
  17678. weight: math.unit(800, "kg"),
  17679. name: "Back (NSFW)",
  17680. image: {
  17681. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17682. }
  17683. },
  17684. sideArmored: {
  17685. height: math.unit(10, "feet"),
  17686. weight: math.unit(800, "kg"),
  17687. name: "Side (Armored)",
  17688. image: {
  17689. source: "./media/characters/venio-darcony/side-armored.svg",
  17690. extra: 1373 / 1003,
  17691. bottom: 0.037
  17692. }
  17693. },
  17694. frontArmored: {
  17695. height: math.unit(19, "feet"),
  17696. weight: math.unit(900, "kg"),
  17697. name: "Front (Armored)",
  17698. image: {
  17699. source: "./media/characters/venio-darcony/front-armored.svg"
  17700. }
  17701. },
  17702. backArmored: {
  17703. height: math.unit(19, "feet"),
  17704. weight: math.unit(900, "kg"),
  17705. name: "Back (Armored)",
  17706. image: {
  17707. source: "./media/characters/venio-darcony/back-armored.svg"
  17708. }
  17709. },
  17710. sword: {
  17711. height: math.unit(10, "feet"),
  17712. weight: math.unit(50, "lb"),
  17713. name: "Sword",
  17714. image: {
  17715. source: "./media/characters/venio-darcony/sword.svg"
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(10, "feet")
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(130, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Macro+",
  17731. height: math.unit(240, "feet")
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(150, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/veski/front.svg",
  17744. extra: 1299 / 1225,
  17745. bottom: 0.04
  17746. }
  17747. },
  17748. back: {
  17749. height: math.unit(6, "feet"),
  17750. weight: math.unit(150, "lb"),
  17751. name: "Back",
  17752. image: {
  17753. source: "./media/characters/veski/back.svg",
  17754. extra: 1299 / 1225,
  17755. bottom: 0.008
  17756. }
  17757. },
  17758. maw: {
  17759. height: math.unit(1.5 * 1.21, "feet"),
  17760. name: "Maw",
  17761. image: {
  17762. source: "./media/characters/veski/maw.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Macro",
  17769. height: math.unit(2, "km"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(5 + 7 / 12, "feet"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/isabelle/front.svg",
  17782. extra: 2130 / 1976,
  17783. bottom: 0.05
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Supermicro",
  17790. height: math.unit(10, "micrometers")
  17791. },
  17792. {
  17793. name: "Micro",
  17794. height: math.unit(1, "inch")
  17795. },
  17796. {
  17797. name: "Tiny",
  17798. height: math.unit(5, "inches")
  17799. },
  17800. {
  17801. name: "Standard",
  17802. height: math.unit(5 + 7 / 12, "inches")
  17803. },
  17804. {
  17805. name: "Macro",
  17806. height: math.unit(80, "meters"),
  17807. default: true
  17808. },
  17809. {
  17810. name: "Megamacro",
  17811. height: math.unit(250, "meters")
  17812. },
  17813. {
  17814. name: "Gigamacro",
  17815. height: math.unit(5, "km")
  17816. },
  17817. {
  17818. name: "Cosmic",
  17819. height: math.unit(2.5e6, "miles")
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(6, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/hanzo/front.svg",
  17832. extra: 374 / 344,
  17833. bottom: 0.02
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(8, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(7, "feet"),
  17850. weight: math.unit(130, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/anna/front.svg",
  17854. extra: 169 / 145,
  17855. bottom: 0.06
  17856. }
  17857. },
  17858. full: {
  17859. height: math.unit(4.96, "feet"),
  17860. weight: math.unit(220, "lb"),
  17861. name: "Full",
  17862. image: {
  17863. source: "./media/characters/anna/full.svg",
  17864. extra: 138 / 114,
  17865. bottom: 0.15
  17866. }
  17867. },
  17868. tongue: {
  17869. height: math.unit(2.53, "feet"),
  17870. name: "Tongue",
  17871. image: {
  17872. source: "./media/characters/anna/tongue.svg"
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(7, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(7, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/ian-corvid/front.svg",
  17893. extra: 150 / 142,
  17894. bottom: 0.02
  17895. }
  17896. },
  17897. back: {
  17898. height: math.unit(7, "feet"),
  17899. weight: math.unit(150, "lb"),
  17900. name: "Back",
  17901. image: {
  17902. source: "./media/characters/ian-corvid/back.svg",
  17903. extra: 150 / 143,
  17904. bottom: 0.01
  17905. }
  17906. },
  17907. stomping: {
  17908. height: math.unit(7, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Stomping",
  17911. image: {
  17912. source: "./media/characters/ian-corvid/stomping.svg",
  17913. extra: 76 / 72
  17914. }
  17915. },
  17916. sitting: {
  17917. height: math.unit(7 / 1.8, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Sitting",
  17920. image: {
  17921. source: "./media/characters/ian-corvid/sitting.svg",
  17922. extra: 1400 / 1269,
  17923. bottom: 0.15
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Tiny Microw",
  17930. height: math.unit(1, "inch")
  17931. },
  17932. {
  17933. name: "Microw",
  17934. height: math.unit(6, "inches")
  17935. },
  17936. {
  17937. name: "Crow",
  17938. height: math.unit(7 + 1 / 12, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macrow",
  17943. height: math.unit(176, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(5 + 7 / 12, "feet"),
  17952. weight: math.unit(147, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/natalie-kellon/front.svg",
  17956. extra: 1214 / 1141,
  17957. bottom: 0.02
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(1 / 16, "inch")
  17965. },
  17966. {
  17967. name: "Tiny",
  17968. height: math.unit(4, "inches")
  17969. },
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(5 + 7 / 12, "feet"),
  17973. default: true
  17974. },
  17975. {
  17976. name: "Amazon",
  17977. height: math.unit(12, "feet")
  17978. },
  17979. {
  17980. name: "Giantess",
  17981. height: math.unit(160, "meters")
  17982. },
  17983. {
  17984. name: "Titaness",
  17985. height: math.unit(800, "meters")
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(6, "feet"),
  17994. weight: math.unit(150, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/alluria/front.svg",
  17998. extra: 806 / 738,
  17999. bottom: 0.01
  18000. }
  18001. },
  18002. side: {
  18003. height: math.unit(6, "feet"),
  18004. weight: math.unit(150, "lb"),
  18005. name: "Side",
  18006. image: {
  18007. source: "./media/characters/alluria/side.svg",
  18008. extra: 800 / 750,
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(6, "feet"),
  18013. weight: math.unit(150, "lb"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/alluria/back.svg",
  18017. extra: 806 / 738,
  18018. }
  18019. },
  18020. frontMaid: {
  18021. height: math.unit(6, "feet"),
  18022. weight: math.unit(150, "lb"),
  18023. name: "Front (Maid)",
  18024. image: {
  18025. source: "./media/characters/alluria/front-maid.svg",
  18026. extra: 806 / 738,
  18027. bottom: 0.01
  18028. }
  18029. },
  18030. sideMaid: {
  18031. height: math.unit(6, "feet"),
  18032. weight: math.unit(150, "lb"),
  18033. name: "Side (Maid)",
  18034. image: {
  18035. source: "./media/characters/alluria/side-maid.svg",
  18036. extra: 800 / 750,
  18037. bottom: 0.005
  18038. }
  18039. },
  18040. backMaid: {
  18041. height: math.unit(6, "feet"),
  18042. weight: math.unit(150, "lb"),
  18043. name: "Back (Maid)",
  18044. image: {
  18045. source: "./media/characters/alluria/back-maid.svg",
  18046. extra: 806 / 738,
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(6, "inches"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(6, "feet"),
  18063. weight: math.unit(150, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/kyle/front.svg",
  18067. extra: 1069 / 962,
  18068. bottom: 77.228 / 1727.45
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(150, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(6, "feet"),
  18085. weight: math.unit(300, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/duncan/front.svg",
  18089. extra: 1650 / 1482,
  18090. bottom: 0.05
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(100, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(5 + 4 / 12, "feet"),
  18107. weight: math.unit(220, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/memory/front.svg",
  18111. extra: 3641 / 3545,
  18112. bottom: 0.03
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(5 + 4 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/memory/back.svg",
  18121. extra: 3641 / 3545,
  18122. bottom: 0.025
  18123. }
  18124. },
  18125. frontSkirt: {
  18126. height: math.unit(5 + 4 / 12, "feet"),
  18127. weight: math.unit(220, "lb"),
  18128. name: "Front (Skirt)",
  18129. image: {
  18130. source: "./media/characters/memory/front-skirt.svg",
  18131. extra: 3641 / 3545,
  18132. bottom: 0.03
  18133. }
  18134. },
  18135. frontDress: {
  18136. height: math.unit(5 + 4 / 12, "feet"),
  18137. weight: math.unit(220, "lb"),
  18138. name: "Front (Dress)",
  18139. image: {
  18140. source: "./media/characters/memory/front-dress.svg",
  18141. extra: 3641 / 3545,
  18142. bottom: 0.03
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(6, "inches"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(5 + 4 / 12, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(4 + 11 / 12, "feet"),
  18163. weight: math.unit(100, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/luno/front.svg",
  18167. extra: 1535 / 1487,
  18168. bottom: 0.03
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(3, "inches")
  18176. },
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(4 + 11 / 12, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(300, "feet")
  18185. },
  18186. {
  18187. name: "Megamacro",
  18188. height: math.unit(700, "miles")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(6 + 2 / 12, "feet"),
  18197. weight: math.unit(170, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/jamesy/front.svg",
  18201. extra: 440 / 382,
  18202. bottom: 0.005
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Micro",
  18209. height: math.unit(3, "inches")
  18210. },
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(6 + 2 / 12, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Macro",
  18218. height: math.unit(300, "feet")
  18219. },
  18220. {
  18221. name: "Megamacro",
  18222. height: math.unit(700, "miles")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(160, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/mark/front.svg",
  18235. extra: 3300 / 3100,
  18236. bottom: 136.42 / 3440.47
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Macro",
  18243. height: math.unit(120, "meters")
  18244. },
  18245. {
  18246. name: "Bigger Macro",
  18247. height: math.unit(350, "meters")
  18248. },
  18249. {
  18250. name: "Megamacro",
  18251. height: math.unit(8, "km"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Continental",
  18256. height: math.unit(4550, "km")
  18257. },
  18258. {
  18259. name: "Planetary",
  18260. height: math.unit(65000, "km")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(6, "feet"),
  18269. weight: math.unit(400, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/mac/front.svg",
  18273. extra: 1048 / 987.7,
  18274. bottom: 60 / 1107.6,
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(500, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(190, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/bari/front.svg",
  18295. extra: 3156 / 2880,
  18296. bottom: 0.03
  18297. }
  18298. },
  18299. back: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(190, "lb"),
  18302. name: "Back",
  18303. image: {
  18304. source: "./media/characters/bari/back.svg",
  18305. extra: 3260 / 2834,
  18306. bottom: 0.025
  18307. }
  18308. },
  18309. frontPlush: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(190, "lb"),
  18312. name: "Front (Plush)",
  18313. image: {
  18314. source: "./media/characters/bari/front-plush.svg",
  18315. extra: 1112 / 1061,
  18316. bottom: 0.002
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Micro",
  18323. height: math.unit(3, "inches")
  18324. },
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(5 + 2 / 12, "feet"),
  18328. default: true
  18329. },
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(20, "feet")
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(6 + 1 / 12, "feet"),
  18341. weight: math.unit(275, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/hunter-misha-raven/front.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Mortal",
  18351. height: math.unit(6 + 1 / 12, "feet")
  18352. },
  18353. {
  18354. name: "Divine",
  18355. height: math.unit(1.12134e34, "parsecs"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6 + 3 / 12, "feet"),
  18365. weight: math.unit(220, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/max-calore/front.svg",
  18369. extra: 1700 / 1648,
  18370. bottom: 0.01
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(6 + 3 / 12, "feet"),
  18375. weight: math.unit(220, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/max-calore/back.svg",
  18379. extra: 1700 / 1648,
  18380. bottom: 0.01
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(6 + 3 / 12, "feet"),
  18388. default: true
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18394. {
  18395. side: {
  18396. height: math.unit(2 + 8 / 12, "feet"),
  18397. weight: math.unit(99, "lb"),
  18398. name: "Side",
  18399. image: {
  18400. source: "./media/characters/aspen/side.svg",
  18401. extra: 152 / 138,
  18402. bottom: 0.032
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(2 + 8 / 12, "feet"),
  18410. default: true
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18416. {
  18417. side: {
  18418. height: math.unit(3 + 2 / 12, "feet"),
  18419. weight: math.unit(224, "lb"),
  18420. name: "Side",
  18421. image: {
  18422. source: "./media/characters/sheila-feral-wolf/side.svg",
  18423. extra: 179 / 166,
  18424. bottom: 0.03
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(3 + 2 / 12, "feet"),
  18432. default: true
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18438. {
  18439. side: {
  18440. height: math.unit(1 + 9 / 12, "feet"),
  18441. weight: math.unit(38, "lb"),
  18442. name: "Side",
  18443. image: {
  18444. source: "./media/characters/michelle/side.svg",
  18445. extra: 147 / 136.7,
  18446. bottom: 0.03
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(1 + 9 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(1.54, "feet"),
  18463. weight: math.unit(50, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/nino/front.svg"
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(1.54, "feet"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(1.49, "feet"),
  18483. weight: math.unit(45, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/viola/front.svg"
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(1.49, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(6 + 5 / 12, "feet"),
  18503. weight: math.unit(580, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/atlas/front.svg",
  18507. extra: 298.5 / 290,
  18508. bottom: 0.015
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(6 + 5 / 12, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18522. {
  18523. side: {
  18524. height: math.unit(15.6, "inches"),
  18525. weight: math.unit(10, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/davy/side.svg",
  18529. extra: 200 / 170,
  18530. bottom: 0.01
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(15.6, "inches"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18544. {
  18545. side: {
  18546. height: math.unit(4 + 8 / 12, "feet"),
  18547. weight: math.unit(166, "lb"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/fiona/side.svg",
  18551. extra: 232 / 220,
  18552. bottom: 0.03
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(4 + 8 / 12, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18566. {
  18567. front: {
  18568. height: math.unit(26, "inches"),
  18569. weight: math.unit(35, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/lyla/front.svg",
  18573. bottom: 0.1
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(3, "feet"),
  18581. default: true
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18587. {
  18588. side: {
  18589. height: math.unit(1.8, "feet"),
  18590. weight: math.unit(44, "lb"),
  18591. name: "Side",
  18592. image: {
  18593. source: "./media/characters/perseus/side.svg",
  18594. bottom: 0.21
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(1.8, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18608. {
  18609. side: {
  18610. height: math.unit(4 + 2 / 12, "feet"),
  18611. weight: math.unit(20, "lb"),
  18612. name: "Side",
  18613. image: {
  18614. source: "./media/characters/remus/side.svg"
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(4 + 2 / 12, "feet"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(4 + 11 / 12, "feet"),
  18631. weight: math.unit(114, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/raf/front.svg",
  18635. extra: 1504/1339,
  18636. bottom: 26/1530
  18637. }
  18638. },
  18639. side: {
  18640. height: math.unit(4 + 11 / 12, "feet"),
  18641. weight: math.unit(114, "lb"),
  18642. name: "Side",
  18643. image: {
  18644. source: "./media/characters/raf/side.svg",
  18645. extra: 1466/1316,
  18646. bottom: 29/1495
  18647. }
  18648. },
  18649. paw: {
  18650. height: math.unit(1.45, "feet"),
  18651. name: "Paw",
  18652. image: {
  18653. source: "./media/characters/raf/paw.svg"
  18654. },
  18655. extraAttributes: {
  18656. "toeSize": {
  18657. name: "Toe Size",
  18658. power: 2,
  18659. type: "area",
  18660. base: math.unit(0.004, "m^2")
  18661. },
  18662. "padSize": {
  18663. name: "Pad Size",
  18664. power: 2,
  18665. type: "area",
  18666. base: math.unit(0.04, "m^2")
  18667. },
  18668. "footSize": {
  18669. name: "Foot Size",
  18670. power: 2,
  18671. type: "area",
  18672. base: math.unit(0.08, "m^2")
  18673. },
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Micro",
  18680. height: math.unit(2, "inches")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(4 + 11 / 12, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(70, "feet")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(1.5, "meters"),
  18698. weight: math.unit(68, "kg"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/liam-einarr/front.svg",
  18702. extra: 2822 / 2666
  18703. }
  18704. },
  18705. back: {
  18706. height: math.unit(1.5, "meters"),
  18707. weight: math.unit(68, "kg"),
  18708. name: "Back",
  18709. image: {
  18710. source: "./media/characters/liam-einarr/back.svg",
  18711. extra: 2822 / 2666,
  18712. bottom: 0.015
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(1.5, "meters"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(150, "meters")
  18725. },
  18726. {
  18727. name: "Megamacro",
  18728. height: math.unit(35, "km")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6, "feet"),
  18737. weight: math.unit(75, "kg"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/linda/front.svg",
  18741. extra: 930 / 874,
  18742. bottom: 0.004
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(6, "feet"),
  18750. default: true
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(6 + 8 / 12, "feet"),
  18759. weight: math.unit(220, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/caylex/front.svg",
  18763. extra: 821 / 772,
  18764. bottom: 0.07
  18765. }
  18766. },
  18767. back: {
  18768. height: math.unit(6 + 8 / 12, "feet"),
  18769. weight: math.unit(220, "lb"),
  18770. name: "Back",
  18771. image: {
  18772. source: "./media/characters/caylex/back.svg",
  18773. extra: 821 / 772,
  18774. bottom: 0.022
  18775. }
  18776. },
  18777. hand: {
  18778. height: math.unit(1.25, "feet"),
  18779. name: "Hand",
  18780. image: {
  18781. source: "./media/characters/caylex/hand.svg"
  18782. }
  18783. },
  18784. foot: {
  18785. height: math.unit(1.6, "feet"),
  18786. name: "Foot",
  18787. image: {
  18788. source: "./media/characters/caylex/foot.svg"
  18789. }
  18790. },
  18791. armored: {
  18792. height: math.unit(6 + 8 / 12, "feet"),
  18793. weight: math.unit(250, "lb"),
  18794. name: "Armored",
  18795. image: {
  18796. source: "./media/characters/caylex/armored.svg",
  18797. extra: 1420 / 1310,
  18798. bottom: 0.045
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Normal",
  18805. height: math.unit(6 + 8 / 12, "feet"),
  18806. default: true
  18807. },
  18808. {
  18809. name: "Normal+",
  18810. height: math.unit(12, "feet")
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(7 + 6 / 12, "feet"),
  18819. weight: math.unit(288, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/alana/front.svg",
  18823. extra: 679 / 653,
  18824. bottom: 22.5 / 701
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(7 + 6 / 12, "feet")
  18832. },
  18833. {
  18834. name: "Large",
  18835. height: math.unit(50, "feet")
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(100, "feet"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Macro+",
  18844. height: math.unit(200, "feet")
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(6 + 1 / 12, "feet"),
  18853. weight: math.unit(210, "lb"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/hasani/front.svg",
  18857. extra: 244 / 232,
  18858. bottom: 0.01
  18859. }
  18860. },
  18861. back: {
  18862. height: math.unit(6 + 1 / 12, "feet"),
  18863. weight: math.unit(210, "lb"),
  18864. name: "Back",
  18865. image: {
  18866. source: "./media/characters/hasani/back.svg",
  18867. extra: 244 / 232,
  18868. bottom: 0.01
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(6 + 1 / 12, "feet")
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(175, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(1.82, "meters"),
  18889. weight: math.unit(140, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/nita/front.svg",
  18893. extra: 2473 / 2363,
  18894. bottom: 0.01
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(1.82, "m")
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(300, "m")
  18906. },
  18907. {
  18908. name: "Mistake Canon",
  18909. height: math.unit(0.5, "miles"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Big Mistake",
  18914. height: math.unit(13, "miles")
  18915. },
  18916. {
  18917. name: "Playing God",
  18918. height: math.unit(2450, "miles")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(4, "feet"),
  18927. weight: math.unit(120, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/shiriko/front.svg",
  18931. extra: 970/934,
  18932. bottom: 5/975
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(4, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6, "feet"),
  18949. name: "front",
  18950. image: {
  18951. source: "./media/characters/deja/front.svg",
  18952. extra: 926 / 840,
  18953. bottom: 0.07
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Planck Length",
  18960. height: math.unit(1.6e-35, "meters")
  18961. },
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(30.48, "meters"),
  18965. default: true
  18966. },
  18967. {
  18968. name: "Universal",
  18969. height: math.unit(8.8e26, "meters")
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18975. {
  18976. side: {
  18977. height: math.unit(8, "feet"),
  18978. weight: math.unit(6300, "lb"),
  18979. name: "Side",
  18980. image: {
  18981. source: "./media/characters/anima/side.svg",
  18982. bottom: 0.035
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(8, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(8, "feet"),
  18999. weight: math.unit(350, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/bianca/front.svg",
  19003. extra: 234 / 225,
  19004. bottom: 0.03
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(8, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(11 + 5/12, "feet"),
  19021. weight: math.unit(1200, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/adinia/front.svg",
  19025. extra: 1767/1641,
  19026. bottom: 44/1811
  19027. },
  19028. extraAttributes: {
  19029. "energyIntake": {
  19030. name: "Energy Intake",
  19031. power: 3,
  19032. type: "energy",
  19033. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19034. },
  19035. }
  19036. },
  19037. back: {
  19038. height: math.unit(11 + 5/12, "feet"),
  19039. weight: math.unit(1200, "lb"),
  19040. name: "Back",
  19041. image: {
  19042. source: "./media/characters/adinia/back.svg",
  19043. extra: 1834/1684,
  19044. bottom: 14/1848
  19045. },
  19046. extraAttributes: {
  19047. "energyIntake": {
  19048. name: "Energy Intake",
  19049. power: 3,
  19050. type: "energy",
  19051. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19052. },
  19053. }
  19054. },
  19055. maw: {
  19056. height: math.unit(3.79, "feet"),
  19057. name: "Maw",
  19058. image: {
  19059. source: "./media/characters/adinia/maw.svg"
  19060. }
  19061. },
  19062. rump: {
  19063. height: math.unit(4.6, "feet"),
  19064. name: "Rump",
  19065. image: {
  19066. source: "./media/characters/adinia/rump.svg"
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(11 + 5 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(3, "meters"),
  19083. weight: math.unit(200, "kg"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/lykasa/front.svg",
  19087. extra: 1076 / 976,
  19088. bottom: 0.06
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(3, "meters")
  19096. },
  19097. {
  19098. name: "Kaiju",
  19099. height: math.unit(120, "meters"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Mega Kaiju",
  19104. height: math.unit(240, "km")
  19105. },
  19106. {
  19107. name: "Giga Kaiju",
  19108. height: math.unit(400, "megameters")
  19109. },
  19110. {
  19111. name: "Tera Kaiju",
  19112. height: math.unit(800, "gigameters")
  19113. },
  19114. {
  19115. name: "Kaiju Dragon Goddess",
  19116. height: math.unit(26, "zettaparsecs")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19122. {
  19123. side: {
  19124. height: math.unit(283 / 124 * 6, "feet"),
  19125. weight: math.unit(35000, "lb"),
  19126. name: "Side",
  19127. image: {
  19128. source: "./media/characters/malfaren/side.svg",
  19129. extra: 1310/529,
  19130. bottom: 24/1334
  19131. }
  19132. },
  19133. front: {
  19134. height: math.unit(22.36, "feet"),
  19135. weight: math.unit(35000, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/malfaren/front.svg",
  19139. extra: 1237/1115,
  19140. bottom: 32/1269
  19141. }
  19142. },
  19143. maw: {
  19144. height: math.unit(6.9, "feet"),
  19145. name: "Maw",
  19146. image: {
  19147. source: "./media/characters/malfaren/maw.svg"
  19148. }
  19149. },
  19150. dick: {
  19151. height: math.unit(6.19, "feet"),
  19152. name: "Dick",
  19153. image: {
  19154. source: "./media/characters/malfaren/dick.svg"
  19155. }
  19156. },
  19157. eye: {
  19158. height: math.unit(0.69, "feet"),
  19159. name: "Eye",
  19160. image: {
  19161. source: "./media/characters/malfaren/eye.svg"
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Big",
  19168. height: math.unit(283 / 162 * 6, "feet"),
  19169. },
  19170. {
  19171. name: "Bigger",
  19172. height: math.unit(283 / 124 * 6, "feet")
  19173. },
  19174. {
  19175. name: "Massive",
  19176. height: math.unit(283 / 92 * 6, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "👀💦",
  19181. height: math.unit(283 / 73 * 6, "feet"),
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(1.7, "m"),
  19190. weight: math.unit(70, "kg"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/kernel/front.svg",
  19194. extra: 222 / 210,
  19195. bottom: 0.007
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Nano",
  19202. height: math.unit(17, "micrometers")
  19203. },
  19204. {
  19205. name: "Micro",
  19206. height: math.unit(1.7, "mm")
  19207. },
  19208. {
  19209. name: "Small",
  19210. height: math.unit(1.7, "cm")
  19211. },
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(1.7, "m"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(1.75, "meters"),
  19224. weight: math.unit(65, "kg"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/jayne-folest/front.svg",
  19228. extra: 2115 / 2007,
  19229. bottom: 0.02
  19230. }
  19231. },
  19232. back: {
  19233. height: math.unit(1.75, "meters"),
  19234. weight: math.unit(65, "kg"),
  19235. name: "Back",
  19236. image: {
  19237. source: "./media/characters/jayne-folest/back.svg",
  19238. extra: 2115 / 2007,
  19239. bottom: 0.005
  19240. }
  19241. },
  19242. frontClothed: {
  19243. height: math.unit(1.75, "meters"),
  19244. weight: math.unit(65, "kg"),
  19245. name: "Front (Clothed)",
  19246. image: {
  19247. source: "./media/characters/jayne-folest/front-clothed.svg",
  19248. extra: 2115 / 2007,
  19249. bottom: 0.035
  19250. }
  19251. },
  19252. hand: {
  19253. height: math.unit(1 / 1.260, "feet"),
  19254. name: "Hand",
  19255. image: {
  19256. source: "./media/characters/jayne-folest/hand.svg"
  19257. }
  19258. },
  19259. foot: {
  19260. height: math.unit(1 / 0.918, "feet"),
  19261. name: "Foot",
  19262. image: {
  19263. source: "./media/characters/jayne-folest/foot.svg"
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(4, "cm")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(1.75, "meters")
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(47.5, "meters"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(180, "cm"),
  19288. weight: math.unit(70, "kg"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/algier/front.svg",
  19292. extra: 596 / 572,
  19293. bottom: 0.04
  19294. }
  19295. },
  19296. back: {
  19297. height: math.unit(180, "cm"),
  19298. weight: math.unit(70, "kg"),
  19299. name: "Back",
  19300. image: {
  19301. source: "./media/characters/algier/back.svg",
  19302. extra: 596 / 572,
  19303. bottom: 0.025
  19304. }
  19305. },
  19306. frontdressed: {
  19307. height: math.unit(180, "cm"),
  19308. weight: math.unit(150, "kg"),
  19309. name: "Front-dressed",
  19310. image: {
  19311. source: "./media/characters/algier/front-dressed.svg",
  19312. extra: 596 / 572,
  19313. bottom: 0.038
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Micro",
  19320. height: math.unit(5, "cm")
  19321. },
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(180, "cm"),
  19325. default: true
  19326. },
  19327. {
  19328. name: "Macro",
  19329. height: math.unit(64, "m")
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19335. {
  19336. upright: {
  19337. height: math.unit(7, "feet"),
  19338. weight: math.unit(300, "lb"),
  19339. name: "Upright",
  19340. image: {
  19341. source: "./media/characters/pretzel/upright.svg",
  19342. extra: 534 / 522,
  19343. bottom: 0.065
  19344. }
  19345. },
  19346. sprawling: {
  19347. height: math.unit(3.75, "feet"),
  19348. weight: math.unit(300, "lb"),
  19349. name: "Sprawling",
  19350. image: {
  19351. source: "./media/characters/pretzel/sprawling.svg",
  19352. extra: 314 / 281,
  19353. bottom: 0.1
  19354. }
  19355. },
  19356. tongue: {
  19357. height: math.unit(2, "feet"),
  19358. name: "Tongue",
  19359. image: {
  19360. source: "./media/characters/pretzel/tongue.svg"
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(7, "feet"),
  19368. default: true
  19369. },
  19370. {
  19371. name: "Oversized",
  19372. height: math.unit(15, "feet")
  19373. },
  19374. {
  19375. name: "Huge",
  19376. height: math.unit(30, "feet")
  19377. },
  19378. {
  19379. name: "Macro",
  19380. height: math.unit(250, "feet")
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19386. {
  19387. sideFront: {
  19388. height: math.unit(5 + 2 / 12, "feet"),
  19389. weight: math.unit(120, "lb"),
  19390. name: "Front Side",
  19391. image: {
  19392. source: "./media/characters/roxi/side-front.svg",
  19393. extra: 2924 / 2717,
  19394. bottom: 0.08
  19395. }
  19396. },
  19397. sideBack: {
  19398. height: math.unit(5 + 2 / 12, "feet"),
  19399. weight: math.unit(120, "lb"),
  19400. name: "Back Side",
  19401. image: {
  19402. source: "./media/characters/roxi/side-back.svg",
  19403. extra: 2904 / 2693,
  19404. bottom: 0.06
  19405. }
  19406. },
  19407. front: {
  19408. height: math.unit(5 + 2 / 12, "feet"),
  19409. weight: math.unit(120, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/roxi/front.svg",
  19413. extra: 2028 / 1907,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. frontAlt: {
  19418. height: math.unit(5 + 2 / 12, "feet"),
  19419. weight: math.unit(120, "lb"),
  19420. name: "Front (Alt)",
  19421. image: {
  19422. source: "./media/characters/roxi/front-alt.svg",
  19423. extra: 1828 / 1798,
  19424. bottom: 0.01
  19425. }
  19426. },
  19427. sitting: {
  19428. height: math.unit(2.8, "feet"),
  19429. weight: math.unit(120, "lb"),
  19430. name: "Sitting",
  19431. image: {
  19432. source: "./media/characters/roxi/sitting.svg",
  19433. extra: 2660 / 2462,
  19434. bottom: 0.1
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 2 / 12, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19448. {
  19449. side: {
  19450. height: math.unit(55, "feet"),
  19451. weight: math.unit(153, "tons"),
  19452. name: "Side",
  19453. image: {
  19454. source: "./media/characters/shadow/side.svg",
  19455. extra: 701 / 628,
  19456. bottom: 0.02
  19457. }
  19458. },
  19459. flying: {
  19460. height: math.unit(145, "feet"),
  19461. weight: math.unit(153, "tons"),
  19462. name: "Flying",
  19463. image: {
  19464. source: "./media/characters/shadow/flying.svg"
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(55, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(6, "feet"),
  19481. weight: math.unit(200, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/marcie/front.svg",
  19485. extra: 960 / 876,
  19486. bottom: 58 / 1017.87
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Macro",
  19493. height: math.unit(1, "mile"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(7, "feet"),
  19503. weight: math.unit(200, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/kachina/front.svg",
  19507. extra: 1290.68 / 1119,
  19508. bottom: 36.5 / 1327.18
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(7, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19522. {
  19523. looking: {
  19524. height: math.unit(2, "meters"),
  19525. weight: math.unit(300, "kg"),
  19526. name: "Looking",
  19527. image: {
  19528. source: "./media/characters/kash/looking.svg",
  19529. extra: 474 / 344,
  19530. bottom: 0.03
  19531. }
  19532. },
  19533. side: {
  19534. height: math.unit(2, "meters"),
  19535. weight: math.unit(300, "kg"),
  19536. name: "Side",
  19537. image: {
  19538. source: "./media/characters/kash/side.svg",
  19539. extra: 302 / 251,
  19540. bottom: 0.03
  19541. }
  19542. },
  19543. front: {
  19544. height: math.unit(2, "meters"),
  19545. weight: math.unit(300, "kg"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/kash/front.svg",
  19549. extra: 495 / 360,
  19550. bottom: 0.015
  19551. }
  19552. },
  19553. },
  19554. [
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(2, "meters"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Big",
  19562. height: math.unit(3, "meters")
  19563. },
  19564. {
  19565. name: "Large",
  19566. height: math.unit(5, "meters")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19572. {
  19573. feeding: {
  19574. height: math.unit(6.7, "feet"),
  19575. weight: math.unit(350, "lb"),
  19576. name: "Feeding",
  19577. image: {
  19578. source: "./media/characters/lalim/feeding.svg",
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(6.7, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(9.5, "feet"),
  19595. weight: math.unit(600, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/de'vout/front.svg",
  19599. extra: 1443 / 1328,
  19600. bottom: 0.025
  19601. }
  19602. },
  19603. back: {
  19604. height: math.unit(9.5, "feet"),
  19605. weight: math.unit(600, "lb"),
  19606. name: "Back",
  19607. image: {
  19608. source: "./media/characters/de'vout/back.svg",
  19609. extra: 1443 / 1328
  19610. }
  19611. },
  19612. frontDressed: {
  19613. height: math.unit(9.5, "feet"),
  19614. weight: math.unit(600, "lb"),
  19615. name: "Front (Dressed",
  19616. image: {
  19617. source: "./media/characters/de'vout/front-dressed.svg",
  19618. extra: 1443 / 1328,
  19619. bottom: 0.025
  19620. }
  19621. },
  19622. backDressed: {
  19623. height: math.unit(9.5, "feet"),
  19624. weight: math.unit(600, "lb"),
  19625. name: "Back (Dressed",
  19626. image: {
  19627. source: "./media/characters/de'vout/back-dressed.svg",
  19628. extra: 1443 / 1328
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(9.5, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(8, "feet"),
  19645. weight: math.unit(225, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/talana/front.svg",
  19649. extra: 1410 / 1300,
  19650. bottom: 0.015
  19651. }
  19652. },
  19653. frontDressed: {
  19654. height: math.unit(8, "feet"),
  19655. weight: math.unit(225, "lb"),
  19656. name: "Front (Dressed",
  19657. image: {
  19658. source: "./media/characters/talana/front-dressed.svg",
  19659. extra: 1410 / 1300,
  19660. bottom: 0.015
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(8, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19674. {
  19675. side: {
  19676. height: math.unit(7.2, "feet"),
  19677. weight: math.unit(150, "lb"),
  19678. name: "Side",
  19679. image: {
  19680. source: "./media/characters/xeauvok/side.svg",
  19681. extra: 1975 / 1523,
  19682. bottom: 0.07
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(7.2, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19696. {
  19697. side: {
  19698. height: math.unit(4, "meters"),
  19699. weight: math.unit(2200, "kg"),
  19700. name: "Side",
  19701. image: {
  19702. source: "./media/characters/zara/side.svg",
  19703. extra: 765/744,
  19704. bottom: 156/921
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(4, "meters"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19718. {
  19719. side: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(150, "lb"),
  19722. name: "Side",
  19723. image: {
  19724. source: "./media/characters/richard-dragon/side.svg",
  19725. extra: 845 / 340,
  19726. bottom: 0.017
  19727. }
  19728. },
  19729. maw: {
  19730. height: math.unit(2.97, "feet"),
  19731. name: "Maw",
  19732. image: {
  19733. source: "./media/characters/richard-dragon/maw.svg"
  19734. }
  19735. },
  19736. },
  19737. [
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(4, "feet"),
  19745. weight: math.unit(100, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/richard-smeargle/front.svg",
  19749. extra: 2952 / 2820,
  19750. bottom: 0.028
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(4, "feet"),
  19758. default: true
  19759. },
  19760. {
  19761. name: "Dynamax",
  19762. height: math.unit(20, "meters")
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(110, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/klay/front.svg",
  19775. extra: 962 / 883,
  19776. bottom: 0.04
  19777. }
  19778. },
  19779. back: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(110, "lb"),
  19782. name: "Back",
  19783. image: {
  19784. source: "./media/characters/klay/back.svg",
  19785. extra: 962 / 883
  19786. }
  19787. },
  19788. beans: {
  19789. height: math.unit(1.15, "feet"),
  19790. name: "Beans",
  19791. image: {
  19792. source: "./media/characters/klay/beans.svg"
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Micro",
  19799. height: math.unit(6, "inches")
  19800. },
  19801. {
  19802. name: "Mini",
  19803. height: math.unit(3, "feet")
  19804. },
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(6, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Big",
  19812. height: math.unit(25, "feet")
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(100, "feet")
  19817. },
  19818. {
  19819. name: "Megamacro",
  19820. height: math.unit(400, "feet")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(6, "feet"),
  19829. weight: math.unit(160, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/marcus/front.svg",
  19833. extra: 734 / 676,
  19834. bottom: 0.03
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Little",
  19841. height: math.unit(6, "feet")
  19842. },
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(110, "feet"),
  19846. default: true
  19847. },
  19848. {
  19849. name: "Macro",
  19850. height: math.unit(250, "feet")
  19851. },
  19852. {
  19853. name: "Megamacro",
  19854. height: math.unit(1000, "feet")
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(7, "feet"),
  19863. weight: math.unit(275, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/claude-delroute/front.svg",
  19867. extra: 902/827,
  19868. bottom: 26/928
  19869. }
  19870. },
  19871. side: {
  19872. height: math.unit(7, "feet"),
  19873. weight: math.unit(275, "lb"),
  19874. name: "Side",
  19875. image: {
  19876. source: "./media/characters/claude-delroute/side.svg",
  19877. extra: 908/853,
  19878. bottom: 16/924
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(7, "feet"),
  19883. weight: math.unit(275, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/claude-delroute/back.svg",
  19887. extra: 911/829,
  19888. bottom: 18/929
  19889. }
  19890. },
  19891. maw: {
  19892. height: math.unit(0.6407, "meters"),
  19893. name: "Maw",
  19894. image: {
  19895. source: "./media/characters/claude-delroute/maw.svg"
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(7, "feet"),
  19903. default: true
  19904. },
  19905. {
  19906. name: "Lorge",
  19907. height: math.unit(20, "feet")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(8 + 4 / 12, "feet"),
  19916. weight: math.unit(600, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/dragonien/front.svg",
  19920. extra: 100 / 94,
  19921. bottom: 3.3 / 103.3445
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(8 + 4 / 12, "feet"),
  19926. weight: math.unit(600, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/dragonien/back.svg",
  19930. extra: 776 / 746,
  19931. bottom: 6.4 / 782.0616
  19932. }
  19933. },
  19934. foot: {
  19935. height: math.unit(1.54, "feet"),
  19936. name: "Foot",
  19937. image: {
  19938. source: "./media/characters/dragonien/foot.svg",
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(8 + 4 / 12, "feet"),
  19946. default: true
  19947. },
  19948. {
  19949. name: "Macro",
  19950. height: math.unit(200, "feet")
  19951. },
  19952. {
  19953. name: "Megamacro",
  19954. height: math.unit(1, "mile")
  19955. },
  19956. {
  19957. name: "Gigamacro",
  19958. height: math.unit(1000, "miles")
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(5 + 2 / 12, "feet"),
  19967. weight: math.unit(110, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/desta/front.svg",
  19971. extra: 767 / 726,
  19972. bottom: 11.7 / 779
  19973. }
  19974. },
  19975. back: {
  19976. height: math.unit(5 + 2 / 12, "feet"),
  19977. weight: math.unit(110, "lb"),
  19978. name: "Back",
  19979. image: {
  19980. source: "./media/characters/desta/back.svg",
  19981. extra: 777 / 728,
  19982. bottom: 6 / 784
  19983. }
  19984. },
  19985. frontAlt: {
  19986. height: math.unit(5 + 2 / 12, "feet"),
  19987. weight: math.unit(110, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/desta/front-alt.svg",
  19991. extra: 1482 / 1417
  19992. }
  19993. },
  19994. side: {
  19995. height: math.unit(5 + 2 / 12, "feet"),
  19996. weight: math.unit(110, "lb"),
  19997. name: "Side",
  19998. image: {
  19999. source: "./media/characters/desta/side.svg",
  20000. extra: 2579 / 2491,
  20001. bottom: 0.053
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Micro",
  20008. height: math.unit(6, "inches")
  20009. },
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5 + 2 / 12, "feet"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Macro",
  20017. height: math.unit(62, "feet")
  20018. },
  20019. {
  20020. name: "Megamacro",
  20021. height: math.unit(1800, "feet")
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(10, "feet"),
  20030. weight: math.unit(700, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/storm-alystar/front.svg",
  20034. extra: 2112 / 1898,
  20035. bottom: 0.034
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Micro",
  20042. height: math.unit(3.5, "inches")
  20043. },
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(10, "feet"),
  20047. default: true
  20048. },
  20049. {
  20050. name: "Macro",
  20051. height: math.unit(400, "feet")
  20052. },
  20053. {
  20054. name: "Deific",
  20055. height: math.unit(60, "miles")
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(2.35, "meters"),
  20064. weight: math.unit(119, "kg"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/ilia/front.svg",
  20068. extra: 1285 / 1255,
  20069. bottom: 0.06
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(2.35, "meters")
  20077. },
  20078. {
  20079. name: "Macro",
  20080. height: math.unit(140, "meters"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "Megamacro",
  20085. height: math.unit(100, "miles")
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(6 + 5 / 12, "feet"),
  20094. weight: math.unit(190, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/kingdead/front.svg",
  20098. extra: 1228 / 1177
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Micro",
  20105. height: math.unit(7, "inches")
  20106. },
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(6 + 5 / 12, "feet")
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(150, "feet"),
  20114. default: true
  20115. },
  20116. {
  20117. name: "Megamacro",
  20118. height: math.unit(200, "miles")
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20124. {
  20125. front: {
  20126. height: math.unit(8, "feet"),
  20127. weight: math.unit(600, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/kyrehx/front.svg",
  20131. extra: 1195 / 1095,
  20132. bottom: 0.034
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Micro",
  20139. height: math.unit(2, "inches")
  20140. },
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(8, "feet"),
  20144. default: true
  20145. },
  20146. {
  20147. name: "Macro",
  20148. height: math.unit(255, "feet")
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20157. weight: math.unit(184, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/xang/front.svg",
  20161. extra: 845 / 755
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20169. default: true
  20170. },
  20171. {
  20172. name: "Macro",
  20173. height: math.unit(0.935 * 146, "feet")
  20174. },
  20175. {
  20176. name: "Megamacro",
  20177. height: math.unit(0.935 * 3, "miles")
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20183. {
  20184. frontDressed: {
  20185. height: math.unit(5 + 7 / 12, "feet"),
  20186. weight: math.unit(140, "lb"),
  20187. name: "Front (Dressed)",
  20188. image: {
  20189. source: "./media/characters/doc-weardno/front-dressed.svg",
  20190. extra: 263 / 234
  20191. }
  20192. },
  20193. backDressed: {
  20194. height: math.unit(5 + 7 / 12, "feet"),
  20195. weight: math.unit(140, "lb"),
  20196. name: "Back (Dressed)",
  20197. image: {
  20198. source: "./media/characters/doc-weardno/back-dressed.svg",
  20199. extra: 266 / 238
  20200. }
  20201. },
  20202. front: {
  20203. height: math.unit(5 + 7 / 12, "feet"),
  20204. weight: math.unit(140, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/doc-weardno/front.svg",
  20208. extra: 254 / 233
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Micro",
  20215. height: math.unit(3, "inches")
  20216. },
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(5 + 7 / 12, "feet"),
  20220. default: true
  20221. },
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(25, "feet")
  20225. },
  20226. {
  20227. name: "Megamacro",
  20228. height: math.unit(2, "miles")
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(6 + 2 / 12, "feet"),
  20237. weight: math.unit(153, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/seth-whilst/front.svg",
  20241. bottom: 0.07
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(5, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(6 + 2 / 12, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(3, "inches"),
  20262. weight: math.unit(8, "grams"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/pocket-jabari/front.svg",
  20266. extra: 1024 / 974,
  20267. bottom: 0.039
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Minimicro",
  20274. height: math.unit(8, "mm")
  20275. },
  20276. {
  20277. name: "Micro",
  20278. height: math.unit(3, "inches"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(3, "feet")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20289. {
  20290. frontDressed: {
  20291. height: math.unit(15, "feet"),
  20292. weight: math.unit(3280, "lb"),
  20293. name: "Front (Dressed)",
  20294. image: {
  20295. source: "./media/characters/sapphy/front-dressed.svg",
  20296. extra: 1951/1654,
  20297. bottom: 194/2145
  20298. },
  20299. form: "anthro",
  20300. default: true
  20301. },
  20302. backDressed: {
  20303. height: math.unit(15, "feet"),
  20304. weight: math.unit(3280, "lb"),
  20305. name: "Back (Dressed)",
  20306. image: {
  20307. source: "./media/characters/sapphy/back-dressed.svg",
  20308. extra: 2058/1918,
  20309. bottom: 125/2183
  20310. },
  20311. form: "anthro"
  20312. },
  20313. frontNude: {
  20314. height: math.unit(15, "feet"),
  20315. weight: math.unit(3280, "lb"),
  20316. name: "Front (Nude)",
  20317. image: {
  20318. source: "./media/characters/sapphy/front-nude.svg",
  20319. extra: 1951/1654,
  20320. bottom: 194/2145
  20321. },
  20322. form: "anthro"
  20323. },
  20324. backNude: {
  20325. height: math.unit(15, "feet"),
  20326. weight: math.unit(3280, "lb"),
  20327. name: "Back (Nude)",
  20328. image: {
  20329. source: "./media/characters/sapphy/back-nude.svg",
  20330. extra: 2058/1918,
  20331. bottom: 125/2183
  20332. },
  20333. form: "anthro"
  20334. },
  20335. full: {
  20336. height: math.unit(15, "feet"),
  20337. weight: math.unit(3280, "lb"),
  20338. name: "Full",
  20339. image: {
  20340. source: "./media/characters/sapphy/full.svg",
  20341. extra: 1396/1317,
  20342. bottom: 44/1440
  20343. },
  20344. form: "anthro"
  20345. },
  20346. dick: {
  20347. height: math.unit(3.8, "feet"),
  20348. name: "Dick",
  20349. image: {
  20350. source: "./media/characters/sapphy/dick.svg"
  20351. },
  20352. form: "anthro"
  20353. },
  20354. feral: {
  20355. height: math.unit(35, "feet"),
  20356. weight: math.unit(160, "tons"),
  20357. name: "Feral",
  20358. image: {
  20359. source: "./media/characters/sapphy/feral.svg",
  20360. extra: 1050/573,
  20361. bottom: 60/1110
  20362. },
  20363. form: "feral",
  20364. default: true
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(15, "feet"),
  20371. form: "anthro"
  20372. },
  20373. {
  20374. name: "Casual Macro",
  20375. height: math.unit(120, "feet"),
  20376. form: "anthro"
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(2150, "feet"),
  20381. default: true,
  20382. form: "anthro"
  20383. },
  20384. {
  20385. name: "Megamacro",
  20386. height: math.unit(8, "miles"),
  20387. form: "anthro"
  20388. },
  20389. {
  20390. name: "Galaxy Mom",
  20391. height: math.unit(6, "megalightyears"),
  20392. form: "anthro"
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(35, "feet"),
  20397. form: "feral",
  20398. default: true
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(300, "feet"),
  20403. form: "feral"
  20404. },
  20405. {
  20406. name: "Galaxy Mom",
  20407. height: math.unit(10, "megalightyears"),
  20408. form: "feral"
  20409. },
  20410. ],
  20411. {
  20412. "anthro": {
  20413. name: "Anthro",
  20414. default: true
  20415. },
  20416. "feral": {
  20417. name: "Feral"
  20418. }
  20419. }
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20423. {
  20424. hyenaFront: {
  20425. height: math.unit(6, "feet"),
  20426. weight: math.unit(190, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/kiro/hyena-front.svg",
  20430. extra: 927/839,
  20431. bottom: 91/1018
  20432. },
  20433. form: "hyena",
  20434. default: true
  20435. },
  20436. front: {
  20437. height: math.unit(6, "feet"),
  20438. weight: math.unit(170, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/kiro/front.svg",
  20442. extra: 1064 / 1012,
  20443. bottom: 0.052
  20444. },
  20445. form: "folf",
  20446. default: true
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Micro",
  20452. height: math.unit(6, "inches"),
  20453. form: "folf"
  20454. },
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(6, "feet"),
  20458. form: "folf",
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(72, "feet"),
  20464. form: "folf"
  20465. },
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(6, "inches"),
  20469. form: "hyena"
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(6, "feet"),
  20474. form: "hyena",
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(72, "feet"),
  20480. form: "hyena"
  20481. },
  20482. ],
  20483. {
  20484. "hyena": {
  20485. name: "Hyena",
  20486. default: true
  20487. },
  20488. "folf": {
  20489. name: "Folf",
  20490. },
  20491. }
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(5 + 9 / 12, "feet"),
  20498. weight: math.unit(175, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/irishfox/front.svg",
  20502. extra: 1912 / 1680,
  20503. bottom: 0.02
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Nano",
  20510. height: math.unit(1, "mm")
  20511. },
  20512. {
  20513. name: "Micro",
  20514. height: math.unit(2, "inches")
  20515. },
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(5 + 9 / 12, "feet"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Macro",
  20523. height: math.unit(45, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(6 + 1 / 12, "feet"),
  20532. weight: math.unit(75, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/aronai-sieyes/front.svg",
  20536. extra: 1532/1450,
  20537. bottom: 42/1574
  20538. }
  20539. },
  20540. side: {
  20541. height: math.unit(6 + 1 / 12, "feet"),
  20542. weight: math.unit(75, "lb"),
  20543. name: "Side",
  20544. image: {
  20545. source: "./media/characters/aronai-sieyes/side.svg",
  20546. extra: 1422/1365,
  20547. bottom: 148/1570
  20548. }
  20549. },
  20550. back: {
  20551. height: math.unit(6 + 1 / 12, "feet"),
  20552. weight: math.unit(75, "lb"),
  20553. name: "Back",
  20554. image: {
  20555. source: "./media/characters/aronai-sieyes/back.svg",
  20556. extra: 1526/1464,
  20557. bottom: 51/1577
  20558. }
  20559. },
  20560. dressed: {
  20561. height: math.unit(6 + 1 / 12, "feet"),
  20562. weight: math.unit(75, "lb"),
  20563. name: "Dressed",
  20564. image: {
  20565. source: "./media/characters/aronai-sieyes/dressed.svg",
  20566. extra: 1559/1483,
  20567. bottom: 39/1598
  20568. }
  20569. },
  20570. slit: {
  20571. height: math.unit(1.3, "feet"),
  20572. name: "Slit",
  20573. image: {
  20574. source: "./media/characters/aronai-sieyes/slit.svg"
  20575. }
  20576. },
  20577. slitSpread: {
  20578. height: math.unit(0.9, "feet"),
  20579. name: "Slit (Spread)",
  20580. image: {
  20581. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20582. }
  20583. },
  20584. rump: {
  20585. height: math.unit(1.3, "feet"),
  20586. name: "Rump",
  20587. image: {
  20588. source: "./media/characters/aronai-sieyes/rump.svg"
  20589. }
  20590. },
  20591. maw: {
  20592. height: math.unit(1.25, "feet"),
  20593. name: "Maw",
  20594. image: {
  20595. source: "./media/characters/aronai-sieyes/maw.svg"
  20596. }
  20597. },
  20598. feral: {
  20599. height: math.unit(18, "feet"),
  20600. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20601. name: "Feral",
  20602. image: {
  20603. source: "./media/characters/aronai-sieyes/feral.svg",
  20604. extra: 1530 / 1240,
  20605. bottom: 0.035
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Micro",
  20612. height: math.unit(2, "inches")
  20613. },
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(6 + 1 / 12, "feet"),
  20617. default: true
  20618. }
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(12, "feet"),
  20626. weight: math.unit(410, "kg"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/xuna/front.svg",
  20630. extra: 2184 / 1980
  20631. }
  20632. },
  20633. side: {
  20634. height: math.unit(12, "feet"),
  20635. weight: math.unit(410, "kg"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/xuna/side.svg",
  20639. extra: 2184 / 1980
  20640. }
  20641. },
  20642. back: {
  20643. height: math.unit(12, "feet"),
  20644. weight: math.unit(410, "kg"),
  20645. name: "Back",
  20646. image: {
  20647. source: "./media/characters/xuna/back.svg",
  20648. extra: 2184 / 1980
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Nano glow",
  20655. height: math.unit(10, "nm")
  20656. },
  20657. {
  20658. name: "Micro floof",
  20659. height: math.unit(0.3, "m")
  20660. },
  20661. {
  20662. name: "Huggable softy boi",
  20663. height: math.unit(3.6576, "m"),
  20664. default: true
  20665. },
  20666. {
  20667. name: "Admirable floof",
  20668. height: math.unit(80, "meters")
  20669. },
  20670. {
  20671. name: "Gentle macro",
  20672. height: math.unit(300, "meters")
  20673. },
  20674. {
  20675. name: "Very careful floof",
  20676. height: math.unit(3200, "meters")
  20677. },
  20678. {
  20679. name: "The mega floof",
  20680. height: math.unit(36000, "meters")
  20681. },
  20682. {
  20683. name: "Giga-fur-Wicker",
  20684. height: math.unit(4800000, "meters")
  20685. },
  20686. {
  20687. name: "Licky world",
  20688. height: math.unit(20000000, "meters")
  20689. },
  20690. {
  20691. name: "Floofy cyan sun",
  20692. height: math.unit(1500000000, "meters")
  20693. },
  20694. {
  20695. name: "Milky Wicker",
  20696. height: math.unit(1000000000000000000000, "meters")
  20697. },
  20698. {
  20699. name: "The observing Wicker",
  20700. height: math.unit(999999999999999999999999999, "meters")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(5 + 9 / 12, "feet"),
  20709. weight: math.unit(150, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/arokha-sieyes/front.svg",
  20713. extra: 1425 / 1284,
  20714. bottom: 0.05
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 9 / 12, "feet")
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(30, "meters"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6, "feet"),
  20735. weight: math.unit(180, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/arokh-sieyes/front.svg",
  20739. extra: 1830 / 1769,
  20740. bottom: 0.01
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6, "feet")
  20748. },
  20749. {
  20750. name: "Macro",
  20751. height: math.unit(30, "meters"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20758. {
  20759. side: {
  20760. height: math.unit(13 + 1 / 12, "feet"),
  20761. weight: math.unit(8.5, "tonnes"),
  20762. preyCapacity: math.unit(36, "people"),
  20763. name: "Side",
  20764. image: {
  20765. source: "./media/characters/goldeneye/side.svg",
  20766. extra: 1139/741,
  20767. bottom: 98/1237
  20768. }
  20769. },
  20770. front: {
  20771. height: math.unit(5.1, "feet"),
  20772. weight: math.unit(8.5, "tonnes"),
  20773. preyCapacity: math.unit(36, "people"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/goldeneye/front.svg",
  20777. extra: 635/365,
  20778. bottom: 598/1233
  20779. }
  20780. },
  20781. maw: {
  20782. height: math.unit(6.6, "feet"),
  20783. name: "Maw",
  20784. image: {
  20785. source: "./media/characters/goldeneye/maw.svg"
  20786. }
  20787. },
  20788. headFront: {
  20789. height: math.unit(8, "feet"),
  20790. name: "Head (Front)",
  20791. image: {
  20792. source: "./media/characters/goldeneye/head-front.svg"
  20793. }
  20794. },
  20795. headSide: {
  20796. height: math.unit(6, "feet"),
  20797. name: "Head (Side)",
  20798. image: {
  20799. source: "./media/characters/goldeneye/head-side.svg"
  20800. }
  20801. },
  20802. headBack: {
  20803. height: math.unit(8, "feet"),
  20804. name: "Head (Back)",
  20805. image: {
  20806. source: "./media/characters/goldeneye/head-back.svg"
  20807. }
  20808. },
  20809. paw: {
  20810. height: math.unit(3.4, "feet"),
  20811. name: "Paw",
  20812. image: {
  20813. source: "./media/characters/goldeneye/paw.svg"
  20814. }
  20815. },
  20816. toering: {
  20817. height: math.unit(0.45, "feet"),
  20818. name: "Toering",
  20819. image: {
  20820. source: "./media/characters/goldeneye/toering.svg"
  20821. }
  20822. },
  20823. eyes: {
  20824. height: math.unit(0.5, "feet"),
  20825. name: "Eyes",
  20826. image: {
  20827. source: "./media/characters/goldeneye/eyes.svg"
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(13 + 1 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6 + 1 / 12, "feet"),
  20844. weight: math.unit(210, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/leonardo-lycheborne/front.svg",
  20848. extra: 776/723,
  20849. bottom: 34/810
  20850. }
  20851. },
  20852. side: {
  20853. height: math.unit(6 + 1 / 12, "feet"),
  20854. weight: math.unit(210, "lb"),
  20855. name: "Side",
  20856. image: {
  20857. source: "./media/characters/leonardo-lycheborne/side.svg",
  20858. extra: 780/728,
  20859. bottom: 12/792
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(6 + 1 / 12, "feet"),
  20864. weight: math.unit(210, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/leonardo-lycheborne/back.svg",
  20868. extra: 775/721,
  20869. bottom: 17/792
  20870. }
  20871. },
  20872. hand: {
  20873. height: math.unit(1.08, "feet"),
  20874. name: "Hand",
  20875. image: {
  20876. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20877. }
  20878. },
  20879. foot: {
  20880. height: math.unit(1.32, "feet"),
  20881. name: "Foot",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20884. }
  20885. },
  20886. maw: {
  20887. height: math.unit(1, "feet"),
  20888. name: "Maw",
  20889. image: {
  20890. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20891. }
  20892. },
  20893. were: {
  20894. height: math.unit(20, "feet"),
  20895. weight: math.unit(7800, "lb"),
  20896. name: "Were",
  20897. image: {
  20898. source: "./media/characters/leonardo-lycheborne/were.svg",
  20899. extra: 1224/1165,
  20900. bottom: 72/1296
  20901. }
  20902. },
  20903. feral: {
  20904. height: math.unit(7.5, "feet"),
  20905. weight: math.unit(600, "lb"),
  20906. name: "Feral",
  20907. image: {
  20908. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20909. extra: 797/702,
  20910. bottom: 139/936
  20911. }
  20912. },
  20913. taur: {
  20914. height: math.unit(11, "feet"),
  20915. weight: math.unit(3300, "lb"),
  20916. name: "Taur",
  20917. image: {
  20918. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20919. extra: 1271/1197,
  20920. bottom: 47/1318
  20921. }
  20922. },
  20923. barghest: {
  20924. height: math.unit(11, "feet"),
  20925. weight: math.unit(1300, "lb"),
  20926. name: "Barghest",
  20927. image: {
  20928. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20929. extra: 1291/1204,
  20930. bottom: 37/1328
  20931. }
  20932. },
  20933. dick: {
  20934. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20935. name: "Dick",
  20936. image: {
  20937. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20938. }
  20939. },
  20940. dickWere: {
  20941. height: math.unit((20) / 3.8, "feet"),
  20942. name: "Dick (Were)",
  20943. image: {
  20944. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6 + 1 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(10, "feet"),
  20961. weight: math.unit(350, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/jet/front.svg",
  20965. extra: 2050 / 1980,
  20966. bottom: 0.013
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(10, "feet"),
  20971. weight: math.unit(350, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/jet/back.svg",
  20975. extra: 2050 / 1980,
  20976. bottom: 0.013
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Micro",
  20983. height: math.unit(6, "inches")
  20984. },
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(10, "feet"),
  20988. default: true
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(100, "feet")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(15, "feet"),
  21001. weight: math.unit(2800, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/tanarath/front.svg",
  21005. extra: 2392 / 2220,
  21006. bottom: 0.03
  21007. }
  21008. },
  21009. back: {
  21010. height: math.unit(15, "feet"),
  21011. weight: math.unit(2800, "lb"),
  21012. name: "Back",
  21013. image: {
  21014. source: "./media/characters/tanarath/back.svg",
  21015. extra: 2392 / 2220,
  21016. bottom: 0.03
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(15, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(7 + 1 / 12, "feet"),
  21033. weight: math.unit(175, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/patty-cattybatty/front.svg",
  21037. extra: 908 / 874,
  21038. bottom: 0.025
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Micro",
  21045. height: math.unit(1, "inch")
  21046. },
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(7 + 1 / 12, "feet")
  21050. },
  21051. {
  21052. name: "Mini Macro",
  21053. height: math.unit(155, "feet")
  21054. },
  21055. {
  21056. name: "Macro",
  21057. height: math.unit(1077, "feet")
  21058. },
  21059. {
  21060. name: "Mega Macro",
  21061. height: math.unit(47650, "feet"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Giga Macro",
  21066. height: math.unit(440, "miles")
  21067. },
  21068. {
  21069. name: "Tera Macro",
  21070. height: math.unit(8700, "miles")
  21071. },
  21072. {
  21073. name: "Planetary Macro",
  21074. height: math.unit(32700, "miles")
  21075. },
  21076. {
  21077. name: "Solar Macro",
  21078. height: math.unit(550000, "miles")
  21079. },
  21080. {
  21081. name: "Celestial Macro",
  21082. height: math.unit(2.5, "AU")
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21088. {
  21089. front: {
  21090. height: math.unit(4 + 5 / 12, "feet"),
  21091. weight: math.unit(90, "lb"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/cappu/front.svg",
  21095. extra: 1247 / 1152,
  21096. bottom: 0.012
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(4 + 5 / 12, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21110. {
  21111. frontDressed: {
  21112. height: math.unit(70, "cm"),
  21113. weight: math.unit(6, "kg"),
  21114. name: "Front (Dressed)",
  21115. image: {
  21116. source: "./media/characters/sebi/front-dressed.svg",
  21117. extra: 713.5 / 686.5,
  21118. bottom: 0.003
  21119. }
  21120. },
  21121. front: {
  21122. height: math.unit(70, "cm"),
  21123. weight: math.unit(5, "kg"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/sebi/front.svg",
  21127. extra: 713.5 / 686.5,
  21128. bottom: 0.003
  21129. }
  21130. }
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(70, "cm"),
  21136. default: true
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(8, "meters")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/typhek/front.svg",
  21153. extra: 1948 / 1929,
  21154. bottom: 0.025
  21155. }
  21156. },
  21157. side: {
  21158. height: math.unit(6, "feet"),
  21159. weight: math.unit(150, "lb"),
  21160. name: "Side",
  21161. image: {
  21162. source: "./media/characters/typhek/side.svg",
  21163. extra: 2034 / 2010,
  21164. bottom: 0.003
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(150, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/typhek/back.svg",
  21173. extra: 2005 / 1978,
  21174. bottom: 0.004
  21175. }
  21176. },
  21177. palm: {
  21178. height: math.unit(1.2, "feet"),
  21179. name: "Palm",
  21180. image: {
  21181. source: "./media/characters/typhek/palm.svg"
  21182. }
  21183. },
  21184. fist: {
  21185. height: math.unit(1.1, "feet"),
  21186. name: "Fist",
  21187. image: {
  21188. source: "./media/characters/typhek/fist.svg"
  21189. }
  21190. },
  21191. foot: {
  21192. height: math.unit(1.57, "feet"),
  21193. name: "Foot",
  21194. image: {
  21195. source: "./media/characters/typhek/foot.svg"
  21196. }
  21197. },
  21198. sole: {
  21199. height: math.unit(2.05, "feet"),
  21200. name: "Sole",
  21201. image: {
  21202. source: "./media/characters/typhek/sole.svg"
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Macro",
  21209. height: math.unit(40, "stories"),
  21210. default: true
  21211. },
  21212. {
  21213. name: "Megamacro",
  21214. height: math.unit(1, "mile")
  21215. },
  21216. {
  21217. name: "Gigamacro",
  21218. height: math.unit(4000, "solarradii")
  21219. },
  21220. {
  21221. name: "Universal",
  21222. height: math.unit(1.1, "universes")
  21223. }
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21228. {
  21229. side: {
  21230. height: math.unit(5 + 7 / 12, "feet"),
  21231. weight: math.unit(150, "lb"),
  21232. name: "Side",
  21233. image: {
  21234. source: "./media/characters/kassy/side.svg",
  21235. extra: 1280 / 1225,
  21236. bottom: 0.002
  21237. }
  21238. },
  21239. front: {
  21240. height: math.unit(5 + 7 / 12, "feet"),
  21241. weight: math.unit(150, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/kassy/front.svg",
  21245. extra: 1280 / 1225,
  21246. bottom: 0.025
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(5 + 7 / 12, "feet"),
  21251. weight: math.unit(150, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/kassy/back.svg",
  21255. extra: 1280 / 1225,
  21256. bottom: 0.002
  21257. }
  21258. },
  21259. foot: {
  21260. height: math.unit(1.266, "feet"),
  21261. name: "Foot",
  21262. image: {
  21263. source: "./media/characters/kassy/foot.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 7 / 12, "feet")
  21271. },
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(137, "feet"),
  21275. default: true
  21276. },
  21277. {
  21278. name: "Megamacro",
  21279. height: math.unit(1, "mile")
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(6 + 1 / 12, "feet"),
  21288. weight: math.unit(200, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/neil/front.svg",
  21292. extra: 1326 / 1250,
  21293. bottom: 0.023
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(6 + 1 / 12, "feet"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Macro",
  21305. height: math.unit(200, "feet")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(5 + 9 / 12, "feet"),
  21314. weight: math.unit(190, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/atticus/front.svg",
  21318. extra: 2934 / 2785,
  21319. bottom: 0.025
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(5 + 9 / 12, "feet"),
  21327. default: true
  21328. },
  21329. {
  21330. name: "Macro",
  21331. height: math.unit(180, "feet")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21337. {
  21338. side: {
  21339. height: math.unit(9, "feet"),
  21340. weight: math.unit(650, "lb"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/milo/side.svg",
  21344. extra: 2644 / 2310,
  21345. bottom: 0.032
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(9, "feet"),
  21353. default: true
  21354. },
  21355. {
  21356. name: "Macro",
  21357. height: math.unit(300, "feet")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21363. {
  21364. side: {
  21365. height: math.unit(8, "meters"),
  21366. weight: math.unit(90000, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/ijzer/side.svg",
  21370. extra: 2756 / 1600,
  21371. bottom: 0.01
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Small",
  21378. height: math.unit(3, "meters")
  21379. },
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(8, "meters"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Normal+",
  21387. height: math.unit(10, "meters")
  21388. },
  21389. {
  21390. name: "Bigger",
  21391. height: math.unit(24, "meters")
  21392. },
  21393. {
  21394. name: "Huge",
  21395. height: math.unit(80, "meters")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(6 + 2 / 12, "feet"),
  21404. weight: math.unit(153, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/luca-cervicum/front.svg",
  21408. extra: 370 / 327,
  21409. bottom: 0.015
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(6 + 2 / 12, "feet"),
  21414. weight: math.unit(153, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/luca-cervicum/back.svg",
  21418. extra: 367 / 333,
  21419. bottom: 0.005
  21420. }
  21421. },
  21422. frontGear: {
  21423. height: math.unit(6 + 2 / 12, "feet"),
  21424. weight: math.unit(173, "lb"),
  21425. name: "Front (Gear)",
  21426. image: {
  21427. source: "./media/characters/luca-cervicum/front-gear.svg",
  21428. extra: 377 / 333,
  21429. bottom: 0.006
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(6 + 2 / 12, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(6 + 1 / 12, "feet"),
  21446. weight: math.unit(304, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/oliver/front.svg",
  21450. extra: 157 / 143,
  21451. bottom: 0.08
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(6 + 1 / 12, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(5 + 7 / 12, "feet"),
  21468. weight: math.unit(140, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/shane/front.svg",
  21472. extra: 304 / 289,
  21473. bottom: 0.005
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(5 + 7 / 12, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(5 + 9 / 12, "feet"),
  21490. weight: math.unit(178, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/shin/front.svg",
  21494. extra: 159 / 151,
  21495. bottom: 0.015
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(5 + 9 / 12, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(5 + 10 / 12, "feet"),
  21512. weight: math.unit(168, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/xerxes/front.svg",
  21516. extra: 282 / 260,
  21517. bottom: 0.045
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(5 + 10 / 12, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(6 + 7 / 12, "feet"),
  21534. weight: math.unit(208, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/chaska/front.svg",
  21538. extra: 332 / 319,
  21539. bottom: 0.015
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(6 + 7 / 12, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21553. {
  21554. front: {
  21555. height: math.unit(5 + 8 / 12, "feet"),
  21556. weight: math.unit(208, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/enuk/front.svg",
  21560. extra: 437 / 406,
  21561. bottom: 0.02
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(5 + 8 / 12, "feet"),
  21569. default: true
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(5 + 10 / 12, "feet"),
  21578. weight: math.unit(252, "lb"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/bruun/front.svg",
  21582. extra: 197 / 187,
  21583. bottom: 0.012
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5 + 10 / 12, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(6 + 10 / 12, "feet"),
  21600. weight: math.unit(255, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/alexeev/front.svg",
  21604. extra: 213 / 200,
  21605. bottom: 0.05
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(6 + 10 / 12, "feet"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21619. {
  21620. front: {
  21621. height: math.unit(2 + 8 / 12, "feet"),
  21622. weight: math.unit(22, "lb"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/evelyn/front.svg",
  21626. extra: 208 / 180
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(2 + 8 / 12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(5 + 9 / 12, "feet"),
  21643. weight: math.unit(139, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/inca/front.svg",
  21647. extra: 294 / 291,
  21648. bottom: 0.03
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(5 + 9 / 12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(6 + 3 / 12, "feet"),
  21665. weight: math.unit(185, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/mera/front.svg",
  21669. extra: 291 / 277,
  21670. bottom: 0.03
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(6 + 3 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(6 + 7 / 12, "feet"),
  21687. weight: math.unit(160, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/ceres/front.svg",
  21691. extra: 1023 / 950,
  21692. bottom: 0.027
  21693. }
  21694. },
  21695. back: {
  21696. height: math.unit(6 + 7 / 12, "feet"),
  21697. weight: math.unit(160, "lb"),
  21698. name: "Back",
  21699. image: {
  21700. source: "./media/characters/ceres/back.svg",
  21701. extra: 1023 / 950
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(6 + 7 / 12, "feet"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 10 / 12, "feet"),
  21718. weight: math.unit(150, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/kris/front.svg",
  21722. extra: 885 / 803,
  21723. bottom: 0.03
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(5 + 10 / 12, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(7, "feet"),
  21740. weight: math.unit(120, "kg"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/taluthus/front.svg",
  21744. extra: 903 / 833,
  21745. bottom: 0.015
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(7, "feet"),
  21753. default: true
  21754. },
  21755. {
  21756. name: "Macro",
  21757. height: math.unit(300, "feet")
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(5 + 9 / 12, "feet"),
  21766. weight: math.unit(145, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/dawn/front.svg",
  21770. extra: 2094 / 2016,
  21771. bottom: 0.025
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(5 + 9 / 12, "feet"),
  21776. weight: math.unit(160, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/dawn/back.svg",
  21780. extra: 2112 / 2080,
  21781. bottom: 0.005
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(6 + 7 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21795. {
  21796. anthro: {
  21797. height: math.unit(8 + 3 / 12, "feet"),
  21798. weight: math.unit(450, "lb"),
  21799. name: "Anthro",
  21800. image: {
  21801. source: "./media/characters/arador/anthro.svg",
  21802. extra: 1835 / 1718,
  21803. bottom: 0.025
  21804. }
  21805. },
  21806. feral: {
  21807. height: math.unit(4, "feet"),
  21808. weight: math.unit(200, "lb"),
  21809. name: "Feral",
  21810. image: {
  21811. source: "./media/characters/arador/feral.svg",
  21812. extra: 1683 / 1514,
  21813. bottom: 0.07
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(8 + 3 / 12, "feet")
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(82.5, "feet"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(5 + 10 / 12, "feet"),
  21834. weight: math.unit(125, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/dharsi/front.svg",
  21838. extra: 716 / 630,
  21839. bottom: 0.035
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Nano",
  21846. height: math.unit(100, "nm")
  21847. },
  21848. {
  21849. name: "Micro",
  21850. height: math.unit(2, "inches")
  21851. },
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(5 + 10 / 12, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(1000, "feet")
  21860. },
  21861. {
  21862. name: "Megamacro",
  21863. height: math.unit(10, "miles")
  21864. },
  21865. {
  21866. name: "Gigamacro",
  21867. height: math.unit(3000, "miles")
  21868. },
  21869. {
  21870. name: "Teramacro",
  21871. height: math.unit(500000, "miles")
  21872. },
  21873. {
  21874. name: "Teramacro+",
  21875. height: math.unit(30, "galaxies")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/deathy/front.svg",
  21888. extra: 1552 / 1463,
  21889. bottom: 0.025
  21890. }
  21891. },
  21892. side: {
  21893. height: math.unit(6, "feet"),
  21894. weight: math.unit(150, "lb"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/deathy/side.svg",
  21898. extra: 1604 / 1455,
  21899. bottom: 0.025
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(6, "feet"),
  21904. weight: math.unit(150, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/deathy/back.svg",
  21908. extra: 1580 / 1463,
  21909. bottom: 0.005
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Micro",
  21916. height: math.unit(5, "millimeters")
  21917. },
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(6 + 5 / 12, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21927. {
  21928. front: {
  21929. height: math.unit(16, "feet"),
  21930. weight: math.unit(4000, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/juniper/front.svg",
  21934. bottom: 0.04
  21935. }
  21936. },
  21937. },
  21938. [
  21939. {
  21940. name: "Normal",
  21941. height: math.unit(16, "feet"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(6, "feet"),
  21951. weight: math.unit(150, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/hipster/front.svg",
  21955. extra: 1312 / 1209,
  21956. bottom: 0.025
  21957. }
  21958. },
  21959. back: {
  21960. height: math.unit(6, "feet"),
  21961. weight: math.unit(150, "lb"),
  21962. name: "Back",
  21963. image: {
  21964. source: "./media/characters/hipster/back.svg",
  21965. extra: 1281 / 1196,
  21966. bottom: 0.01
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Micro",
  21973. height: math.unit(1, "mm")
  21974. },
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(4, "inches"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(500, "feet")
  21983. },
  21984. {
  21985. name: "Megamacro",
  21986. height: math.unit(1000, "miles")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(6, "feet"),
  21995. weight: math.unit(150, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/tendirmuldr/front.svg",
  21999. extra: 1878 / 1772,
  22000. bottom: 0.015
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Megamacro",
  22007. height: math.unit(1500, "miles"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22014. {
  22015. front: {
  22016. height: math.unit(14, "feet"),
  22017. weight: math.unit(12000, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/mort/front.svg",
  22021. extra: 365 / 318,
  22022. bottom: 0.01
  22023. }
  22024. },
  22025. side: {
  22026. height: math.unit(14, "feet"),
  22027. weight: math.unit(12000, "lb"),
  22028. name: "Side",
  22029. image: {
  22030. source: "./media/characters/mort/side.svg",
  22031. extra: 365 / 318,
  22032. bottom: 0.052
  22033. },
  22034. default: true
  22035. },
  22036. back: {
  22037. height: math.unit(14, "feet"),
  22038. weight: math.unit(12000, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/mort/back.svg",
  22042. extra: 371 / 332,
  22043. bottom: 0.18
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(14, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22057. {
  22058. front: {
  22059. height: math.unit(8, "feet"),
  22060. weight: math.unit(1, "ton"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/lycoa/front.svg",
  22064. extra: 1836/1728,
  22065. bottom: 81/1917
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(8, "feet"),
  22070. weight: math.unit(1, "ton"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/lycoa/back.svg",
  22074. extra: 1785/1720,
  22075. bottom: 91/1876
  22076. }
  22077. },
  22078. head: {
  22079. height: math.unit(1.6243, "feet"),
  22080. name: "Head",
  22081. image: {
  22082. source: "./media/characters/lycoa/head.svg",
  22083. extra: 1011/782,
  22084. bottom: 0/1011
  22085. }
  22086. },
  22087. tailmaw: {
  22088. height: math.unit(1.9, "feet"),
  22089. name: "Tailmaw",
  22090. image: {
  22091. source: "./media/characters/lycoa/tailmaw.svg"
  22092. }
  22093. },
  22094. tentacles: {
  22095. height: math.unit(2.1, "feet"),
  22096. name: "Tentacles",
  22097. image: {
  22098. source: "./media/characters/lycoa/tentacles.svg"
  22099. }
  22100. },
  22101. dick: {
  22102. height: math.unit(1.73, "feet"),
  22103. name: "Dick",
  22104. image: {
  22105. source: "./media/characters/lycoa/dick.svg"
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(8, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(30, "feet")
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22123. {
  22124. front: {
  22125. height: math.unit(4 + 2 / 12, "feet"),
  22126. weight: math.unit(70, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/naldara/front.svg",
  22130. extra: 1664/1387,
  22131. bottom: 81/1745
  22132. },
  22133. form: "anthro",
  22134. default: true
  22135. },
  22136. naga: {
  22137. height: math.unit(20, "feet"),
  22138. weight: math.unit(15000, "kg"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/naldara/naga.svg",
  22142. extra: 1590/1396,
  22143. bottom: 285/1875
  22144. },
  22145. form: "naga",
  22146. default: true
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Normal",
  22152. height: math.unit(4 + 2 / 12, "feet"),
  22153. form: "anthro",
  22154. default: true
  22155. },
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(20, "feet"),
  22159. form: "naga",
  22160. default: true
  22161. },
  22162. ],
  22163. {
  22164. "anthro": {
  22165. name: "Anthro",
  22166. default: true
  22167. },
  22168. "naga": {
  22169. name: "Naga"
  22170. }
  22171. }
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(13 + 7 / 12, "feet"),
  22178. weight: math.unit(1500, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/briar/front.svg",
  22182. extra: 1223/1157,
  22183. bottom: 123/1346
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(13 + 7 / 12, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22197. {
  22198. side: {
  22199. height: math.unit(16, "feet"),
  22200. weight: math.unit(500, "lb"),
  22201. name: "Side",
  22202. image: {
  22203. source: "./media/characters/vanguard/side.svg",
  22204. extra: 1022/914,
  22205. bottom: 30/1052
  22206. }
  22207. },
  22208. sideAlt: {
  22209. height: math.unit(10, "feet"),
  22210. weight: math.unit(500, "lb"),
  22211. name: "Side (Alt)",
  22212. image: {
  22213. source: "./media/characters/vanguard/side-alt.svg",
  22214. extra: 502 / 425,
  22215. bottom: 0.087
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(17.71, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22229. {
  22230. front: {
  22231. height: math.unit(7.5, "feet"),
  22232. weight: math.unit(2, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/artemis/work-safe-front.svg",
  22236. extra: 1192 / 1075,
  22237. bottom: 0.07
  22238. },
  22239. form: "work-safe",
  22240. default: true
  22241. },
  22242. frontNsfw: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/artemis/calibrating-front.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "calibrating",
  22252. default: true
  22253. },
  22254. frontNsfwer: {
  22255. height: math.unit(7.5, "feet"),
  22256. weight: math.unit(2, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/artemis/oversize-load-front.svg",
  22260. extra: 1192 / 1075,
  22261. bottom: 0.07
  22262. },
  22263. form: "oversize-load",
  22264. default: true
  22265. },
  22266. side: {
  22267. height: math.unit(7.5, "feet"),
  22268. weight: math.unit(2, "lb"),
  22269. name: "Side",
  22270. image: {
  22271. source: "./media/characters/artemis/work-safe-side.svg",
  22272. extra: 1192 / 1075,
  22273. bottom: 0.07
  22274. },
  22275. form: "work-safe"
  22276. },
  22277. sideNsfw: {
  22278. height: math.unit(7.5, "feet"),
  22279. weight: math.unit(2, "lb"),
  22280. name: "Side",
  22281. image: {
  22282. source: "./media/characters/artemis/calibrating-side.svg",
  22283. extra: 1192 / 1075,
  22284. bottom: 0.07
  22285. },
  22286. form: "calibrating"
  22287. },
  22288. sideNsfwer: {
  22289. height: math.unit(7.5, "feet"),
  22290. weight: math.unit(2, "lb"),
  22291. name: "Side",
  22292. image: {
  22293. source: "./media/characters/artemis/oversize-load-side.svg",
  22294. extra: 1192 / 1075,
  22295. bottom: 0.07
  22296. },
  22297. form: "oversize-load"
  22298. },
  22299. maw: {
  22300. height: math.unit(1.1, "feet"),
  22301. name: "Maw",
  22302. image: {
  22303. source: "./media/characters/artemis/maw.svg"
  22304. },
  22305. form: "work-safe"
  22306. },
  22307. stomach: {
  22308. height: math.unit(0.95, "feet"),
  22309. name: "Stomach",
  22310. image: {
  22311. source: "./media/characters/artemis/stomach.svg"
  22312. },
  22313. form: "work-safe"
  22314. },
  22315. dickCanine: {
  22316. height: math.unit(1, "feet"),
  22317. name: "Dick (Canine)",
  22318. image: {
  22319. source: "./media/characters/artemis/dick-canine.svg"
  22320. },
  22321. form: "calibrating"
  22322. },
  22323. dickEquine: {
  22324. height: math.unit(0.85, "feet"),
  22325. name: "Dick (Equine)",
  22326. image: {
  22327. source: "./media/characters/artemis/dick-equine.svg"
  22328. },
  22329. form: "calibrating"
  22330. },
  22331. dickExotic: {
  22332. height: math.unit(0.85, "feet"),
  22333. name: "Dick (Exotic)",
  22334. image: {
  22335. source: "./media/characters/artemis/dick-exotic.svg"
  22336. },
  22337. form: "calibrating"
  22338. },
  22339. dickCanineBigger: {
  22340. height: math.unit(1 * 1.33, "feet"),
  22341. name: "Dick (Canine)",
  22342. image: {
  22343. source: "./media/characters/artemis/dick-canine.svg"
  22344. },
  22345. form: "oversize-load"
  22346. },
  22347. dickEquineBigger: {
  22348. height: math.unit(0.85 * 1.33, "feet"),
  22349. name: "Dick (Equine)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-equine.svg"
  22352. },
  22353. form: "oversize-load"
  22354. },
  22355. dickExoticBigger: {
  22356. height: math.unit(0.85 * 1.33, "feet"),
  22357. name: "Dick (Exotic)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-exotic.svg"
  22360. },
  22361. form: "oversize-load"
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(7.5, "feet"),
  22368. form: "work-safe",
  22369. default: true
  22370. },
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(7.5, "feet"),
  22374. form: "calibrating",
  22375. default: true
  22376. },
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(7.5, "feet"),
  22380. form: "oversize-load",
  22381. default: true
  22382. },
  22383. {
  22384. name: "Enlarged",
  22385. height: math.unit(12, "feet"),
  22386. form: "work-safe",
  22387. },
  22388. {
  22389. name: "Enlarged",
  22390. height: math.unit(12, "feet"),
  22391. form: "calibrating",
  22392. },
  22393. {
  22394. name: "Enlarged",
  22395. height: math.unit(12, "feet"),
  22396. form: "oversize-load",
  22397. },
  22398. ],
  22399. {
  22400. "work-safe": {
  22401. name: "Work-Safe",
  22402. default: true
  22403. },
  22404. "calibrating": {
  22405. name: "Calibrating"
  22406. },
  22407. "oversize-load": {
  22408. name: "Oversize Load"
  22409. }
  22410. }
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(5 + 3 / 12, "feet"),
  22417. weight: math.unit(160, "lb"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/kira/front.svg",
  22421. extra: 906 / 786,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. back: {
  22426. height: math.unit(5 + 3 / 12, "feet"),
  22427. weight: math.unit(160, "lb"),
  22428. name: "Back",
  22429. image: {
  22430. source: "./media/characters/kira/back.svg",
  22431. extra: 882 / 757,
  22432. bottom: 0.005
  22433. }
  22434. },
  22435. frontDressed: {
  22436. height: math.unit(5 + 3 / 12, "feet"),
  22437. weight: math.unit(160, "lb"),
  22438. name: "Front (Dressed)",
  22439. image: {
  22440. source: "./media/characters/kira/front-dressed.svg",
  22441. extra: 906 / 786,
  22442. bottom: 0.01
  22443. }
  22444. },
  22445. beans: {
  22446. height: math.unit(0.92, "feet"),
  22447. name: "Beans",
  22448. image: {
  22449. source: "./media/characters/kira/beans.svg"
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(5 + 3 / 12, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(5 + 4 / 12, "feet"),
  22466. weight: math.unit(145, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/scramble/front.svg",
  22470. extra: 763 / 727,
  22471. bottom: 0.05
  22472. }
  22473. },
  22474. back: {
  22475. height: math.unit(5 + 4 / 12, "feet"),
  22476. weight: math.unit(145, "lb"),
  22477. name: "Back",
  22478. image: {
  22479. source: "./media/characters/scramble/back.svg",
  22480. extra: 826 / 737,
  22481. bottom: 0.002
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(5 + 4 / 12, "feet"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22495. {
  22496. side: {
  22497. height: math.unit(6 + 2 / 12, "feet"),
  22498. weight: math.unit(190, "lb"),
  22499. name: "Side",
  22500. image: {
  22501. source: "./media/characters/biscuit/side.svg",
  22502. extra: 858 / 791,
  22503. bottom: 0.044
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(6 + 2 / 12, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 2 / 12, "feet"),
  22520. weight: math.unit(120, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/poffin/front.svg",
  22524. extra: 786 / 680,
  22525. bottom: 0.005
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(5 + 2 / 12, "feet"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(6 + 3 / 12, "feet"),
  22542. weight: math.unit(519, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/dhari/front.svg",
  22546. extra: 1048 / 946,
  22547. bottom: 0.015
  22548. }
  22549. },
  22550. back: {
  22551. height: math.unit(6 + 3 / 12, "feet"),
  22552. weight: math.unit(519, "lb"),
  22553. name: "Back",
  22554. image: {
  22555. source: "./media/characters/dhari/back.svg",
  22556. extra: 1048 / 931,
  22557. bottom: 0.005
  22558. }
  22559. },
  22560. frontDressed: {
  22561. height: math.unit(6 + 3 / 12, "feet"),
  22562. weight: math.unit(519, "lb"),
  22563. name: "Front (Dressed)",
  22564. image: {
  22565. source: "./media/characters/dhari/front-dressed.svg",
  22566. extra: 1713 / 1546,
  22567. bottom: 0.02
  22568. }
  22569. },
  22570. backDressed: {
  22571. height: math.unit(6 + 3 / 12, "feet"),
  22572. weight: math.unit(519, "lb"),
  22573. name: "Back (Dressed)",
  22574. image: {
  22575. source: "./media/characters/dhari/back-dressed.svg",
  22576. extra: 1699 / 1537,
  22577. bottom: 0.01
  22578. }
  22579. },
  22580. maw: {
  22581. height: math.unit(0.95, "feet"),
  22582. name: "Maw",
  22583. image: {
  22584. source: "./media/characters/dhari/maw.svg"
  22585. }
  22586. },
  22587. wereFront: {
  22588. height: math.unit(12 + 8 / 12, "feet"),
  22589. weight: math.unit(4000, "lb"),
  22590. name: "Front (Were)",
  22591. image: {
  22592. source: "./media/characters/dhari/were-front.svg",
  22593. extra: 1065 / 969,
  22594. bottom: 0.015
  22595. }
  22596. },
  22597. wereBack: {
  22598. height: math.unit(12 + 8 / 12, "feet"),
  22599. weight: math.unit(4000, "lb"),
  22600. name: "Back (Were)",
  22601. image: {
  22602. source: "./media/characters/dhari/were-back.svg",
  22603. extra: 1065 / 969,
  22604. bottom: 0.012
  22605. }
  22606. },
  22607. wereMaw: {
  22608. height: math.unit(0.625, "meters"),
  22609. name: "Maw (Were)",
  22610. image: {
  22611. source: "./media/characters/dhari/were-maw.svg"
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(6 + 3 / 12, "feet"),
  22619. default: true
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22625. {
  22626. anthro: {
  22627. height: math.unit(5 + 7 / 12, "feet"),
  22628. weight: math.unit(175, "lb"),
  22629. name: "Anthro",
  22630. image: {
  22631. source: "./media/characters/rena-dyne/anthro.svg",
  22632. extra: 1849 / 1785,
  22633. bottom: 0.005
  22634. }
  22635. },
  22636. taur: {
  22637. height: math.unit(15 + 6 / 12, "feet"),
  22638. weight: math.unit(8000, "lb"),
  22639. name: "Taur",
  22640. image: {
  22641. source: "./media/characters/rena-dyne/taur.svg",
  22642. extra: 2315 / 2234,
  22643. bottom: 0.033
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(5 + 7 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(8, "feet"),
  22660. weight: math.unit(600, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/weremeep/front.svg",
  22664. extra: 970/849,
  22665. bottom: 7/977
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(8, "feet"),
  22673. default: true
  22674. },
  22675. {
  22676. name: "Lorg",
  22677. height: math.unit(12, "feet")
  22678. },
  22679. {
  22680. name: "Oh Lawd She Comin'",
  22681. height: math.unit(20, "feet")
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22687. {
  22688. front: {
  22689. height: math.unit(4, "feet"),
  22690. weight: math.unit(90, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/reza/front.svg",
  22694. extra: 1183 / 1111,
  22695. bottom: 0.017
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(4, "feet"),
  22700. weight: math.unit(90, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/reza/back.svg",
  22704. extra: 1183 / 1111,
  22705. bottom: 0.01
  22706. }
  22707. },
  22708. drake: {
  22709. height: math.unit(30, "feet"),
  22710. weight: math.unit(246960, "lb"),
  22711. name: "Drake",
  22712. image: {
  22713. source: "./media/characters/reza/drake.svg",
  22714. extra: 2350 / 2024,
  22715. bottom: 60.7 / 2403
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(4, "feet"),
  22723. default: true
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22729. {
  22730. side: {
  22731. height: math.unit(15, "feet"),
  22732. weight: math.unit(14, "tons"),
  22733. name: "Side",
  22734. image: {
  22735. source: "./media/characters/athea/side.svg",
  22736. extra: 960 / 540,
  22737. bottom: 0.003
  22738. }
  22739. },
  22740. sitting: {
  22741. height: math.unit(6 * 2.85, "feet"),
  22742. weight: math.unit(14, "tons"),
  22743. name: "Sitting",
  22744. image: {
  22745. source: "./media/characters/athea/sitting.svg",
  22746. extra: 621 / 581,
  22747. bottom: 0.075
  22748. }
  22749. },
  22750. maw: {
  22751. height: math.unit(7.59498031496063, "feet"),
  22752. name: "Maw",
  22753. image: {
  22754. source: "./media/characters/athea/maw.svg"
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Lap Cat",
  22761. height: math.unit(2.5, "feet")
  22762. },
  22763. {
  22764. name: "Minimacro",
  22765. height: math.unit(15, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(120, "feet")
  22771. },
  22772. {
  22773. name: "Macro+",
  22774. height: math.unit(640, "feet")
  22775. },
  22776. {
  22777. name: "Colossus",
  22778. height: math.unit(2.2, "miles")
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22784. {
  22785. front: {
  22786. height: math.unit(8 + 8 / 12, "feet"),
  22787. weight: math.unit(130, "kg"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/seroko/front.svg",
  22791. extra: 1385 / 1280,
  22792. bottom: 0.025
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(8 + 8 / 12, "feet"),
  22797. weight: math.unit(130, "kg"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/seroko/back.svg",
  22801. extra: 1369 / 1238,
  22802. bottom: 0.018
  22803. }
  22804. },
  22805. frontDressed: {
  22806. height: math.unit(8 + 8 / 12, "feet"),
  22807. weight: math.unit(130, "kg"),
  22808. name: "Front (Dressed)",
  22809. image: {
  22810. source: "./media/characters/seroko/front-dressed.svg",
  22811. extra: 1366 / 1275,
  22812. bottom: 0.03
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(8 + 8 / 12, "feet"),
  22820. default: true
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(5.5, "feet"),
  22829. weight: math.unit(160, "lb"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/quatzi/front.svg",
  22833. extra: 2346 / 2242,
  22834. bottom: 0.015
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(5.5, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Big",
  22846. height: math.unit(7.7, "feet")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(5 + 11 / 12, "feet"),
  22855. weight: math.unit(180, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/sen/front.svg",
  22859. extra: 1321 / 1254,
  22860. bottom: 0.015
  22861. }
  22862. },
  22863. side: {
  22864. height: math.unit(5 + 11 / 12, "feet"),
  22865. weight: math.unit(180, "lb"),
  22866. name: "Side",
  22867. image: {
  22868. source: "./media/characters/sen/side.svg",
  22869. extra: 1321 / 1254,
  22870. bottom: 0.007
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(5 + 11 / 12, "feet"),
  22875. weight: math.unit(180, "lb"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/sen/back.svg",
  22879. extra: 1321 / 1254
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(5 + 11 / 12, "feet"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(166.6, "cm"),
  22896. weight: math.unit(66.6, "kg"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/fruity/front.svg",
  22900. extra: 1510 / 1386,
  22901. bottom: 0.04
  22902. }
  22903. },
  22904. back: {
  22905. height: math.unit(166.6, "cm"),
  22906. weight: math.unit(66.6, "lb"),
  22907. name: "Back",
  22908. image: {
  22909. source: "./media/characters/fruity/back.svg",
  22910. extra: 1563 / 1435,
  22911. bottom: 0.005
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(166.6, "cm"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Demonic",
  22923. height: math.unit(166.6, "feet")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22929. {
  22930. side: {
  22931. height: math.unit(10, "feet"),
  22932. weight: math.unit(500, "lb"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/zost/side.svg",
  22936. extra: 2870/2533,
  22937. bottom: 252/3122
  22938. }
  22939. },
  22940. mawFront: {
  22941. height: math.unit(1.08, "meters"),
  22942. name: "Maw (Front)",
  22943. image: {
  22944. source: "./media/characters/zost/maw-front.svg"
  22945. }
  22946. },
  22947. mawSide: {
  22948. height: math.unit(2.66, "feet"),
  22949. name: "Maw (Side)",
  22950. image: {
  22951. source: "./media/characters/zost/maw-side.svg"
  22952. }
  22953. },
  22954. wingspan: {
  22955. height: math.unit(7.4, "feet"),
  22956. name: "Wingspan",
  22957. image: {
  22958. source: "./media/characters/zost/wingspan.svg"
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(10, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(5 + 4 / 12, "feet"),
  22975. weight: math.unit(120, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/luci/front.svg",
  22979. extra: 1985 / 1884,
  22980. bottom: 0.04
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(5 + 4 / 12, "feet"),
  22985. weight: math.unit(120, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/luci/back.svg",
  22989. extra: 1892 / 1791,
  22990. bottom: 0.002
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(1500, "feet"),
  23007. weight: math.unit(3.8e6, "tons"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/2th/front.svg",
  23011. extra: 3489 / 3350,
  23012. bottom: 0.1
  23013. }
  23014. },
  23015. foot: {
  23016. height: math.unit(461, "feet"),
  23017. name: "Foot",
  23018. image: {
  23019. source: "./media/characters/2th/foot.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "\"Micro\"",
  23026. height: math.unit(15 + 7 / 12, "feet")
  23027. },
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(1500, "feet"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(5000, "feet")
  23036. },
  23037. {
  23038. name: "Megamacro",
  23039. height: math.unit(15, "miles")
  23040. },
  23041. {
  23042. name: "Gigamacro",
  23043. height: math.unit(4000, "miles")
  23044. },
  23045. {
  23046. name: "Galactic",
  23047. height: math.unit(50, "AU")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(5 + 6 / 12, "feet"),
  23056. weight: math.unit(220, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/amethyst/front.svg",
  23060. extra: 2078 / 2040,
  23061. bottom: 0.045
  23062. }
  23063. },
  23064. back: {
  23065. height: math.unit(5 + 6 / 12, "feet"),
  23066. weight: math.unit(220, "lb"),
  23067. name: "Back",
  23068. image: {
  23069. source: "./media/characters/amethyst/back.svg",
  23070. extra: 2021 / 1989,
  23071. bottom: 0.02
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(5 + 6 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(4 + 11 / 12, "feet"),
  23088. weight: math.unit(120, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/yumi-akiyama/front.svg",
  23092. extra: 1327 / 1235,
  23093. bottom: 0.02
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(4 + 11 / 12, "feet"),
  23098. weight: math.unit(120, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/yumi-akiyama/back.svg",
  23102. extra: 1287 / 1245,
  23103. bottom: 0.002
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Galactic",
  23110. height: math.unit(50, "galaxies"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Universal",
  23115. height: math.unit(100, "universes")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(8, "feet"),
  23124. weight: math.unit(500, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/front.svg",
  23128. extra: 1180 / 1125,
  23129. bottom: 0.02
  23130. }
  23131. },
  23132. back: {
  23133. height: math.unit(8, "feet"),
  23134. weight: math.unit(500, "lb"),
  23135. name: "Back",
  23136. image: {
  23137. source: "./media/characters/rifter-yrmori/back.svg",
  23138. extra: 1190 / 1145,
  23139. bottom: 0.001
  23140. }
  23141. },
  23142. wings: {
  23143. height: math.unit(7.75, "feet"),
  23144. weight: math.unit(500, "lb"),
  23145. name: "Wings",
  23146. image: {
  23147. source: "./media/characters/rifter-yrmori/wings.svg",
  23148. extra: 1357 / 1285
  23149. }
  23150. },
  23151. maw: {
  23152. height: math.unit(0.8, "feet"),
  23153. name: "Maw",
  23154. image: {
  23155. source: "./media/characters/rifter-yrmori/maw.svg"
  23156. }
  23157. },
  23158. mawfront: {
  23159. height: math.unit(1.45, "feet"),
  23160. name: "Maw (Front)",
  23161. image: {
  23162. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(8, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Macro",
  23174. height: math.unit(42, "meters")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23180. {
  23181. were: {
  23182. height: math.unit(25 + 6 / 12, "feet"),
  23183. weight: math.unit(10000, "lb"),
  23184. name: "Were",
  23185. image: {
  23186. source: "./media/characters/tahajin/were.svg",
  23187. extra: 801 / 770,
  23188. bottom: 0.042
  23189. }
  23190. },
  23191. aquatic: {
  23192. height: math.unit(6 + 4 / 12, "feet"),
  23193. weight: math.unit(160, "lb"),
  23194. name: "Aquatic",
  23195. image: {
  23196. source: "./media/characters/tahajin/aquatic.svg",
  23197. extra: 572 / 542,
  23198. bottom: 0.04
  23199. }
  23200. },
  23201. chow: {
  23202. height: math.unit(8 + 11 / 12, "feet"),
  23203. weight: math.unit(450, "lb"),
  23204. name: "Chow",
  23205. image: {
  23206. source: "./media/characters/tahajin/chow.svg",
  23207. extra: 660 / 640,
  23208. bottom: 0.015
  23209. }
  23210. },
  23211. demiNaga: {
  23212. height: math.unit(6 + 8 / 12, "feet"),
  23213. weight: math.unit(300, "lb"),
  23214. name: "Demi Naga",
  23215. image: {
  23216. source: "./media/characters/tahajin/demi-naga.svg",
  23217. extra: 643 / 615,
  23218. bottom: 0.1
  23219. }
  23220. },
  23221. data: {
  23222. height: math.unit(5, "inches"),
  23223. weight: math.unit(0.1, "lb"),
  23224. name: "Data",
  23225. image: {
  23226. source: "./media/characters/tahajin/data.svg"
  23227. }
  23228. },
  23229. fluu: {
  23230. height: math.unit(5 + 7 / 12, "feet"),
  23231. weight: math.unit(140, "lb"),
  23232. name: "Fluu",
  23233. image: {
  23234. source: "./media/characters/tahajin/fluu.svg",
  23235. extra: 628 / 592,
  23236. bottom: 0.02
  23237. }
  23238. },
  23239. starWarrior: {
  23240. height: math.unit(4 + 5 / 12, "feet"),
  23241. weight: math.unit(50, "lb"),
  23242. name: "Star Warrior",
  23243. image: {
  23244. source: "./media/characters/tahajin/star-warrior.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(25 + 6 / 12, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(8, "feet"),
  23261. weight: math.unit(350, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/gabira/front.svg",
  23265. extra: 1261/1154,
  23266. bottom: 51/1312
  23267. }
  23268. },
  23269. back: {
  23270. height: math.unit(8, "feet"),
  23271. weight: math.unit(350, "lb"),
  23272. name: "Back",
  23273. image: {
  23274. source: "./media/characters/gabira/back.svg",
  23275. extra: 1265/1163,
  23276. bottom: 46/1311
  23277. }
  23278. },
  23279. head: {
  23280. height: math.unit(2.85, "feet"),
  23281. name: "Head",
  23282. image: {
  23283. source: "./media/characters/gabira/head.svg"
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(8, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(5 + 3 / 12, "feet"),
  23300. weight: math.unit(137, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/sasha-katraine/front.svg",
  23304. extra: 1745/1694,
  23305. bottom: 37/1782
  23306. }
  23307. },
  23308. back: {
  23309. height: math.unit(5 + 3 / 12, "feet"),
  23310. weight: math.unit(137, "lb"),
  23311. name: "Back",
  23312. image: {
  23313. source: "./media/characters/sasha-katraine/back.svg",
  23314. extra: 1776/1699,
  23315. bottom: 26/1802
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Micro",
  23322. height: math.unit(5, "inches")
  23323. },
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(5 + 3 / 12, "feet"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23333. {
  23334. side: {
  23335. height: math.unit(4, "inches"),
  23336. weight: math.unit(200, "grams"),
  23337. name: "Side",
  23338. image: {
  23339. source: "./media/characters/der/side.svg",
  23340. extra: 719 / 400,
  23341. bottom: 30.6 / 749.9187
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Micro",
  23348. height: math.unit(4, "inches"),
  23349. default: true
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23355. {
  23356. side: {
  23357. height: math.unit(30, "meters"),
  23358. weight: math.unit(700, "tonnes"),
  23359. name: "Side",
  23360. image: {
  23361. source: "./media/characters/fixerdragon/side.svg",
  23362. extra: (1293.0514 - 116.03) / 1106.86,
  23363. bottom: 116.03 / 1293.0514
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Planck",
  23370. height: math.unit(1.6e-35, "meters")
  23371. },
  23372. {
  23373. name: "Micro",
  23374. height: math.unit(0.4, "meters")
  23375. },
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(30, "meters"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Megamacro",
  23383. height: math.unit(1.2, "megameters")
  23384. },
  23385. {
  23386. name: "Teramacro",
  23387. height: math.unit(130, "terameters")
  23388. },
  23389. {
  23390. name: "Yottamacro",
  23391. height: math.unit(6200, "yottameters")
  23392. },
  23393. ]
  23394. ));
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(8, "feet"),
  23400. weight: math.unit(250, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/kite/front.svg",
  23404. extra: 2796 / 2659,
  23405. bottom: 0.002
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Normal",
  23412. height: math.unit(8, "feet"),
  23413. default: true
  23414. },
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(360, "feet")
  23418. },
  23419. {
  23420. name: "Megamacro",
  23421. height: math.unit(1500, "feet")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(5 + 11/12, "feet"),
  23430. weight: math.unit(170, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/front.svg",
  23434. extra: 1735/1585,
  23435. bottom: 96/1831
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(5 + 11/12, "feet"),
  23440. weight: math.unit(170, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/back.svg",
  23444. extra: 1749/1607,
  23445. bottom: 28/1777
  23446. }
  23447. },
  23448. male: {
  23449. height: math.unit(5 + 11/12, "feet"),
  23450. weight: math.unit(170, "lb"),
  23451. name: "Male",
  23452. image: {
  23453. source: "./media/characters/poojawa-vynar/male.svg",
  23454. extra: 1855/1713,
  23455. bottom: 63/1918
  23456. }
  23457. },
  23458. taur: {
  23459. height: math.unit(5 + 11/12, "feet"),
  23460. weight: math.unit(170, "lb"),
  23461. name: "Taur",
  23462. image: {
  23463. source: "./media/characters/poojawa-vynar/taur.svg",
  23464. extra: 1151/1059,
  23465. bottom: 356/1507
  23466. }
  23467. },
  23468. frontDressed: {
  23469. height: math.unit(5 + 11/12, "feet"),
  23470. weight: math.unit(170, "lb"),
  23471. name: "Front (Dressed)",
  23472. image: {
  23473. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23474. extra: 1735/1585,
  23475. bottom: 96/1831
  23476. }
  23477. },
  23478. backDressed: {
  23479. height: math.unit(5 + 11/12, "feet"),
  23480. weight: math.unit(170, "lb"),
  23481. name: "Back (Dressed)",
  23482. image: {
  23483. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23484. extra: 1749/1607,
  23485. bottom: 28/1777
  23486. }
  23487. },
  23488. maleDressed: {
  23489. height: math.unit(5 + 11/12, "feet"),
  23490. weight: math.unit(170, "lb"),
  23491. name: "Male (Dressed)",
  23492. image: {
  23493. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23494. extra: 1855/1713,
  23495. bottom: 63/1918
  23496. }
  23497. },
  23498. taurDressed: {
  23499. height: math.unit(5 + 11/12, "feet"),
  23500. weight: math.unit(170, "lb"),
  23501. name: "Taur (Dressed)",
  23502. image: {
  23503. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23504. extra: 1151/1059,
  23505. bottom: 356/1507
  23506. }
  23507. },
  23508. maw: {
  23509. height: math.unit(1.46, "feet"),
  23510. name: "Maw",
  23511. image: {
  23512. source: "./media/characters/poojawa-vynar/maw.svg"
  23513. }
  23514. },
  23515. head: {
  23516. height: math.unit(2.34, "feet"),
  23517. name: "Head",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/head.svg"
  23520. }
  23521. },
  23522. paw: {
  23523. height: math.unit(1.61, "feet"),
  23524. name: "Paw",
  23525. image: {
  23526. source: "./media/characters/poojawa-vynar/paw.svg"
  23527. }
  23528. },
  23529. pawToering: {
  23530. height: math.unit(1.72, "feet"),
  23531. name: "Paw (Toering)",
  23532. image: {
  23533. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23534. }
  23535. },
  23536. toering: {
  23537. height: math.unit(2.9, "inches"),
  23538. name: "Toering",
  23539. image: {
  23540. source: "./media/characters/poojawa-vynar/toering.svg"
  23541. }
  23542. },
  23543. shaft: {
  23544. height: math.unit(0.625, "feet"),
  23545. name: "Shaft",
  23546. image: {
  23547. source: "./media/characters/poojawa-vynar/shaft.svg"
  23548. }
  23549. },
  23550. spade: {
  23551. height: math.unit(0.42, "feet"),
  23552. name: "Spade",
  23553. image: {
  23554. source: "./media/characters/poojawa-vynar/spade.svg"
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Shortstack",
  23561. height: math.unit(4, "feet")
  23562. },
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 11 / 12, "feet"),
  23566. default: true
  23567. },
  23568. {
  23569. name: "Tauric",
  23570. height: math.unit(4, "meters")
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(293, "meters"),
  23579. weight: math.unit(70400, "tons"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/violette/front.svg",
  23583. extra: 1227 / 1180,
  23584. bottom: 0.005
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(293, "meters"),
  23589. weight: math.unit(70400, "tons"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/violette/back.svg",
  23593. extra: 1227 / 1180,
  23594. bottom: 0.005
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(293, "meters"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(1050, "feet"),
  23611. weight: math.unit(200000, "tons"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/alessandra/front.svg",
  23615. extra: 960 / 912,
  23616. bottom: 0.06
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(1050, "feet")
  23624. },
  23625. {
  23626. name: "Macro+",
  23627. height: math.unit(900, "meters"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(5, "feet"),
  23637. weight: math.unit(187, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/person/front.svg",
  23641. extra: 3087 / 2945,
  23642. bottom: 91 / 3181
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Micro",
  23649. height: math.unit(3, "inches")
  23650. },
  23651. {
  23652. name: "Normal",
  23653. height: math.unit(5, "feet"),
  23654. default: true
  23655. },
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(90, "feet")
  23659. },
  23660. {
  23661. name: "Max Size",
  23662. height: math.unit(280, "feet")
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(4.5, "meters"),
  23671. weight: math.unit(3200, "lb"),
  23672. name: "Front",
  23673. image: {
  23674. source: "./media/characters/ty/front.svg",
  23675. extra: 1038 / 960,
  23676. bottom: 31.156 / 1068
  23677. }
  23678. },
  23679. back: {
  23680. height: math.unit(4.5, "meters"),
  23681. weight: math.unit(3200, "lb"),
  23682. name: "Back",
  23683. image: {
  23684. source: "./media/characters/ty/back.svg",
  23685. extra: 1044 / 966,
  23686. bottom: 7.48 / 1049
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(4.5, "meters"),
  23694. default: true
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23700. {
  23701. front: {
  23702. height: math.unit(5 + 4 / 12, "feet"),
  23703. weight: math.unit(115, "lb"),
  23704. name: "Front",
  23705. image: {
  23706. source: "./media/characters/rocky/front.svg",
  23707. extra: 1012 / 975,
  23708. bottom: 54 / 1066
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(5 + 4 / 12, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23722. {
  23723. upright: {
  23724. height: math.unit(6, "meters"),
  23725. weight: math.unit(4000, "kg"),
  23726. name: "Upright",
  23727. image: {
  23728. source: "./media/characters/ruin/upright.svg",
  23729. extra: 668 / 661,
  23730. bottom: 42 / 799.8396
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(6, "meters"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(5, "feet"),
  23747. weight: math.unit(106, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/robin/front.svg",
  23751. extra: 862 / 799,
  23752. bottom: 42.4 / 914.8856
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(5, "feet"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23766. {
  23767. side: {
  23768. height: math.unit(3, "feet"),
  23769. weight: math.unit(225, "lb"),
  23770. name: "Side",
  23771. image: {
  23772. source: "./media/characters/saian/side.svg",
  23773. extra: 566 / 356,
  23774. bottom: 79.7 / 643
  23775. }
  23776. },
  23777. maw: {
  23778. height: math.unit(2.85, "feet"),
  23779. name: "Maw",
  23780. image: {
  23781. source: "./media/characters/saian/maw.svg"
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(3, "feet"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23795. {
  23796. side: {
  23797. height: math.unit(8, "feet"),
  23798. weight: math.unit(300, "lb"),
  23799. name: "Side",
  23800. image: {
  23801. source: "./media/characters/equus-silvermane/side.svg",
  23802. extra: 2176 / 2050,
  23803. bottom: 65.7 / 2245
  23804. }
  23805. },
  23806. front: {
  23807. height: math.unit(8, "feet"),
  23808. weight: math.unit(300, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/equus-silvermane/front.svg",
  23812. extra: 4633 / 4400,
  23813. bottom: 71.3 / 4706.915
  23814. }
  23815. },
  23816. sideStepping: {
  23817. height: math.unit(8, "feet"),
  23818. weight: math.unit(300, "lb"),
  23819. name: "Side (Stepping)",
  23820. image: {
  23821. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23822. extra: 1968 / 1860,
  23823. bottom: 16.4 / 1989
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(8, "feet")
  23831. },
  23832. {
  23833. name: "Minimacro",
  23834. height: math.unit(75, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(150, "feet")
  23840. },
  23841. {
  23842. name: "Macro+",
  23843. height: math.unit(1000, "feet")
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(1, "mile")
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23853. {
  23854. side: {
  23855. height: math.unit(20, "feet"),
  23856. weight: math.unit(30000, "kg"),
  23857. name: "Side",
  23858. image: {
  23859. source: "./media/characters/windar/side.svg",
  23860. extra: 1491 / 1248,
  23861. bottom: 82.56 / 1568
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(20, "feet"),
  23869. default: true
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23875. {
  23876. side: {
  23877. height: math.unit(15.66, "feet"),
  23878. weight: math.unit(150, "lb"),
  23879. name: "Side",
  23880. image: {
  23881. source: "./media/characters/melody/side.svg",
  23882. extra: 1097 / 944,
  23883. bottom: 11.8 / 1109
  23884. }
  23885. },
  23886. sideOutfit: {
  23887. height: math.unit(15.66, "feet"),
  23888. weight: math.unit(150, "lb"),
  23889. name: "Side (Outfit)",
  23890. image: {
  23891. source: "./media/characters/melody/side-outfit.svg",
  23892. extra: 1097 / 944,
  23893. bottom: 11.8 / 1109
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(15.66, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23907. {
  23908. armoredFront: {
  23909. height: math.unit(8, "feet"),
  23910. weight: math.unit(325, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/windera/armored-front.svg",
  23914. extra: 1830/1598,
  23915. bottom: 151/1981
  23916. },
  23917. form: "armored",
  23918. default: true
  23919. },
  23920. macroFront: {
  23921. height: math.unit(70, "feet"),
  23922. weight: math.unit(315453, "lb"),
  23923. name: "Front",
  23924. image: {
  23925. source: "./media/characters/windera/macro-front.svg",
  23926. extra: 963/883,
  23927. bottom: 23/986
  23928. },
  23929. form: "macro",
  23930. default: true
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Normal",
  23936. height: math.unit(8, "feet"),
  23937. default: true,
  23938. form: "armored"
  23939. },
  23940. {
  23941. name: "Normal",
  23942. height: math.unit(70, "feet"),
  23943. default: true,
  23944. form: "macro"
  23945. },
  23946. ],
  23947. {
  23948. "armored": {
  23949. name: "Armored",
  23950. default: true
  23951. },
  23952. "macro": {
  23953. name: "Macro",
  23954. },
  23955. }
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23959. {
  23960. front: {
  23961. height: math.unit(28.75, "feet"),
  23962. weight: math.unit(2000, "kg"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/sonear/front.svg",
  23966. extra: 1041.1 / 964.9,
  23967. bottom: 53.7 / 1096.6
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(28.75, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23981. {
  23982. side: {
  23983. height: math.unit(25.5, "feet"),
  23984. weight: math.unit(23000, "kg"),
  23985. name: "Side",
  23986. image: {
  23987. source: "./media/characters/kanara/side.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(25.5, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24001. {
  24002. side: {
  24003. height: math.unit(10, "feet"),
  24004. weight: math.unit(1000, "kg"),
  24005. name: "Side",
  24006. image: {
  24007. source: "./media/characters/ereus/side.svg",
  24008. extra: 1157 / 959,
  24009. bottom: 153 / 1312.5
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(10, "feet"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24023. {
  24024. side: {
  24025. height: math.unit(4.5, "feet"),
  24026. weight: math.unit(500, "lb"),
  24027. name: "Side",
  24028. image: {
  24029. source: "./media/characters/e-ter/side.svg",
  24030. extra: 1550 / 1248,
  24031. bottom: 146 / 1694
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(4.5, "feet"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24045. {
  24046. side: {
  24047. height: math.unit(9.7, "feet"),
  24048. weight: math.unit(4000, "kg"),
  24049. name: "Side",
  24050. image: {
  24051. source: "./media/characters/yamie/side.svg"
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Normal",
  24058. height: math.unit(9.7, "feet"),
  24059. default: true
  24060. },
  24061. ]
  24062. ))
  24063. characterMakers.push(() => makeCharacter(
  24064. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24065. {
  24066. front: {
  24067. height: math.unit(50, "feet"),
  24068. weight: math.unit(50000, "kg"),
  24069. name: "Front",
  24070. image: {
  24071. source: "./media/characters/anders/front.svg",
  24072. extra: 570 / 539,
  24073. bottom: 14.7 / 586.7
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Large",
  24080. height: math.unit(50, "feet")
  24081. },
  24082. {
  24083. name: "Macro",
  24084. height: math.unit(2000, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Megamacro",
  24089. height: math.unit(12, "miles")
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(7 + 2 / 12, "feet"),
  24098. weight: math.unit(300, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/reban/front.svg",
  24102. extra: 1287/1212,
  24103. bottom: 148/1435
  24104. }
  24105. },
  24106. head: {
  24107. height: math.unit(1.95, "feet"),
  24108. name: "Head",
  24109. image: {
  24110. source: "./media/characters/reban/head.svg"
  24111. }
  24112. },
  24113. maw: {
  24114. height: math.unit(0.95, "feet"),
  24115. name: "Maw",
  24116. image: {
  24117. source: "./media/characters/reban/maw.svg"
  24118. }
  24119. },
  24120. foot: {
  24121. height: math.unit(1.65, "feet"),
  24122. name: "Foot",
  24123. image: {
  24124. source: "./media/characters/reban/foot.svg"
  24125. }
  24126. },
  24127. dick: {
  24128. height: math.unit(7 / 5, "feet"),
  24129. name: "Dick",
  24130. image: {
  24131. source: "./media/characters/reban/dick.svg"
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Natural Height",
  24138. height: math.unit(7 + 2 / 12, "feet")
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(500, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Canon Height",
  24147. height: math.unit(50, "AU")
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(6, "feet"),
  24156. weight: math.unit(150, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/terrance-keayes/front.svg",
  24160. extra: 1.005,
  24161. bottom: 151 / 1615
  24162. }
  24163. },
  24164. side: {
  24165. height: math.unit(6, "feet"),
  24166. weight: math.unit(150, "lb"),
  24167. name: "Side",
  24168. image: {
  24169. source: "./media/characters/terrance-keayes/side.svg",
  24170. extra: 1.005,
  24171. bottom: 129.4 / 1544
  24172. }
  24173. },
  24174. back: {
  24175. height: math.unit(6, "feet"),
  24176. weight: math.unit(150, "lb"),
  24177. name: "Back",
  24178. image: {
  24179. source: "./media/characters/terrance-keayes/back.svg",
  24180. extra: 1.005,
  24181. bottom: 58.4 / 1557.3
  24182. }
  24183. },
  24184. dick: {
  24185. height: math.unit(6 * 0.208, "feet"),
  24186. name: "Dick",
  24187. image: {
  24188. source: "./media/characters/terrance-keayes/dick.svg"
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Canon Height",
  24195. height: math.unit(35, "miles"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(6, "feet"),
  24205. weight: math.unit(150, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/ofelia/front.svg",
  24209. extra: 1130/1117,
  24210. bottom: 91/1221
  24211. }
  24212. },
  24213. back: {
  24214. height: math.unit(6, "feet"),
  24215. weight: math.unit(150, "lb"),
  24216. name: "Back",
  24217. image: {
  24218. source: "./media/characters/ofelia/back.svg",
  24219. extra: 1172/1159,
  24220. bottom: 28/1200
  24221. }
  24222. },
  24223. maw: {
  24224. height: math.unit(1, "feet"),
  24225. name: "Maw",
  24226. image: {
  24227. source: "./media/characters/ofelia/maw.svg"
  24228. }
  24229. },
  24230. foot: {
  24231. height: math.unit(1.949, "feet"),
  24232. name: "Foot",
  24233. image: {
  24234. source: "./media/characters/ofelia/foot.svg"
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Canon Height",
  24241. height: math.unit(2000, "miles"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(6, "feet"),
  24251. weight: math.unit(150, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/samuel/front.svg",
  24255. extra: 265 / 258,
  24256. bottom: 2 / 266.1566
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Macro",
  24263. height: math.unit(100, "feet"),
  24264. default: true
  24265. },
  24266. {
  24267. name: "Full Size",
  24268. height: math.unit(1000, "miles")
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24274. {
  24275. front: {
  24276. height: math.unit(6, "feet"),
  24277. weight: math.unit(300, "lb"),
  24278. name: "Front",
  24279. image: {
  24280. source: "./media/characters/beishir-kiel/front.svg",
  24281. extra: 569 / 547,
  24282. bottom: 41.9 / 609
  24283. }
  24284. },
  24285. maw: {
  24286. height: math.unit(6 * 0.202, "feet"),
  24287. name: "Maw",
  24288. image: {
  24289. source: "./media/characters/beishir-kiel/maw.svg"
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(300, "feet"),
  24297. default: true
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(5 + 7/12, "feet"),
  24306. weight: math.unit(120, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/logan-grey/front.svg",
  24310. extra: 1836/1738,
  24311. bottom: 108/1944
  24312. }
  24313. },
  24314. back: {
  24315. height: math.unit(5 + 7/12, "feet"),
  24316. weight: math.unit(120, "lb"),
  24317. name: "Back",
  24318. image: {
  24319. source: "./media/characters/logan-grey/back.svg",
  24320. extra: 1880/1794,
  24321. bottom: 24/1904
  24322. }
  24323. },
  24324. frontSfw: {
  24325. height: math.unit(5 + 7/12, "feet"),
  24326. weight: math.unit(120, "lb"),
  24327. name: "Front (SFW)",
  24328. image: {
  24329. source: "./media/characters/logan-grey/front-sfw.svg",
  24330. extra: 1836/1738,
  24331. bottom: 108/1944
  24332. }
  24333. },
  24334. backSfw: {
  24335. height: math.unit(5 + 7/12, "feet"),
  24336. weight: math.unit(120, "lb"),
  24337. name: "Back (SFW)",
  24338. image: {
  24339. source: "./media/characters/logan-grey/back-sfw.svg",
  24340. extra: 1880/1794,
  24341. bottom: 24/1904
  24342. }
  24343. },
  24344. hands: {
  24345. height: math.unit(0.84, "feet"),
  24346. name: "Hands",
  24347. image: {
  24348. source: "./media/characters/logan-grey/hands.svg"
  24349. }
  24350. },
  24351. paws: {
  24352. height: math.unit(0.72, "feet"),
  24353. name: "Paws",
  24354. image: {
  24355. source: "./media/characters/logan-grey/paws.svg"
  24356. }
  24357. },
  24358. cock: {
  24359. height: math.unit(1.45, "feet"),
  24360. name: "Cock",
  24361. image: {
  24362. source: "./media/characters/logan-grey/cock.svg"
  24363. }
  24364. },
  24365. cockAlt: {
  24366. height: math.unit(1.437, "feet"),
  24367. name: "Cock (alt)",
  24368. image: {
  24369. source: "./media/characters/logan-grey/cock-alt.svg"
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(5 + 8 / 12, "feet")
  24377. },
  24378. {
  24379. name: "The 500 Foot Femboy",
  24380. height: math.unit(500, "feet"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Megmacro",
  24385. height: math.unit(20, "miles")
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(8 + 2 / 12, "feet"),
  24394. weight: math.unit(275, "lb"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/draganta/front.svg",
  24398. extra: 1177 / 1135,
  24399. bottom: 33.46 / 1212.1
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(8 + 6 / 12, "feet"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(150, "feet")
  24412. },
  24413. {
  24414. name: "Megamacro",
  24415. height: math.unit(1000, "miles")
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(1.72, "m"),
  24424. weight: math.unit(80, "lb"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/voski/front.svg",
  24428. extra: 2076.22 / 2022.4,
  24429. bottom: 102.7 / 2177.3866
  24430. }
  24431. },
  24432. frontFlaccid: {
  24433. height: math.unit(1.72, "m"),
  24434. weight: math.unit(80, "lb"),
  24435. name: "Front (Flaccid)",
  24436. image: {
  24437. source: "./media/characters/voski/front-flaccid.svg",
  24438. extra: 2076.22 / 2022.4,
  24439. bottom: 102.7 / 2177.3866
  24440. }
  24441. },
  24442. frontErect: {
  24443. height: math.unit(1.72, "m"),
  24444. weight: math.unit(80, "lb"),
  24445. name: "Front (Erect)",
  24446. image: {
  24447. source: "./media/characters/voski/front-erect.svg",
  24448. extra: 2076.22 / 2022.4,
  24449. bottom: 102.7 / 2177.3866
  24450. }
  24451. },
  24452. back: {
  24453. height: math.unit(1.72, "m"),
  24454. weight: math.unit(80, "lb"),
  24455. name: "Back",
  24456. image: {
  24457. source: "./media/characters/voski/back.svg",
  24458. extra: 2104 / 2051,
  24459. bottom: 10.45 / 2113.63
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(1.72, "m")
  24467. },
  24468. {
  24469. name: "Macro",
  24470. height: math.unit(55, "m"),
  24471. default: true
  24472. },
  24473. {
  24474. name: "Macro+",
  24475. height: math.unit(300, "m")
  24476. },
  24477. {
  24478. name: "Macro++",
  24479. height: math.unit(700, "m")
  24480. },
  24481. {
  24482. name: "Macro+++",
  24483. height: math.unit(4500, "m")
  24484. },
  24485. {
  24486. name: "Macro++++",
  24487. height: math.unit(45, "km")
  24488. },
  24489. {
  24490. name: "Macro+++++",
  24491. height: math.unit(1220, "km")
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(2.3, "m"),
  24500. weight: math.unit(304, "kg"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/icowom-lee/front.svg",
  24504. extra: 985 / 955,
  24505. bottom: 25.4 / 1012
  24506. }
  24507. },
  24508. fronttentacles: {
  24509. height: math.unit(2.3, "m"),
  24510. weight: math.unit(304, "kg"),
  24511. name: "Front-tentacles",
  24512. image: {
  24513. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24514. extra: 985 / 955,
  24515. bottom: 25.4 / 1012
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(2.3, "m"),
  24520. weight: math.unit(304, "kg"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/icowom-lee/back.svg",
  24524. extra: 975 / 954,
  24525. bottom: 9.5 / 985
  24526. }
  24527. },
  24528. backtentacles: {
  24529. height: math.unit(2.3, "m"),
  24530. weight: math.unit(304, "kg"),
  24531. name: "Back-tentacles",
  24532. image: {
  24533. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24534. extra: 975 / 954,
  24535. bottom: 9.5 / 985
  24536. }
  24537. },
  24538. frontDressed: {
  24539. height: math.unit(2.3, "m"),
  24540. weight: math.unit(304, "kg"),
  24541. name: "Front (Dressed)",
  24542. image: {
  24543. source: "./media/characters/icowom-lee/front-dressed.svg",
  24544. extra: 3076 / 2933,
  24545. bottom: 51.4 / 3125.1889
  24546. }
  24547. },
  24548. rump: {
  24549. height: math.unit(0.776, "meters"),
  24550. name: "Rump",
  24551. image: {
  24552. source: "./media/characters/icowom-lee/rump.svg"
  24553. }
  24554. },
  24555. genitals: {
  24556. height: math.unit(0.78, "meters"),
  24557. name: "Genitals",
  24558. image: {
  24559. source: "./media/characters/icowom-lee/genitals.svg"
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(2.3, "meters"),
  24567. default: true
  24568. },
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(94, "meters"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(22, "meters"),
  24581. weight: math.unit(21000, "kg"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/shock-diamond/front.svg",
  24585. extra: 2204 / 2053,
  24586. bottom: 65 / 2239.47
  24587. }
  24588. },
  24589. frontNude: {
  24590. height: math.unit(22, "meters"),
  24591. weight: math.unit(21000, "kg"),
  24592. name: "Front (Nude)",
  24593. image: {
  24594. source: "./media/characters/shock-diamond/front-nude.svg",
  24595. extra: 2514 / 2285,
  24596. bottom: 13 / 2527.56
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(3, "meters")
  24604. },
  24605. {
  24606. name: "Macro",
  24607. height: math.unit(22, "meters"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24614. {
  24615. frontNsfw: {
  24616. height: math.unit(5 + 4/12, "feet"),
  24617. weight: math.unit(195, "lb"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/rory/front.svg",
  24621. extra: 1220/1100,
  24622. bottom: 103/1323
  24623. }
  24624. },
  24625. back: {
  24626. height: math.unit(5 + 4/12, "feet"),
  24627. weight: math.unit(195, "lb"),
  24628. name: "Back",
  24629. image: {
  24630. source: "./media/characters/rory/back.svg",
  24631. extra: 1166/1086,
  24632. bottom: 35/1201
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Micro",
  24639. height: math.unit(3, "inches")
  24640. },
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(5 + 4/12, "feet"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Macro",
  24648. height: math.unit(90, "feet")
  24649. },
  24650. {
  24651. name: "Supercharged",
  24652. height: math.unit(270, "feet")
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(5 + 9 / 12, "feet"),
  24661. weight: math.unit(190, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/sprisk/front.svg",
  24665. extra: 1225 / 1180,
  24666. bottom: 42.7 / 1266.4
  24667. }
  24668. },
  24669. frontNsfw: {
  24670. height: math.unit(5 + 9 / 12, "feet"),
  24671. weight: math.unit(190, "lb"),
  24672. name: "Front (NSFW)",
  24673. image: {
  24674. source: "./media/characters/sprisk/front-nsfw.svg",
  24675. extra: 1225 / 1180,
  24676. bottom: 42.7 / 1266.4
  24677. }
  24678. },
  24679. back: {
  24680. height: math.unit(5 + 9 / 12, "feet"),
  24681. weight: math.unit(190, "lb"),
  24682. name: "Back",
  24683. image: {
  24684. source: "./media/characters/sprisk/back.svg",
  24685. extra: 1247 / 1200,
  24686. bottom: 5.6 / 1253.04
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Tiny",
  24693. height: math.unit(2, "inches")
  24694. },
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(5 + 9 / 12, "feet"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Mini Macro",
  24702. height: math.unit(18, "feet")
  24703. },
  24704. {
  24705. name: "Macro",
  24706. height: math.unit(100, "feet")
  24707. },
  24708. {
  24709. name: "MACRO",
  24710. height: math.unit(50, "miles")
  24711. },
  24712. {
  24713. name: "M A C R O",
  24714. height: math.unit(300, "miles")
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24720. {
  24721. side: {
  24722. height: math.unit(15.6, "meters"),
  24723. weight: math.unit(700000, "kg"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/bunsen/side.svg",
  24727. extra: 1644 / 358
  24728. }
  24729. },
  24730. foot: {
  24731. height: math.unit(1.611 * 1644 / 358, "meter"),
  24732. name: "Foot",
  24733. image: {
  24734. source: "./media/characters/bunsen/foot.svg"
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Small",
  24741. height: math.unit(10, "feet")
  24742. },
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(15.6, "meters"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24752. {
  24753. front: {
  24754. height: math.unit(4 + 11 / 12, "feet"),
  24755. weight: math.unit(140, "lb"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/sesh/front.svg",
  24759. extra: 3420 / 3231,
  24760. bottom: 72 / 3949.5
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(4 + 11 / 12, "feet")
  24768. },
  24769. {
  24770. name: "Grown",
  24771. height: math.unit(15, "feet"),
  24772. default: true
  24773. },
  24774. {
  24775. name: "Macro",
  24776. height: math.unit(1500, "feet")
  24777. },
  24778. {
  24779. name: "Megamacro",
  24780. height: math.unit(30, "miles")
  24781. },
  24782. {
  24783. name: "Continental",
  24784. height: math.unit(3000, "miles")
  24785. },
  24786. {
  24787. name: "Gravity Mass",
  24788. height: math.unit(300000, "miles")
  24789. },
  24790. {
  24791. name: "Planet Buster",
  24792. height: math.unit(30000000, "miles")
  24793. },
  24794. {
  24795. name: "Big",
  24796. height: math.unit(3000000000, "miles")
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(9, "feet"),
  24805. weight: math.unit(350, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/pepper/front.svg",
  24809. extra: 1448 / 1312,
  24810. bottom: 9.4 / 1457.88
  24811. }
  24812. },
  24813. back: {
  24814. height: math.unit(9, "feet"),
  24815. weight: math.unit(350, "lb"),
  24816. name: "Back",
  24817. image: {
  24818. source: "./media/characters/pepper/back.svg",
  24819. extra: 1423 / 1300,
  24820. bottom: 4.6 / 1429
  24821. }
  24822. },
  24823. maw: {
  24824. height: math.unit(0.932, "feet"),
  24825. name: "Maw",
  24826. image: {
  24827. source: "./media/characters/pepper/maw.svg"
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(9, "feet"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(6, "feet"),
  24844. weight: math.unit(150, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/maelstrom/front.svg",
  24848. extra: 2100 / 1883,
  24849. bottom: 94 / 2196.7
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Less Kaiju",
  24856. height: math.unit(200, "feet")
  24857. },
  24858. {
  24859. name: "Kaiju",
  24860. height: math.unit(400, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "Kaiju-er",
  24865. height: math.unit(600, "feet")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(6 + 5 / 12, "feet"),
  24874. weight: math.unit(180, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/lexir/front.svg",
  24878. extra: 180 / 172,
  24879. bottom: 12 / 192
  24880. }
  24881. },
  24882. back: {
  24883. height: math.unit(6 + 5 / 12, "feet"),
  24884. weight: math.unit(180, "lb"),
  24885. name: "Back",
  24886. image: {
  24887. source: "./media/characters/lexir/back.svg",
  24888. extra: 1273/1201,
  24889. bottom: 39/1312
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Very Smal",
  24896. height: math.unit(1, "nm")
  24897. },
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(6 + 5 / 12, "feet"),
  24901. default: true
  24902. },
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(1, "mile")
  24906. },
  24907. {
  24908. name: "Megamacro",
  24909. height: math.unit(50, "miles")
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(1.5, "meters"),
  24918. weight: math.unit(100, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/maksio/front.svg",
  24922. extra: 1549 / 1531,
  24923. bottom: 123.7 / 1674.5429
  24924. }
  24925. },
  24926. back: {
  24927. height: math.unit(1.5, "meters"),
  24928. weight: math.unit(100, "lb"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/maksio/back.svg",
  24932. extra: 1541 / 1509,
  24933. bottom: 97 / 1639
  24934. }
  24935. },
  24936. hand: {
  24937. height: math.unit(0.621, "feet"),
  24938. name: "Hand",
  24939. image: {
  24940. source: "./media/characters/maksio/hand.svg"
  24941. }
  24942. },
  24943. foot: {
  24944. height: math.unit(1.611, "feet"),
  24945. name: "Foot",
  24946. image: {
  24947. source: "./media/characters/maksio/foot.svg"
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Shrunken",
  24954. height: math.unit(10, "cm")
  24955. },
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(150, "cm"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(100, "feet"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/erza-bear/front.svg",
  24971. extra: 2449 / 2390,
  24972. bottom: 46 / 2494
  24973. }
  24974. },
  24975. back: {
  24976. height: math.unit(100, "feet"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/erza-bear/back.svg",
  24980. extra: 2489 / 2430,
  24981. bottom: 85.4 / 2480
  24982. }
  24983. },
  24984. tail: {
  24985. height: math.unit(42, "feet"),
  24986. name: "Tail",
  24987. image: {
  24988. source: "./media/characters/erza-bear/tail.svg"
  24989. }
  24990. },
  24991. tongue: {
  24992. height: math.unit(8, "feet"),
  24993. name: "Tongue",
  24994. image: {
  24995. source: "./media/characters/erza-bear/tongue.svg"
  24996. }
  24997. },
  24998. dick: {
  24999. height: math.unit(10.5, "feet"),
  25000. name: "Dick",
  25001. image: {
  25002. source: "./media/characters/erza-bear/dick.svg"
  25003. }
  25004. },
  25005. dickVertical: {
  25006. height: math.unit(16.9, "feet"),
  25007. name: "Dick (Vertical)",
  25008. image: {
  25009. source: "./media/characters/erza-bear/dick-vertical.svg"
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Macro",
  25016. height: math.unit(100, "feet"),
  25017. default: true
  25018. },
  25019. ]
  25020. ))
  25021. characterMakers.push(() => makeCharacter(
  25022. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25023. {
  25024. front: {
  25025. height: math.unit(172, "cm"),
  25026. weight: math.unit(73, "kg"),
  25027. name: "Front",
  25028. image: {
  25029. source: "./media/characters/violet-flor/front.svg",
  25030. extra: 1530 / 1442,
  25031. bottom: 61.9 / 1588.8
  25032. }
  25033. },
  25034. back: {
  25035. height: math.unit(180, "cm"),
  25036. weight: math.unit(73, "kg"),
  25037. name: "Back",
  25038. image: {
  25039. source: "./media/characters/violet-flor/back.svg",
  25040. extra: 1692 / 1630,
  25041. bottom: 20 / 1712
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(172, "cm"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(6, "feet"),
  25058. weight: math.unit(220, "lb"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/lynn-rhea/front.svg",
  25062. extra: 310 / 273
  25063. }
  25064. },
  25065. back: {
  25066. height: math.unit(6, "feet"),
  25067. weight: math.unit(220, "lb"),
  25068. name: "Back",
  25069. image: {
  25070. source: "./media/characters/lynn-rhea/back.svg",
  25071. extra: 310 / 273
  25072. }
  25073. },
  25074. dicks: {
  25075. height: math.unit(0.9, "feet"),
  25076. name: "Dicks",
  25077. image: {
  25078. source: "./media/characters/lynn-rhea/dicks.svg"
  25079. }
  25080. },
  25081. slit: {
  25082. height: math.unit(0.4, "feet"),
  25083. name: "Slit",
  25084. image: {
  25085. source: "./media/characters/lynn-rhea/slit.svg"
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Micro",
  25092. height: math.unit(1, "inch")
  25093. },
  25094. {
  25095. name: "Macro",
  25096. height: math.unit(60, "feet"),
  25097. default: true
  25098. },
  25099. {
  25100. name: "Megamacro",
  25101. height: math.unit(2, "miles")
  25102. },
  25103. {
  25104. name: "Gigamacro",
  25105. height: math.unit(3, "earths")
  25106. },
  25107. {
  25108. name: "Galactic",
  25109. height: math.unit(0.8, "galaxies")
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25115. {
  25116. front: {
  25117. height: math.unit(1600, "feet"),
  25118. weight: math.unit(85758785169, "kg"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/valathos/front.svg",
  25122. extra: 1451 / 1339
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Macro",
  25129. height: math.unit(1600, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(7 + 5 / 12, "feet"),
  25139. weight: math.unit(300, "lb"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/azula/front.svg",
  25143. extra: 3208 / 2880,
  25144. bottom: 80.2 / 3277
  25145. }
  25146. },
  25147. back: {
  25148. height: math.unit(7 + 5 / 12, "feet"),
  25149. weight: math.unit(300, "lb"),
  25150. name: "Back",
  25151. image: {
  25152. source: "./media/characters/azula/back.svg",
  25153. extra: 3169 / 2822,
  25154. bottom: 150.6 / 3321
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(7 + 5 / 12, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Big",
  25166. height: math.unit(20, "feet")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(5 + 1 / 12, "feet"),
  25175. weight: math.unit(110, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/rupert/front.svg",
  25179. extra: 1549 / 1495,
  25180. bottom: 54.2 / 1604.4
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(5 + 1 / 12, "feet"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25194. {
  25195. front: {
  25196. height: math.unit(8 + 4 / 12, "feet"),
  25197. weight: math.unit(350, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/sheera-castellar/front.svg",
  25201. extra: 1957 / 1894,
  25202. bottom: 26.97 / 1975.017
  25203. }
  25204. },
  25205. side: {
  25206. height: math.unit(8 + 4 / 12, "feet"),
  25207. weight: math.unit(350, "lb"),
  25208. name: "Side",
  25209. image: {
  25210. source: "./media/characters/sheera-castellar/side.svg",
  25211. extra: 1957 / 1894
  25212. }
  25213. },
  25214. back: {
  25215. height: math.unit(8 + 4 / 12, "feet"),
  25216. weight: math.unit(350, "lb"),
  25217. name: "Back",
  25218. image: {
  25219. source: "./media/characters/sheera-castellar/back.svg",
  25220. extra: 1957 / 1894
  25221. }
  25222. },
  25223. angled: {
  25224. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25225. weight: math.unit(350, "lb"),
  25226. name: "Angled",
  25227. image: {
  25228. source: "./media/characters/sheera-castellar/angled.svg",
  25229. extra: 1807 / 1707,
  25230. bottom: 68 / 1875
  25231. }
  25232. },
  25233. genitals: {
  25234. height: math.unit(2.2, "feet"),
  25235. name: "Genitals",
  25236. image: {
  25237. source: "./media/characters/sheera-castellar/genitals.svg"
  25238. }
  25239. },
  25240. taur: {
  25241. height: math.unit(10 + 6/12, "feet"),
  25242. name: "Taur",
  25243. image: {
  25244. source: "./media/characters/sheera-castellar/taur.svg",
  25245. extra: 2017/1909,
  25246. bottom: 185/2202
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(8 + 4 / 12, "feet")
  25254. },
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(150, "feet"),
  25258. default: true
  25259. },
  25260. {
  25261. name: "Macro+",
  25262. height: math.unit(800, "feet")
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(6, "feet"),
  25271. weight: math.unit(150, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/jaipur/front.svg",
  25275. extra: 3860 / 3731,
  25276. bottom: 287 / 4140
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(6, "feet"),
  25281. weight: math.unit(150, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/jaipur/back.svg",
  25285. extra: 1637/1561,
  25286. bottom: 154/1791
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(1.85, "meters"),
  25294. default: true
  25295. },
  25296. {
  25297. name: "Macro",
  25298. height: math.unit(150, "meters")
  25299. },
  25300. {
  25301. name: "Macro+",
  25302. height: math.unit(0.5, "miles")
  25303. },
  25304. {
  25305. name: "Macro++",
  25306. height: math.unit(2.5, "miles")
  25307. },
  25308. {
  25309. name: "Macro+++",
  25310. height: math.unit(12, "miles")
  25311. },
  25312. {
  25313. name: "Macro++++",
  25314. height: math.unit(120, "miles")
  25315. },
  25316. {
  25317. name: "Macro+++++",
  25318. height: math.unit(1200, "miles")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(6, "feet"),
  25327. weight: math.unit(150, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/sheila-wolf/front.svg",
  25331. extra: 1931 / 1808,
  25332. bottom: 29.5 / 1960
  25333. }
  25334. },
  25335. dick: {
  25336. height: math.unit(1.464, "feet"),
  25337. name: "Dick",
  25338. image: {
  25339. source: "./media/characters/sheila-wolf/dick.svg"
  25340. }
  25341. },
  25342. muzzle: {
  25343. height: math.unit(0.513, "feet"),
  25344. name: "Muzzle",
  25345. image: {
  25346. source: "./media/characters/sheila-wolf/muzzle.svg"
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Macro",
  25353. height: math.unit(70, "feet"),
  25354. default: true
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(32, "meters"),
  25363. weight: math.unit(300000, "kg"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/almor/front.svg",
  25367. extra: 1408 / 1322,
  25368. bottom: 94.6 / 1506.5
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(32, "meters"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(7, "feet"),
  25385. weight: math.unit(200, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/silver/front.svg",
  25389. extra: 472.1 / 450.5,
  25390. bottom: 26.5 / 499.424
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Normal",
  25397. height: math.unit(7, "feet"),
  25398. default: true
  25399. },
  25400. {
  25401. name: "Macro",
  25402. height: math.unit(800, "feet")
  25403. },
  25404. {
  25405. name: "Megamacro",
  25406. height: math.unit(250, "miles")
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(6, "feet"),
  25415. weight: math.unit(150, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/pliskin/front.svg",
  25419. extra: 1469 / 1359,
  25420. bottom: 70 / 1540
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Micro",
  25427. height: math.unit(3, "inches")
  25428. },
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(5 + 11 / 12, "feet"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(120, "feet")
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(6, "feet"),
  25445. weight: math.unit(150, "lb"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/sammy/front.svg",
  25449. extra: 1193 / 1089,
  25450. bottom: 30.5 / 1226
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(1700, "feet"),
  25458. default: true
  25459. },
  25460. {
  25461. name: "Examacro",
  25462. height: math.unit(2.5e9, "lightyears")
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(21, "meters"),
  25471. weight: math.unit(12, "tonnes"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/kuru/front.svg",
  25475. extra: 4301 / 3785,
  25476. bottom: 371.3 / 4691
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Macro",
  25483. height: math.unit(21, "meters"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(23, "meters"),
  25493. weight: math.unit(12.2, "tonnes"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/rakka/front.svg",
  25497. extra: 4670 / 4169,
  25498. bottom: 301 / 4968.7
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(23, "meters"),
  25506. default: true
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(6, "feet"),
  25515. weight: math.unit(150, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/rhys-feline/front.svg",
  25519. extra: 2488 / 2308,
  25520. bottom: 35.67 / 2519.19
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Really Small",
  25527. height: math.unit(1, "nm")
  25528. },
  25529. {
  25530. name: "Micro",
  25531. height: math.unit(4, "inches")
  25532. },
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(4 + 10 / 12, "feet"),
  25536. default: true
  25537. },
  25538. {
  25539. name: "Macro",
  25540. height: math.unit(100, "feet")
  25541. },
  25542. {
  25543. name: "Megamacto",
  25544. height: math.unit(50, "miles")
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25550. {
  25551. side: {
  25552. height: math.unit(30, "feet"),
  25553. weight: math.unit(35000, "kg"),
  25554. name: "Side",
  25555. image: {
  25556. source: "./media/characters/alydar/side.svg",
  25557. extra: 234 / 222,
  25558. bottom: 6.5 / 241
  25559. }
  25560. },
  25561. front: {
  25562. height: math.unit(30, "feet"),
  25563. weight: math.unit(35000, "kg"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/alydar/front.svg",
  25567. extra: 223.37 / 210.2,
  25568. bottom: 22.3 / 246.76
  25569. }
  25570. },
  25571. top: {
  25572. height: math.unit(64.54, "feet"),
  25573. weight: math.unit(35000, "kg"),
  25574. name: "Top",
  25575. image: {
  25576. source: "./media/characters/alydar/top.svg"
  25577. }
  25578. },
  25579. anthro: {
  25580. height: math.unit(30, "feet"),
  25581. weight: math.unit(9000, "kg"),
  25582. name: "Anthro",
  25583. image: {
  25584. source: "./media/characters/alydar/anthro.svg",
  25585. extra: 432 / 421,
  25586. bottom: 7.18 / 440
  25587. }
  25588. },
  25589. maw: {
  25590. height: math.unit(11.693, "feet"),
  25591. name: "Maw",
  25592. image: {
  25593. source: "./media/characters/alydar/maw.svg"
  25594. }
  25595. },
  25596. head: {
  25597. height: math.unit(11.693, "feet"),
  25598. name: "Head",
  25599. image: {
  25600. source: "./media/characters/alydar/head.svg"
  25601. }
  25602. },
  25603. headAlt: {
  25604. height: math.unit(12.861, "feet"),
  25605. name: "Head (Alt)",
  25606. image: {
  25607. source: "./media/characters/alydar/head-alt.svg"
  25608. }
  25609. },
  25610. wing: {
  25611. height: math.unit(20.712, "feet"),
  25612. name: "Wing",
  25613. image: {
  25614. source: "./media/characters/alydar/wing.svg"
  25615. }
  25616. },
  25617. wingFeather: {
  25618. height: math.unit(9.662, "feet"),
  25619. name: "Wing Feather",
  25620. image: {
  25621. source: "./media/characters/alydar/wing-feather.svg"
  25622. }
  25623. },
  25624. countourFeather: {
  25625. height: math.unit(4.154, "feet"),
  25626. name: "Contour Feather",
  25627. image: {
  25628. source: "./media/characters/alydar/contour-feather.svg"
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Diplomatic",
  25635. height: math.unit(13, "feet"),
  25636. default: true
  25637. },
  25638. {
  25639. name: "Small",
  25640. height: math.unit(30, "feet")
  25641. },
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(95, "feet"),
  25645. default: true
  25646. },
  25647. {
  25648. name: "Large",
  25649. height: math.unit(285, "feet")
  25650. },
  25651. {
  25652. name: "Incomprehensible",
  25653. height: math.unit(450, "megameters")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25659. {
  25660. side: {
  25661. height: math.unit(11, "feet"),
  25662. weight: math.unit(1750, "kg"),
  25663. name: "Side",
  25664. image: {
  25665. source: "./media/characters/selicia/side.svg",
  25666. extra: 440 / 396,
  25667. bottom: 24.8 / 465.979
  25668. }
  25669. },
  25670. maw: {
  25671. height: math.unit(4.665, "feet"),
  25672. name: "Maw",
  25673. image: {
  25674. source: "./media/characters/selicia/maw.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(11, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25688. {
  25689. side: {
  25690. height: math.unit(2 + 6 / 12, "feet"),
  25691. weight: math.unit(30, "lb"),
  25692. name: "Side",
  25693. image: {
  25694. source: "./media/characters/layla/side.svg",
  25695. extra: 244 / 188,
  25696. bottom: 18.2 / 262.1
  25697. }
  25698. },
  25699. back: {
  25700. height: math.unit(2 + 6 / 12, "feet"),
  25701. weight: math.unit(30, "lb"),
  25702. name: "Back",
  25703. image: {
  25704. source: "./media/characters/layla/back.svg",
  25705. extra: 308 / 241.5,
  25706. bottom: 8.9 / 316.8
  25707. }
  25708. },
  25709. cumming: {
  25710. height: math.unit(2 + 6 / 12, "feet"),
  25711. weight: math.unit(30, "lb"),
  25712. name: "Cumming",
  25713. image: {
  25714. source: "./media/characters/layla/cumming.svg",
  25715. extra: 342 / 279,
  25716. bottom: 595 / 938
  25717. }
  25718. },
  25719. dickFlaccid: {
  25720. height: math.unit(2.595, "feet"),
  25721. name: "Flaccid Genitals",
  25722. image: {
  25723. source: "./media/characters/layla/dick-flaccid.svg"
  25724. }
  25725. },
  25726. dickErect: {
  25727. height: math.unit(2.359, "feet"),
  25728. name: "Erect Genitals",
  25729. image: {
  25730. source: "./media/characters/layla/dick-erect.svg"
  25731. }
  25732. },
  25733. dragon: {
  25734. height: math.unit(40, "feet"),
  25735. name: "Dragon",
  25736. image: {
  25737. source: "./media/characters/layla/dragon.svg",
  25738. extra: 610/535,
  25739. bottom: 367/977
  25740. }
  25741. },
  25742. taur: {
  25743. height: math.unit(30, "feet"),
  25744. name: "Taur",
  25745. image: {
  25746. source: "./media/characters/layla/taur.svg",
  25747. extra: 1268/1199,
  25748. bottom: 112/1380
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Micro",
  25755. height: math.unit(1, "inch")
  25756. },
  25757. {
  25758. name: "Small",
  25759. height: math.unit(1, "foot")
  25760. },
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(2 + 6 / 12, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Macro",
  25768. height: math.unit(200, "feet")
  25769. },
  25770. {
  25771. name: "Megamacro",
  25772. height: math.unit(1000, "miles")
  25773. },
  25774. {
  25775. name: "Planetary",
  25776. height: math.unit(8000, "miles")
  25777. },
  25778. {
  25779. name: "True Layla",
  25780. height: math.unit(200000 * 7, "multiverses")
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25786. {
  25787. back: {
  25788. height: math.unit(10.5, "feet"),
  25789. weight: math.unit(800, "lb"),
  25790. name: "Back",
  25791. image: {
  25792. source: "./media/characters/knox/back.svg",
  25793. extra: 1486 / 1089,
  25794. bottom: 107 / 1601.4
  25795. }
  25796. },
  25797. side: {
  25798. height: math.unit(10.5, "feet"),
  25799. weight: math.unit(800, "lb"),
  25800. name: "Side",
  25801. image: {
  25802. source: "./media/characters/knox/side.svg",
  25803. extra: 244 / 218,
  25804. bottom: 14 / 260
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Compact",
  25811. height: math.unit(10.5, "feet"),
  25812. default: true
  25813. },
  25814. {
  25815. name: "Dynamax",
  25816. height: math.unit(210, "feet")
  25817. },
  25818. {
  25819. name: "Full Macro",
  25820. height: math.unit(850, "feet")
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(28, "feet"),
  25829. weight: math.unit(10500, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/kayda/front.svg",
  25833. extra: 1536 / 1428,
  25834. bottom: 68.7 / 1603
  25835. }
  25836. },
  25837. back: {
  25838. height: math.unit(28, "feet"),
  25839. weight: math.unit(10500, "lb"),
  25840. name: "Back",
  25841. image: {
  25842. source: "./media/characters/kayda/back.svg",
  25843. extra: 1557 / 1464,
  25844. bottom: 39.5 / 1597.49
  25845. }
  25846. },
  25847. dick: {
  25848. height: math.unit(3.858, "feet"),
  25849. name: "Dick",
  25850. image: {
  25851. source: "./media/characters/kayda/dick.svg"
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(28, "feet"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(10 + 11 / 12, "feet"),
  25868. weight: math.unit(1400, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/brian/front.svg",
  25872. extra: 737 / 692,
  25873. bottom: 55.4 / 785
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(10 + 11 / 12, "feet"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(5 + 8 / 12, "feet"),
  25890. weight: math.unit(140, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/khemri/front.svg",
  25894. extra: 4780 / 4059,
  25895. bottom: 80.1 / 4859.25
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Micro",
  25902. height: math.unit(6, "inches")
  25903. },
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(5 + 8 / 12, "feet"),
  25907. default: true
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25913. {
  25914. front: {
  25915. height: math.unit(13, "feet"),
  25916. weight: math.unit(1700, "lb"),
  25917. name: "Front",
  25918. image: {
  25919. source: "./media/characters/felix-braveheart/front.svg",
  25920. extra: 1222 / 1157,
  25921. bottom: 53.2 / 1280
  25922. }
  25923. },
  25924. back: {
  25925. height: math.unit(13, "feet"),
  25926. weight: math.unit(1700, "lb"),
  25927. name: "Back",
  25928. image: {
  25929. source: "./media/characters/felix-braveheart/back.svg",
  25930. extra: 1277 / 1203,
  25931. bottom: 50.2 / 1327
  25932. }
  25933. },
  25934. feral: {
  25935. height: math.unit(6, "feet"),
  25936. weight: math.unit(400, "lb"),
  25937. name: "Feral",
  25938. image: {
  25939. source: "./media/characters/felix-braveheart/feral.svg",
  25940. extra: 682 / 625,
  25941. bottom: 6.9 / 688
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(13, "feet"),
  25949. default: true
  25950. },
  25951. ]
  25952. ))
  25953. characterMakers.push(() => makeCharacter(
  25954. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25955. {
  25956. side: {
  25957. height: math.unit(5 + 11 / 12, "feet"),
  25958. weight: math.unit(1400, "lb"),
  25959. name: "Side",
  25960. image: {
  25961. source: "./media/characters/shadow-blade/side.svg",
  25962. extra: 1726 / 1267,
  25963. bottom: 58.4 / 1785
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(5 + 11 / 12, "feet"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(1 + 6 / 12, "feet"),
  25980. weight: math.unit(25, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/karla-halldor/front.svg",
  25984. extra: 1459 / 1383,
  25985. bottom: 12 / 1472
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(1 + 6 / 12, "feet"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(6 + 2 / 12, "feet"),
  26002. weight: math.unit(160, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/ariam/front.svg",
  26006. extra: 1073/976,
  26007. bottom: 52/1125
  26008. }
  26009. },
  26010. back: {
  26011. height: math.unit(6 + 2/12, "feet"),
  26012. weight: math.unit(160, "lb"),
  26013. name: "Back",
  26014. image: {
  26015. source: "./media/characters/ariam/back.svg",
  26016. extra: 1103/1023,
  26017. bottom: 9/1112
  26018. }
  26019. },
  26020. dressed: {
  26021. height: math.unit(6 + 2/12, "feet"),
  26022. weight: math.unit(160, "lb"),
  26023. name: "Dressed",
  26024. image: {
  26025. source: "./media/characters/ariam/dressed.svg",
  26026. extra: 1099/1009,
  26027. bottom: 25/1124
  26028. }
  26029. },
  26030. squatting: {
  26031. height: math.unit(4.1, "feet"),
  26032. weight: math.unit(160, "lb"),
  26033. name: "Squatting",
  26034. image: {
  26035. source: "./media/characters/ariam/squatting.svg",
  26036. extra: 2617 / 2112,
  26037. bottom: 61.2 / 2681,
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(6 + 2 / 12, "feet"),
  26045. default: true
  26046. },
  26047. {
  26048. name: "Normal+",
  26049. height: math.unit(4, "meters")
  26050. },
  26051. {
  26052. name: "Macro",
  26053. height: math.unit(50, "meters")
  26054. },
  26055. {
  26056. name: "Macro+",
  26057. height: math.unit(100, "meters")
  26058. },
  26059. {
  26060. name: "Megamacro",
  26061. height: math.unit(20, "km")
  26062. },
  26063. {
  26064. name: "Caretaker",
  26065. height: math.unit(444, "megameters")
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(1.67, "meters"),
  26074. weight: math.unit(140, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26078. extra: 438 / 410,
  26079. bottom: 0.75 / 439
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Shrunken",
  26086. height: math.unit(7.6, "cm")
  26087. },
  26088. {
  26089. name: "Human Scale",
  26090. height: math.unit(1.67, "meters")
  26091. },
  26092. {
  26093. name: "Wolxi Scale",
  26094. height: math.unit(36.7, "meters"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(1.73, "meters"),
  26104. weight: math.unit(240, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/izue-two-mothers/front.svg",
  26108. extra: 469 / 437,
  26109. bottom: 1.24 / 470.6
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Shrunken",
  26116. height: math.unit(7.86, "cm")
  26117. },
  26118. {
  26119. name: "Human Scale",
  26120. height: math.unit(1.73, "meters")
  26121. },
  26122. {
  26123. name: "Wolxi Scale",
  26124. height: math.unit(38, "meters"),
  26125. default: true
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(1.55, "meters"),
  26134. weight: math.unit(120, "lb"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/teeku-love-shack/front.svg",
  26138. extra: 387 / 362,
  26139. bottom: 1.51 / 388
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Shrunken",
  26146. height: math.unit(7, "cm")
  26147. },
  26148. {
  26149. name: "Human Scale",
  26150. height: math.unit(1.55, "meters")
  26151. },
  26152. {
  26153. name: "Wolxi Scale",
  26154. height: math.unit(34.1, "meters"),
  26155. default: true
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(1.83, "meters"),
  26164. weight: math.unit(135, "lb"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/dejma-the-red/front.svg",
  26168. extra: 480 / 458,
  26169. bottom: 1.8 / 482
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Shrunken",
  26176. height: math.unit(8.3, "cm")
  26177. },
  26178. {
  26179. name: "Human Scale",
  26180. height: math.unit(1.83, "meters")
  26181. },
  26182. {
  26183. name: "Wolxi Scale",
  26184. height: math.unit(40, "meters"),
  26185. default: true
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(1.78, "meters"),
  26194. weight: math.unit(65, "kg"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/aki/front.svg",
  26198. extra: 452 / 415
  26199. }
  26200. },
  26201. frontNsfw: {
  26202. height: math.unit(1.78, "meters"),
  26203. weight: math.unit(65, "kg"),
  26204. name: "Front (NSFW)",
  26205. image: {
  26206. source: "./media/characters/aki/front-nsfw.svg",
  26207. extra: 452 / 415
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(1.78, "meters"),
  26212. weight: math.unit(65, "kg"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/aki/back.svg",
  26216. extra: 452 / 415
  26217. }
  26218. },
  26219. rump: {
  26220. height: math.unit(2.05, "feet"),
  26221. name: "Rump",
  26222. image: {
  26223. source: "./media/characters/aki/rump.svg"
  26224. }
  26225. },
  26226. dick: {
  26227. height: math.unit(0.95, "feet"),
  26228. name: "Dick",
  26229. image: {
  26230. source: "./media/characters/aki/dick.svg"
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Micro",
  26237. height: math.unit(15, "cm")
  26238. },
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(178, "cm"),
  26242. default: true
  26243. },
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(214, "m")
  26247. },
  26248. {
  26249. name: "Macro+",
  26250. height: math.unit(534, "m")
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(5 + 5 / 12, "feet"),
  26259. weight: math.unit(120, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/ari/front.svg",
  26263. extra: 1550/1471,
  26264. bottom: 39/1589
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Normal",
  26271. height: math.unit(5 + 5 / 12, "feet")
  26272. },
  26273. {
  26274. name: "Macro",
  26275. height: math.unit(100, "feet"),
  26276. default: true
  26277. },
  26278. {
  26279. name: "Megamacro",
  26280. height: math.unit(100, "miles")
  26281. },
  26282. {
  26283. name: "Gigamacro",
  26284. height: math.unit(80000, "miles")
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26290. {
  26291. side: {
  26292. height: math.unit(9, "feet"),
  26293. weight: math.unit(400, "kg"),
  26294. name: "Side",
  26295. image: {
  26296. source: "./media/characters/bolt/side.svg",
  26297. extra: 1126 / 896,
  26298. bottom: 60 / 1187.3,
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Micro",
  26305. height: math.unit(5, "inches")
  26306. },
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(9, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Macro",
  26314. height: math.unit(700, "feet")
  26315. },
  26316. {
  26317. name: "Max Size",
  26318. height: math.unit(1.52e22, "yottameters")
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(4.3, "meters"),
  26327. weight: math.unit(3, "tons"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/draekon-sylviar/front.svg",
  26331. extra: 2072/1512,
  26332. bottom: 74/2146
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(4.3, "meters"),
  26337. weight: math.unit(3, "tons"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/draekon-sylviar/back.svg",
  26341. extra: 1639/1483,
  26342. bottom: 41/1680
  26343. }
  26344. },
  26345. feral: {
  26346. height: math.unit(1.15, "meters"),
  26347. weight: math.unit(3, "tons"),
  26348. name: "Feral",
  26349. image: {
  26350. source: "./media/characters/draekon-sylviar/feral.svg",
  26351. extra: 1033/395,
  26352. bottom: 130/1163
  26353. }
  26354. },
  26355. maw: {
  26356. height: math.unit(1.3, "meters"),
  26357. name: "Maw",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/maw.svg"
  26360. }
  26361. },
  26362. mawSeparated: {
  26363. height: math.unit(1.53, "meters"),
  26364. name: "Separated Maw",
  26365. image: {
  26366. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26367. }
  26368. },
  26369. tail: {
  26370. height: math.unit(1.15, "meters"),
  26371. name: "Tail",
  26372. image: {
  26373. source: "./media/characters/draekon-sylviar/tail.svg"
  26374. }
  26375. },
  26376. tailDick: {
  26377. height: math.unit(1.15, "meters"),
  26378. name: "Tail (Dick)",
  26379. image: {
  26380. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26381. }
  26382. },
  26383. tailDickSeparated: {
  26384. height: math.unit(1.19, "meters"),
  26385. name: "Tail (Separated Dick)",
  26386. image: {
  26387. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26388. }
  26389. },
  26390. slit: {
  26391. height: math.unit(1, "meters"),
  26392. name: "Slit",
  26393. image: {
  26394. source: "./media/characters/draekon-sylviar/slit.svg"
  26395. }
  26396. },
  26397. dick: {
  26398. height: math.unit(1.15, "meters"),
  26399. name: "Dick",
  26400. image: {
  26401. source: "./media/characters/draekon-sylviar/dick.svg"
  26402. }
  26403. },
  26404. dickSeparated: {
  26405. height: math.unit(1.1, "meters"),
  26406. name: "Separated Dick",
  26407. image: {
  26408. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26409. }
  26410. },
  26411. sheath: {
  26412. height: math.unit(1.15, "meters"),
  26413. name: "Sheath",
  26414. image: {
  26415. source: "./media/characters/draekon-sylviar/sheath.svg"
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Small",
  26422. height: math.unit(4.53 / 2, "meters"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(4.53, "meters"),
  26428. default: true
  26429. },
  26430. {
  26431. name: "Large",
  26432. height: math.unit(4.53 * 2, "meters"),
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(6 + 2 / 12, "feet"),
  26441. weight: math.unit(180, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/brawler/front.svg",
  26445. extra: 3301 / 3027,
  26446. bottom: 138 / 3439
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(6 + 2 / 12, "feet"),
  26454. default: true
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26460. {
  26461. front: {
  26462. height: math.unit(11, "feet"),
  26463. weight: math.unit(1000, "lb"),
  26464. name: "Front",
  26465. image: {
  26466. source: "./media/characters/alex/front.svg",
  26467. bottom: 44.5 / 620
  26468. }
  26469. },
  26470. },
  26471. [
  26472. {
  26473. name: "Micro",
  26474. height: math.unit(5, "inches")
  26475. },
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(11, "feet"),
  26479. default: true
  26480. },
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(9.5e9, "feet")
  26484. },
  26485. {
  26486. name: "Max Size",
  26487. height: math.unit(1.4e283, "yottameters")
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26493. {
  26494. female: {
  26495. height: math.unit(29.9, "m"),
  26496. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26497. name: "Female",
  26498. image: {
  26499. source: "./media/characters/zenari/female.svg",
  26500. extra: 3281.6 / 3217,
  26501. bottom: 72.2 / 3353
  26502. }
  26503. },
  26504. male: {
  26505. height: math.unit(27.7, "m"),
  26506. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26507. name: "Male",
  26508. image: {
  26509. source: "./media/characters/zenari/male.svg",
  26510. extra: 3008 / 2991,
  26511. bottom: 54.6 / 3069
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Macro",
  26518. height: math.unit(29.7, "meters"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26525. {
  26526. female: {
  26527. height: math.unit(23.8, "m"),
  26528. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26529. name: "Female",
  26530. image: {
  26531. source: "./media/characters/mactarian/female.svg",
  26532. extra: 2662 / 2569,
  26533. bottom: 73 / 2736
  26534. }
  26535. },
  26536. male: {
  26537. height: math.unit(23.8, "m"),
  26538. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26539. name: "Male",
  26540. image: {
  26541. source: "./media/characters/mactarian/male.svg",
  26542. extra: 2673 / 2600,
  26543. bottom: 76 / 2750
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Macro",
  26550. height: math.unit(23.8, "meters"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26557. {
  26558. female: {
  26559. height: math.unit(19.3, "m"),
  26560. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26561. name: "Female",
  26562. image: {
  26563. source: "./media/characters/umok/female.svg",
  26564. extra: 2186 / 2078,
  26565. bottom: 87 / 2277
  26566. }
  26567. },
  26568. male: {
  26569. height: math.unit(19.5, "m"),
  26570. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26571. name: "Male",
  26572. image: {
  26573. source: "./media/characters/umok/male.svg",
  26574. extra: 2233 / 2140,
  26575. bottom: 24.4 / 2258
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(19.3, "meters"),
  26583. default: true
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26589. {
  26590. female: {
  26591. height: math.unit(26.15, "m"),
  26592. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26593. name: "Female",
  26594. image: {
  26595. source: "./media/characters/joraxian/female.svg",
  26596. extra: 2912 / 2824,
  26597. bottom: 36 / 2956
  26598. }
  26599. },
  26600. male: {
  26601. height: math.unit(25.4, "m"),
  26602. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26603. name: "Male",
  26604. image: {
  26605. source: "./media/characters/joraxian/male.svg",
  26606. extra: 2877 / 2721,
  26607. bottom: 82 / 2967
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Macro",
  26614. height: math.unit(26.15, "meters"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26621. {
  26622. female: {
  26623. height: math.unit(21.6, "m"),
  26624. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26625. name: "Female",
  26626. image: {
  26627. source: "./media/characters/sthara/female.svg",
  26628. extra: 2516 / 2347,
  26629. bottom: 21.5 / 2537
  26630. }
  26631. },
  26632. male: {
  26633. height: math.unit(24, "m"),
  26634. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26635. name: "Male",
  26636. image: {
  26637. source: "./media/characters/sthara/male.svg",
  26638. extra: 2732 / 2607,
  26639. bottom: 23 / 2732
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(21.6, "meters"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(6 + 4 / 12, "feet"),
  26656. weight: math.unit(175, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/luka-bryzant/front.svg",
  26660. extra: 311 / 289,
  26661. bottom: 4 / 315
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(6 + 4 / 12, "feet"),
  26666. weight: math.unit(175, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/luka-bryzant/back.svg",
  26670. extra: 311 / 289,
  26671. bottom: 3.8 / 313.7
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Micro",
  26678. height: math.unit(10, "inches")
  26679. },
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(6 + 4 / 12, "feet"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Large",
  26687. height: math.unit(12, "feet")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(5 + 7 / 12, "feet"),
  26696. weight: math.unit(185, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/aman-aquila/front.svg",
  26700. extra: 1013 / 976,
  26701. bottom: 45.6 / 1057
  26702. }
  26703. },
  26704. side: {
  26705. height: math.unit(5 + 7 / 12, "feet"),
  26706. weight: math.unit(185, "lb"),
  26707. name: "Side",
  26708. image: {
  26709. source: "./media/characters/aman-aquila/side.svg",
  26710. extra: 1054 / 1011,
  26711. bottom: 15 / 1070
  26712. }
  26713. },
  26714. back: {
  26715. height: math.unit(5 + 7 / 12, "feet"),
  26716. weight: math.unit(185, "lb"),
  26717. name: "Back",
  26718. image: {
  26719. source: "./media/characters/aman-aquila/back.svg",
  26720. extra: 1026 / 970,
  26721. bottom: 12 / 1039
  26722. }
  26723. },
  26724. head: {
  26725. height: math.unit(1.211, "feet"),
  26726. name: "Head",
  26727. image: {
  26728. source: "./media/characters/aman-aquila/head.svg",
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Minimicro",
  26735. height: math.unit(0.057, "inches")
  26736. },
  26737. {
  26738. name: "Micro",
  26739. height: math.unit(7, "inches")
  26740. },
  26741. {
  26742. name: "Mini",
  26743. height: math.unit(3 + 7 / 12, "feet")
  26744. },
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(5 + 7 / 12, "feet"),
  26748. default: true
  26749. },
  26750. {
  26751. name: "Macro",
  26752. height: math.unit(157 + 7 / 12, "feet")
  26753. },
  26754. {
  26755. name: "Megamacro",
  26756. height: math.unit(1557 + 7 / 12, "feet")
  26757. },
  26758. {
  26759. name: "Gigamacro",
  26760. height: math.unit(15557 + 7 / 12, "feet")
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(3 + 2 / 12, "inches"),
  26769. weight: math.unit(0.3, "ounces"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/hiphae/front.svg",
  26773. extra: 1931 / 1683,
  26774. bottom: 24 / 1955
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Normal",
  26781. height: math.unit(3 + 1 / 2, "inches"),
  26782. default: true
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(5 + 10 / 12, "feet"),
  26791. weight: math.unit(165, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/nicky/front.svg",
  26795. extra: 3144 / 2886,
  26796. bottom: 45.6 / 3192
  26797. }
  26798. },
  26799. back: {
  26800. height: math.unit(5 + 10 / 12, "feet"),
  26801. weight: math.unit(165, "lb"),
  26802. name: "Back",
  26803. image: {
  26804. source: "./media/characters/nicky/back.svg",
  26805. extra: 3055 / 2804,
  26806. bottom: 28.4 / 3087
  26807. }
  26808. },
  26809. frontclothed: {
  26810. height: math.unit(5 + 10 / 12, "feet"),
  26811. weight: math.unit(165, "lb"),
  26812. name: "Front-clothed",
  26813. image: {
  26814. source: "./media/characters/nicky/front-clothed.svg",
  26815. extra: 3184.9 / 2926.9,
  26816. bottom: 86.5 / 3239.9
  26817. }
  26818. },
  26819. foot: {
  26820. height: math.unit(1.16, "feet"),
  26821. name: "Foot",
  26822. image: {
  26823. source: "./media/characters/nicky/foot.svg"
  26824. }
  26825. },
  26826. feet: {
  26827. height: math.unit(1.34, "feet"),
  26828. name: "Feet",
  26829. image: {
  26830. source: "./media/characters/nicky/feet.svg"
  26831. }
  26832. },
  26833. maw: {
  26834. height: math.unit(0.9, "feet"),
  26835. name: "Maw",
  26836. image: {
  26837. source: "./media/characters/nicky/maw.svg"
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(5 + 10 / 12, "feet"),
  26845. default: true
  26846. },
  26847. {
  26848. name: "Macro",
  26849. height: math.unit(60, "feet")
  26850. },
  26851. {
  26852. name: "Megamacro",
  26853. height: math.unit(1, "mile")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26859. {
  26860. side: {
  26861. height: math.unit(10, "feet"),
  26862. weight: math.unit(600, "lb"),
  26863. name: "Side",
  26864. image: {
  26865. source: "./media/characters/blair/side.svg",
  26866. bottom: 16.6 / 475,
  26867. extra: 458 / 431
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Micro",
  26874. height: math.unit(8, "inches")
  26875. },
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(10, "feet"),
  26879. default: true
  26880. },
  26881. {
  26882. name: "Macro",
  26883. height: math.unit(180, "feet")
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(5 + 4 / 12, "feet"),
  26892. weight: math.unit(125, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/fisher/front.svg",
  26896. extra: 444 / 390,
  26897. bottom: 2 / 444.8
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Micro",
  26904. height: math.unit(4, "inches")
  26905. },
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(5 + 4 / 12, "feet"),
  26909. default: true
  26910. },
  26911. {
  26912. name: "Macro",
  26913. height: math.unit(100, "feet")
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(6.71, "feet"),
  26922. weight: math.unit(200, "lb"),
  26923. preyCapacity: math.unit(1000000, "people"),
  26924. name: "Front",
  26925. image: {
  26926. source: "./media/characters/gliss/front.svg",
  26927. extra: 2347 / 2231,
  26928. bottom: 113 / 2462
  26929. }
  26930. },
  26931. hammerspaceSize: {
  26932. height: math.unit(6.71 * 717, "feet"),
  26933. weight: math.unit(200, "lb"),
  26934. preyCapacity: math.unit(1000000, "people"),
  26935. name: "Hammerspace Size",
  26936. image: {
  26937. source: "./media/characters/gliss/front.svg",
  26938. extra: 2347 / 2231,
  26939. bottom: 113 / 2462
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(6.71, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26953. {
  26954. side: {
  26955. height: math.unit(1.44, "m"),
  26956. weight: math.unit(80, "kg"),
  26957. name: "Side",
  26958. image: {
  26959. source: "./media/characters/dune-anderson/side.svg",
  26960. bottom: 49 / 1426
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Wolf-sized",
  26967. height: math.unit(1.44, "meters")
  26968. },
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(5.05, "meters"),
  26972. default: true
  26973. },
  26974. {
  26975. name: "Big",
  26976. height: math.unit(14.4, "meters")
  26977. },
  26978. {
  26979. name: "Huge",
  26980. height: math.unit(144, "meters")
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(7, "feet"),
  26989. weight: math.unit(425, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/hind/front.svg",
  26993. extra: 2091 / 1860,
  26994. bottom: 129 / 2220
  26995. }
  26996. },
  26997. back: {
  26998. height: math.unit(7, "feet"),
  26999. weight: math.unit(425, "lb"),
  27000. name: "Back",
  27001. image: {
  27002. source: "./media/characters/hind/back.svg",
  27003. extra: 2091 / 1860,
  27004. bottom: 24.6 / 2309
  27005. }
  27006. },
  27007. tail: {
  27008. height: math.unit(2.8, "feet"),
  27009. name: "Tail",
  27010. image: {
  27011. source: "./media/characters/hind/tail.svg"
  27012. }
  27013. },
  27014. head: {
  27015. height: math.unit(2.55, "feet"),
  27016. name: "Head",
  27017. image: {
  27018. source: "./media/characters/hind/head.svg"
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "XS",
  27025. height: math.unit(0.7, "feet")
  27026. },
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(7, "feet"),
  27030. default: true
  27031. },
  27032. {
  27033. name: "XL",
  27034. height: math.unit(70, "feet")
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(2.1, "meters"),
  27043. weight: math.unit(150, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/tharquench-sizestealer/front.svg",
  27047. extra: 1605/1470,
  27048. bottom: 36/1641
  27049. }
  27050. },
  27051. frontAlt: {
  27052. height: math.unit(2.1, "meters"),
  27053. weight: math.unit(150, "lb"),
  27054. name: "Front (Alt)",
  27055. image: {
  27056. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27057. extra: 2318 / 2063,
  27058. bottom: 93.4 / 2410
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Nano",
  27065. height: math.unit(1, "mm")
  27066. },
  27067. {
  27068. name: "Micro",
  27069. height: math.unit(1, "cm")
  27070. },
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(2.1, "meters"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(7 + 5 / 12, "feet"),
  27083. weight: math.unit(357, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/solex-draconov/front.svg",
  27087. extra: 1993 / 1865,
  27088. bottom: 117 / 2111
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Natural Height",
  27095. height: math.unit(7 + 5 / 12, "feet"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Macro",
  27100. height: math.unit(350, "feet")
  27101. },
  27102. {
  27103. name: "Macro+",
  27104. height: math.unit(1000, "feet")
  27105. },
  27106. {
  27107. name: "Megamacro",
  27108. height: math.unit(20, "km")
  27109. },
  27110. {
  27111. name: "Megamacro+",
  27112. height: math.unit(1000, "km")
  27113. },
  27114. {
  27115. name: "Gigamacro",
  27116. height: math.unit(2.5, "Gm")
  27117. },
  27118. {
  27119. name: "Teramacro",
  27120. height: math.unit(15, "Tm")
  27121. },
  27122. {
  27123. name: "Galactic",
  27124. height: math.unit(30, "Zm")
  27125. },
  27126. {
  27127. name: "Universal",
  27128. height: math.unit(21000, "Ym")
  27129. },
  27130. {
  27131. name: "Omniversal",
  27132. height: math.unit(9.861e50, "Ym")
  27133. },
  27134. {
  27135. name: "Existential",
  27136. height: math.unit(1e300, "meters")
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27142. {
  27143. side: {
  27144. height: math.unit(25, "feet"),
  27145. weight: math.unit(90000, "lb"),
  27146. name: "Side",
  27147. image: {
  27148. source: "./media/characters/mandarax/side.svg",
  27149. extra: 614 / 332,
  27150. bottom: 55 / 630
  27151. }
  27152. },
  27153. lounging: {
  27154. height: math.unit(15.4, "feet"),
  27155. weight: math.unit(90000, "lb"),
  27156. name: "Lounging",
  27157. image: {
  27158. source: "./media/characters/mandarax/lounging.svg",
  27159. extra: 817/609,
  27160. bottom: 685/1502
  27161. }
  27162. },
  27163. head: {
  27164. height: math.unit(11.4, "feet"),
  27165. name: "Head",
  27166. image: {
  27167. source: "./media/characters/mandarax/head.svg"
  27168. }
  27169. },
  27170. belly: {
  27171. height: math.unit(33, "feet"),
  27172. name: "Belly",
  27173. preyCapacity: math.unit(500, "people"),
  27174. image: {
  27175. source: "./media/characters/mandarax/belly.svg"
  27176. }
  27177. },
  27178. dick: {
  27179. height: math.unit(8.46, "feet"),
  27180. name: "Dick",
  27181. image: {
  27182. source: "./media/characters/mandarax/dick.svg"
  27183. }
  27184. },
  27185. top: {
  27186. height: math.unit(28, "meters"),
  27187. name: "Top",
  27188. image: {
  27189. source: "./media/characters/mandarax/top.svg"
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(25, "feet"),
  27197. default: true
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(5, "feet"),
  27206. weight: math.unit(90, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/pixil/front.svg",
  27210. extra: 2000 / 1618,
  27211. bottom: 12.3 / 2011
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(5, "feet"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Megamacro",
  27223. height: math.unit(10, "miles"),
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27229. {
  27230. front: {
  27231. height: math.unit(7 + 2 / 12, "feet"),
  27232. weight: math.unit(200, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/angel/front.svg",
  27236. extra: 1830 / 1737,
  27237. bottom: 22.6 / 1854,
  27238. }
  27239. },
  27240. },
  27241. [
  27242. {
  27243. name: "Normal",
  27244. height: math.unit(7 + 2 / 12, "feet"),
  27245. default: true
  27246. },
  27247. {
  27248. name: "Macro",
  27249. height: math.unit(1000, "feet")
  27250. },
  27251. {
  27252. name: "Megamacro",
  27253. height: math.unit(2, "miles")
  27254. },
  27255. {
  27256. name: "Gigamacro",
  27257. height: math.unit(20, "earths")
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(5, "feet"),
  27266. weight: math.unit(180, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/mekana/front.svg",
  27270. extra: 1671 / 1605,
  27271. bottom: 3.5 / 1691
  27272. }
  27273. },
  27274. side: {
  27275. height: math.unit(5, "feet"),
  27276. weight: math.unit(180, "lb"),
  27277. name: "Side",
  27278. image: {
  27279. source: "./media/characters/mekana/side.svg",
  27280. extra: 1671 / 1605,
  27281. bottom: 3.5 / 1691
  27282. }
  27283. },
  27284. back: {
  27285. height: math.unit(5, "feet"),
  27286. weight: math.unit(180, "lb"),
  27287. name: "Back",
  27288. image: {
  27289. source: "./media/characters/mekana/back.svg",
  27290. extra: 1671 / 1605,
  27291. bottom: 3.5 / 1691
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(5, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(4 + 6 / 12, "feet"),
  27308. weight: math.unit(80, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/pixie/front.svg",
  27312. extra: 1924 / 1825,
  27313. bottom: 22.4 / 1946
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(4 + 6 / 12, "feet"),
  27321. default: true
  27322. },
  27323. {
  27324. name: "Macro",
  27325. height: math.unit(40, "feet")
  27326. },
  27327. ]
  27328. ))
  27329. characterMakers.push(() => makeCharacter(
  27330. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27331. {
  27332. front: {
  27333. height: math.unit(2.1, "meters"),
  27334. weight: math.unit(200, "lb"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/the-lascivious/front.svg",
  27338. extra: 1 / 0.893,
  27339. bottom: 3.5 / 573.7
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Human Scale",
  27346. height: math.unit(2.1, "meters")
  27347. },
  27348. {
  27349. name: "Wolxi Scale",
  27350. height: math.unit(46.2, "m"),
  27351. default: true
  27352. },
  27353. {
  27354. name: "Boinker of Buildings",
  27355. height: math.unit(10, "km")
  27356. },
  27357. {
  27358. name: "Shagger of Skyscrapers",
  27359. height: math.unit(40, "km")
  27360. },
  27361. {
  27362. name: "Banger of Boroughs",
  27363. height: math.unit(4000, "km")
  27364. },
  27365. {
  27366. name: "Screwer of States",
  27367. height: math.unit(100000, "km")
  27368. },
  27369. {
  27370. name: "Pounder of Planets",
  27371. height: math.unit(2000000, "km")
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(6, "feet"),
  27380. weight: math.unit(150, "lb"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/aj/front.svg",
  27384. extra: 2039 / 1562,
  27385. bottom: 40 / 2079
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(11 + 6 / 12, "feet"),
  27393. default: true
  27394. },
  27395. {
  27396. name: "Megamacro",
  27397. height: math.unit(60, "megameters")
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27403. {
  27404. side: {
  27405. height: math.unit(31 + 8 / 12, "feet"),
  27406. weight: math.unit(75000, "kg"),
  27407. name: "Side",
  27408. image: {
  27409. source: "./media/characters/koros/side.svg",
  27410. extra: 1442 / 1297,
  27411. bottom: 122.7 / 1562
  27412. }
  27413. },
  27414. dicksKingsCrown: {
  27415. height: math.unit(6, "feet"),
  27416. name: "Dicks (King's Crown)",
  27417. image: {
  27418. source: "./media/characters/koros/dicks-kings-crown.svg"
  27419. }
  27420. },
  27421. dicksTailSet: {
  27422. height: math.unit(3, "feet"),
  27423. name: "Dicks (Tail Set)",
  27424. image: {
  27425. source: "./media/characters/koros/dicks-tail-set.svg"
  27426. }
  27427. },
  27428. dickCumming: {
  27429. height: math.unit(7.98, "feet"),
  27430. name: "Dick (Cumming)",
  27431. image: {
  27432. source: "./media/characters/koros/dick-cumming.svg"
  27433. }
  27434. },
  27435. dicksBack: {
  27436. height: math.unit(5.9, "feet"),
  27437. name: "Dicks (Back)",
  27438. image: {
  27439. source: "./media/characters/koros/dicks-back.svg"
  27440. }
  27441. },
  27442. dicksFront: {
  27443. height: math.unit(3.72, "feet"),
  27444. name: "Dicks (Front)",
  27445. image: {
  27446. source: "./media/characters/koros/dicks-front.svg"
  27447. }
  27448. },
  27449. dicksPeeking: {
  27450. height: math.unit(3.0, "feet"),
  27451. name: "Dicks (Peeking)",
  27452. image: {
  27453. source: "./media/characters/koros/dicks-peeking.svg"
  27454. }
  27455. },
  27456. eye: {
  27457. height: math.unit(1.7, "feet"),
  27458. name: "Eye",
  27459. image: {
  27460. source: "./media/characters/koros/eye.svg"
  27461. }
  27462. },
  27463. headFront: {
  27464. height: math.unit(11.69, "feet"),
  27465. name: "Head (Front)",
  27466. image: {
  27467. source: "./media/characters/koros/head-front.svg"
  27468. }
  27469. },
  27470. headSide: {
  27471. height: math.unit(14, "feet"),
  27472. name: "Head (Side)",
  27473. image: {
  27474. source: "./media/characters/koros/head-side.svg"
  27475. }
  27476. },
  27477. leg: {
  27478. height: math.unit(17, "feet"),
  27479. name: "Leg",
  27480. image: {
  27481. source: "./media/characters/koros/leg.svg"
  27482. }
  27483. },
  27484. mawSide: {
  27485. height: math.unit(12.8, "feet"),
  27486. name: "Maw (Side)",
  27487. image: {
  27488. source: "./media/characters/koros/maw-side.svg"
  27489. }
  27490. },
  27491. mawSpitting: {
  27492. height: math.unit(17, "feet"),
  27493. name: "Maw (Spitting)",
  27494. image: {
  27495. source: "./media/characters/koros/maw-spitting.svg"
  27496. }
  27497. },
  27498. slit: {
  27499. height: math.unit(2.8, "feet"),
  27500. name: "Slit",
  27501. image: {
  27502. source: "./media/characters/koros/slit.svg"
  27503. }
  27504. },
  27505. stomach: {
  27506. height: math.unit(6.8, "feet"),
  27507. preyCapacity: math.unit(20, "people"),
  27508. name: "Stomach",
  27509. image: {
  27510. source: "./media/characters/koros/stomach.svg"
  27511. }
  27512. },
  27513. wingspanBottom: {
  27514. height: math.unit(114, "feet"),
  27515. name: "Wingspan (Bottom)",
  27516. image: {
  27517. source: "./media/characters/koros/wingspan-bottom.svg"
  27518. }
  27519. },
  27520. wingspanTop: {
  27521. height: math.unit(104, "feet"),
  27522. name: "Wingspan (Top)",
  27523. image: {
  27524. source: "./media/characters/koros/wingspan-top.svg"
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(31 + 8 / 12, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(18 + 5 / 12, "feet"),
  27541. weight: math.unit(3750, "kg"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/vexx/front.svg",
  27545. extra: 426 / 396,
  27546. bottom: 31.5 / 458
  27547. }
  27548. },
  27549. maw: {
  27550. height: math.unit(6, "feet"),
  27551. name: "Maw",
  27552. image: {
  27553. source: "./media/characters/vexx/maw.svg"
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(18 + 5 / 12, "feet"),
  27561. default: true
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(17 + 6 / 12, "feet"),
  27570. weight: math.unit(150, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/baadra/front.svg",
  27574. extra: 1694/1553,
  27575. bottom: 179/1873
  27576. }
  27577. },
  27578. frontAlt: {
  27579. height: math.unit(17 + 6 / 12, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Front (Alt)",
  27582. image: {
  27583. source: "./media/characters/baadra/front-alt.svg",
  27584. extra: 3137 / 2890,
  27585. bottom: 168.4 / 3305
  27586. }
  27587. },
  27588. back: {
  27589. height: math.unit(17 + 6 / 12, "feet"),
  27590. weight: math.unit(150, "lb"),
  27591. name: "Back",
  27592. image: {
  27593. source: "./media/characters/baadra/back.svg",
  27594. extra: 3142 / 2890,
  27595. bottom: 220 / 3371
  27596. }
  27597. },
  27598. head: {
  27599. height: math.unit(5.45, "feet"),
  27600. name: "Head",
  27601. image: {
  27602. source: "./media/characters/baadra/head.svg"
  27603. }
  27604. },
  27605. headAngry: {
  27606. height: math.unit(4.95, "feet"),
  27607. name: "Head (Angry)",
  27608. image: {
  27609. source: "./media/characters/baadra/head-angry.svg"
  27610. }
  27611. },
  27612. headOpen: {
  27613. height: math.unit(6, "feet"),
  27614. name: "Head (Open)",
  27615. image: {
  27616. source: "./media/characters/baadra/head-open.svg"
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(17 + 6 / 12, "feet"),
  27624. default: true
  27625. },
  27626. ]
  27627. ))
  27628. characterMakers.push(() => makeCharacter(
  27629. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27630. {
  27631. front: {
  27632. height: math.unit(7 + 3 / 12, "feet"),
  27633. weight: math.unit(180, "lb"),
  27634. name: "Front",
  27635. image: {
  27636. source: "./media/characters/juri/front.svg",
  27637. extra: 1401 / 1237,
  27638. bottom: 18.5 / 1418
  27639. }
  27640. },
  27641. side: {
  27642. height: math.unit(7 + 3 / 12, "feet"),
  27643. weight: math.unit(180, "lb"),
  27644. name: "Side",
  27645. image: {
  27646. source: "./media/characters/juri/side.svg",
  27647. extra: 1424 / 1242,
  27648. bottom: 18.5 / 1447
  27649. }
  27650. },
  27651. sitting: {
  27652. height: math.unit(6, "feet"),
  27653. weight: math.unit(180, "lb"),
  27654. name: "Sitting",
  27655. image: {
  27656. source: "./media/characters/juri/sitting.svg",
  27657. extra: 1270 / 1143,
  27658. bottom: 100 / 1343
  27659. }
  27660. },
  27661. back: {
  27662. height: math.unit(7 + 3 / 12, "feet"),
  27663. weight: math.unit(180, "lb"),
  27664. name: "Back",
  27665. image: {
  27666. source: "./media/characters/juri/back.svg",
  27667. extra: 1377 / 1240,
  27668. bottom: 23.7 / 1405
  27669. }
  27670. },
  27671. maw: {
  27672. height: math.unit(2.8, "feet"),
  27673. name: "Maw",
  27674. image: {
  27675. source: "./media/characters/juri/maw.svg"
  27676. }
  27677. },
  27678. stomach: {
  27679. height: math.unit(0.89, "feet"),
  27680. preyCapacity: math.unit(4, "liters"),
  27681. name: "Stomach",
  27682. image: {
  27683. source: "./media/characters/juri/stomach.svg"
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(7 + 3 / 12, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27697. {
  27698. fox: {
  27699. height: math.unit(5 + 6 / 12, "feet"),
  27700. weight: math.unit(140, "lb"),
  27701. name: "Fox",
  27702. image: {
  27703. source: "./media/characters/maxene-sita/fox.svg",
  27704. extra: 146 / 138,
  27705. bottom: 2.1 / 148.19
  27706. }
  27707. },
  27708. foxLaying: {
  27709. height: math.unit(1.70, "feet"),
  27710. weight: math.unit(140, "lb"),
  27711. name: "Fox (Laying)",
  27712. image: {
  27713. source: "./media/characters/maxene-sita/fox-laying.svg",
  27714. extra: 910 / 572,
  27715. bottom: 71 / 981
  27716. }
  27717. },
  27718. kitsune: {
  27719. height: math.unit(10, "feet"),
  27720. weight: math.unit(800, "lb"),
  27721. name: "Kitsune",
  27722. image: {
  27723. source: "./media/characters/maxene-sita/kitsune.svg",
  27724. extra: 185 / 176,
  27725. bottom: 4.7 / 189.9
  27726. }
  27727. },
  27728. hellhound: {
  27729. height: math.unit(10, "feet"),
  27730. weight: math.unit(700, "lb"),
  27731. name: "Hellhound",
  27732. image: {
  27733. source: "./media/characters/maxene-sita/hellhound.svg",
  27734. extra: 1600 / 1545,
  27735. bottom: 81 / 1681
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(5 + 6 / 12, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27749. {
  27750. front: {
  27751. height: math.unit(3 + 4 / 12, "feet"),
  27752. weight: math.unit(70, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/maia/front.svg",
  27756. extra: 227 / 219.5,
  27757. bottom: 40 / 267
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(3 + 4 / 12, "feet"),
  27762. weight: math.unit(70, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/maia/back.svg",
  27766. extra: 237 / 225
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(3 + 4 / 12, "feet"),
  27774. default: true
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27780. {
  27781. front: {
  27782. height: math.unit(5 + 10 / 12, "feet"),
  27783. weight: math.unit(197, "lb"),
  27784. name: "Front",
  27785. image: {
  27786. source: "./media/characters/jabaro/front.svg",
  27787. extra: 225 / 216,
  27788. bottom: 5.06 / 230
  27789. }
  27790. },
  27791. back: {
  27792. height: math.unit(5 + 10 / 12, "feet"),
  27793. weight: math.unit(197, "lb"),
  27794. name: "Back",
  27795. image: {
  27796. source: "./media/characters/jabaro/back.svg",
  27797. extra: 225 / 219,
  27798. bottom: 1.9 / 227
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(5 + 10 / 12, "feet"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(5 + 8 / 12, "feet"),
  27815. weight: math.unit(139, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/risa/front.svg",
  27819. extra: 270 / 260,
  27820. bottom: 11.2 / 282
  27821. }
  27822. },
  27823. back: {
  27824. height: math.unit(5 + 8 / 12, "feet"),
  27825. weight: math.unit(139, "lb"),
  27826. name: "Back",
  27827. image: {
  27828. source: "./media/characters/risa/back.svg",
  27829. extra: 264 / 255,
  27830. bottom: 4 / 268
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(5 + 8 / 12, "feet"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(2 + 11 / 12, "feet"),
  27847. weight: math.unit(30, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/weatley/front.svg",
  27851. bottom: 10.7 / 414,
  27852. extra: 403.5 / 362
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(2 + 11 / 12, "feet"),
  27857. weight: math.unit(30, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/weatley/back.svg",
  27861. bottom: 10.7 / 414,
  27862. extra: 403.5 / 362
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(2 + 11 / 12, "feet"),
  27870. default: true
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(5 + 2 / 12, "feet"),
  27879. weight: math.unit(50, "kg"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/mercury-crescent/front.svg",
  27883. extra: 1088 / 1033,
  27884. bottom: 18.9 / 1109
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(5 + 2 / 12, "feet"),
  27892. default: true
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(2, "feet"),
  27901. weight: math.unit(15, "kg"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/diamond-jones/front.svg",
  27905. extra: 727/723,
  27906. bottom: 46/773
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(2, "feet"),
  27914. default: true
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(3, "feet"),
  27923. weight: math.unit(30, "kg"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/sweet-bit/front.svg",
  27927. extra: 675 / 567,
  27928. bottom: 27.7 / 703
  27929. }
  27930. },
  27931. },
  27932. [
  27933. {
  27934. name: "Normal",
  27935. height: math.unit(3, "feet"),
  27936. default: true
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27942. {
  27943. side: {
  27944. height: math.unit(9.178, "feet"),
  27945. weight: math.unit(500, "lb"),
  27946. name: "Side",
  27947. image: {
  27948. source: "./media/characters/umbrazen/side.svg",
  27949. extra: 1730 / 1473,
  27950. bottom: 34.6 / 1765
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(9.178, "feet"),
  27958. default: true
  27959. },
  27960. ]
  27961. ))
  27962. characterMakers.push(() => makeCharacter(
  27963. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27964. {
  27965. front: {
  27966. height: math.unit(10, "feet"),
  27967. weight: math.unit(750, "lb"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/arlist/front.svg",
  27971. extra: 961 / 778,
  27972. bottom: 6.2 / 986
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(10, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(5 + 1 / 12, "feet"),
  27989. weight: math.unit(110, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/aradel/front.svg",
  27993. extra: 324 / 303,
  27994. bottom: 3.6 / 329.4
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(5 + 1 / 12, "feet"),
  28002. default: true
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28008. {
  28009. dressed: {
  28010. height: math.unit(3 + 8 / 12, "feet"),
  28011. weight: math.unit(50, "lb"),
  28012. name: "Dressed",
  28013. image: {
  28014. source: "./media/characters/serryn/dressed.svg",
  28015. extra: 1792 / 1656,
  28016. bottom: 43.5 / 1840
  28017. }
  28018. },
  28019. nude: {
  28020. height: math.unit(3 + 8 / 12, "feet"),
  28021. weight: math.unit(50, "lb"),
  28022. name: "Nude",
  28023. image: {
  28024. source: "./media/characters/serryn/nude.svg",
  28025. extra: 1792 / 1656,
  28026. bottom: 43.5 / 1840
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Normal",
  28033. height: math.unit(3 + 8 / 12, "feet"),
  28034. default: true
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(7 + 10 / 12, "feet"),
  28043. weight: math.unit(255, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/xavier-thyme/front.svg",
  28047. extra: 3733 / 3642,
  28048. bottom: 131 / 3869
  28049. }
  28050. },
  28051. frontRaven: {
  28052. height: math.unit(7 + 10 / 12, "feet"),
  28053. weight: math.unit(255, "lb"),
  28054. name: "Front (Raven)",
  28055. image: {
  28056. source: "./media/characters/xavier-thyme/front-raven.svg",
  28057. extra: 4385 / 3642,
  28058. bottom: 131 / 4517
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(7 + 10 / 12, "feet"),
  28066. default: true
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(1.6, "m"),
  28075. weight: math.unit(50, "kg"),
  28076. name: "Front",
  28077. image: {
  28078. source: "./media/characters/kiki/front.svg",
  28079. extra: 4682 / 3610,
  28080. bottom: 115 / 4777
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(1.6, "meters"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(50, "m"),
  28097. weight: math.unit(500, "tonnes"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/ryoko/front.svg",
  28101. extra: 4632 / 3926,
  28102. bottom: 193 / 4823
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(50, "meters"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(30, "m"),
  28119. weight: math.unit(22, "tonnes"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/elio/front.svg",
  28123. extra: 4582 / 3720,
  28124. bottom: 236 / 4828
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(30, "meters"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(6 + 3 / 12, "feet"),
  28141. weight: math.unit(120, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/azura/front.svg",
  28145. extra: 1149 / 1135,
  28146. bottom: 45 / 1194
  28147. }
  28148. },
  28149. frontClothed: {
  28150. height: math.unit(6 + 3 / 12, "feet"),
  28151. weight: math.unit(120, "lb"),
  28152. name: "Front (Clothed)",
  28153. image: {
  28154. source: "./media/characters/azura/front-clothed.svg",
  28155. extra: 1149 / 1135,
  28156. bottom: 45 / 1194
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(6 + 3 / 12, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Macro",
  28168. height: math.unit(20 + 6 / 12, "feet")
  28169. },
  28170. {
  28171. name: "Megamacro",
  28172. height: math.unit(12, "miles")
  28173. },
  28174. {
  28175. name: "Gigamacro",
  28176. height: math.unit(10000, "miles")
  28177. },
  28178. {
  28179. name: "Teramacro",
  28180. height: math.unit(900000, "miles")
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(12, "feet"),
  28189. weight: math.unit(1, "ton"),
  28190. capacity: math.unit(660000, "gallons"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/zeus/front.svg",
  28194. extra: 5005 / 4717,
  28195. bottom: 363 / 5388
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(12, "feet")
  28203. },
  28204. {
  28205. name: "Preferred Size",
  28206. height: math.unit(0.5, "miles"),
  28207. default: true
  28208. },
  28209. {
  28210. name: "Giga Horse",
  28211. height: math.unit(300, "miles")
  28212. },
  28213. {
  28214. name: "Riding Planets",
  28215. height: math.unit(30, "megameters")
  28216. },
  28217. {
  28218. name: "Cosmic Giant",
  28219. height: math.unit(3, "zettameters")
  28220. },
  28221. {
  28222. name: "Breeding God",
  28223. height: math.unit(9.92e22, "yottameters")
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28229. {
  28230. side: {
  28231. height: math.unit(9, "feet"),
  28232. weight: math.unit(1500, "kg"),
  28233. name: "Side",
  28234. image: {
  28235. source: "./media/characters/fang/side.svg",
  28236. extra: 924 / 866,
  28237. bottom: 47.5 / 972.3
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(9, "feet"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Macro",
  28249. height: math.unit(75 + 6 / 12, "feet")
  28250. },
  28251. {
  28252. name: "Teramacro",
  28253. height: math.unit(50000, "miles")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(10, "feet"),
  28262. weight: math.unit(2, "tons"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/rekhit/front.svg",
  28266. extra: 2796 / 2590,
  28267. bottom: 225 / 3022
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(10, "feet"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Macro",
  28279. height: math.unit(500, "feet")
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(7 + 6.451 / 12, "feet"),
  28288. weight: math.unit(310, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/dahlia-verrick/front.svg",
  28292. extra: 1488 / 1365,
  28293. bottom: 6.2 / 1495
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(7 + 6.451 / 12, "feet"),
  28298. weight: math.unit(310, "lb"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/dahlia-verrick/back.svg",
  28302. extra: 1472 / 1351,
  28303. bottom: 5.28 / 1477
  28304. }
  28305. },
  28306. frontBusiness: {
  28307. height: math.unit(7 + 6.451 / 12, "feet"),
  28308. weight: math.unit(200, "lb"),
  28309. name: "Front (Business)",
  28310. image: {
  28311. source: "./media/characters/dahlia-verrick/front-business.svg",
  28312. extra: 1478 / 1381,
  28313. bottom: 5.5 / 1484
  28314. }
  28315. },
  28316. frontCasual: {
  28317. height: math.unit(7 + 6.451 / 12, "feet"),
  28318. weight: math.unit(200, "lb"),
  28319. name: "Front (Casual)",
  28320. image: {
  28321. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28322. extra: 1478 / 1381,
  28323. bottom: 5.5 / 1484
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Travel-Sized",
  28330. height: math.unit(7.45, "inches")
  28331. },
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(7 + 6.451 / 12, "feet"),
  28335. default: true
  28336. },
  28337. {
  28338. name: "Hitting the Town",
  28339. height: math.unit(37 + 8 / 12, "feet")
  28340. },
  28341. {
  28342. name: "Stomp in the Suburbs",
  28343. height: math.unit(964 + 9.728 / 12, "feet")
  28344. },
  28345. {
  28346. name: "Sit on the City",
  28347. height: math.unit(61747 + 10.592 / 12, "feet")
  28348. },
  28349. {
  28350. name: "Glomp the Globe",
  28351. height: math.unit(252919327 + 4.832 / 12, "feet")
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(6 + 4 / 12, "feet"),
  28360. weight: math.unit(320, "lb"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/balina-mahigan/front.svg",
  28364. extra: 447 / 428,
  28365. bottom: 18 / 466
  28366. }
  28367. },
  28368. back: {
  28369. height: math.unit(6 + 4 / 12, "feet"),
  28370. weight: math.unit(320, "lb"),
  28371. name: "Back",
  28372. image: {
  28373. source: "./media/characters/balina-mahigan/back.svg",
  28374. extra: 445 / 428,
  28375. bottom: 4.07 / 448
  28376. }
  28377. },
  28378. arm: {
  28379. height: math.unit(1.88, "feet"),
  28380. name: "Arm",
  28381. image: {
  28382. source: "./media/characters/balina-mahigan/arm.svg"
  28383. }
  28384. },
  28385. backPort: {
  28386. height: math.unit(0.685, "feet"),
  28387. name: "Back Port",
  28388. image: {
  28389. source: "./media/characters/balina-mahigan/back-port.svg"
  28390. }
  28391. },
  28392. hoofpaw: {
  28393. height: math.unit(1.41, "feet"),
  28394. name: "Hoofpaw",
  28395. image: {
  28396. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28397. }
  28398. },
  28399. leftHandBack: {
  28400. height: math.unit(0.938, "feet"),
  28401. name: "Left Hand (Back)",
  28402. image: {
  28403. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28404. }
  28405. },
  28406. leftHandFront: {
  28407. height: math.unit(0.938, "feet"),
  28408. name: "Left Hand (Front)",
  28409. image: {
  28410. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28411. }
  28412. },
  28413. rightHandBack: {
  28414. height: math.unit(0.95, "feet"),
  28415. name: "Right Hand (Back)",
  28416. image: {
  28417. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28418. }
  28419. },
  28420. rightHandFront: {
  28421. height: math.unit(0.95, "feet"),
  28422. name: "Right Hand (Front)",
  28423. image: {
  28424. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(6 + 4 / 12, "feet"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(6, "feet"),
  28441. weight: math.unit(320, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/balina-mejeri/front.svg",
  28445. extra: 517 / 488,
  28446. bottom: 44.2 / 561
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(6 + 4 / 12, "feet")
  28454. },
  28455. {
  28456. name: "Business",
  28457. height: math.unit(155, "feet"),
  28458. default: true
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28464. {
  28465. kneeling: {
  28466. height: math.unit(6 + 4 / 12, "feet"),
  28467. weight: math.unit(300 * 20, "lb"),
  28468. name: "Kneeling",
  28469. image: {
  28470. source: "./media/characters/balbarian/kneeling.svg",
  28471. extra: 922 / 862,
  28472. bottom: 42.4 / 965
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(6 + 4 / 12, "feet")
  28480. },
  28481. {
  28482. name: "Treasured",
  28483. height: math.unit(18 + 9 / 12, "feet"),
  28484. default: true
  28485. },
  28486. {
  28487. name: "Macro",
  28488. height: math.unit(900, "feet")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(6 + 4 / 12, "feet"),
  28497. weight: math.unit(325, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/balina-amarini/front.svg",
  28501. extra: 415 / 403,
  28502. bottom: 19 / 433.4
  28503. }
  28504. },
  28505. back: {
  28506. height: math.unit(6 + 4 / 12, "feet"),
  28507. weight: math.unit(325, "lb"),
  28508. name: "Back",
  28509. image: {
  28510. source: "./media/characters/balina-amarini/back.svg",
  28511. extra: 415 / 403,
  28512. bottom: 13.5 / 432
  28513. }
  28514. },
  28515. overdrive: {
  28516. height: math.unit(6 + 4 / 12, "feet"),
  28517. weight: math.unit(400, "lb"),
  28518. name: "Overdrive",
  28519. image: {
  28520. source: "./media/characters/balina-amarini/overdrive.svg",
  28521. extra: 269 / 259,
  28522. bottom: 12 / 282
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Boom",
  28529. height: math.unit(9 + 10 / 12, "feet"),
  28530. default: true
  28531. },
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(280, "feet")
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28540. {
  28541. goddess: {
  28542. height: math.unit(600, "feet"),
  28543. weight: math.unit(2000000, "tons"),
  28544. name: "Goddess",
  28545. image: {
  28546. source: "./media/characters/lady-kubwa/goddess.svg",
  28547. extra: 1240.5 / 1223,
  28548. bottom: 22 / 1263
  28549. }
  28550. },
  28551. goddesser: {
  28552. height: math.unit(900, "feet"),
  28553. weight: math.unit(20000000, "lb"),
  28554. name: "Goddess-er",
  28555. image: {
  28556. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28557. extra: 899 / 888,
  28558. bottom: 12.6 / 912
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Macro",
  28565. height: math.unit(600, "feet"),
  28566. default: true
  28567. },
  28568. {
  28569. name: "Megamacro",
  28570. height: math.unit(250, "miles")
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(7 + 7 / 12, "feet"),
  28579. weight: math.unit(250, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/tala-grovehorn/front.svg",
  28583. extra: 2636 / 2525,
  28584. bottom: 147 / 2781
  28585. }
  28586. },
  28587. back: {
  28588. height: math.unit(7 + 7 / 12, "feet"),
  28589. weight: math.unit(250, "lb"),
  28590. name: "Back",
  28591. image: {
  28592. source: "./media/characters/tala-grovehorn/back.svg",
  28593. extra: 2635 / 2539,
  28594. bottom: 100 / 2732.8
  28595. }
  28596. },
  28597. mouth: {
  28598. height: math.unit(1.15, "feet"),
  28599. name: "Mouth",
  28600. image: {
  28601. source: "./media/characters/tala-grovehorn/mouth.svg"
  28602. }
  28603. },
  28604. dick: {
  28605. height: math.unit(2.36, "feet"),
  28606. name: "Dick",
  28607. image: {
  28608. source: "./media/characters/tala-grovehorn/dick.svg"
  28609. }
  28610. },
  28611. slit: {
  28612. height: math.unit(0.61, "feet"),
  28613. name: "Slit",
  28614. image: {
  28615. source: "./media/characters/tala-grovehorn/slit.svg"
  28616. }
  28617. },
  28618. },
  28619. [
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(7 + 7 / 12, "feet"),
  28627. weight: math.unit(225, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/epona/front.svg",
  28631. extra: 2445 / 2290,
  28632. bottom: 251 / 2696
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(7 + 7 / 12, "feet"),
  28637. weight: math.unit(225, "lb"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/epona/back.svg",
  28641. extra: 2546 / 2408,
  28642. bottom: 44 / 2589
  28643. }
  28644. },
  28645. genitals: {
  28646. height: math.unit(1.5, "feet"),
  28647. name: "Genitals",
  28648. image: {
  28649. source: "./media/characters/epona/genitals.svg"
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(7 + 7 / 12, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(7, "feet"),
  28666. weight: math.unit(518, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/avia-bloodbourn/front.svg",
  28670. extra: 1466 / 1350,
  28671. bottom: 65 / 1527
  28672. }
  28673. },
  28674. },
  28675. [
  28676. ]
  28677. ))
  28678. characterMakers.push(() => makeCharacter(
  28679. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28680. {
  28681. front: {
  28682. height: math.unit(9.35, "feet"),
  28683. weight: math.unit(600, "lb"),
  28684. name: "Front",
  28685. image: {
  28686. source: "./media/characters/amera/front.svg",
  28687. extra: 891 / 818,
  28688. bottom: 30 / 922.7
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(9.35, "feet"),
  28693. weight: math.unit(600, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/amera/back.svg",
  28697. extra: 876 / 824,
  28698. bottom: 6.8 / 884
  28699. }
  28700. },
  28701. dick: {
  28702. height: math.unit(2.14, "feet"),
  28703. name: "Dick",
  28704. image: {
  28705. source: "./media/characters/amera/dick.svg"
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(9.35, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28719. {
  28720. kneeling: {
  28721. height: math.unit(3 + 4 / 12, "feet"),
  28722. weight: math.unit(90, "lb"),
  28723. name: "Kneeling",
  28724. image: {
  28725. source: "./media/characters/rosewen/kneeling.svg",
  28726. extra: 1835 / 1571,
  28727. bottom: 27.7 / 1862
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(3 + 4 / 12, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(5 + 10 / 12, "feet"),
  28744. weight: math.unit(200, "lb"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/sabah/front.svg",
  28748. extra: 849 / 763,
  28749. bottom: 33.9 / 881
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(5 + 10 / 12, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28763. {
  28764. front: {
  28765. height: math.unit(3 + 5 / 12, "feet"),
  28766. weight: math.unit(40, "kg"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/purple-flame/front.svg",
  28770. extra: 1577 / 1412,
  28771. bottom: 97 / 1694
  28772. }
  28773. },
  28774. frontDressed: {
  28775. height: math.unit(3 + 5 / 12, "feet"),
  28776. weight: math.unit(40, "kg"),
  28777. name: "Front (Dressed)",
  28778. image: {
  28779. source: "./media/characters/purple-flame/front-dressed.svg",
  28780. extra: 1577 / 1412,
  28781. bottom: 97 / 1694
  28782. }
  28783. },
  28784. headphones: {
  28785. height: math.unit(0.85, "feet"),
  28786. name: "Headphones",
  28787. image: {
  28788. source: "./media/characters/purple-flame/headphones.svg"
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Really Small",
  28795. height: math.unit(5, "cm")
  28796. },
  28797. {
  28798. name: "Micro",
  28799. height: math.unit(1 + 5 / 12, "feet")
  28800. },
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(3 + 5 / 12, "feet"),
  28804. default: true
  28805. },
  28806. {
  28807. name: "Minimacro",
  28808. height: math.unit(125, "feet")
  28809. },
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(0.5, "miles")
  28813. },
  28814. {
  28815. name: "Megamacro",
  28816. height: math.unit(50, "miles")
  28817. },
  28818. {
  28819. name: "Gigantic",
  28820. height: math.unit(750, "miles")
  28821. },
  28822. {
  28823. name: "Planetary",
  28824. height: math.unit(15000, "miles")
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(14, "feet"),
  28833. weight: math.unit(959, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/arsenal/front.svg",
  28837. extra: 2357 / 2157,
  28838. bottom: 93 / 2458
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(14, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(6, "feet"),
  28855. weight: math.unit(150, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/adira/front.svg",
  28859. extra: 1078 / 1029,
  28860. bottom: 87 / 1166
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Micro",
  28867. height: math.unit(4, "inches"),
  28868. default: true
  28869. },
  28870. {
  28871. name: "Macro",
  28872. height: math.unit(50, "feet")
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(16, "feet"),
  28881. weight: math.unit(1000, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/grim/front.svg",
  28885. extra: 622 / 614,
  28886. bottom: 18.1 / 642
  28887. }
  28888. },
  28889. back: {
  28890. height: math.unit(16, "feet"),
  28891. weight: math.unit(1000, "lb"),
  28892. name: "Back",
  28893. image: {
  28894. source: "./media/characters/grim/back.svg",
  28895. extra: 610.6 / 602,
  28896. bottom: 40.8 / 652
  28897. }
  28898. },
  28899. hunched: {
  28900. height: math.unit(9.75, "feet"),
  28901. weight: math.unit(1000, "lb"),
  28902. name: "Hunched",
  28903. image: {
  28904. source: "./media/characters/grim/hunched.svg",
  28905. extra: 304 / 297,
  28906. bottom: 35.4 / 394
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Normal",
  28913. height: math.unit(16, "feet"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(2.3, "meters"),
  28923. weight: math.unit(300, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/sinja/front-sfw.svg",
  28927. extra: 1393 / 1294,
  28928. bottom: 70 / 1463
  28929. }
  28930. },
  28931. frontNsfw: {
  28932. height: math.unit(2.3, "meters"),
  28933. weight: math.unit(300, "lb"),
  28934. name: "Front (NSFW)",
  28935. image: {
  28936. source: "./media/characters/sinja/front-nsfw.svg",
  28937. extra: 1393 / 1294,
  28938. bottom: 70 / 1463
  28939. }
  28940. },
  28941. back: {
  28942. height: math.unit(2.3, "meters"),
  28943. weight: math.unit(300, "lb"),
  28944. name: "Back",
  28945. image: {
  28946. source: "./media/characters/sinja/back.svg",
  28947. extra: 1393 / 1294,
  28948. bottom: 70 / 1463
  28949. }
  28950. },
  28951. head: {
  28952. height: math.unit(1.771, "feet"),
  28953. name: "Head",
  28954. image: {
  28955. source: "./media/characters/sinja/head.svg"
  28956. }
  28957. },
  28958. slit: {
  28959. height: math.unit(0.8, "feet"),
  28960. name: "Slit",
  28961. image: {
  28962. source: "./media/characters/sinja/slit.svg"
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(2.3, "meters")
  28970. },
  28971. {
  28972. name: "Macro",
  28973. height: math.unit(91, "meters"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Megamacro",
  28978. height: math.unit(91440, "meters")
  28979. },
  28980. {
  28981. name: "Gigamacro",
  28982. height: math.unit(60960000, "meters")
  28983. },
  28984. {
  28985. name: "Teramacro",
  28986. height: math.unit(9144000000, "meters")
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(1.7, "meters"),
  28995. weight: math.unit(130, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/kyu/front.svg",
  28999. extra: 415 / 395,
  29000. bottom: 5 / 420
  29001. }
  29002. },
  29003. head: {
  29004. height: math.unit(1.75, "feet"),
  29005. name: "Head",
  29006. image: {
  29007. source: "./media/characters/kyu/head.svg"
  29008. }
  29009. },
  29010. foot: {
  29011. height: math.unit(0.81, "feet"),
  29012. name: "Foot",
  29013. image: {
  29014. source: "./media/characters/kyu/foot.svg"
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(1.7, "meters")
  29022. },
  29023. {
  29024. name: "Macro",
  29025. height: math.unit(131, "feet"),
  29026. default: true
  29027. },
  29028. {
  29029. name: "Megamacro",
  29030. height: math.unit(91440, "meters")
  29031. },
  29032. {
  29033. name: "Gigamacro",
  29034. height: math.unit(60960000, "meters")
  29035. },
  29036. {
  29037. name: "Teramacro",
  29038. height: math.unit(9144000000, "meters")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(7 + 1 / 12, "feet"),
  29047. weight: math.unit(250, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/joey/front.svg",
  29051. extra: 1791 / 1537,
  29052. bottom: 28 / 1816
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Micro",
  29059. height: math.unit(3, "inches")
  29060. },
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(7 + 1 / 12, "feet"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(165, "cm"),
  29073. weight: math.unit(140, "lb"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/sam-evans/front.svg",
  29077. extra: 3417 / 3230,
  29078. bottom: 41.3 / 3417
  29079. }
  29080. },
  29081. frontSixTails: {
  29082. height: math.unit(165, "cm"),
  29083. weight: math.unit(140, "lb"),
  29084. name: "Front-six-tails",
  29085. image: {
  29086. source: "./media/characters/sam-evans/front-six-tails.svg",
  29087. extra: 3417 / 3230,
  29088. bottom: 41.3 / 3417
  29089. }
  29090. },
  29091. back: {
  29092. height: math.unit(165, "cm"),
  29093. weight: math.unit(140, "lb"),
  29094. name: "Back",
  29095. image: {
  29096. source: "./media/characters/sam-evans/back.svg",
  29097. extra: 3227 / 3032,
  29098. bottom: 6.8 / 3234
  29099. }
  29100. },
  29101. face: {
  29102. height: math.unit(0.68, "feet"),
  29103. name: "Face",
  29104. image: {
  29105. source: "./media/characters/sam-evans/face.svg"
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(165, "cm"),
  29113. default: true
  29114. },
  29115. {
  29116. name: "Macro",
  29117. height: math.unit(100, "meters")
  29118. },
  29119. {
  29120. name: "Macro+",
  29121. height: math.unit(800, "meters")
  29122. },
  29123. {
  29124. name: "Macro++",
  29125. height: math.unit(3, "km")
  29126. },
  29127. {
  29128. name: "Macro+++",
  29129. height: math.unit(30, "km")
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(10, "feet"),
  29138. weight: math.unit(750, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/juliet-a/front.svg",
  29142. extra: 1766 / 1720,
  29143. bottom: 43 / 1809
  29144. }
  29145. },
  29146. back: {
  29147. height: math.unit(10, "feet"),
  29148. weight: math.unit(750, "lb"),
  29149. name: "Back",
  29150. image: {
  29151. source: "./media/characters/juliet-a/back.svg",
  29152. extra: 1781 / 1734,
  29153. bottom: 35 / 1810,
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(10, "feet"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Dragon Form",
  29165. height: math.unit(250, "feet")
  29166. },
  29167. {
  29168. name: "Macro",
  29169. height: math.unit(1000, "feet")
  29170. },
  29171. {
  29172. name: "Megamacro",
  29173. height: math.unit(10000, "feet")
  29174. }
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29179. {
  29180. regular: {
  29181. height: math.unit(7 + 3 / 12, "feet"),
  29182. weight: math.unit(260, "lb"),
  29183. name: "Regular",
  29184. image: {
  29185. source: "./media/characters/wild/regular.svg",
  29186. extra: 97.45 / 92,
  29187. bottom: 6.8 / 104.3
  29188. }
  29189. },
  29190. biggums: {
  29191. height: math.unit(8 + 6 / 12, "feet"),
  29192. weight: math.unit(425, "lb"),
  29193. name: "Biggums",
  29194. image: {
  29195. source: "./media/characters/wild/biggums.svg",
  29196. extra: 97.45 / 92,
  29197. bottom: 7.5 / 132.34
  29198. }
  29199. },
  29200. mawRegular: {
  29201. height: math.unit(1.24, "feet"),
  29202. name: "Maw (Regular)",
  29203. image: {
  29204. source: "./media/characters/wild/maw.svg"
  29205. }
  29206. },
  29207. mawBiggums: {
  29208. height: math.unit(1.47, "feet"),
  29209. name: "Maw (Biggums)",
  29210. image: {
  29211. source: "./media/characters/wild/maw.svg"
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(7 + 3 / 12, "feet"),
  29219. default: true
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29225. {
  29226. front: {
  29227. height: math.unit(2.5, "meters"),
  29228. weight: math.unit(200, "kg"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/vidar/front.svg",
  29232. extra: 2994 / 2795,
  29233. bottom: 56 / 3061
  29234. }
  29235. },
  29236. back: {
  29237. height: math.unit(2.5, "meters"),
  29238. weight: math.unit(200, "kg"),
  29239. name: "Back",
  29240. image: {
  29241. source: "./media/characters/vidar/back.svg",
  29242. extra: 3131 / 2928,
  29243. bottom: 13.5 / 3141.5
  29244. }
  29245. },
  29246. feral: {
  29247. height: math.unit(2.5, "meters"),
  29248. weight: math.unit(2000, "kg"),
  29249. name: "Feral",
  29250. image: {
  29251. source: "./media/characters/vidar/feral.svg",
  29252. extra: 2790 / 1765,
  29253. bottom: 6 / 2796
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(2.5, "meters"),
  29261. default: true
  29262. },
  29263. {
  29264. name: "Macro",
  29265. height: math.unit(100, "meters")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(5 + 9 / 12, "feet"),
  29274. weight: math.unit(120, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/ash/front.svg",
  29278. extra: 2189 / 1961,
  29279. bottom: 5.2 / 2194
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(5 + 9 / 12, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(9, "feet"),
  29296. weight: math.unit(10000, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/gygabite/front.svg",
  29300. bottom: 31.7 / 537.8,
  29301. extra: 505 / 370
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(9, "feet"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(12, "feet"),
  29318. weight: math.unit(4000, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/p0tat0/front.svg",
  29322. extra: 1065 / 921,
  29323. bottom: 55.7 / 1121.25
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(12, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29337. {
  29338. side: {
  29339. height: math.unit(6.5, "feet"),
  29340. weight: math.unit(800, "lb"),
  29341. name: "Side",
  29342. image: {
  29343. source: "./media/characters/dusk/side.svg",
  29344. extra: 615 / 373,
  29345. bottom: 53 / 664
  29346. }
  29347. },
  29348. sitting: {
  29349. height: math.unit(7, "feet"),
  29350. weight: math.unit(800, "lb"),
  29351. name: "Sitting",
  29352. image: {
  29353. source: "./media/characters/dusk/sitting.svg",
  29354. extra: 753 / 425,
  29355. bottom: 33 / 774
  29356. }
  29357. },
  29358. head: {
  29359. height: math.unit(6.1, "feet"),
  29360. name: "Head",
  29361. image: {
  29362. source: "./media/characters/dusk/head.svg"
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(7, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(15, "feet"),
  29379. weight: math.unit(7000, "lb"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/jay-direwolf/front.svg",
  29383. extra: 1810 / 1732,
  29384. bottom: 66 / 1892
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(15, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(4 + 9 / 12, "feet"),
  29401. weight: math.unit(130, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/anchovie/front.svg",
  29405. extra: 382 / 350,
  29406. bottom: 25 / 409
  29407. }
  29408. },
  29409. back: {
  29410. height: math.unit(4 + 9 / 12, "feet"),
  29411. weight: math.unit(130, "lb"),
  29412. name: "Back",
  29413. image: {
  29414. source: "./media/characters/anchovie/back.svg",
  29415. extra: 385 / 352,
  29416. bottom: 16.6 / 402
  29417. }
  29418. },
  29419. frontDressed: {
  29420. height: math.unit(4 + 9 / 12, "feet"),
  29421. weight: math.unit(130, "lb"),
  29422. name: "Front (Dressed)",
  29423. image: {
  29424. source: "./media/characters/anchovie/front-dressed.svg",
  29425. extra: 382 / 350,
  29426. bottom: 25 / 409
  29427. }
  29428. },
  29429. backDressed: {
  29430. height: math.unit(4 + 9 / 12, "feet"),
  29431. weight: math.unit(130, "lb"),
  29432. name: "Back (Dressed)",
  29433. image: {
  29434. source: "./media/characters/anchovie/back-dressed.svg",
  29435. extra: 385 / 352,
  29436. bottom: 16.6 / 402
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Micro",
  29443. height: math.unit(6.4, "inches")
  29444. },
  29445. {
  29446. name: "Normal",
  29447. height: math.unit(4 + 9 / 12, "feet"),
  29448. default: true
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29454. {
  29455. front: {
  29456. height: math.unit(2, "meters"),
  29457. weight: math.unit(180, "lb"),
  29458. name: "Front",
  29459. image: {
  29460. source: "./media/characters/acidrenamon/front.svg",
  29461. extra: 987 / 890,
  29462. bottom: 22.8 / 1009
  29463. }
  29464. },
  29465. back: {
  29466. height: math.unit(2, "meters"),
  29467. weight: math.unit(180, "lb"),
  29468. name: "Back",
  29469. image: {
  29470. source: "./media/characters/acidrenamon/back.svg",
  29471. extra: 983 / 891,
  29472. bottom: 8.4 / 992
  29473. }
  29474. },
  29475. head: {
  29476. height: math.unit(1.92, "feet"),
  29477. name: "Head",
  29478. image: {
  29479. source: "./media/characters/acidrenamon/head.svg"
  29480. }
  29481. },
  29482. rump: {
  29483. height: math.unit(1.72, "feet"),
  29484. name: "Rump",
  29485. image: {
  29486. source: "./media/characters/acidrenamon/rump.svg"
  29487. }
  29488. },
  29489. tail: {
  29490. height: math.unit(4.2, "feet"),
  29491. name: "Tail",
  29492. image: {
  29493. source: "./media/characters/acidrenamon/tail.svg"
  29494. }
  29495. },
  29496. },
  29497. [
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(2, "meters"),
  29501. default: true
  29502. },
  29503. {
  29504. name: "Minimacro",
  29505. height: math.unit(7, "meters")
  29506. },
  29507. {
  29508. name: "Macro",
  29509. height: math.unit(200, "meters")
  29510. },
  29511. {
  29512. name: "Gigamacro",
  29513. height: math.unit(0.2, "earths")
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(152, "feet"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/kenzie-lee/front.svg",
  29525. extra: 1869/1774,
  29526. bottom: 128/1997
  29527. }
  29528. },
  29529. side: {
  29530. height: math.unit(86, "feet"),
  29531. name: "Side",
  29532. image: {
  29533. source: "./media/characters/kenzie-lee/side.svg",
  29534. extra: 930/815,
  29535. bottom: 177/1107
  29536. }
  29537. },
  29538. paw: {
  29539. height: math.unit(15, "feet"),
  29540. name: "Paw",
  29541. image: {
  29542. source: "./media/characters/kenzie-lee/paw.svg"
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Kenzie Flea",
  29549. height: math.unit(2, "mm"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Micro",
  29554. height: math.unit(2, "inches")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(152, "feet")
  29559. },
  29560. {
  29561. name: "Megamacro",
  29562. height: math.unit(7, "miles")
  29563. },
  29564. {
  29565. name: "Gigamacro",
  29566. height: math.unit(8000, "miles")
  29567. },
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(6, "feet"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/withers/front.svg",
  29578. extra: 1935/1760,
  29579. bottom: 72/2007
  29580. }
  29581. },
  29582. back: {
  29583. height: math.unit(6, "feet"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/withers/back.svg",
  29587. extra: 1944/1792,
  29588. bottom: 12/1956
  29589. }
  29590. },
  29591. dressed: {
  29592. height: math.unit(6, "feet"),
  29593. name: "Dressed",
  29594. image: {
  29595. source: "./media/characters/withers/dressed.svg",
  29596. extra: 1937/1765,
  29597. bottom: 73/2010
  29598. }
  29599. },
  29600. phase1: {
  29601. height: math.unit(1.1, "feet"),
  29602. name: "Phase 1",
  29603. image: {
  29604. source: "./media/characters/withers/phase-1.svg",
  29605. extra: 1885/1232,
  29606. bottom: 0/1885
  29607. }
  29608. },
  29609. phase2: {
  29610. height: math.unit(1.05, "feet"),
  29611. name: "Phase 2",
  29612. image: {
  29613. source: "./media/characters/withers/phase-2.svg",
  29614. extra: 1792/1090,
  29615. bottom: 0/1792
  29616. }
  29617. },
  29618. partyWipe: {
  29619. height: math.unit(1.1, "feet"),
  29620. name: "Party Wipe",
  29621. image: {
  29622. source: "./media/characters/withers/party-wipe.svg",
  29623. extra: 1864/1207,
  29624. bottom: 0/1864
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Macro",
  29631. height: math.unit(167, "feet"),
  29632. default: true
  29633. },
  29634. {
  29635. name: "Megamacro",
  29636. height: math.unit(15, "miles")
  29637. }
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(6 + 7 / 12, "feet"),
  29645. weight: math.unit(250, "lb"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/nemoskii/front.svg",
  29649. extra: 2270 / 1734,
  29650. bottom: 86 / 2354
  29651. }
  29652. },
  29653. back: {
  29654. height: math.unit(6 + 7 / 12, "feet"),
  29655. weight: math.unit(250, "lb"),
  29656. name: "Back",
  29657. image: {
  29658. source: "./media/characters/nemoskii/back.svg",
  29659. extra: 1845 / 1788,
  29660. bottom: 10.5 / 1852
  29661. }
  29662. },
  29663. head: {
  29664. height: math.unit(1.31, "feet"),
  29665. name: "Head",
  29666. image: {
  29667. source: "./media/characters/nemoskii/head.svg"
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Micro",
  29674. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29675. },
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(6 + 7 / 12, "feet"),
  29679. default: true
  29680. },
  29681. {
  29682. name: "Macro",
  29683. height: math.unit((6 + 7 / 12) * 150, "feet")
  29684. },
  29685. {
  29686. name: "Macro+",
  29687. height: math.unit((6 + 7 / 12) * 500, "feet")
  29688. },
  29689. {
  29690. name: "Megamacro",
  29691. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(1, "mile"),
  29700. weight: math.unit(265261.9, "lb"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/shui/front.svg",
  29704. extra: 1633 / 1564,
  29705. bottom: 91.5 / 1726
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(1, "mile"),
  29713. default: true
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(12 + 6 / 12, "feet"),
  29722. weight: math.unit(1342, "lb"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/arokh-takakura/front.svg",
  29726. extra: 1089 / 1043,
  29727. bottom: 77.4 / 1176.7
  29728. }
  29729. },
  29730. back: {
  29731. height: math.unit(12 + 6 / 12, "feet"),
  29732. weight: math.unit(1342, "lb"),
  29733. name: "Back",
  29734. image: {
  29735. source: "./media/characters/arokh-takakura/back.svg",
  29736. extra: 1046 / 1019,
  29737. bottom: 102 / 1150
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Big",
  29744. height: math.unit(12 + 6 / 12, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(5 + 6 / 12, "feet"),
  29754. weight: math.unit(150, "lb"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/theo/front.svg",
  29758. extra: 1184 / 1131,
  29759. bottom: 7.4 / 1191
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Micro",
  29766. height: math.unit(5, "inches")
  29767. },
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(5 + 6 / 12, "feet"),
  29771. default: true
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(5 + 9 / 12, "feet"),
  29780. weight: math.unit(130, "lb"),
  29781. name: "Front",
  29782. image: {
  29783. source: "./media/characters/cecelia-swift/front.svg",
  29784. extra: 502 / 484,
  29785. bottom: 23 / 523
  29786. }
  29787. },
  29788. back: {
  29789. height: math.unit(5 + 9 / 12, "feet"),
  29790. weight: math.unit(130, "lb"),
  29791. name: "Back",
  29792. image: {
  29793. source: "./media/characters/cecelia-swift/back.svg",
  29794. extra: 499 / 485,
  29795. bottom: 12 / 511
  29796. }
  29797. },
  29798. head: {
  29799. height: math.unit(0.90, "feet"),
  29800. name: "Head",
  29801. image: {
  29802. source: "./media/characters/cecelia-swift/head.svg"
  29803. }
  29804. },
  29805. rump: {
  29806. height: math.unit(1.75, "feet"),
  29807. name: "Rump",
  29808. image: {
  29809. source: "./media/characters/cecelia-swift/rump.svg"
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(5 + 9 / 12, "feet"),
  29817. default: true
  29818. },
  29819. {
  29820. name: "Big",
  29821. height: math.unit(50, "feet")
  29822. },
  29823. {
  29824. name: "Macro",
  29825. height: math.unit(100, "feet")
  29826. },
  29827. {
  29828. name: "Macro+",
  29829. height: math.unit(500, "feet")
  29830. },
  29831. {
  29832. name: "Macro++",
  29833. height: math.unit(1000, "feet")
  29834. },
  29835. ]
  29836. ))
  29837. characterMakers.push(() => makeCharacter(
  29838. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29839. {
  29840. front: {
  29841. height: math.unit(6, "feet"),
  29842. weight: math.unit(150, "lb"),
  29843. name: "Front",
  29844. image: {
  29845. source: "./media/characters/kaunan/front.svg",
  29846. extra: 2890 / 2523,
  29847. bottom: 49 / 2939
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Macro",
  29854. height: math.unit(150, "feet"),
  29855. default: true
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29861. {
  29862. dressed: {
  29863. height: math.unit(175, "cm"),
  29864. weight: math.unit(60, "kg"),
  29865. name: "Dressed",
  29866. image: {
  29867. source: "./media/characters/fei/dressed.svg",
  29868. extra: 1402/1278,
  29869. bottom: 27/1429
  29870. }
  29871. },
  29872. nude: {
  29873. height: math.unit(175, "cm"),
  29874. weight: math.unit(60, "kg"),
  29875. name: "Nude",
  29876. image: {
  29877. source: "./media/characters/fei/nude.svg",
  29878. extra: 1402/1278,
  29879. bottom: 27/1429
  29880. }
  29881. },
  29882. heels: {
  29883. height: math.unit(0.466, "feet"),
  29884. name: "Heels",
  29885. image: {
  29886. source: "./media/characters/fei/heels.svg",
  29887. extra: 156/152,
  29888. bottom: 28/184
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Mortal",
  29895. height: math.unit(175, "cm")
  29896. },
  29897. {
  29898. name: "Normal",
  29899. height: math.unit(3500, "m")
  29900. },
  29901. {
  29902. name: "Stroll",
  29903. height: math.unit(18.4, "km"),
  29904. default: true
  29905. },
  29906. {
  29907. name: "Showoff",
  29908. height: math.unit(175, "km")
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(7, "feet"),
  29917. weight: math.unit(1000, "kg"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/edrax/front.svg",
  29921. extra: 2838 / 2550,
  29922. bottom: 130 / 2968
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Small",
  29929. height: math.unit(7, "feet")
  29930. },
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(1500, "meters")
  29934. },
  29935. {
  29936. name: "Mega",
  29937. height: math.unit(12000000, "km"),
  29938. default: true
  29939. },
  29940. {
  29941. name: "Megamacro",
  29942. height: math.unit(10600000, "lightyears")
  29943. },
  29944. {
  29945. name: "Hypermacro",
  29946. height: math.unit(256, "yottameters")
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(10, "feet"),
  29955. weight: math.unit(750, "lb"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/clove/front.svg",
  29959. extra: 1918/1751,
  29960. bottom: 52/1970
  29961. }
  29962. },
  29963. back: {
  29964. height: math.unit(10, "feet"),
  29965. weight: math.unit(750, "lb"),
  29966. name: "Back",
  29967. image: {
  29968. source: "./media/characters/clove/back.svg",
  29969. extra: 1912/1747,
  29970. bottom: 50/1962
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(10, "feet"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(4, "feet"),
  29987. weight: math.unit(50, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/alex-rabbit/front.svg",
  29991. extra: 507 / 458,
  29992. bottom: 18.5 / 527
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(4, "feet"),
  29997. weight: math.unit(50, "lb"),
  29998. name: "Back",
  29999. image: {
  30000. source: "./media/characters/alex-rabbit/back.svg",
  30001. extra: 502 / 460,
  30002. bottom: 18.9 / 521
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Normal",
  30009. height: math.unit(4, "feet"),
  30010. default: true
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30016. {
  30017. front: {
  30018. height: math.unit(1 + 3 / 12, "feet"),
  30019. weight: math.unit(80, "lb"),
  30020. name: "Front",
  30021. image: {
  30022. source: "./media/characters/zander-rose/front.svg",
  30023. extra: 916 / 797,
  30024. bottom: 17 / 933
  30025. }
  30026. },
  30027. back: {
  30028. height: math.unit(1 + 3 / 12, "feet"),
  30029. weight: math.unit(80, "lb"),
  30030. name: "Back",
  30031. image: {
  30032. source: "./media/characters/zander-rose/back.svg",
  30033. extra: 903 / 779,
  30034. bottom: 31 / 934
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(1 + 3 / 12, "feet"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30048. {
  30049. anthro: {
  30050. height: math.unit(6, "feet"),
  30051. weight: math.unit(150, "lb"),
  30052. name: "Anthro",
  30053. image: {
  30054. source: "./media/characters/razz/anthro.svg",
  30055. extra: 1437 / 1343,
  30056. bottom: 48 / 1485
  30057. }
  30058. },
  30059. feral: {
  30060. height: math.unit(6, "feet"),
  30061. weight: math.unit(150, "lb"),
  30062. name: "Feral",
  30063. image: {
  30064. source: "./media/characters/razz/feral.svg",
  30065. extra: 2569 / 1385,
  30066. bottom: 95 / 2664
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(6, "feet"),
  30074. default: true
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(9 + 4 / 12, "feet"),
  30083. weight: math.unit(500, "lb"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/morrigan/front.svg",
  30087. extra: 2707 / 2579,
  30088. bottom: 156 / 2863
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(9 + 4 / 12, "feet"),
  30096. default: true
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(5, "stories"),
  30105. weight: math.unit(4000, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/jenene/front.svg",
  30109. extra: 1780 / 1710,
  30110. bottom: 57 / 1837
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(5, "stories"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30124. {
  30125. taurSfw: {
  30126. height: math.unit(10, "meters"),
  30127. weight: math.unit(17500, "kg"),
  30128. name: "Taur",
  30129. image: {
  30130. source: "./media/characters/faey/taur-sfw.svg",
  30131. extra: 1200 / 968,
  30132. bottom: 41 / 1241
  30133. }
  30134. },
  30135. chestmaw: {
  30136. height: math.unit(2.01, "meters"),
  30137. name: "Chestmaw",
  30138. image: {
  30139. source: "./media/characters/faey/chestmaw.svg"
  30140. }
  30141. },
  30142. foot: {
  30143. height: math.unit(2.43, "meters"),
  30144. name: "Foot",
  30145. image: {
  30146. source: "./media/characters/faey/foot.svg"
  30147. }
  30148. },
  30149. jaws: {
  30150. height: math.unit(1.66, "meters"),
  30151. name: "Jaws",
  30152. image: {
  30153. source: "./media/characters/faey/jaws.svg"
  30154. }
  30155. },
  30156. tongues: {
  30157. height: math.unit(2.01, "meters"),
  30158. name: "Tongues",
  30159. image: {
  30160. source: "./media/characters/faey/tongues.svg"
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Small",
  30167. height: math.unit(10, "meters"),
  30168. default: true
  30169. },
  30170. {
  30171. name: "Big",
  30172. height: math.unit(500000, "km")
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30178. {
  30179. front: {
  30180. height: math.unit(7, "feet"),
  30181. weight: math.unit(275, "lb"),
  30182. name: "Front",
  30183. image: {
  30184. source: "./media/characters/roku/front.svg",
  30185. extra: 903 / 878,
  30186. bottom: 37 / 940
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(7, "feet"),
  30194. default: true
  30195. },
  30196. {
  30197. name: "Macro",
  30198. height: math.unit(500, "feet")
  30199. },
  30200. {
  30201. name: "Megamacro",
  30202. height: math.unit(200, "miles")
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(6 + 2 / 12, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/lira/front.svg",
  30215. extra: 1727 / 1605,
  30216. bottom: 26 / 1753
  30217. }
  30218. },
  30219. back: {
  30220. height: math.unit(6 + 2 / 12, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/lira/back.svg",
  30225. extra: 1713/1621,
  30226. bottom: 20/1733
  30227. }
  30228. },
  30229. hand: {
  30230. height: math.unit(0.75, "feet"),
  30231. name: "Hand",
  30232. image: {
  30233. source: "./media/characters/lira/hand.svg"
  30234. }
  30235. },
  30236. maw: {
  30237. height: math.unit(0.65, "feet"),
  30238. name: "Maw",
  30239. image: {
  30240. source: "./media/characters/lira/maw.svg"
  30241. }
  30242. },
  30243. pawDigi: {
  30244. height: math.unit(1.6, "feet"),
  30245. name: "Paw Digi",
  30246. image: {
  30247. source: "./media/characters/lira/paw-digi.svg"
  30248. }
  30249. },
  30250. pawPlanti: {
  30251. height: math.unit(1.4, "feet"),
  30252. name: "Paw Planti",
  30253. image: {
  30254. source: "./media/characters/lira/paw-planti.svg"
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "Normal",
  30261. height: math.unit(6 + 2 / 12, "feet"),
  30262. default: true
  30263. },
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(100, "feet")
  30267. },
  30268. {
  30269. name: "Macro²",
  30270. height: math.unit(1600, "feet")
  30271. },
  30272. {
  30273. name: "Planetary",
  30274. height: math.unit(20, "earths")
  30275. },
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(6, "feet"),
  30283. weight: math.unit(150, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/hadjet/front.svg",
  30287. extra: 1480 / 1346,
  30288. bottom: 26 / 1506
  30289. }
  30290. },
  30291. frontNsfw: {
  30292. height: math.unit(6, "feet"),
  30293. weight: math.unit(150, "lb"),
  30294. name: "Front (NSFW)",
  30295. image: {
  30296. source: "./media/characters/hadjet/front-nsfw.svg",
  30297. extra: 1440 / 1358,
  30298. bottom: 52 / 1492
  30299. }
  30300. },
  30301. },
  30302. [
  30303. {
  30304. name: "Macro",
  30305. height: math.unit(10, "stories"),
  30306. default: true
  30307. },
  30308. {
  30309. name: "Megamacro",
  30310. height: math.unit(1.5, "miles")
  30311. },
  30312. {
  30313. name: "Megamacro+",
  30314. height: math.unit(5, "miles")
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30320. {
  30321. side: {
  30322. height: math.unit(106, "feet"),
  30323. weight: math.unit(500, "tonnes"),
  30324. name: "Side",
  30325. image: {
  30326. source: "./media/characters/kodran/side.svg",
  30327. extra: 553 / 480,
  30328. bottom: 33 / 586
  30329. }
  30330. },
  30331. front: {
  30332. height: math.unit(132, "feet"),
  30333. weight: math.unit(500, "tonnes"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/kodran/front.svg",
  30337. extra: 667 / 643,
  30338. bottom: 42 / 709
  30339. }
  30340. },
  30341. flying: {
  30342. height: math.unit(350, "feet"),
  30343. weight: math.unit(500, "tonnes"),
  30344. name: "Flying",
  30345. image: {
  30346. source: "./media/characters/kodran/flying.svg"
  30347. }
  30348. },
  30349. foot: {
  30350. height: math.unit(33, "feet"),
  30351. name: "Foot",
  30352. image: {
  30353. source: "./media/characters/kodran/foot.svg"
  30354. }
  30355. },
  30356. footFront: {
  30357. height: math.unit(19, "feet"),
  30358. name: "Foot (Front)",
  30359. image: {
  30360. source: "./media/characters/kodran/foot-front.svg",
  30361. extra: 261 / 261,
  30362. bottom: 91 / 352
  30363. }
  30364. },
  30365. headFront: {
  30366. height: math.unit(53, "feet"),
  30367. name: "Head (Front)",
  30368. image: {
  30369. source: "./media/characters/kodran/head-front.svg"
  30370. }
  30371. },
  30372. headSide: {
  30373. height: math.unit(65, "feet"),
  30374. name: "Head (Side)",
  30375. image: {
  30376. source: "./media/characters/kodran/head-side.svg"
  30377. }
  30378. },
  30379. throat: {
  30380. height: math.unit(79, "feet"),
  30381. name: "Throat",
  30382. image: {
  30383. source: "./media/characters/kodran/throat.svg"
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Large",
  30390. height: math.unit(106, "feet"),
  30391. default: true
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30397. {
  30398. side: {
  30399. height: math.unit(11, "feet"),
  30400. weight: math.unit(150, "lb"),
  30401. name: "Side",
  30402. image: {
  30403. source: "./media/characters/pyxaron/side.svg",
  30404. extra: 305 / 195,
  30405. bottom: 17 / 322
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Normal",
  30412. height: math.unit(11, "feet"),
  30413. default: true
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30419. {
  30420. front: {
  30421. height: math.unit(6, "feet"),
  30422. weight: math.unit(150, "lb"),
  30423. name: "Front",
  30424. image: {
  30425. source: "./media/characters/meep/front.svg",
  30426. extra: 88 / 80,
  30427. bottom: 6 / 94
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Fun Sized",
  30434. height: math.unit(2, "inches"),
  30435. default: true
  30436. },
  30437. {
  30438. name: "Friend Sized",
  30439. height: math.unit(8, "inches")
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(15, "feet"),
  30448. weight: math.unit(2500, "lb"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/holly-rabbit/front.svg",
  30452. extra: 1433 / 1233,
  30453. bottom: 125 / 1558
  30454. }
  30455. },
  30456. dick: {
  30457. height: math.unit(4.6, "feet"),
  30458. name: "Dick",
  30459. image: {
  30460. source: "./media/characters/holly-rabbit/dick.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(15, "feet"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Macro",
  30472. height: math.unit(250, "feet")
  30473. },
  30474. {
  30475. name: "Macro+",
  30476. height: math.unit(2500, "feet")
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(3.02, "meters"),
  30485. weight: math.unit(500, "kg"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/drena/front.svg",
  30489. extra: 282 / 243,
  30490. bottom: 8 / 290
  30491. }
  30492. },
  30493. side: {
  30494. height: math.unit(3.02, "meters"),
  30495. weight: math.unit(500, "kg"),
  30496. name: "Side",
  30497. image: {
  30498. source: "./media/characters/drena/side.svg",
  30499. extra: 280 / 245,
  30500. bottom: 10 / 290
  30501. }
  30502. },
  30503. back: {
  30504. height: math.unit(3.02, "meters"),
  30505. weight: math.unit(500, "kg"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/drena/back.svg",
  30509. extra: 278 / 243,
  30510. bottom: 2 / 280
  30511. }
  30512. },
  30513. foot: {
  30514. height: math.unit(0.75, "meters"),
  30515. name: "Foot",
  30516. image: {
  30517. source: "./media/characters/drena/foot.svg"
  30518. }
  30519. },
  30520. maw: {
  30521. height: math.unit(0.82, "meters"),
  30522. name: "Maw",
  30523. image: {
  30524. source: "./media/characters/drena/maw.svg"
  30525. }
  30526. },
  30527. eating: {
  30528. height: math.unit(0.75, "meters"),
  30529. name: "Eating",
  30530. image: {
  30531. source: "./media/characters/drena/eating.svg"
  30532. }
  30533. },
  30534. rump: {
  30535. height: math.unit(0.93, "meters"),
  30536. name: "Rump",
  30537. image: {
  30538. source: "./media/characters/drena/rump.svg"
  30539. }
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Normal",
  30545. height: math.unit(3.02, "meters"),
  30546. default: true
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(6 + 4 / 12, "feet"),
  30555. weight: math.unit(250, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/remmyzilla/front.svg",
  30559. extra: 4033 / 3588,
  30560. bottom: 123 / 4156
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(6 + 4 / 12, "feet"),
  30565. weight: math.unit(250, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/remmyzilla/back.svg",
  30569. extra: 2687 / 2555,
  30570. bottom: 48 / 2735
  30571. }
  30572. },
  30573. paw: {
  30574. height: math.unit(1.73, "feet"),
  30575. name: "Paw",
  30576. image: {
  30577. source: "./media/characters/remmyzilla/paw.svg"
  30578. },
  30579. extraAttributes: {
  30580. "toeSize": {
  30581. name: "Toe Size",
  30582. power: 2,
  30583. type: "area",
  30584. base: math.unit(0.0035, "m^2")
  30585. },
  30586. "padSize": {
  30587. name: "Pad Size",
  30588. power: 2,
  30589. type: "area",
  30590. base: math.unit(0.015, "m^2")
  30591. },
  30592. "pawsize": {
  30593. name: "Paw Size",
  30594. power: 2,
  30595. type: "area",
  30596. base: math.unit(0.072, "m^2")
  30597. },
  30598. }
  30599. },
  30600. maw: {
  30601. height: math.unit(1.73, "feet"),
  30602. name: "Maw",
  30603. image: {
  30604. source: "./media/characters/remmyzilla/maw.svg"
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(6 + 4 / 12, "feet")
  30612. },
  30613. {
  30614. name: "Minimacro",
  30615. height: math.unit(12 + 8 / 12, "feet")
  30616. },
  30617. {
  30618. name: "Normal",
  30619. height: math.unit(640, "feet"),
  30620. default: true
  30621. },
  30622. {
  30623. name: "Megamacro",
  30624. height: math.unit(6400, "feet")
  30625. },
  30626. {
  30627. name: "Gigamacro",
  30628. height: math.unit(64000, "miles")
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30634. {
  30635. front: {
  30636. height: math.unit(2.5, "meters"),
  30637. weight: math.unit(300, "lb"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/lawrence/front.svg",
  30641. extra: 357 / 335,
  30642. bottom: 30 / 387
  30643. }
  30644. },
  30645. back: {
  30646. height: math.unit(2.5, "meters"),
  30647. weight: math.unit(300, "lb"),
  30648. name: "Back",
  30649. image: {
  30650. source: "./media/characters/lawrence/back.svg",
  30651. extra: 357 / 338,
  30652. bottom: 16 / 373
  30653. }
  30654. },
  30655. head: {
  30656. height: math.unit(0.9, "meter"),
  30657. name: "Head",
  30658. image: {
  30659. source: "./media/characters/lawrence/head.svg"
  30660. }
  30661. },
  30662. maw: {
  30663. height: math.unit(0.7, "meter"),
  30664. name: "Maw",
  30665. image: {
  30666. source: "./media/characters/lawrence/maw.svg"
  30667. }
  30668. },
  30669. footBottom: {
  30670. height: math.unit(0.5, "meter"),
  30671. name: "Foot (Bottom)",
  30672. image: {
  30673. source: "./media/characters/lawrence/foot-bottom.svg"
  30674. }
  30675. },
  30676. footTop: {
  30677. height: math.unit(0.5, "meter"),
  30678. name: "Foot (Top)",
  30679. image: {
  30680. source: "./media/characters/lawrence/foot-top.svg"
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Normal",
  30687. height: math.unit(2.5, "meters"),
  30688. default: true
  30689. },
  30690. {
  30691. name: "Macro",
  30692. height: math.unit(95, "meters")
  30693. },
  30694. {
  30695. name: "Megamacro",
  30696. height: math.unit(150, "km")
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30702. {
  30703. front: {
  30704. height: math.unit(4.2, "meters"),
  30705. preyCapacity: math.unit(50, "m^3"),
  30706. weight: math.unit(30, "tonnes"),
  30707. name: "Front",
  30708. image: {
  30709. source: "./media/characters/sydney/front.svg",
  30710. extra: 1177/1129,
  30711. bottom: 197/1374
  30712. },
  30713. extraAttributes: {
  30714. "length": {
  30715. name: "Length",
  30716. power: 1,
  30717. type: "length",
  30718. base: math.unit(21, "meters")
  30719. },
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(4.2, "meters"),
  30727. default: true
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30733. {
  30734. back: {
  30735. height: math.unit(201, "feet"),
  30736. name: "Back",
  30737. image: {
  30738. source: "./media/characters/jessica/back.svg",
  30739. extra: 273 / 259,
  30740. bottom: 7 / 280
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(201, "feet"),
  30748. default: true
  30749. },
  30750. {
  30751. name: "Megamacro",
  30752. height: math.unit(8, "miles")
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30758. {
  30759. side: {
  30760. height: math.unit(5.6, "m"),
  30761. weight: math.unit(8000, "kg"),
  30762. name: "Side",
  30763. image: {
  30764. source: "./media/characters/victoria/side.svg",
  30765. extra: 1542/1229,
  30766. bottom: 124/1666
  30767. }
  30768. },
  30769. maw: {
  30770. height: math.unit(7.14, "feet"),
  30771. name: "Maw",
  30772. image: {
  30773. source: "./media/characters/victoria/maw.svg"
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(5.6, "m"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30787. {
  30788. front: {
  30789. height: math.unit(5 + 6 / 12, "feet"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/cat/front.svg",
  30793. extra: 1449/1295,
  30794. bottom: 34/1483
  30795. },
  30796. form: "cat",
  30797. default: true
  30798. },
  30799. back: {
  30800. height: math.unit(5 + 6 / 12, "feet"),
  30801. name: "Back",
  30802. image: {
  30803. source: "./media/characters/cat/back.svg",
  30804. extra: 1466/1301,
  30805. bottom: 19/1485
  30806. },
  30807. form: "cat"
  30808. },
  30809. taur: {
  30810. height: math.unit(7, "feet"),
  30811. name: "Taur",
  30812. image: {
  30813. source: "./media/characters/cat/taur.svg",
  30814. extra: 1389/1233,
  30815. bottom: 83/1472
  30816. },
  30817. form: "taur",
  30818. default: true
  30819. },
  30820. lucarioFront: {
  30821. height: math.unit(4, "feet"),
  30822. name: "Lucario (Front)",
  30823. image: {
  30824. source: "./media/characters/cat/lucario-front.svg",
  30825. extra: 1149/1019,
  30826. bottom: 84/1233
  30827. },
  30828. form: "lucario",
  30829. default: true
  30830. },
  30831. lucarioBack: {
  30832. height: math.unit(4, "feet"),
  30833. name: "Lucario (Back)",
  30834. image: {
  30835. source: "./media/characters/cat/lucario-back.svg",
  30836. extra: 1190/1059,
  30837. bottom: 33/1223
  30838. },
  30839. form: "lucario"
  30840. },
  30841. megaLucario: {
  30842. height: math.unit(4, "feet"),
  30843. name: "Mega Lucario",
  30844. image: {
  30845. source: "./media/characters/cat/mega-lucario.svg",
  30846. extra: 1515 / 1319,
  30847. bottom: 63 / 1578
  30848. },
  30849. form: "lucario"
  30850. },
  30851. nickit: {
  30852. height: math.unit(2, "feet"),
  30853. name: "Nickit",
  30854. image: {
  30855. source: "./media/characters/cat/nickit.svg",
  30856. extra: 1980 / 1585,
  30857. bottom: 102 / 2082
  30858. },
  30859. form: "nickit",
  30860. default: true
  30861. },
  30862. lopunnyFront: {
  30863. height: math.unit(5, "feet"),
  30864. name: "Lopunny (Front)",
  30865. image: {
  30866. source: "./media/characters/cat/lopunny-front.svg",
  30867. extra: 1782 / 1469,
  30868. bottom: 38 / 1820
  30869. },
  30870. form: "lopunny",
  30871. default: true
  30872. },
  30873. lopunnyBack: {
  30874. height: math.unit(5, "feet"),
  30875. name: "Lopunny (Back)",
  30876. image: {
  30877. source: "./media/characters/cat/lopunny-back.svg",
  30878. extra: 1660 / 1490,
  30879. bottom: 25 / 1685
  30880. },
  30881. form: "lopunny"
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Really small",
  30887. height: math.unit(1, "nm")
  30888. },
  30889. {
  30890. name: "Micro",
  30891. height: math.unit(5, "inches")
  30892. },
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(5 + 6 / 12, "feet"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(50, "feet")
  30901. },
  30902. {
  30903. name: "Macro+",
  30904. height: math.unit(150, "feet")
  30905. },
  30906. {
  30907. name: "Megamacro",
  30908. height: math.unit(100, "miles")
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(63.4, "meters"),
  30917. weight: math.unit(3.28349e+6, "kilograms"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/kirina-violet/front.svg",
  30921. extra: 2812 / 2725,
  30922. bottom: 0 / 2812
  30923. }
  30924. },
  30925. back: {
  30926. height: math.unit(63.4, "meters"),
  30927. weight: math.unit(3.28349e+6, "kilograms"),
  30928. name: "Back",
  30929. image: {
  30930. source: "./media/characters/kirina-violet/back.svg",
  30931. extra: 2812 / 2725,
  30932. bottom: 0 / 2812
  30933. }
  30934. },
  30935. mouth: {
  30936. height: math.unit(4.35, "meters"),
  30937. name: "Mouth",
  30938. image: {
  30939. source: "./media/characters/kirina-violet/mouth.svg"
  30940. }
  30941. },
  30942. paw: {
  30943. height: math.unit(5.6, "meters"),
  30944. name: "Paw",
  30945. image: {
  30946. source: "./media/characters/kirina-violet/paw.svg"
  30947. }
  30948. },
  30949. tail: {
  30950. height: math.unit(18, "meters"),
  30951. name: "Tail",
  30952. image: {
  30953. source: "./media/characters/kirina-violet/tail.svg"
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Macro",
  30960. height: math.unit(63.4, "meters"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30967. {
  30968. front: {
  30969. height: math.unit(75, "feet"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/cat-gigachu/front.svg",
  30973. extra: 1239/1027,
  30974. bottom: 32/1271
  30975. }
  30976. },
  30977. back: {
  30978. height: math.unit(75, "feet"),
  30979. name: "Back",
  30980. image: {
  30981. source: "./media/characters/cat-gigachu/back.svg",
  30982. extra: 1229/1030,
  30983. bottom: 9/1238
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Dynamax",
  30990. height: math.unit(75, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(6, "feet"),
  31000. weight: math.unit(150, "lb"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/sfaiyan/front.svg",
  31004. extra: 999 / 978,
  31005. bottom: 5 / 1004
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(1.82, "meters")
  31013. },
  31014. {
  31015. name: "Giant",
  31016. height: math.unit(2.27, "km"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(179, "cm"),
  31026. weight: math.unit(100, "kg"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/raunehkeli/front.svg",
  31030. extra: 1934 / 1926,
  31031. bottom: 0 / 1934
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(179, "cm")
  31039. },
  31040. {
  31041. name: "Maximum",
  31042. height: math.unit(575, "meters"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31049. {
  31050. front: {
  31051. height: math.unit(6, "feet"),
  31052. weight: math.unit(150, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31056. extra: 2625 / 2518,
  31057. bottom: 60 / 2685
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(6 + 2 / 12, "feet")
  31065. },
  31066. {
  31067. name: "Macro",
  31068. height: math.unit(1180, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(5 + 6 / 12, "feet"),
  31078. weight: math.unit(108, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/lilith-zott/front.svg",
  31082. extra: 2510 / 2238,
  31083. bottom: 100 / 2610
  31084. }
  31085. },
  31086. frontDressed: {
  31087. height: math.unit(5 + 6 / 12, "feet"),
  31088. weight: math.unit(108, "lb"),
  31089. name: "Front (Dressed)",
  31090. image: {
  31091. source: "./media/characters/lilith-zott/front-dressed.svg",
  31092. extra: 2510 / 2238,
  31093. bottom: 100 / 2610
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(5 + 6 / 12, "feet")
  31101. },
  31102. {
  31103. name: "Macro",
  31104. height: math.unit(1030, "feet"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(6, "feet"),
  31114. weight: math.unit(150, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31118. extra: 2567 / 2435,
  31119. bottom: 39 / 2606
  31120. }
  31121. },
  31122. frontSuper: {
  31123. height: math.unit(6, "feet"),
  31124. name: "Front (Super)",
  31125. image: {
  31126. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31127. extra: 2567 / 2435,
  31128. bottom: 39 / 2606
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(5 + 10 / 12, "feet")
  31136. },
  31137. {
  31138. name: "Macro",
  31139. height: math.unit(1100, "feet"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(100, "miles"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/sona/front.svg",
  31152. extra: 2433 / 2201,
  31153. bottom: 53 / 2486
  31154. }
  31155. },
  31156. foot: {
  31157. height: math.unit(16.1, "miles"),
  31158. name: "Foot",
  31159. image: {
  31160. source: "./media/characters/sona/foot.svg"
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(100, "miles"),
  31168. default: true
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(6, "feet"),
  31177. weight: math.unit(150, "lb"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/bailey/front.svg",
  31181. extra: 1778 / 1724,
  31182. bottom: 30 / 1808
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Micro",
  31189. height: math.unit(4, "inches")
  31190. },
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(5 + 5 / 12, "feet"),
  31194. default: true
  31195. },
  31196. {
  31197. name: "Macro",
  31198. height: math.unit(250, "feet")
  31199. },
  31200. {
  31201. name: "Megamacro",
  31202. height: math.unit(100, "miles")
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31208. {
  31209. front: {
  31210. height: math.unit(5 + 2 / 12, "feet"),
  31211. weight: math.unit(120, "lb"),
  31212. name: "Front",
  31213. image: {
  31214. source: "./media/characters/snaps/front.svg",
  31215. extra: 2370 / 2177,
  31216. bottom: 48 / 2418
  31217. }
  31218. },
  31219. back: {
  31220. height: math.unit(5 + 2 / 12, "feet"),
  31221. weight: math.unit(120, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/snaps/back.svg",
  31225. extra: 2408 / 2258,
  31226. bottom: 15 / 2423
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Micro",
  31233. height: math.unit(9, "inches")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(5 + 2 / 12, "feet"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Mini Macro",
  31242. height: math.unit(10, "feet")
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(1.8, "meters"),
  31251. weight: math.unit(85, "kg"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/azteck/front.svg",
  31255. extra: 2815 / 2625,
  31256. bottom: 89 / 2904
  31257. }
  31258. },
  31259. back: {
  31260. height: math.unit(1.8, "meters"),
  31261. weight: math.unit(85, "kg"),
  31262. name: "Back",
  31263. image: {
  31264. source: "./media/characters/azteck/back.svg",
  31265. extra: 2856 / 2648,
  31266. bottom: 85 / 2941
  31267. }
  31268. },
  31269. frontDressed: {
  31270. height: math.unit(1.8, "meters"),
  31271. weight: math.unit(85, "kg"),
  31272. name: "Front (Dressed)",
  31273. image: {
  31274. source: "./media/characters/azteck/front-dressed.svg",
  31275. extra: 2147 / 2003,
  31276. bottom: 68 / 2215
  31277. }
  31278. },
  31279. head: {
  31280. height: math.unit(0.47, "meters"),
  31281. weight: math.unit(85, "kg"),
  31282. name: "Head",
  31283. image: {
  31284. source: "./media/characters/azteck/head.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Bite sized",
  31291. height: math.unit(16, "cm")
  31292. },
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(1.8, "meters"),
  31296. default: true
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/pidge/front.svg",
  31309. extra: 1936/1820,
  31310. bottom: 0/1936
  31311. }
  31312. },
  31313. back: {
  31314. height: math.unit(6, "feet"),
  31315. weight: math.unit(150, "lb"),
  31316. name: "Back",
  31317. image: {
  31318. source: "./media/characters/pidge/back.svg",
  31319. extra: 1938/1843,
  31320. bottom: 0/1938
  31321. }
  31322. },
  31323. casual: {
  31324. height: math.unit(6, "feet"),
  31325. weight: math.unit(150, "lb"),
  31326. name: "Casual",
  31327. image: {
  31328. source: "./media/characters/pidge/casual.svg",
  31329. extra: 1936/1820,
  31330. bottom: 0/1936
  31331. }
  31332. },
  31333. tech: {
  31334. height: math.unit(6, "feet"),
  31335. weight: math.unit(150, "lb"),
  31336. name: "Tech",
  31337. image: {
  31338. source: "./media/characters/pidge/tech.svg",
  31339. extra: 1802/1682,
  31340. bottom: 0/1802
  31341. }
  31342. },
  31343. head: {
  31344. height: math.unit(1.61, "feet"),
  31345. name: "Head",
  31346. image: {
  31347. source: "./media/characters/pidge/head.svg"
  31348. }
  31349. },
  31350. collar: {
  31351. height: math.unit(0.82, "feet"),
  31352. name: "Collar",
  31353. image: {
  31354. source: "./media/characters/pidge/collar.svg"
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Macro",
  31361. height: math.unit(2, "mile"),
  31362. default: true
  31363. },
  31364. {
  31365. name: "PUPPY",
  31366. height: math.unit(20, "miles")
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(6, "feet"),
  31375. weight: math.unit(150, "lb"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/en/front.svg",
  31379. extra: 1697 / 1563,
  31380. bottom: 103 / 1800
  31381. }
  31382. },
  31383. back: {
  31384. height: math.unit(6, "feet"),
  31385. weight: math.unit(150, "lb"),
  31386. name: "Back",
  31387. image: {
  31388. source: "./media/characters/en/back.svg",
  31389. extra: 1700 / 1570,
  31390. bottom: 51 / 1751
  31391. }
  31392. },
  31393. frontDressed: {
  31394. height: math.unit(6, "feet"),
  31395. weight: math.unit(150, "lb"),
  31396. name: "Front (Dressed)",
  31397. image: {
  31398. source: "./media/characters/en/front-dressed.svg",
  31399. extra: 1697 / 1563,
  31400. bottom: 103 / 1800
  31401. }
  31402. },
  31403. backDressed: {
  31404. height: math.unit(6, "feet"),
  31405. weight: math.unit(150, "lb"),
  31406. name: "Back (Dressed)",
  31407. image: {
  31408. source: "./media/characters/en/back-dressed.svg",
  31409. extra: 1700 / 1570,
  31410. bottom: 51 / 1751
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Macro",
  31417. height: math.unit(210, "feet"),
  31418. default: true
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(6, "feet"),
  31427. weight: math.unit(150, "lb"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/haze-orris/front.svg",
  31431. extra: 3975 / 3525,
  31432. bottom: 137 / 4112
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Micro",
  31439. height: math.unit(150, "mm"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(6, "feet"),
  31449. weight: math.unit(150, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/casselene-yaro/front.svg",
  31453. extra: 4721 / 4541,
  31454. bottom: 82 / 4803
  31455. }
  31456. },
  31457. back: {
  31458. height: math.unit(6, "feet"),
  31459. weight: math.unit(150, "lb"),
  31460. name: "Back",
  31461. image: {
  31462. source: "./media/characters/casselene-yaro/back.svg",
  31463. extra: 4569 / 4377,
  31464. bottom: 69 / 4638
  31465. }
  31466. },
  31467. dressed: {
  31468. height: math.unit(6, "feet"),
  31469. weight: math.unit(150, "lb"),
  31470. name: "Dressed",
  31471. image: {
  31472. source: "./media/characters/casselene-yaro/dressed.svg",
  31473. extra: 4721 / 4541,
  31474. bottom: 82 / 4803
  31475. }
  31476. },
  31477. maw: {
  31478. height: math.unit(1, "feet"),
  31479. name: "Maw",
  31480. image: {
  31481. source: "./media/characters/casselene-yaro/maw.svg"
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Macro",
  31488. height: math.unit(190, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(10, "feet"),
  31498. weight: math.unit(15015, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/platine/front.svg",
  31502. extra: 1741/1650,
  31503. bottom: 84/1825
  31504. }
  31505. },
  31506. side: {
  31507. height: math.unit(10, "feet"),
  31508. weight: math.unit(15015, "lb"),
  31509. name: "Side",
  31510. image: {
  31511. source: "./media/characters/platine/side.svg",
  31512. extra: 1790/1705,
  31513. bottom: 29/1819
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(10, "feet"),
  31521. default: true
  31522. },
  31523. {
  31524. name: "Macro",
  31525. height: math.unit(100, "feet")
  31526. },
  31527. {
  31528. name: "Megamacro",
  31529. height: math.unit(1000, "feet")
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31535. {
  31536. front: {
  31537. height: math.unit(15 + 5 / 12, "feet"),
  31538. weight: math.unit(4600, "lb"),
  31539. name: "Front",
  31540. image: {
  31541. source: "./media/characters/neapolitan-ananassa/front.svg",
  31542. extra: 2903 / 2736,
  31543. bottom: 0 / 2903
  31544. }
  31545. },
  31546. side: {
  31547. height: math.unit(15 + 5 / 12, "feet"),
  31548. weight: math.unit(4600, "lb"),
  31549. name: "Side",
  31550. image: {
  31551. source: "./media/characters/neapolitan-ananassa/side.svg",
  31552. extra: 2925 / 2719,
  31553. bottom: 0 / 2925
  31554. }
  31555. },
  31556. back: {
  31557. height: math.unit(15 + 5 / 12, "feet"),
  31558. weight: math.unit(4600, "lb"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/neapolitan-ananassa/back.svg",
  31562. extra: 2903 / 2736,
  31563. bottom: 0 / 2903
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(15 + 5 / 12, "feet"),
  31571. default: true
  31572. },
  31573. {
  31574. name: "Post-Millenium",
  31575. height: math.unit(35 + 5 / 12, "feet")
  31576. },
  31577. {
  31578. name: "Post-Era",
  31579. height: math.unit(450 + 5 / 12, "feet")
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(300, "meters"),
  31588. weight: math.unit(125000, "tonnes"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/pazuzu/front.svg",
  31592. extra: 877 / 794,
  31593. bottom: 47 / 924
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Macro",
  31600. height: math.unit(300, "meters"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31607. {
  31608. side: {
  31609. height: math.unit(10 + 7 / 12, "feet"),
  31610. weight: math.unit(2.5, "tons"),
  31611. name: "Side",
  31612. image: {
  31613. source: "./media/characters/aasha/side.svg",
  31614. extra: 1345 / 1245,
  31615. bottom: 111 / 1456
  31616. }
  31617. },
  31618. back: {
  31619. height: math.unit(10 + 7 / 12, "feet"),
  31620. weight: math.unit(2.5, "tons"),
  31621. name: "Back",
  31622. image: {
  31623. source: "./media/characters/aasha/back.svg",
  31624. extra: 1133 / 1057,
  31625. bottom: 257 / 1390
  31626. }
  31627. },
  31628. },
  31629. [
  31630. {
  31631. name: "Normal",
  31632. height: math.unit(10 + 7 / 12, "feet"),
  31633. default: true
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31639. {
  31640. front: {
  31641. height: math.unit(6 + 3 / 12, "feet"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/nevan/front.svg",
  31645. extra: 704 / 704,
  31646. bottom: 28 / 732
  31647. }
  31648. },
  31649. back: {
  31650. height: math.unit(6 + 3 / 12, "feet"),
  31651. name: "Back",
  31652. image: {
  31653. source: "./media/characters/nevan/back.svg",
  31654. extra: 714 / 714,
  31655. bottom: 21 / 735
  31656. }
  31657. },
  31658. frontFlaccid: {
  31659. height: math.unit(6 + 3 / 12, "feet"),
  31660. name: "Front (Flaccid)",
  31661. image: {
  31662. source: "./media/characters/nevan/front-flaccid.svg",
  31663. extra: 704 / 704,
  31664. bottom: 28 / 732
  31665. }
  31666. },
  31667. frontErect: {
  31668. height: math.unit(6 + 3 / 12, "feet"),
  31669. name: "Front (Erect)",
  31670. image: {
  31671. source: "./media/characters/nevan/front-erect.svg",
  31672. extra: 704 / 704,
  31673. bottom: 28 / 732
  31674. }
  31675. },
  31676. backFlaccid: {
  31677. height: math.unit(6 + 3 / 12, "feet"),
  31678. name: "Back (Flaccid)",
  31679. image: {
  31680. source: "./media/characters/nevan/back-flaccid.svg",
  31681. extra: 714 / 714,
  31682. bottom: 21 / 735
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Normal",
  31689. height: math.unit(6 + 3 / 12, "feet"),
  31690. default: true
  31691. },
  31692. ]
  31693. ))
  31694. characterMakers.push(() => makeCharacter(
  31695. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31696. {
  31697. front: {
  31698. height: math.unit(4, "feet"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/arhan/front.svg",
  31702. extra: 3368 / 3133,
  31703. bottom: 0 / 3368
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(4, "feet"),
  31708. name: "Side",
  31709. image: {
  31710. source: "./media/characters/arhan/side.svg",
  31711. extra: 3347 / 3105,
  31712. bottom: 0 / 3347
  31713. }
  31714. },
  31715. tongue: {
  31716. height: math.unit(1.42, "feet"),
  31717. name: "Tongue",
  31718. image: {
  31719. source: "./media/characters/arhan/tongue.svg"
  31720. }
  31721. },
  31722. head: {
  31723. height: math.unit(0.85, "feet"),
  31724. name: "Head",
  31725. image: {
  31726. source: "./media/characters/arhan/head.svg"
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(4, "feet"),
  31734. default: true
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(5 + 7.5 / 12, "feet"),
  31743. weight: math.unit(120, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/digi-duncan/front.svg",
  31747. extra: 330 / 326,
  31748. bottom: 16 / 346
  31749. }
  31750. },
  31751. side: {
  31752. height: math.unit(5 + 7.5 / 12, "feet"),
  31753. weight: math.unit(120, "lb"),
  31754. name: "Side",
  31755. image: {
  31756. source: "./media/characters/digi-duncan/side.svg",
  31757. extra: 341 / 337,
  31758. bottom: 1 / 342
  31759. }
  31760. },
  31761. back: {
  31762. height: math.unit(5 + 7.5 / 12, "feet"),
  31763. weight: math.unit(120, "lb"),
  31764. name: "Back",
  31765. image: {
  31766. source: "./media/characters/digi-duncan/back.svg",
  31767. extra: 330 / 326,
  31768. bottom: 12 / 342
  31769. }
  31770. },
  31771. },
  31772. [
  31773. {
  31774. name: "Speck",
  31775. height: math.unit(0.25, "mm")
  31776. },
  31777. {
  31778. name: "Micro",
  31779. height: math.unit(5, "mm")
  31780. },
  31781. {
  31782. name: "Tiny",
  31783. height: math.unit(0.5, "inches"),
  31784. default: true
  31785. },
  31786. {
  31787. name: "Human",
  31788. height: math.unit(5 + 7.5 / 12, "feet")
  31789. },
  31790. {
  31791. name: "Minigiant",
  31792. height: math.unit(8 + 5.25, "feet")
  31793. },
  31794. {
  31795. name: "Giant",
  31796. height: math.unit(2000, "feet")
  31797. },
  31798. {
  31799. name: "Mega",
  31800. height: math.unit(371.1, "miles")
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(2, "meters"),
  31809. weight: math.unit(350, "kg"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31813. extra: 898 / 838,
  31814. bottom: 9 / 907
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Micro",
  31821. height: math.unit(8, "meters")
  31822. },
  31823. {
  31824. name: "Normal",
  31825. height: math.unit(50, "meters"),
  31826. default: true
  31827. },
  31828. {
  31829. name: "Macro",
  31830. height: math.unit(500, "meters")
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(6 + 6 / 12, "feet"),
  31839. name: "Front",
  31840. image: {
  31841. source: "./media/characters/khardesh/front.svg",
  31842. extra: 1788/1596,
  31843. bottom: 66/1854
  31844. }
  31845. },
  31846. back: {
  31847. height: math.unit(6 + 6 / 12, "feet"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/khardesh/back.svg",
  31851. extra: 1781/1584,
  31852. bottom: 68/1849
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(6 + 6 / 12, "feet"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Normal+",
  31864. height: math.unit(4, "meters")
  31865. },
  31866. {
  31867. name: "Macro",
  31868. height: math.unit(50, "meters")
  31869. },
  31870. {
  31871. name: "Macro+",
  31872. height: math.unit(100, "meters")
  31873. },
  31874. {
  31875. name: "Megamacro",
  31876. height: math.unit(20, "km")
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31882. {
  31883. front: {
  31884. height: math.unit(6, "feet"),
  31885. weight: math.unit(150, "lb"),
  31886. name: "Front",
  31887. image: {
  31888. source: "./media/characters/kosho/front.svg",
  31889. extra: 1847 / 1847,
  31890. bottom: 86 / 1933
  31891. }
  31892. },
  31893. },
  31894. [
  31895. {
  31896. name: "Second-stage micro",
  31897. height: math.unit(0.5, "inches")
  31898. },
  31899. {
  31900. name: "First-stage micro",
  31901. height: math.unit(6, "inches")
  31902. },
  31903. {
  31904. name: "Normal",
  31905. height: math.unit(6, "feet"),
  31906. default: true
  31907. },
  31908. {
  31909. name: "First-stage macro",
  31910. height: math.unit(72, "feet")
  31911. },
  31912. {
  31913. name: "Second-stage macro",
  31914. height: math.unit(864, "feet")
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31920. {
  31921. normal: {
  31922. height: math.unit(4 + 6 / 12, "feet"),
  31923. name: "Normal",
  31924. image: {
  31925. source: "./media/characters/hydra/normal.svg",
  31926. extra: 2833 / 2634,
  31927. bottom: 68 / 2901
  31928. }
  31929. },
  31930. smol: {
  31931. height: math.unit(0.705, "inches"),
  31932. name: "Smol",
  31933. image: {
  31934. source: "./media/characters/hydra/smol.svg",
  31935. extra: 2715 / 2540,
  31936. bottom: 0 / 2715
  31937. }
  31938. },
  31939. },
  31940. [
  31941. {
  31942. name: "Normal",
  31943. height: math.unit(4 + 6 / 12, "feet"),
  31944. default: true
  31945. }
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31950. {
  31951. front: {
  31952. height: math.unit(0.6, "cm"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/daz/front.svg",
  31956. extra: 1682 / 1164,
  31957. bottom: 42 / 1724
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(0.6, "cm"),
  31965. default: true
  31966. },
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31971. {
  31972. front: {
  31973. height: math.unit(6, "feet"),
  31974. weight: math.unit(235, "lb"),
  31975. name: "Front",
  31976. image: {
  31977. source: "./media/characters/theo-pangolin/front.svg",
  31978. extra: 1996 / 1969,
  31979. bottom: 115 / 2111
  31980. }
  31981. },
  31982. back: {
  31983. height: math.unit(6, "feet"),
  31984. weight: math.unit(235, "lb"),
  31985. name: "Back",
  31986. image: {
  31987. source: "./media/characters/theo-pangolin/back.svg",
  31988. extra: 1979 / 1979,
  31989. bottom: 40 / 2019
  31990. }
  31991. },
  31992. feral: {
  31993. height: math.unit(2, "feet"),
  31994. weight: math.unit(30, "lb"),
  31995. name: "Feral",
  31996. image: {
  31997. source: "./media/characters/theo-pangolin/feral.svg",
  31998. extra: 803 / 791,
  31999. bottom: 181 / 984
  32000. }
  32001. },
  32002. footFive: {
  32003. height: math.unit(1.43, "feet"),
  32004. name: "Foot (Five Toes)",
  32005. image: {
  32006. source: "./media/characters/theo-pangolin/foot-five.svg"
  32007. }
  32008. },
  32009. footFour: {
  32010. height: math.unit(1.43, "feet"),
  32011. name: "Foot (Four Toes)",
  32012. image: {
  32013. source: "./media/characters/theo-pangolin/foot-four.svg"
  32014. }
  32015. },
  32016. handFour: {
  32017. height: math.unit(0.81, "feet"),
  32018. name: "Hand (Four Fingers)",
  32019. image: {
  32020. source: "./media/characters/theo-pangolin/hand-four.svg"
  32021. }
  32022. },
  32023. handThree: {
  32024. height: math.unit(0.81, "feet"),
  32025. name: "Hand (Three Fingers)",
  32026. image: {
  32027. source: "./media/characters/theo-pangolin/hand-three.svg"
  32028. }
  32029. },
  32030. headFront: {
  32031. height: math.unit(1.37, "feet"),
  32032. name: "Head (Front)",
  32033. image: {
  32034. source: "./media/characters/theo-pangolin/head-front.svg"
  32035. }
  32036. },
  32037. headSide: {
  32038. height: math.unit(1.43, "feet"),
  32039. name: "Head (Side)",
  32040. image: {
  32041. source: "./media/characters/theo-pangolin/head-side.svg"
  32042. }
  32043. },
  32044. tongue: {
  32045. height: math.unit(2.29, "feet"),
  32046. name: "Tongue",
  32047. image: {
  32048. source: "./media/characters/theo-pangolin/tongue.svg"
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(6, "feet")
  32056. },
  32057. {
  32058. name: "Macro",
  32059. height: math.unit(400, "feet"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(6, "inches"),
  32069. weight: math.unit(0.036, "kg"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/renée/front.svg",
  32073. extra: 900 / 886,
  32074. bottom: 8 / 908
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Nano",
  32081. height: math.unit(1, "nm")
  32082. },
  32083. {
  32084. name: "Micro",
  32085. height: math.unit(1, "mm")
  32086. },
  32087. {
  32088. name: "Normal",
  32089. height: math.unit(6, "inches")
  32090. },
  32091. {
  32092. name: "Macro",
  32093. height: math.unit(2000, "feet"),
  32094. default: true
  32095. },
  32096. {
  32097. name: "Megamacro",
  32098. height: math.unit(2, "km")
  32099. },
  32100. {
  32101. name: "Gigamacro",
  32102. height: math.unit(2000, "km")
  32103. },
  32104. {
  32105. name: "Teramacro",
  32106. height: math.unit(250000, "km")
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(4, "meters"),
  32115. weight: math.unit(150, "kg"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/caledvwlch/front.svg",
  32119. extra: 1757/1537,
  32120. bottom: 31/1788
  32121. }
  32122. },
  32123. side: {
  32124. height: math.unit(4, "meters"),
  32125. weight: math.unit(150, "kg"),
  32126. name: "Side",
  32127. image: {
  32128. source: "./media/characters/caledvwlch/side.svg",
  32129. extra: 1605 / 1536,
  32130. bottom: 31 / 1636
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(4, "meters"),
  32135. weight: math.unit(150, "kg"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/caledvwlch/back.svg",
  32139. extra: 1635 / 1565,
  32140. bottom: 27 / 1662
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "\"Incognito\"",
  32147. height: math.unit(4, "meters")
  32148. },
  32149. {
  32150. name: "Small rampage",
  32151. height: math.unit(600, "meters")
  32152. },
  32153. {
  32154. name: "Mega",
  32155. height: math.unit(30, "km")
  32156. },
  32157. {
  32158. name: "Home-size",
  32159. height: math.unit(50, "km"),
  32160. default: true
  32161. },
  32162. {
  32163. name: "Giga",
  32164. height: math.unit(300, "km")
  32165. },
  32166. {
  32167. name: "Lounging",
  32168. height: math.unit(11000, "km")
  32169. },
  32170. {
  32171. name: "Planet snacking",
  32172. height: math.unit(2000000, "km")
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(6, "feet"),
  32181. weight: math.unit(215, "lb"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/sapphire-svell/front.svg",
  32185. extra: 495 / 455,
  32186. bottom: 20 / 515
  32187. }
  32188. },
  32189. back: {
  32190. height: math.unit(6, "feet"),
  32191. weight: math.unit(216, "lb"),
  32192. name: "Back",
  32193. image: {
  32194. source: "./media/characters/sapphire-svell/back.svg",
  32195. extra: 497 / 477,
  32196. bottom: 7 / 504
  32197. }
  32198. },
  32199. maw: {
  32200. height: math.unit(1.57, "feet"),
  32201. name: "Maw",
  32202. image: {
  32203. source: "./media/characters/sapphire-svell/maw.svg"
  32204. }
  32205. },
  32206. foot: {
  32207. height: math.unit(1.07, "feet"),
  32208. name: "Foot",
  32209. image: {
  32210. source: "./media/characters/sapphire-svell/foot.svg"
  32211. }
  32212. },
  32213. toering: {
  32214. height: math.unit(1.7, "inch"),
  32215. name: "Toering",
  32216. image: {
  32217. source: "./media/characters/sapphire-svell/toering.svg"
  32218. }
  32219. },
  32220. },
  32221. [
  32222. {
  32223. name: "Normal",
  32224. height: math.unit(300, "feet"),
  32225. default: true
  32226. },
  32227. {
  32228. name: "Augmented",
  32229. height: math.unit(1250, "feet")
  32230. },
  32231. {
  32232. name: "Unleashed",
  32233. height: math.unit(3000, "feet")
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32239. {
  32240. side: {
  32241. height: math.unit(2 + 3 / 12, "feet"),
  32242. weight: math.unit(110, "lb"),
  32243. name: "Side",
  32244. image: {
  32245. source: "./media/characters/glitch-flux/side.svg",
  32246. extra: 997 / 805,
  32247. bottom: 20 / 1017
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(2 + 3 / 12, "feet"),
  32255. default: true
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32261. {
  32262. front: {
  32263. height: math.unit(4, "meters"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/mid/front.svg",
  32267. extra: 507 / 476,
  32268. bottom: 17 / 524
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(4, "meters"),
  32273. name: "Back",
  32274. image: {
  32275. source: "./media/characters/mid/back.svg",
  32276. extra: 519 / 487,
  32277. bottom: 7 / 526
  32278. }
  32279. },
  32280. stuck: {
  32281. height: math.unit(2.2, "meters"),
  32282. name: "Stuck",
  32283. image: {
  32284. source: "./media/characters/mid/stuck.svg",
  32285. extra: 1951 / 1869,
  32286. bottom: 88 / 2039
  32287. }
  32288. }
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(4, "meters"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Big",
  32298. height: math.unit(10, "meters")
  32299. },
  32300. {
  32301. name: "Macro",
  32302. height: math.unit(800, "meters")
  32303. },
  32304. {
  32305. name: "Megamacro",
  32306. height: math.unit(100, "km")
  32307. },
  32308. {
  32309. name: "Overgrown",
  32310. height: math.unit(1, "parsec")
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(2.5, "meters"),
  32319. weight: math.unit(225, "kg"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/iris/front.svg",
  32323. extra: 3348 / 3251,
  32324. bottom: 205 / 3553
  32325. }
  32326. },
  32327. maw: {
  32328. height: math.unit(0.56, "meter"),
  32329. name: "Maw",
  32330. image: {
  32331. source: "./media/characters/iris/maw.svg"
  32332. }
  32333. },
  32334. },
  32335. [
  32336. {
  32337. name: "Mewter cat",
  32338. height: math.unit(1.2, "meters")
  32339. },
  32340. {
  32341. name: "Normal",
  32342. height: math.unit(2.5, "meters"),
  32343. default: true
  32344. },
  32345. {
  32346. name: "Minimacro",
  32347. height: math.unit(18, "feet")
  32348. },
  32349. {
  32350. name: "Macro",
  32351. height: math.unit(140, "feet")
  32352. },
  32353. {
  32354. name: "Macro+",
  32355. height: math.unit(180, "meters")
  32356. },
  32357. {
  32358. name: "Megamacro",
  32359. height: math.unit(2746, "meters")
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32365. {
  32366. front: {
  32367. height: math.unit(6, "feet"),
  32368. weight: math.unit(135, "lb"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/axel/front.svg",
  32372. extra: 908 / 908,
  32373. bottom: 58 / 966
  32374. }
  32375. },
  32376. side: {
  32377. height: math.unit(6, "feet"),
  32378. weight: math.unit(135, "lb"),
  32379. name: "Side",
  32380. image: {
  32381. source: "./media/characters/axel/side.svg",
  32382. extra: 958 / 958,
  32383. bottom: 11 / 969
  32384. }
  32385. },
  32386. back: {
  32387. height: math.unit(6, "feet"),
  32388. weight: math.unit(135, "lb"),
  32389. name: "Back",
  32390. image: {
  32391. source: "./media/characters/axel/back.svg",
  32392. extra: 887 / 887,
  32393. bottom: 34 / 921
  32394. }
  32395. },
  32396. head: {
  32397. height: math.unit(1.07, "feet"),
  32398. name: "Head",
  32399. image: {
  32400. source: "./media/characters/axel/head.svg"
  32401. }
  32402. },
  32403. beak: {
  32404. height: math.unit(1.4, "feet"),
  32405. name: "Beak",
  32406. image: {
  32407. source: "./media/characters/axel/beak.svg"
  32408. }
  32409. },
  32410. beakSide: {
  32411. height: math.unit(1.4, "feet"),
  32412. name: "Beak Side",
  32413. image: {
  32414. source: "./media/characters/axel/beak-side.svg"
  32415. }
  32416. },
  32417. sheath: {
  32418. height: math.unit(0.5, "feet"),
  32419. name: "Sheath",
  32420. image: {
  32421. source: "./media/characters/axel/sheath.svg"
  32422. }
  32423. },
  32424. dick: {
  32425. height: math.unit(0.98, "feet"),
  32426. name: "Dick",
  32427. image: {
  32428. source: "./media/characters/axel/dick.svg"
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Macro",
  32435. height: math.unit(68, "meters"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(3.5, "meters"),
  32445. weight: math.unit(1200, "kg"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/joanna/front.svg",
  32449. extra: 1596 / 1488,
  32450. bottom: 29 / 1625
  32451. }
  32452. },
  32453. back: {
  32454. height: math.unit(3.5, "meters"),
  32455. weight: math.unit(1200, "kg"),
  32456. name: "Back",
  32457. image: {
  32458. source: "./media/characters/joanna/back.svg",
  32459. extra: 1594 / 1495,
  32460. bottom: 26 / 1620
  32461. }
  32462. },
  32463. frontShorts: {
  32464. height: math.unit(3.5, "meters"),
  32465. weight: math.unit(1200, "kg"),
  32466. name: "Front (Shorts)",
  32467. image: {
  32468. source: "./media/characters/joanna/front-shorts.svg",
  32469. extra: 1596 / 1488,
  32470. bottom: 29 / 1625
  32471. }
  32472. },
  32473. frontBiker: {
  32474. height: math.unit(3.5, "meters"),
  32475. weight: math.unit(1200, "kg"),
  32476. name: "Front (Biker)",
  32477. image: {
  32478. source: "./media/characters/joanna/front-biker.svg",
  32479. extra: 1596 / 1488,
  32480. bottom: 29 / 1625
  32481. }
  32482. },
  32483. backBiker: {
  32484. height: math.unit(3.5, "meters"),
  32485. weight: math.unit(1200, "kg"),
  32486. name: "Back (Biker)",
  32487. image: {
  32488. source: "./media/characters/joanna/back-biker.svg",
  32489. extra: 1594 / 1495,
  32490. bottom: 88 / 1682
  32491. }
  32492. },
  32493. bikeLeft: {
  32494. height: math.unit(2.4, "meters"),
  32495. weight: math.unit(1600, "kg"),
  32496. name: "Bike (Left)",
  32497. image: {
  32498. source: "./media/characters/joanna/bike-left.svg",
  32499. extra: 720 / 720,
  32500. bottom: 8 / 728
  32501. }
  32502. },
  32503. bikeRight: {
  32504. height: math.unit(2.4, "meters"),
  32505. weight: math.unit(1600, "kg"),
  32506. name: "Bike (Right)",
  32507. image: {
  32508. source: "./media/characters/joanna/bike-right.svg",
  32509. extra: 720 / 720,
  32510. bottom: 8 / 728
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Incognito",
  32517. height: math.unit(3.5, "meters")
  32518. },
  32519. {
  32520. name: "Casual Big",
  32521. height: math.unit(200, "meters")
  32522. },
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(600, "meters")
  32526. },
  32527. {
  32528. name: "Original",
  32529. height: math.unit(20, "km"),
  32530. default: true
  32531. },
  32532. {
  32533. name: "Giga",
  32534. height: math.unit(400, "km")
  32535. },
  32536. {
  32537. name: "Lounging",
  32538. height: math.unit(1500, "km")
  32539. },
  32540. {
  32541. name: "Planetary",
  32542. height: math.unit(200000, "km")
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32548. {
  32549. front: {
  32550. height: math.unit(6, "feet"),
  32551. weight: math.unit(150, "lb"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/hugo-sigil/front.svg",
  32555. extra: 522 / 500,
  32556. bottom: 2 / 524
  32557. }
  32558. },
  32559. back: {
  32560. height: math.unit(6, "feet"),
  32561. weight: math.unit(150, "lb"),
  32562. name: "Back",
  32563. image: {
  32564. source: "./media/characters/hugo-sigil/back.svg",
  32565. extra: 519 / 495,
  32566. bottom: 5 / 524
  32567. }
  32568. },
  32569. maw: {
  32570. height: math.unit(1.4, "feet"),
  32571. weight: math.unit(150, "lb"),
  32572. name: "Maw",
  32573. image: {
  32574. source: "./media/characters/hugo-sigil/maw.svg"
  32575. }
  32576. },
  32577. feet: {
  32578. height: math.unit(1.56, "feet"),
  32579. weight: math.unit(150, "lb"),
  32580. name: "Feet",
  32581. image: {
  32582. source: "./media/characters/hugo-sigil/feet.svg",
  32583. extra: 177 / 177,
  32584. bottom: 12 / 189
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(6, "feet")
  32592. },
  32593. {
  32594. name: "Macro",
  32595. height: math.unit(200, "feet"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32602. {
  32603. front: {
  32604. height: math.unit(6, "feet"),
  32605. weight: math.unit(150, "lb"),
  32606. name: "Front",
  32607. image: {
  32608. source: "./media/characters/peri/front.svg",
  32609. extra: 2354 / 2233,
  32610. bottom: 49 / 2403
  32611. }
  32612. },
  32613. },
  32614. [
  32615. {
  32616. name: "Really Small",
  32617. height: math.unit(1, "nm")
  32618. },
  32619. {
  32620. name: "Micro",
  32621. height: math.unit(4, "inches")
  32622. },
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(7, "inches"),
  32626. default: true
  32627. },
  32628. {
  32629. name: "Macro",
  32630. height: math.unit(400, "feet")
  32631. },
  32632. {
  32633. name: "Megamacro",
  32634. height: math.unit(100, "miles")
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32640. {
  32641. frontSlim: {
  32642. height: math.unit(7, "feet"),
  32643. name: "Front (Slim)",
  32644. image: {
  32645. source: "./media/characters/issilora/front-slim.svg",
  32646. extra: 529 / 449,
  32647. bottom: 53 / 582
  32648. }
  32649. },
  32650. sideSlim: {
  32651. height: math.unit(7, "feet"),
  32652. name: "Side (Slim)",
  32653. image: {
  32654. source: "./media/characters/issilora/side-slim.svg",
  32655. extra: 570 / 480,
  32656. bottom: 30 / 600
  32657. }
  32658. },
  32659. backSlim: {
  32660. height: math.unit(7, "feet"),
  32661. name: "Back (Slim)",
  32662. image: {
  32663. source: "./media/characters/issilora/back-slim.svg",
  32664. extra: 537 / 455,
  32665. bottom: 46 / 583
  32666. }
  32667. },
  32668. frontBuff: {
  32669. height: math.unit(7, "feet"),
  32670. name: "Front (Buff)",
  32671. image: {
  32672. source: "./media/characters/issilora/front-buff.svg",
  32673. extra: 2310 / 2035,
  32674. bottom: 335 / 2645
  32675. }
  32676. },
  32677. head: {
  32678. height: math.unit(1.94, "feet"),
  32679. name: "Head",
  32680. image: {
  32681. source: "./media/characters/issilora/head.svg"
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Minimum",
  32688. height: math.unit(7, "feet")
  32689. },
  32690. {
  32691. name: "Comfortable",
  32692. height: math.unit(17, "feet")
  32693. },
  32694. {
  32695. name: "Fun Size",
  32696. height: math.unit(47, "feet")
  32697. },
  32698. {
  32699. name: "Natural Macro",
  32700. height: math.unit(137, "feet"),
  32701. default: true
  32702. },
  32703. {
  32704. name: "Maximum Kaiju",
  32705. height: math.unit(397, "feet")
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32711. {
  32712. front: {
  32713. height: math.unit(50 + 9/12, "feet"),
  32714. weight: math.unit(32.8, "tons"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/irb'iiritaahn/front.svg",
  32718. extra: 1878/1826,
  32719. bottom: 326/2204
  32720. }
  32721. },
  32722. back: {
  32723. height: math.unit(50 + 9/12, "feet"),
  32724. weight: math.unit(32.8, "tons"),
  32725. name: "Back",
  32726. image: {
  32727. source: "./media/characters/irb'iiritaahn/back.svg",
  32728. extra: 2052/2018,
  32729. bottom: 152/2204
  32730. }
  32731. },
  32732. head: {
  32733. height: math.unit(12.86, "feet"),
  32734. name: "Head",
  32735. image: {
  32736. source: "./media/characters/irb'iiritaahn/head.svg"
  32737. }
  32738. },
  32739. maw: {
  32740. height: math.unit(9.66, "feet"),
  32741. name: "Maw",
  32742. image: {
  32743. source: "./media/characters/irb'iiritaahn/maw.svg"
  32744. }
  32745. },
  32746. frontDick: {
  32747. height: math.unit(8.78461, "feet"),
  32748. name: "Front Dick",
  32749. image: {
  32750. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32751. }
  32752. },
  32753. rearDick: {
  32754. height: math.unit(8.78461, "feet"),
  32755. name: "Rear Dick",
  32756. image: {
  32757. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32758. }
  32759. },
  32760. rearDickUnfolded: {
  32761. height: math.unit(8.78, "feet"),
  32762. name: "Rear Dick (Unfolded)",
  32763. image: {
  32764. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32765. }
  32766. },
  32767. wings: {
  32768. height: math.unit(43, "feet"),
  32769. name: "Wings",
  32770. image: {
  32771. source: "./media/characters/irb'iiritaahn/wings.svg"
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Macro",
  32778. height: math.unit(50 + 9/12, "feet"),
  32779. default: true
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32785. {
  32786. front: {
  32787. height: math.unit(205, "cm"),
  32788. weight: math.unit(102, "kg"),
  32789. name: "Front",
  32790. image: {
  32791. source: "./media/characters/irbisgreif/front.svg",
  32792. extra: 785/706,
  32793. bottom: 13/798
  32794. }
  32795. },
  32796. back: {
  32797. height: math.unit(205, "cm"),
  32798. weight: math.unit(102, "kg"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/irbisgreif/back.svg",
  32802. extra: 713/701,
  32803. bottom: 26/739
  32804. }
  32805. },
  32806. frontDressed: {
  32807. height: math.unit(216, "cm"),
  32808. weight: math.unit(102, "kg"),
  32809. name: "Front-dressed",
  32810. image: {
  32811. source: "./media/characters/irbisgreif/front-dressed.svg",
  32812. extra: 902/776,
  32813. bottom: 14/916
  32814. }
  32815. },
  32816. sideDressed: {
  32817. height: math.unit(195, "cm"),
  32818. weight: math.unit(102, "kg"),
  32819. name: "Side-dressed",
  32820. image: {
  32821. source: "./media/characters/irbisgreif/side-dressed.svg",
  32822. extra: 788/688,
  32823. bottom: 21/809
  32824. }
  32825. },
  32826. backDressed: {
  32827. height: math.unit(216, "cm"),
  32828. weight: math.unit(102, "kg"),
  32829. name: "Back-dressed",
  32830. image: {
  32831. source: "./media/characters/irbisgreif/back-dressed.svg",
  32832. extra: 901/783,
  32833. bottom: 10/911
  32834. }
  32835. },
  32836. dick: {
  32837. height: math.unit(0.49, "feet"),
  32838. name: "Dick",
  32839. image: {
  32840. source: "./media/characters/irbisgreif/dick.svg"
  32841. }
  32842. },
  32843. wingTop: {
  32844. height: math.unit(1.93 , "feet"),
  32845. name: "Wing-top",
  32846. image: {
  32847. source: "./media/characters/irbisgreif/wing-top.svg"
  32848. }
  32849. },
  32850. wingBottom: {
  32851. height: math.unit(1.93 , "feet"),
  32852. name: "Wing-bottom",
  32853. image: {
  32854. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(216, "cm"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(6, "feet"),
  32871. weight: math.unit(150, "lb"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/pride/front.svg",
  32875. extra: 1299/1230,
  32876. bottom: 18/1317
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Normal",
  32883. height: math.unit(7, "feet")
  32884. },
  32885. {
  32886. name: "Mini-macro",
  32887. height: math.unit(11, "feet")
  32888. },
  32889. {
  32890. name: "Macro",
  32891. height: math.unit(15, "meters"),
  32892. default: true
  32893. },
  32894. {
  32895. name: "Macro+",
  32896. height: math.unit(40, "meters")
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32902. {
  32903. front: {
  32904. height: math.unit(4 + 2 / 12, "feet"),
  32905. weight: math.unit(95, "lb"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/vaelophis-nyx/front.svg",
  32909. extra: 2532/2330,
  32910. bottom: 0/2532
  32911. }
  32912. },
  32913. back: {
  32914. height: math.unit(4 + 2 / 12, "feet"),
  32915. weight: math.unit(95, "lb"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/vaelophis-nyx/back.svg",
  32919. extra: 2484/2361,
  32920. bottom: 0/2484
  32921. }
  32922. },
  32923. feralSide: {
  32924. height: math.unit(2 + 1/12, "feet"),
  32925. weight: math.unit(20, "lb"),
  32926. name: "Feral (Side)",
  32927. image: {
  32928. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32929. extra: 1721/1581,
  32930. bottom: 70/1791
  32931. }
  32932. },
  32933. feralLazing: {
  32934. height: math.unit(1.08, "feet"),
  32935. weight: math.unit(20, "lb"),
  32936. name: "Feral (Lazing)",
  32937. image: {
  32938. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32939. extra: 822/822,
  32940. bottom: 248/1070
  32941. }
  32942. },
  32943. ear: {
  32944. height: math.unit(0.416, "feet"),
  32945. name: "Ear",
  32946. image: {
  32947. source: "./media/characters/vaelophis-nyx/ear.svg"
  32948. }
  32949. },
  32950. eye: {
  32951. height: math.unit(0.0748, "feet"),
  32952. name: "Eye",
  32953. image: {
  32954. source: "./media/characters/vaelophis-nyx/eye.svg"
  32955. }
  32956. },
  32957. mouth: {
  32958. height: math.unit(0.378, "feet"),
  32959. name: "Mouth",
  32960. image: {
  32961. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32962. }
  32963. },
  32964. spade: {
  32965. height: math.unit(0.55, "feet"),
  32966. name: "Spade",
  32967. image: {
  32968. source: "./media/characters/vaelophis-nyx/spade.svg"
  32969. }
  32970. },
  32971. },
  32972. [
  32973. {
  32974. name: "Normal",
  32975. height: math.unit(4 + 2/12, "feet"),
  32976. default: true
  32977. },
  32978. ]
  32979. ))
  32980. characterMakers.push(() => makeCharacter(
  32981. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32982. {
  32983. front: {
  32984. height: math.unit(7, "feet"),
  32985. weight: math.unit(231, "lb"),
  32986. name: "Front",
  32987. image: {
  32988. source: "./media/characters/flux/front.svg",
  32989. extra: 919/871,
  32990. bottom: 0/919
  32991. }
  32992. },
  32993. back: {
  32994. height: math.unit(7, "feet"),
  32995. weight: math.unit(231, "lb"),
  32996. name: "Back",
  32997. image: {
  32998. source: "./media/characters/flux/back.svg",
  32999. extra: 1040/992,
  33000. bottom: 0/1040
  33001. }
  33002. },
  33003. frontDressed: {
  33004. height: math.unit(7, "feet"),
  33005. weight: math.unit(231, "lb"),
  33006. name: "Front (Dressed)",
  33007. image: {
  33008. source: "./media/characters/flux/front-dressed.svg",
  33009. extra: 919/871,
  33010. bottom: 0/919
  33011. }
  33012. },
  33013. feralSide: {
  33014. height: math.unit(5, "feet"),
  33015. weight: math.unit(150, "lb"),
  33016. name: "Feral (Side)",
  33017. image: {
  33018. source: "./media/characters/flux/feral-side.svg",
  33019. extra: 598/528,
  33020. bottom: 28/626
  33021. }
  33022. },
  33023. head: {
  33024. height: math.unit(1.585, "feet"),
  33025. name: "Head",
  33026. image: {
  33027. source: "./media/characters/flux/head.svg"
  33028. }
  33029. },
  33030. headSide: {
  33031. height: math.unit(1.74, "feet"),
  33032. name: "Head (Side)",
  33033. image: {
  33034. source: "./media/characters/flux/head-side.svg"
  33035. }
  33036. },
  33037. headSideFire: {
  33038. height: math.unit(1.76, "feet"),
  33039. name: "Head (Side, Fire)",
  33040. image: {
  33041. source: "./media/characters/flux/head-side-fire.svg"
  33042. }
  33043. },
  33044. },
  33045. [
  33046. {
  33047. name: "Normal",
  33048. height: math.unit(7, "feet"),
  33049. default: true
  33050. },
  33051. ]
  33052. ))
  33053. characterMakers.push(() => makeCharacter(
  33054. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33055. {
  33056. front: {
  33057. height: math.unit(9, "feet"),
  33058. weight: math.unit(1012, "lb"),
  33059. name: "Front",
  33060. image: {
  33061. source: "./media/characters/ulfra-lupae/front.svg",
  33062. extra: 1083/1011,
  33063. bottom: 67/1150
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Micro",
  33070. height: math.unit(6, "inches")
  33071. },
  33072. {
  33073. name: "Socializing",
  33074. height: math.unit(6 + 5/12, "feet")
  33075. },
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(9, "feet"),
  33079. default: true
  33080. },
  33081. {
  33082. name: "Macro",
  33083. height: math.unit(150, "feet")
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(5 + 2/12, "feet"),
  33092. weight: math.unit(120, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/timber/front.svg",
  33096. extra: 2814/2705,
  33097. bottom: 181/2995
  33098. }
  33099. },
  33100. },
  33101. [
  33102. {
  33103. name: "Normal",
  33104. height: math.unit(5 + 2/12, "feet"),
  33105. default: true
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(9, "feet"),
  33114. name: "Front",
  33115. image: {
  33116. source: "./media/characters/nicki/front.svg",
  33117. extra: 1240/990,
  33118. bottom: 45/1285
  33119. },
  33120. form: "anthro",
  33121. default: true
  33122. },
  33123. side: {
  33124. height: math.unit(9, "feet"),
  33125. name: "Side",
  33126. image: {
  33127. source: "./media/characters/nicki/side.svg",
  33128. extra: 1047/973,
  33129. bottom: 61/1108
  33130. },
  33131. form: "anthro"
  33132. },
  33133. back: {
  33134. height: math.unit(9, "feet"),
  33135. name: "Back",
  33136. image: {
  33137. source: "./media/characters/nicki/back.svg",
  33138. extra: 1006/965,
  33139. bottom: 39/1045
  33140. },
  33141. form: "anthro"
  33142. },
  33143. taur: {
  33144. height: math.unit(15, "feet"),
  33145. name: "Taur",
  33146. image: {
  33147. source: "./media/characters/nicki/taur.svg",
  33148. extra: 1592/1347,
  33149. bottom: 0/1592
  33150. },
  33151. form: "taur",
  33152. default: true
  33153. },
  33154. },
  33155. [
  33156. {
  33157. name: "Normal",
  33158. height: math.unit(9, "feet"),
  33159. form: "anthro",
  33160. default: true
  33161. },
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(15, "feet"),
  33165. form: "taur",
  33166. default: true
  33167. }
  33168. ],
  33169. {
  33170. "anthro": {
  33171. name: "Anthro",
  33172. default: true
  33173. },
  33174. "taur": {
  33175. name: "Taur"
  33176. }
  33177. }
  33178. ))
  33179. characterMakers.push(() => makeCharacter(
  33180. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33181. {
  33182. front: {
  33183. height: math.unit(7 + 10/12, "feet"),
  33184. weight: math.unit(3.5, "tons"),
  33185. name: "Front",
  33186. image: {
  33187. source: "./media/characters/lee/front.svg",
  33188. extra: 1773/1615,
  33189. bottom: 86/1859
  33190. }
  33191. },
  33192. hand: {
  33193. height: math.unit(1.78, "feet"),
  33194. name: "Hand",
  33195. image: {
  33196. source: "./media/characters/lee/hand.svg"
  33197. }
  33198. },
  33199. maw: {
  33200. height: math.unit(1.18, "feet"),
  33201. name: "Maw",
  33202. image: {
  33203. source: "./media/characters/lee/maw.svg"
  33204. }
  33205. },
  33206. },
  33207. [
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(7 + 10/12, "feet"),
  33211. default: true
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33217. {
  33218. front: {
  33219. height: math.unit(9, "feet"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/guti/front.svg",
  33223. extra: 4551/4355,
  33224. bottom: 123/4674
  33225. }
  33226. },
  33227. tongue: {
  33228. height: math.unit(1, "feet"),
  33229. name: "Tongue",
  33230. image: {
  33231. source: "./media/characters/guti/tongue.svg"
  33232. }
  33233. },
  33234. paw: {
  33235. height: math.unit(1.18, "feet"),
  33236. name: "Paw",
  33237. image: {
  33238. source: "./media/characters/guti/paw.svg"
  33239. }
  33240. },
  33241. },
  33242. [
  33243. {
  33244. name: "Normal",
  33245. height: math.unit(9, "feet"),
  33246. default: true
  33247. },
  33248. ]
  33249. ))
  33250. characterMakers.push(() => makeCharacter(
  33251. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33252. {
  33253. side: {
  33254. height: math.unit(5, "meters"),
  33255. name: "Side",
  33256. image: {
  33257. source: "./media/characters/vesper/side.svg",
  33258. extra: 1605/1518,
  33259. bottom: 0/1605
  33260. }
  33261. },
  33262. },
  33263. [
  33264. {
  33265. name: "Small",
  33266. height: math.unit(5, "meters")
  33267. },
  33268. {
  33269. name: "Sage",
  33270. height: math.unit(100, "meters"),
  33271. default: true
  33272. },
  33273. {
  33274. name: "Fun Size",
  33275. height: math.unit(600, "meters")
  33276. },
  33277. {
  33278. name: "Goddess",
  33279. height: math.unit(20000, "km")
  33280. },
  33281. {
  33282. name: "Maximum",
  33283. height: math.unit(5, "galaxies")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(6 + 3/12, "feet"),
  33292. weight: math.unit(190, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/gawain/front.svg",
  33296. extra: 2222/2139,
  33297. bottom: 90/2312
  33298. }
  33299. },
  33300. back: {
  33301. height: math.unit(6 + 3/12, "feet"),
  33302. weight: math.unit(190, "lb"),
  33303. name: "Back",
  33304. image: {
  33305. source: "./media/characters/gawain/back.svg",
  33306. extra: 2199/2111,
  33307. bottom: 73/2272
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(6 + 3/12, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33321. {
  33322. side: {
  33323. height: math.unit(3.5, "meters"),
  33324. weight: math.unit(16000, "lb"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/dascalti/side.svg",
  33328. extra: 392/273,
  33329. bottom: 47/439
  33330. }
  33331. },
  33332. breath: {
  33333. height: math.unit(7.4, "feet"),
  33334. name: "Breath",
  33335. image: {
  33336. source: "./media/characters/dascalti/breath.svg"
  33337. }
  33338. },
  33339. fed: {
  33340. height: math.unit(3.6, "meters"),
  33341. weight: math.unit(16000, "lb"),
  33342. name: "Fed",
  33343. image: {
  33344. source: "./media/characters/dascalti/fed.svg",
  33345. extra: 1419/820,
  33346. bottom: 95/1514
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(3.5, "meters"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(3 + 5/12, "feet"),
  33363. name: "Front",
  33364. image: {
  33365. source: "./media/characters/mauve/front.svg",
  33366. extra: 1126/1033,
  33367. bottom: 65/1191
  33368. }
  33369. },
  33370. side: {
  33371. height: math.unit(3 + 5/12, "feet"),
  33372. name: "Side",
  33373. image: {
  33374. source: "./media/characters/mauve/side.svg",
  33375. extra: 1089/1001,
  33376. bottom: 29/1118
  33377. }
  33378. },
  33379. back: {
  33380. height: math.unit(3 + 5/12, "feet"),
  33381. name: "Back",
  33382. image: {
  33383. source: "./media/characters/mauve/back.svg",
  33384. extra: 1173/1053,
  33385. bottom: 109/1282
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(3 + 5/12, "feet"),
  33393. default: true
  33394. },
  33395. ]
  33396. ))
  33397. characterMakers.push(() => makeCharacter(
  33398. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33399. {
  33400. front: {
  33401. height: math.unit(6 + 3/12, "feet"),
  33402. weight: math.unit(430, "lb"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/carlos/front.svg",
  33406. extra: 1964/1913,
  33407. bottom: 70/2034
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(6 + 3/12, "feet"),
  33415. default: true
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33421. {
  33422. back: {
  33423. height: math.unit(5 + 10/12, "feet"),
  33424. weight: math.unit(200, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/jax/back.svg",
  33428. extra: 764/739,
  33429. bottom: 25/789
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Normal",
  33436. height: math.unit(5 + 10/12, "feet"),
  33437. default: true
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33443. {
  33444. front: {
  33445. height: math.unit(8, "feet"),
  33446. weight: math.unit(250, "lb"),
  33447. name: "Front",
  33448. image: {
  33449. source: "./media/characters/eikthynir/front.svg",
  33450. extra: 1332/1166,
  33451. bottom: 82/1414
  33452. }
  33453. },
  33454. back: {
  33455. height: math.unit(8, "feet"),
  33456. weight: math.unit(250, "lb"),
  33457. name: "Back",
  33458. image: {
  33459. source: "./media/characters/eikthynir/back.svg",
  33460. extra: 1342/1190,
  33461. bottom: 19/1361
  33462. }
  33463. },
  33464. dick: {
  33465. height: math.unit(2.35, "feet"),
  33466. name: "Dick",
  33467. image: {
  33468. source: "./media/characters/eikthynir/dick.svg"
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Normal",
  33475. height: math.unit(8, "feet"),
  33476. default: true
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33482. {
  33483. front: {
  33484. height: math.unit(99, "meters"),
  33485. weight: math.unit(13000, "tons"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/zlmos/front.svg",
  33489. extra: 2202/1992,
  33490. bottom: 315/2517
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Macro",
  33497. height: math.unit(99, "meters"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(6 + 5/12, "feet"),
  33507. name: "Front",
  33508. image: {
  33509. source: "./media/characters/purri/front.svg",
  33510. extra: 1698/1610,
  33511. bottom: 32/1730
  33512. }
  33513. },
  33514. frontAlt: {
  33515. height: math.unit(6 + 5/12, "feet"),
  33516. name: "Front (Alt)",
  33517. image: {
  33518. source: "./media/characters/purri/front-alt.svg",
  33519. extra: 450/420,
  33520. bottom: 26/476
  33521. }
  33522. },
  33523. boots: {
  33524. height: math.unit(5.5, "feet"),
  33525. name: "Boots",
  33526. image: {
  33527. source: "./media/characters/purri/boots.svg",
  33528. extra: 905/853,
  33529. bottom: 18/923
  33530. }
  33531. },
  33532. lying: {
  33533. height: math.unit(2, "feet"),
  33534. name: "Lying",
  33535. image: {
  33536. source: "./media/characters/purri/lying.svg",
  33537. extra: 940/843,
  33538. bottom: 146/1086
  33539. }
  33540. },
  33541. devious: {
  33542. height: math.unit(1.77, "feet"),
  33543. name: "Devious",
  33544. image: {
  33545. source: "./media/characters/purri/devious.svg",
  33546. extra: 1440/1155,
  33547. bottom: 147/1587
  33548. }
  33549. },
  33550. bean: {
  33551. height: math.unit(1.94, "feet"),
  33552. name: "Bean",
  33553. image: {
  33554. source: "./media/characters/purri/bean.svg"
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Micro",
  33561. height: math.unit(1, "mm")
  33562. },
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(6 + 5/12, "feet"),
  33566. default: true
  33567. },
  33568. {
  33569. name: "Macro :3c",
  33570. height: math.unit(2, "miles")
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33576. {
  33577. front: {
  33578. height: math.unit(6 + 2/12, "feet"),
  33579. weight: math.unit(250, "lb"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/moonlight/front.svg",
  33583. extra: 1044/908,
  33584. bottom: 56/1100
  33585. }
  33586. },
  33587. feral: {
  33588. height: math.unit(3 + 1/12, "feet"),
  33589. weight: math.unit(50, "kg"),
  33590. name: "Feral",
  33591. image: {
  33592. source: "./media/characters/moonlight/feral.svg",
  33593. extra: 3705/2791,
  33594. bottom: 145/3850
  33595. }
  33596. },
  33597. paw: {
  33598. height: math.unit(1, "feet"),
  33599. name: "Paw",
  33600. image: {
  33601. source: "./media/characters/moonlight/paw.svg"
  33602. }
  33603. },
  33604. paws: {
  33605. height: math.unit(0.98, "feet"),
  33606. name: "Paws",
  33607. image: {
  33608. source: "./media/characters/moonlight/paws.svg",
  33609. extra: 939/939,
  33610. bottom: 50/989
  33611. }
  33612. },
  33613. mouth: {
  33614. height: math.unit(0.48, "feet"),
  33615. name: "Mouth",
  33616. image: {
  33617. source: "./media/characters/moonlight/mouth.svg"
  33618. }
  33619. },
  33620. dick: {
  33621. height: math.unit(1.46, "feet"),
  33622. name: "Dick",
  33623. image: {
  33624. source: "./media/characters/moonlight/dick.svg"
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(6 + 2/12, "feet"),
  33632. default: true
  33633. },
  33634. {
  33635. name: "Macro",
  33636. height: math.unit(300, "feet")
  33637. },
  33638. {
  33639. name: "Macro+",
  33640. height: math.unit(1, "mile")
  33641. },
  33642. {
  33643. name: "Mt. Moon",
  33644. height: math.unit(5, "miles")
  33645. },
  33646. {
  33647. name: "Megamacro",
  33648. height: math.unit(15, "miles")
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33654. {
  33655. back: {
  33656. height: math.unit(6, "feet"),
  33657. weight: math.unit(150, "lb"),
  33658. name: "Back",
  33659. image: {
  33660. source: "./media/characters/sylen/back.svg",
  33661. extra: 1335/1273,
  33662. bottom: 107/1442
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Normal",
  33669. height: math.unit(5 + 5/12, "feet")
  33670. },
  33671. {
  33672. name: "Megamacro",
  33673. height: math.unit(3, "miles"),
  33674. default: true
  33675. },
  33676. ]
  33677. ))
  33678. characterMakers.push(() => makeCharacter(
  33679. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33680. {
  33681. front: {
  33682. height: math.unit(6, "feet"),
  33683. weight: math.unit(190, "lb"),
  33684. name: "Front",
  33685. image: {
  33686. source: "./media/characters/huttser/front.svg",
  33687. extra: 1152/1058,
  33688. bottom: 23/1175
  33689. }
  33690. },
  33691. side: {
  33692. height: math.unit(6, "feet"),
  33693. weight: math.unit(190, "lb"),
  33694. name: "Side",
  33695. image: {
  33696. source: "./media/characters/huttser/side.svg",
  33697. extra: 1174/1065,
  33698. bottom: 18/1192
  33699. }
  33700. },
  33701. back: {
  33702. height: math.unit(6, "feet"),
  33703. weight: math.unit(190, "lb"),
  33704. name: "Back",
  33705. image: {
  33706. source: "./media/characters/huttser/back.svg",
  33707. extra: 1158/1056,
  33708. bottom: 12/1170
  33709. }
  33710. },
  33711. },
  33712. [
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33717. {
  33718. side: {
  33719. height: math.unit(12 + 9/12, "feet"),
  33720. weight: math.unit(15000, "lb"),
  33721. name: "Side",
  33722. image: {
  33723. source: "./media/characters/faan/side.svg",
  33724. extra: 2747/2697,
  33725. bottom: 0/2747
  33726. }
  33727. },
  33728. front: {
  33729. height: math.unit(12 + 9/12, "feet"),
  33730. weight: math.unit(15000, "lb"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/faan/front.svg",
  33734. extra: 607/571,
  33735. bottom: 24/631
  33736. }
  33737. },
  33738. head: {
  33739. height: math.unit(2.85, "feet"),
  33740. name: "Head",
  33741. image: {
  33742. source: "./media/characters/faan/head.svg"
  33743. }
  33744. },
  33745. headAlt: {
  33746. height: math.unit(3.13, "feet"),
  33747. name: "Head-alt",
  33748. image: {
  33749. source: "./media/characters/faan/head-alt.svg"
  33750. }
  33751. },
  33752. },
  33753. [
  33754. {
  33755. name: "Normal",
  33756. height: math.unit(12 + 9/12, "feet"),
  33757. default: true
  33758. },
  33759. ]
  33760. ))
  33761. characterMakers.push(() => makeCharacter(
  33762. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33763. {
  33764. front: {
  33765. height: math.unit(6, "feet"),
  33766. weight: math.unit(300, "lb"),
  33767. name: "Front",
  33768. image: {
  33769. source: "./media/characters/tanio/front.svg",
  33770. extra: 711/673,
  33771. bottom: 25/736
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(6, "feet"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(3, "inches"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/noboru/front.svg",
  33791. extra: 1039/932,
  33792. bottom: 18/1057
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Micro",
  33799. height: math.unit(3, "inches"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(1.85, "meters"),
  33809. weight: math.unit(80, "kg"),
  33810. name: "Front",
  33811. image: {
  33812. source: "./media/characters/daniel-barrett/front.svg",
  33813. extra: 355/337,
  33814. bottom: 9/364
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Pico",
  33821. height: math.unit(0.0433, "mm")
  33822. },
  33823. {
  33824. name: "Nano",
  33825. height: math.unit(1.5, "mm")
  33826. },
  33827. {
  33828. name: "Micro",
  33829. height: math.unit(5.3, "cm"),
  33830. default: true
  33831. },
  33832. {
  33833. name: "Normal",
  33834. height: math.unit(1.85, "meters")
  33835. },
  33836. {
  33837. name: "Macro",
  33838. height: math.unit(64.7, "meters")
  33839. },
  33840. {
  33841. name: "Megamacro",
  33842. height: math.unit(2.26, "km")
  33843. },
  33844. {
  33845. name: "Gigamacro",
  33846. height: math.unit(79, "km")
  33847. },
  33848. {
  33849. name: "Teramacro",
  33850. height: math.unit(2765, "km")
  33851. },
  33852. {
  33853. name: "Petamacro",
  33854. height: math.unit(96678, "km")
  33855. },
  33856. ]
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33860. {
  33861. front: {
  33862. height: math.unit(30, "meters"),
  33863. weight: math.unit(400, "tons"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/zeel/front.svg",
  33867. extra: 2599/2599,
  33868. bottom: 226/2825
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Macro",
  33875. height: math.unit(30, "meters"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(6 + 7/12, "feet"),
  33885. weight: math.unit(210, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/tarn/front.svg",
  33889. extra: 3517/3220,
  33890. bottom: 91/3608
  33891. }
  33892. },
  33893. back: {
  33894. height: math.unit(6 + 7/12, "feet"),
  33895. weight: math.unit(210, "lb"),
  33896. name: "Back",
  33897. image: {
  33898. source: "./media/characters/tarn/back.svg",
  33899. extra: 3566/3241,
  33900. bottom: 34/3600
  33901. }
  33902. },
  33903. dick: {
  33904. height: math.unit(1.65, "feet"),
  33905. name: "Dick",
  33906. image: {
  33907. source: "./media/characters/tarn/dick.svg"
  33908. }
  33909. },
  33910. paw: {
  33911. height: math.unit(1.80, "feet"),
  33912. name: "Paw",
  33913. image: {
  33914. source: "./media/characters/tarn/paw.svg"
  33915. }
  33916. },
  33917. tongue: {
  33918. height: math.unit(0.97, "feet"),
  33919. name: "Tongue",
  33920. image: {
  33921. source: "./media/characters/tarn/tongue.svg"
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Micro",
  33928. height: math.unit(4, "inches")
  33929. },
  33930. {
  33931. name: "Normal",
  33932. height: math.unit(6 + 7/12, "feet"),
  33933. default: true
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(300, "feet")
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33943. {
  33944. front: {
  33945. height: math.unit(5 + 7/12, "feet"),
  33946. weight: math.unit(80, "kg"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33950. extra: 3023/2865,
  33951. bottom: 33/3056
  33952. }
  33953. },
  33954. back: {
  33955. height: math.unit(5 + 7/12, "feet"),
  33956. weight: math.unit(80, "kg"),
  33957. name: "Back",
  33958. image: {
  33959. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33960. extra: 3020/2886,
  33961. bottom: 30/3050
  33962. }
  33963. },
  33964. dick: {
  33965. height: math.unit(0.98, "feet"),
  33966. name: "Dick",
  33967. image: {
  33968. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33969. }
  33970. },
  33971. anatomy: {
  33972. height: math.unit(2.86, "feet"),
  33973. name: "Anatomy",
  33974. image: {
  33975. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Really Small",
  33982. height: math.unit(2, "inches")
  33983. },
  33984. {
  33985. name: "Micro",
  33986. height: math.unit(5.583, "inches")
  33987. },
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(5 + 7/12, "feet"),
  33991. default: true
  33992. },
  33993. {
  33994. name: "Macro",
  33995. height: math.unit(67, "feet")
  33996. },
  33997. {
  33998. name: "Megamacro",
  33999. height: math.unit(134, "feet")
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34005. {
  34006. front: {
  34007. height: math.unit(9, "feet"),
  34008. weight: math.unit(120, "lb"),
  34009. name: "Front",
  34010. image: {
  34011. source: "./media/characters/sally/front.svg",
  34012. extra: 1506/1349,
  34013. bottom: 66/1572
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(9, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34027. {
  34028. front: {
  34029. height: math.unit(8, "feet"),
  34030. weight: math.unit(900, "lb"),
  34031. name: "Front",
  34032. image: {
  34033. source: "./media/characters/owen/front.svg",
  34034. extra: 1761/1657,
  34035. bottom: 74/1835
  34036. }
  34037. },
  34038. side: {
  34039. height: math.unit(8, "feet"),
  34040. weight: math.unit(900, "lb"),
  34041. name: "Side",
  34042. image: {
  34043. source: "./media/characters/owen/side.svg",
  34044. extra: 1797/1734,
  34045. bottom: 30/1827
  34046. }
  34047. },
  34048. back: {
  34049. height: math.unit(8, "feet"),
  34050. weight: math.unit(900, "lb"),
  34051. name: "Back",
  34052. image: {
  34053. source: "./media/characters/owen/back.svg",
  34054. extra: 1796/1706,
  34055. bottom: 59/1855
  34056. }
  34057. },
  34058. maw: {
  34059. height: math.unit(1.76, "feet"),
  34060. name: "Maw",
  34061. image: {
  34062. source: "./media/characters/owen/maw.svg"
  34063. }
  34064. },
  34065. },
  34066. [
  34067. {
  34068. name: "Normal",
  34069. height: math.unit(8, "feet"),
  34070. default: true
  34071. },
  34072. ]
  34073. ))
  34074. characterMakers.push(() => makeCharacter(
  34075. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34076. {
  34077. front: {
  34078. height: math.unit(4, "feet"),
  34079. weight: math.unit(400, "lb"),
  34080. name: "Front",
  34081. image: {
  34082. source: "./media/characters/ryth/front.svg",
  34083. extra: 1920/1748,
  34084. bottom: 42/1962
  34085. }
  34086. },
  34087. back: {
  34088. height: math.unit(4, "feet"),
  34089. weight: math.unit(400, "lb"),
  34090. name: "Back",
  34091. image: {
  34092. source: "./media/characters/ryth/back.svg",
  34093. extra: 1897/1690,
  34094. bottom: 89/1986
  34095. }
  34096. },
  34097. mouth: {
  34098. height: math.unit(1.39, "feet"),
  34099. name: "Mouth",
  34100. image: {
  34101. source: "./media/characters/ryth/mouth.svg"
  34102. }
  34103. },
  34104. tailmaw: {
  34105. height: math.unit(1.23, "feet"),
  34106. name: "Tailmaw",
  34107. image: {
  34108. source: "./media/characters/ryth/tailmaw.svg"
  34109. }
  34110. },
  34111. goia: {
  34112. height: math.unit(4, "meters"),
  34113. weight: math.unit(10800, "lb"),
  34114. name: "Goia",
  34115. image: {
  34116. source: "./media/characters/ryth/goia.svg",
  34117. extra: 745/640,
  34118. bottom: 107/852
  34119. }
  34120. },
  34121. goiaFront: {
  34122. height: math.unit(4, "meters"),
  34123. weight: math.unit(10800, "lb"),
  34124. name: "Goia (Front)",
  34125. image: {
  34126. source: "./media/characters/ryth/goia-front.svg",
  34127. extra: 750/586,
  34128. bottom: 114/864
  34129. }
  34130. },
  34131. goiaMaw: {
  34132. height: math.unit(5.55, "feet"),
  34133. name: "Goia Maw",
  34134. image: {
  34135. source: "./media/characters/ryth/goia-maw.svg"
  34136. }
  34137. },
  34138. goiaForepaw: {
  34139. height: math.unit(3.5, "feet"),
  34140. name: "Goia Forepaw",
  34141. image: {
  34142. source: "./media/characters/ryth/goia-forepaw.svg"
  34143. }
  34144. },
  34145. goiaHindpaw: {
  34146. height: math.unit(5.55, "feet"),
  34147. name: "Goia Hindpaw",
  34148. image: {
  34149. source: "./media/characters/ryth/goia-hindpaw.svg"
  34150. }
  34151. },
  34152. },
  34153. [
  34154. {
  34155. name: "Normal",
  34156. height: math.unit(4, "feet"),
  34157. default: true
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34163. {
  34164. front: {
  34165. height: math.unit(7, "feet"),
  34166. weight: math.unit(180, "lb"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/necrolance/front.svg",
  34170. extra: 1062/947,
  34171. bottom: 41/1103
  34172. }
  34173. },
  34174. back: {
  34175. height: math.unit(7, "feet"),
  34176. weight: math.unit(180, "lb"),
  34177. name: "Back",
  34178. image: {
  34179. source: "./media/characters/necrolance/back.svg",
  34180. extra: 1045/984,
  34181. bottom: 14/1059
  34182. }
  34183. },
  34184. wing: {
  34185. height: math.unit(2.67, "feet"),
  34186. name: "Wing",
  34187. image: {
  34188. source: "./media/characters/necrolance/wing.svg"
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(7, "feet"),
  34196. default: true
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34202. {
  34203. front: {
  34204. height: math.unit(76, "meters"),
  34205. weight: math.unit(30000, "tons"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/tyler/front.svg",
  34209. extra: 1640/1640,
  34210. bottom: 114/1754
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Macro",
  34217. height: math.unit(76, "meters"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(4 + 11/12, "feet"),
  34227. weight: math.unit(132, "lb"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/icey/front.svg",
  34231. extra: 2750/2550,
  34232. bottom: 33/2783
  34233. }
  34234. },
  34235. back: {
  34236. height: math.unit(4 + 11/12, "feet"),
  34237. weight: math.unit(132, "lb"),
  34238. name: "Back",
  34239. image: {
  34240. source: "./media/characters/icey/back.svg",
  34241. extra: 2624/2481,
  34242. bottom: 35/2659
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(4 + 11/12, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(100, "feet"),
  34259. weight: math.unit(0, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/smile/front.svg",
  34263. extra: 2983/2912,
  34264. bottom: 162/3145
  34265. }
  34266. },
  34267. back: {
  34268. height: math.unit(100, "feet"),
  34269. weight: math.unit(0, "lb"),
  34270. name: "Back",
  34271. image: {
  34272. source: "./media/characters/smile/back.svg",
  34273. extra: 3143/3031,
  34274. bottom: 91/3234
  34275. }
  34276. },
  34277. head: {
  34278. height: math.unit(26.3, "feet"),
  34279. weight: math.unit(0, "lb"),
  34280. name: "Head",
  34281. image: {
  34282. source: "./media/characters/smile/head.svg"
  34283. }
  34284. },
  34285. collar: {
  34286. height: math.unit(5.3, "feet"),
  34287. weight: math.unit(0, "lb"),
  34288. name: "Collar",
  34289. image: {
  34290. source: "./media/characters/smile/collar.svg"
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Macro",
  34297. height: math.unit(100, "feet"),
  34298. default: true
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34304. {
  34305. dragon: {
  34306. height: math.unit(26, "feet"),
  34307. weight: math.unit(36, "tons"),
  34308. name: "Dragon",
  34309. image: {
  34310. source: "./media/characters/arimphae/dragon.svg",
  34311. extra: 1574/983,
  34312. bottom: 357/1931
  34313. }
  34314. },
  34315. drake: {
  34316. height: math.unit(9, "feet"),
  34317. weight: math.unit(1.5, "tons"),
  34318. name: "Drake",
  34319. image: {
  34320. source: "./media/characters/arimphae/drake.svg",
  34321. extra: 1120/925,
  34322. bottom: 435/1555
  34323. }
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Small",
  34329. height: math.unit(26*5/9, "feet")
  34330. },
  34331. {
  34332. name: "Normal",
  34333. height: math.unit(26, "feet"),
  34334. default: true
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(8 + 9/12, "feet"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/xander/front.svg",
  34346. extra: 1237/974,
  34347. bottom: 94/1331
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(8 + 9/12, "feet"),
  34355. default: true
  34356. },
  34357. {
  34358. name: "Gaze Grabber",
  34359. height: math.unit(13 + 8/12, "feet")
  34360. },
  34361. {
  34362. name: "Jaw Dropper",
  34363. height: math.unit(27, "feet")
  34364. },
  34365. {
  34366. name: "Show Stopper",
  34367. height: math.unit(136, "feet")
  34368. },
  34369. {
  34370. name: "Superstar",
  34371. height: math.unit(1.9e6, "miles")
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34377. {
  34378. side: {
  34379. height: math.unit(2100, "feet"),
  34380. name: "Side",
  34381. image: {
  34382. source: "./media/characters/osiris/side.svg",
  34383. extra: 1105/939,
  34384. bottom: 167/1272
  34385. }
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Macro",
  34391. height: math.unit(2100, "feet"),
  34392. default: true
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(6 + 8/12, "feet"),
  34401. weight: math.unit(225, "lb"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/rhys-londe/front.svg",
  34405. extra: 2258/2141,
  34406. bottom: 188/2446
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(6 + 8/12, "feet"),
  34411. weight: math.unit(225, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/rhys-londe/back.svg",
  34415. extra: 2237/2137,
  34416. bottom: 63/2300
  34417. }
  34418. },
  34419. frontNsfw: {
  34420. height: math.unit(6 + 8/12, "feet"),
  34421. weight: math.unit(225, "lb"),
  34422. name: "Front (NSFW)",
  34423. image: {
  34424. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34425. extra: 2258/2141,
  34426. bottom: 188/2446
  34427. }
  34428. },
  34429. backNsfw: {
  34430. height: math.unit(6 + 8/12, "feet"),
  34431. weight: math.unit(225, "lb"),
  34432. name: "Back (NSFW)",
  34433. image: {
  34434. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34435. extra: 2237/2137,
  34436. bottom: 63/2300
  34437. }
  34438. },
  34439. dick: {
  34440. height: math.unit(30, "inches"),
  34441. name: "Dick",
  34442. image: {
  34443. source: "./media/characters/rhys-londe/dick.svg"
  34444. }
  34445. },
  34446. maw: {
  34447. height: math.unit(1.6, "feet"),
  34448. name: "Maw",
  34449. image: {
  34450. source: "./media/characters/rhys-londe/maw.svg"
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(6 + 8/12, "feet"),
  34458. default: true
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(3 + 10/12, "feet"),
  34467. weight: math.unit(90, "lb"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/taivas-ensim/front.svg",
  34471. extra: 1327/1216,
  34472. bottom: 96/1423
  34473. }
  34474. },
  34475. back: {
  34476. height: math.unit(3 + 10/12, "feet"),
  34477. weight: math.unit(90, "lb"),
  34478. name: "Back",
  34479. image: {
  34480. source: "./media/characters/taivas-ensim/back.svg",
  34481. extra: 1355/1247,
  34482. bottom: 11/1366
  34483. }
  34484. },
  34485. frontNsfw: {
  34486. height: math.unit(3 + 10/12, "feet"),
  34487. weight: math.unit(90, "lb"),
  34488. name: "Front (NSFW)",
  34489. image: {
  34490. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34491. extra: 1327/1216,
  34492. bottom: 96/1423
  34493. }
  34494. },
  34495. backNsfw: {
  34496. height: math.unit(3 + 10/12, "feet"),
  34497. weight: math.unit(90, "lb"),
  34498. name: "Back (NSFW)",
  34499. image: {
  34500. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34501. extra: 1355/1247,
  34502. bottom: 11/1366
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(3 + 10/12, "feet"),
  34510. default: true
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(9 + 6/12, "feet"),
  34519. weight: math.unit(940, "lb"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/byliss/front.svg",
  34523. extra: 1327/1290,
  34524. bottom: 82/1409
  34525. }
  34526. },
  34527. back: {
  34528. height: math.unit(9 + 6/12, "feet"),
  34529. weight: math.unit(940, "lb"),
  34530. name: "Back",
  34531. image: {
  34532. source: "./media/characters/byliss/back.svg",
  34533. extra: 1376/1349,
  34534. bottom: 9/1385
  34535. }
  34536. },
  34537. frontNsfw: {
  34538. height: math.unit(9 + 6/12, "feet"),
  34539. weight: math.unit(940, "lb"),
  34540. name: "Front (NSFW)",
  34541. image: {
  34542. source: "./media/characters/byliss/front-nsfw.svg",
  34543. extra: 1327/1290,
  34544. bottom: 82/1409
  34545. }
  34546. },
  34547. backNsfw: {
  34548. height: math.unit(9 + 6/12, "feet"),
  34549. weight: math.unit(940, "lb"),
  34550. name: "Back (NSFW)",
  34551. image: {
  34552. source: "./media/characters/byliss/back-nsfw.svg",
  34553. extra: 1376/1349,
  34554. bottom: 9/1385
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(9 + 6/12, "feet"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(5 + 2/12, "feet"),
  34571. weight: math.unit(200, "lb"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/noraly/front.svg",
  34575. extra: 4985/4773,
  34576. bottom: 150/5135
  34577. }
  34578. },
  34579. full: {
  34580. height: math.unit(5 + 2/12, "feet"),
  34581. weight: math.unit(164, "lb"),
  34582. name: "Full",
  34583. image: {
  34584. source: "./media/characters/noraly/full.svg",
  34585. extra: 1114/1059,
  34586. bottom: 35/1149
  34587. }
  34588. },
  34589. fuller: {
  34590. height: math.unit(5 + 2/12, "feet"),
  34591. weight: math.unit(230, "lb"),
  34592. name: "Fuller",
  34593. image: {
  34594. source: "./media/characters/noraly/fuller.svg",
  34595. extra: 1114/1059,
  34596. bottom: 35/1149
  34597. }
  34598. },
  34599. fullest: {
  34600. height: math.unit(5 + 2/12, "feet"),
  34601. weight: math.unit(300, "lb"),
  34602. name: "Fullest",
  34603. image: {
  34604. source: "./media/characters/noraly/fullest.svg",
  34605. extra: 1114/1059,
  34606. bottom: 35/1149
  34607. }
  34608. },
  34609. },
  34610. [
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(5 + 2/12, "feet"),
  34614. default: true
  34615. },
  34616. ]
  34617. ))
  34618. characterMakers.push(() => makeCharacter(
  34619. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34620. {
  34621. front: {
  34622. height: math.unit(5 + 2/12, "feet"),
  34623. weight: math.unit(210, "lb"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/pera/front.svg",
  34627. extra: 1560/1531,
  34628. bottom: 165/1725
  34629. }
  34630. },
  34631. back: {
  34632. height: math.unit(5 + 2/12, "feet"),
  34633. weight: math.unit(210, "lb"),
  34634. name: "Back",
  34635. image: {
  34636. source: "./media/characters/pera/back.svg",
  34637. extra: 1523/1493,
  34638. bottom: 152/1675
  34639. }
  34640. },
  34641. dick: {
  34642. height: math.unit(2.4, "feet"),
  34643. name: "Dick",
  34644. image: {
  34645. source: "./media/characters/pera/dick.svg"
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(5 + 2/12, "feet"),
  34653. default: true
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34659. {
  34660. front: {
  34661. height: math.unit(12, "feet"),
  34662. weight: math.unit(3200, "lb"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/julian/front.svg",
  34666. extra: 2962/2701,
  34667. bottom: 184/3146
  34668. }
  34669. },
  34670. maw: {
  34671. height: math.unit(5.35, "feet"),
  34672. name: "Maw",
  34673. image: {
  34674. source: "./media/characters/julian/maw.svg"
  34675. }
  34676. },
  34677. paw: {
  34678. height: math.unit(3.07, "feet"),
  34679. name: "Paw",
  34680. image: {
  34681. source: "./media/characters/julian/paw.svg"
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Default",
  34688. height: math.unit(12, "feet"),
  34689. default: true
  34690. },
  34691. {
  34692. name: "Big",
  34693. height: math.unit(50, "feet")
  34694. },
  34695. {
  34696. name: "Really Big",
  34697. height: math.unit(1, "mile")
  34698. },
  34699. {
  34700. name: "Extremely Big",
  34701. height: math.unit(100, "miles")
  34702. },
  34703. {
  34704. name: "Planet Hugger",
  34705. height: math.unit(200, "megameters")
  34706. },
  34707. {
  34708. name: "Unreasonably Big",
  34709. height: math.unit(1e300, "meters")
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34715. {
  34716. solgooleo: {
  34717. height: math.unit(4, "meters"),
  34718. weight: math.unit(6000*1.5, "kg"),
  34719. volume: math.unit(6000, "liters"),
  34720. name: "Solgooleo",
  34721. image: {
  34722. source: "./media/characters/pi/solgooleo.svg",
  34723. extra: 388/331,
  34724. bottom: 29/417
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(4, "meters"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(8, "feet"),
  34741. weight: math.unit(4, "tons"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/shaun/front.svg",
  34745. extra: 503/495,
  34746. bottom: 20/523
  34747. }
  34748. },
  34749. back: {
  34750. height: math.unit(8, "feet"),
  34751. weight: math.unit(4, "tons"),
  34752. name: "Back",
  34753. image: {
  34754. source: "./media/characters/shaun/back.svg",
  34755. extra: 487/480,
  34756. bottom: 20/507
  34757. }
  34758. },
  34759. },
  34760. [
  34761. {
  34762. name: "Lorg",
  34763. height: math.unit(8, "feet"),
  34764. default: true
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34770. {
  34771. frontAnthro: {
  34772. height: math.unit(7, "feet"),
  34773. name: "Front",
  34774. image: {
  34775. source: "./media/characters/sini/front-anthro.svg",
  34776. extra: 726/678,
  34777. bottom: 35/761
  34778. },
  34779. form: "anthro",
  34780. default: true
  34781. },
  34782. backAnthro: {
  34783. height: math.unit(7, "feet"),
  34784. name: "Back",
  34785. image: {
  34786. source: "./media/characters/sini/back-anthro.svg",
  34787. extra: 743/701,
  34788. bottom: 12/755
  34789. },
  34790. form: "anthro",
  34791. },
  34792. frontAnthroNsfw: {
  34793. height: math.unit(7, "feet"),
  34794. name: "Front (NSFW)",
  34795. image: {
  34796. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34797. extra: 726/678,
  34798. bottom: 35/761
  34799. },
  34800. form: "anthro"
  34801. },
  34802. backAnthroNsfw: {
  34803. height: math.unit(7, "feet"),
  34804. name: "Back (NSFW)",
  34805. image: {
  34806. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34807. extra: 743/701,
  34808. bottom: 12/755
  34809. },
  34810. form: "anthro",
  34811. },
  34812. mawAnthro: {
  34813. height: math.unit(2.14, "feet"),
  34814. name: "Maw",
  34815. image: {
  34816. source: "./media/characters/sini/maw-anthro.svg"
  34817. },
  34818. form: "anthro"
  34819. },
  34820. dick: {
  34821. height: math.unit(1.45, "feet"),
  34822. name: "Dick",
  34823. image: {
  34824. source: "./media/characters/sini/dick-anthro.svg"
  34825. },
  34826. form: "anthro"
  34827. },
  34828. feral: {
  34829. height: math.unit(16, "feet"),
  34830. name: "Feral",
  34831. image: {
  34832. source: "./media/characters/sini/feral.svg",
  34833. extra: 814/605,
  34834. bottom: 11/825
  34835. },
  34836. form: "feral",
  34837. default: true
  34838. },
  34839. feralNsfw: {
  34840. height: math.unit(16, "feet"),
  34841. name: "Feral (NSFW)",
  34842. image: {
  34843. source: "./media/characters/sini/feral-nsfw.svg",
  34844. extra: 814/605,
  34845. bottom: 11/825
  34846. },
  34847. form: "feral"
  34848. },
  34849. mawFeral: {
  34850. height: math.unit(5.66, "feet"),
  34851. name: "Maw",
  34852. image: {
  34853. source: "./media/characters/sini/maw-feral.svg"
  34854. },
  34855. form: "feral",
  34856. },
  34857. pawFeral: {
  34858. height: math.unit(5.17, "feet"),
  34859. name: "Paw",
  34860. image: {
  34861. source: "./media/characters/sini/paw-feral.svg"
  34862. },
  34863. form: "feral",
  34864. },
  34865. rumpFeral: {
  34866. height: math.unit(13.11, "feet"),
  34867. name: "Rump",
  34868. image: {
  34869. source: "./media/characters/sini/rump-feral.svg"
  34870. },
  34871. form: "feral",
  34872. },
  34873. dickFeral: {
  34874. height: math.unit(1, "feet"),
  34875. name: "Dick",
  34876. image: {
  34877. source: "./media/characters/sini/dick-feral.svg"
  34878. },
  34879. form: "feral",
  34880. },
  34881. eyeFeral: {
  34882. height: math.unit(1.23, "feet"),
  34883. name: "Eye",
  34884. image: {
  34885. source: "./media/characters/sini/eye-feral.svg"
  34886. },
  34887. form: "feral",
  34888. },
  34889. },
  34890. [
  34891. {
  34892. name: "Normal",
  34893. height: math.unit(7, "feet"),
  34894. default: true,
  34895. form: "anthro"
  34896. },
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(16, "feet"),
  34900. default: true,
  34901. form: "feral"
  34902. },
  34903. ],
  34904. {
  34905. "anthro": {
  34906. name: "Anthro",
  34907. default: true
  34908. },
  34909. "feral": {
  34910. name: "Feral",
  34911. }
  34912. }
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34916. {
  34917. side: {
  34918. height: math.unit(47.2, "meters"),
  34919. weight: math.unit(10000, "tons"),
  34920. name: "Side",
  34921. image: {
  34922. source: "./media/characters/raylldo/side.svg",
  34923. extra: 2363/642,
  34924. bottom: 221/2584
  34925. }
  34926. },
  34927. top: {
  34928. height: math.unit(240, "meters"),
  34929. weight: math.unit(10000, "tons"),
  34930. name: "Top",
  34931. image: {
  34932. source: "./media/characters/raylldo/top.svg"
  34933. }
  34934. },
  34935. bottom: {
  34936. height: math.unit(240, "meters"),
  34937. weight: math.unit(10000, "tons"),
  34938. name: "Bottom",
  34939. image: {
  34940. source: "./media/characters/raylldo/bottom.svg"
  34941. }
  34942. },
  34943. head: {
  34944. height: math.unit(38.6, "meters"),
  34945. name: "Head",
  34946. image: {
  34947. source: "./media/characters/raylldo/head.svg",
  34948. extra: 1335/1112,
  34949. bottom: 0/1335
  34950. }
  34951. },
  34952. maw: {
  34953. height: math.unit(16.37, "meters"),
  34954. name: "Maw",
  34955. image: {
  34956. source: "./media/characters/raylldo/maw.svg",
  34957. extra: 883/660,
  34958. bottom: 0/883
  34959. },
  34960. extraAttributes: {
  34961. preyCapacity: {
  34962. name: "Capacity",
  34963. power: 3,
  34964. type: "volume",
  34965. base: math.unit(1000, "people")
  34966. },
  34967. tongueSize: {
  34968. name: "Tongue Size",
  34969. power: 2,
  34970. type: "area",
  34971. base: math.unit(21, "m^2")
  34972. }
  34973. }
  34974. },
  34975. forepaw: {
  34976. height: math.unit(18, "meters"),
  34977. name: "Forepaw",
  34978. image: {
  34979. source: "./media/characters/raylldo/forepaw.svg"
  34980. }
  34981. },
  34982. hindpaw: {
  34983. height: math.unit(23, "meters"),
  34984. name: "Hindpaw",
  34985. image: {
  34986. source: "./media/characters/raylldo/hindpaw.svg"
  34987. }
  34988. },
  34989. genitals: {
  34990. height: math.unit(42, "meters"),
  34991. name: "Genitals",
  34992. image: {
  34993. source: "./media/characters/raylldo/genitals.svg"
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(47.2, "meters"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35007. {
  35008. anthroFront: {
  35009. height: math.unit(9, "feet"),
  35010. weight: math.unit(600, "lb"),
  35011. name: "Anthro (Front)",
  35012. image: {
  35013. source: "./media/characters/glint/anthro-front.svg",
  35014. extra: 1097/1018,
  35015. bottom: 28/1125
  35016. }
  35017. },
  35018. anthroBack: {
  35019. height: math.unit(9, "feet"),
  35020. weight: math.unit(600, "lb"),
  35021. name: "Anthro (Back)",
  35022. image: {
  35023. source: "./media/characters/glint/anthro-back.svg",
  35024. extra: 1154/997,
  35025. bottom: 36/1190
  35026. }
  35027. },
  35028. feral: {
  35029. height: math.unit(11, "feet"),
  35030. weight: math.unit(50000, "lb"),
  35031. name: "Feral",
  35032. image: {
  35033. source: "./media/characters/glint/feral.svg",
  35034. extra: 3035/1585,
  35035. bottom: 1169/4204
  35036. }
  35037. },
  35038. dickAnthro: {
  35039. height: math.unit(0.7, "meters"),
  35040. name: "Dick (Anthro)",
  35041. image: {
  35042. source: "./media/characters/glint/dick-anthro.svg"
  35043. }
  35044. },
  35045. dickFeral: {
  35046. height: math.unit(2.65, "meters"),
  35047. name: "Dick (Feral)",
  35048. image: {
  35049. source: "./media/characters/glint/dick-feral.svg"
  35050. }
  35051. },
  35052. slitHidden: {
  35053. height: math.unit(5.85, "meters"),
  35054. name: "Slit (Hidden)",
  35055. image: {
  35056. source: "./media/characters/glint/slit-hidden.svg"
  35057. }
  35058. },
  35059. slitErect: {
  35060. height: math.unit(5.85, "meters"),
  35061. name: "Slit (Erect)",
  35062. image: {
  35063. source: "./media/characters/glint/slit-erect.svg"
  35064. }
  35065. },
  35066. mawAnthro: {
  35067. height: math.unit(0.63, "meters"),
  35068. name: "Maw (Anthro)",
  35069. image: {
  35070. source: "./media/characters/glint/maw.svg"
  35071. }
  35072. },
  35073. mawFeral: {
  35074. height: math.unit(2.89, "meters"),
  35075. name: "Maw (Feral)",
  35076. image: {
  35077. source: "./media/characters/glint/maw.svg"
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(9, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35091. {
  35092. side: {
  35093. height: math.unit(15, "feet"),
  35094. weight: math.unit(5000, "kg"),
  35095. name: "Side",
  35096. image: {
  35097. source: "./media/characters/kairne/side.svg",
  35098. extra: 979/811,
  35099. bottom: 13/992
  35100. }
  35101. },
  35102. front: {
  35103. height: math.unit(15, "feet"),
  35104. weight: math.unit(5000, "kg"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/kairne/front.svg",
  35108. extra: 908/814,
  35109. bottom: 26/934
  35110. }
  35111. },
  35112. sideNsfw: {
  35113. height: math.unit(15, "feet"),
  35114. weight: math.unit(5000, "kg"),
  35115. name: "Side (NSFW)",
  35116. image: {
  35117. source: "./media/characters/kairne/side-nsfw.svg",
  35118. extra: 979/811,
  35119. bottom: 13/992
  35120. }
  35121. },
  35122. frontNsfw: {
  35123. height: math.unit(15, "feet"),
  35124. weight: math.unit(5000, "kg"),
  35125. name: "Front (NSFW)",
  35126. image: {
  35127. source: "./media/characters/kairne/front-nsfw.svg",
  35128. extra: 908/814,
  35129. bottom: 26/934
  35130. }
  35131. },
  35132. dickCaged: {
  35133. height: math.unit(0.65, "meters"),
  35134. name: "Dick-caged",
  35135. image: {
  35136. source: "./media/characters/kairne/dick-caged.svg"
  35137. }
  35138. },
  35139. dick: {
  35140. height: math.unit(0.79, "meters"),
  35141. name: "Dick",
  35142. image: {
  35143. source: "./media/characters/kairne/dick.svg"
  35144. }
  35145. },
  35146. genitals: {
  35147. height: math.unit(1.29, "meters"),
  35148. name: "Genitals",
  35149. image: {
  35150. source: "./media/characters/kairne/genitals.svg"
  35151. }
  35152. },
  35153. maw: {
  35154. height: math.unit(1.73, "meters"),
  35155. name: "Maw",
  35156. image: {
  35157. source: "./media/characters/kairne/maw.svg"
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(15, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35171. {
  35172. front: {
  35173. height: math.unit(5 + 8/12, "feet"),
  35174. weight: math.unit(139, "lb"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/biscuit-jackal/front.svg",
  35178. extra: 2106/1961,
  35179. bottom: 58/2164
  35180. }
  35181. },
  35182. back: {
  35183. height: math.unit(5 + 8/12, "feet"),
  35184. weight: math.unit(139, "lb"),
  35185. name: "Back",
  35186. image: {
  35187. source: "./media/characters/biscuit-jackal/back.svg",
  35188. extra: 2132/1976,
  35189. bottom: 57/2189
  35190. }
  35191. },
  35192. werejackal: {
  35193. height: math.unit(6 + 3/12, "feet"),
  35194. weight: math.unit(188, "lb"),
  35195. name: "Werejackal",
  35196. image: {
  35197. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35198. extra: 2373/2178,
  35199. bottom: 53/2426
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(5 + 8/12, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(140, "cm"),
  35216. weight: math.unit(45, "kg"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/tayra-white/front.svg",
  35220. extra: 2229/2192,
  35221. bottom: 75/2304
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(140, "cm"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(4 + 5/12, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/scoop/front.svg",
  35241. extra: 1257/1136,
  35242. bottom: 69/1326
  35243. }
  35244. },
  35245. back: {
  35246. height: math.unit(4 + 5/12, "feet"),
  35247. name: "Back",
  35248. image: {
  35249. source: "./media/characters/scoop/back.svg",
  35250. extra: 1321/1152,
  35251. bottom: 32/1353
  35252. }
  35253. },
  35254. maw: {
  35255. height: math.unit(0.68, "feet"),
  35256. name: "Maw",
  35257. image: {
  35258. source: "./media/characters/scoop/maw.svg"
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Really Small",
  35265. height: math.unit(1, "mm")
  35266. },
  35267. {
  35268. name: "Micro",
  35269. height: math.unit(1, "inch")
  35270. },
  35271. {
  35272. name: "Normal",
  35273. height: math.unit(4 + 5/12, "feet"),
  35274. default: true
  35275. },
  35276. {
  35277. name: "Macro",
  35278. height: math.unit(200, "feet")
  35279. },
  35280. {
  35281. name: "Megamacro",
  35282. height: math.unit(3240, "feet")
  35283. },
  35284. {
  35285. name: "Teramacro",
  35286. height: math.unit(2500, "miles")
  35287. },
  35288. ]
  35289. ))
  35290. characterMakers.push(() => makeCharacter(
  35291. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35292. {
  35293. front: {
  35294. height: math.unit(15 + 7/12, "feet"),
  35295. weight: math.unit(1150, "tons"),
  35296. name: "Front",
  35297. image: {
  35298. source: "./media/characters/saphinara/front.svg",
  35299. extra: 1837/1643,
  35300. bottom: 84/1921
  35301. },
  35302. form: "normal",
  35303. default: true
  35304. },
  35305. side: {
  35306. height: math.unit(15 + 7/12, "feet"),
  35307. weight: math.unit(1150, "tons"),
  35308. name: "Side",
  35309. image: {
  35310. source: "./media/characters/saphinara/side.svg",
  35311. extra: 605/547,
  35312. bottom: 6/611
  35313. },
  35314. form: "normal"
  35315. },
  35316. back: {
  35317. height: math.unit(15 + 7/12, "feet"),
  35318. weight: math.unit(1150, "tons"),
  35319. name: "Back",
  35320. image: {
  35321. source: "./media/characters/saphinara/back.svg",
  35322. extra: 591/531,
  35323. bottom: 13/604
  35324. },
  35325. form: "normal"
  35326. },
  35327. frontTail: {
  35328. height: math.unit(15 + 7/12, "feet"),
  35329. weight: math.unit(1150, "tons"),
  35330. name: "Front (Full Tail)",
  35331. image: {
  35332. source: "./media/characters/saphinara/front-tail.svg",
  35333. extra: 2256/1630,
  35334. bottom: 261/2517
  35335. },
  35336. form: "normal"
  35337. },
  35338. insides: {
  35339. height: math.unit(11.92, "feet"),
  35340. name: "Insides",
  35341. image: {
  35342. source: "./media/characters/saphinara/insides.svg"
  35343. },
  35344. form: "normal"
  35345. },
  35346. head: {
  35347. height: math.unit(4.17, "feet"),
  35348. name: "Head",
  35349. image: {
  35350. source: "./media/characters/saphinara/head.svg"
  35351. },
  35352. form: "normal"
  35353. },
  35354. tongue: {
  35355. height: math.unit(4.60, "feet"),
  35356. name: "Tongue",
  35357. image: {
  35358. source: "./media/characters/saphinara/tongue.svg"
  35359. },
  35360. form: "normal"
  35361. },
  35362. headEnraged: {
  35363. height: math.unit(5.55, "feet"),
  35364. name: "Head (Enraged)",
  35365. image: {
  35366. source: "./media/characters/saphinara/head-enraged.svg"
  35367. },
  35368. form: "normal"
  35369. },
  35370. wings: {
  35371. height: math.unit(11.95, "feet"),
  35372. name: "Wings",
  35373. image: {
  35374. source: "./media/characters/saphinara/wings.svg"
  35375. },
  35376. form: "normal"
  35377. },
  35378. feathers: {
  35379. height: math.unit(8.92, "feet"),
  35380. name: "Feathers",
  35381. image: {
  35382. source: "./media/characters/saphinara/feathers.svg"
  35383. },
  35384. form: "normal"
  35385. },
  35386. shackles: {
  35387. height: math.unit(2, "feet"),
  35388. name: "Shackles",
  35389. image: {
  35390. source: "./media/characters/saphinara/shackles.svg"
  35391. },
  35392. form: "normal"
  35393. },
  35394. eyes: {
  35395. height: math.unit(1.331, "feet"),
  35396. name: "Eyes",
  35397. image: {
  35398. source: "./media/characters/saphinara/eyes.svg"
  35399. },
  35400. form: "normal"
  35401. },
  35402. eyesEnraged: {
  35403. height: math.unit(1.331, "feet"),
  35404. name: "Eyes (Enraged)",
  35405. image: {
  35406. source: "./media/characters/saphinara/eyes-enraged.svg"
  35407. },
  35408. form: "normal"
  35409. },
  35410. trueFormSide: {
  35411. height: math.unit(200, "feet"),
  35412. weight: math.unit(1e7, "tons"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/saphinara/true-form-side.svg",
  35416. extra: 1399/770,
  35417. bottom: 97/1496
  35418. },
  35419. form: "true-form",
  35420. default: true
  35421. },
  35422. trueFormMaw: {
  35423. height: math.unit(71.5, "feet"),
  35424. name: "Maw",
  35425. image: {
  35426. source: "./media/characters/saphinara/true-form-maw.svg",
  35427. extra: 2302/1453,
  35428. bottom: 0/2302
  35429. },
  35430. form: "true-form"
  35431. },
  35432. meowberusSide: {
  35433. height: math.unit(75, "feet"),
  35434. weight: math.unit(180000, "kg"),
  35435. preyCapacity: math.unit(50000, "people"),
  35436. name: "Side",
  35437. image: {
  35438. source: "./media/characters/saphinara/meowberus-side.svg",
  35439. extra: 1400/711,
  35440. bottom: 126/1526
  35441. },
  35442. form: "meowberus",
  35443. extraAttributes: {
  35444. "pawArea": {
  35445. name: "Paw Size",
  35446. power: 2,
  35447. type: "area",
  35448. base: math.unit(35, "m^2")
  35449. }
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(15 + 7/12, "feet"),
  35457. default: true,
  35458. form: "normal"
  35459. },
  35460. {
  35461. name: "Angry",
  35462. height: math.unit(30 + 6/12, "feet"),
  35463. form: "normal"
  35464. },
  35465. {
  35466. name: "Enraged",
  35467. height: math.unit(102 + 1/12, "feet"),
  35468. form: "normal"
  35469. },
  35470. {
  35471. name: "True",
  35472. height: math.unit(200, "feet"),
  35473. default: true,
  35474. form: "true-form"
  35475. },
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(75, "feet"),
  35479. default: true,
  35480. form: "meowberus"
  35481. },
  35482. ],
  35483. {
  35484. "normal": {
  35485. name: "Normal",
  35486. default: true
  35487. },
  35488. "true-form": {
  35489. name: "True Form"
  35490. },
  35491. "meowberus": {
  35492. name: "Meowberus",
  35493. },
  35494. }
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35498. {
  35499. front: {
  35500. height: math.unit(6 + 8/12, "feet"),
  35501. weight: math.unit(300, "lb"),
  35502. name: "Front",
  35503. image: {
  35504. source: "./media/characters/jrain/front.svg",
  35505. extra: 3039/2865,
  35506. bottom: 399/3438
  35507. }
  35508. },
  35509. back: {
  35510. height: math.unit(6 + 8/12, "feet"),
  35511. weight: math.unit(300, "lb"),
  35512. name: "Back",
  35513. image: {
  35514. source: "./media/characters/jrain/back.svg",
  35515. extra: 3089/2938,
  35516. bottom: 172/3261
  35517. }
  35518. },
  35519. head: {
  35520. height: math.unit(2.14, "feet"),
  35521. name: "Head",
  35522. image: {
  35523. source: "./media/characters/jrain/head.svg"
  35524. }
  35525. },
  35526. maw: {
  35527. height: math.unit(1.77, "feet"),
  35528. name: "Maw",
  35529. image: {
  35530. source: "./media/characters/jrain/maw.svg"
  35531. }
  35532. },
  35533. leftHand: {
  35534. height: math.unit(1.1, "feet"),
  35535. name: "Left Hand",
  35536. image: {
  35537. source: "./media/characters/jrain/left-hand.svg"
  35538. }
  35539. },
  35540. rightHand: {
  35541. height: math.unit(1.1, "feet"),
  35542. name: "Right Hand",
  35543. image: {
  35544. source: "./media/characters/jrain/right-hand.svg"
  35545. }
  35546. },
  35547. eye: {
  35548. height: math.unit(0.35, "feet"),
  35549. name: "Eye",
  35550. image: {
  35551. source: "./media/characters/jrain/eye.svg"
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(6 + 8/12, "feet"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Casually Large",
  35563. height: math.unit(25, "feet")
  35564. },
  35565. {
  35566. name: "Giant",
  35567. height: math.unit(100, "feet")
  35568. },
  35569. {
  35570. name: "Kaiju",
  35571. height: math.unit(300, "feet")
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35577. {
  35578. dragon: {
  35579. height: math.unit(5, "meters"),
  35580. name: "Dragon",
  35581. image: {
  35582. source: "./media/characters/sabrina/dragon.svg",
  35583. extra: 3670 / 2365,
  35584. bottom: 333 / 4003
  35585. }
  35586. },
  35587. gryphon: {
  35588. height: math.unit(3, "meters"),
  35589. name: "Gryphon",
  35590. image: {
  35591. source: "./media/characters/sabrina/gryphon.svg",
  35592. extra: 1576 / 945,
  35593. bottom: 71 / 1647
  35594. }
  35595. },
  35596. snake: {
  35597. height: math.unit(12, "meters"),
  35598. name: "Snake",
  35599. image: {
  35600. source: "./media/characters/sabrina/snake.svg",
  35601. extra: 1758 / 1320,
  35602. bottom: 186 / 1944
  35603. }
  35604. },
  35605. collar: {
  35606. height: math.unit(1.86, "meters"),
  35607. name: "Collar",
  35608. image: {
  35609. source: "./media/characters/sabrina/collar.svg"
  35610. }
  35611. },
  35612. eye: {
  35613. height: math.unit(0.53, "meters"),
  35614. name: "Eye",
  35615. image: {
  35616. source: "./media/characters/sabrina/eye.svg"
  35617. }
  35618. },
  35619. foot: {
  35620. height: math.unit(1.86, "meters"),
  35621. name: "Foot",
  35622. image: {
  35623. source: "./media/characters/sabrina/foot.svg"
  35624. }
  35625. },
  35626. hand: {
  35627. height: math.unit(1.32, "meters"),
  35628. name: "Hand",
  35629. image: {
  35630. source: "./media/characters/sabrina/hand.svg"
  35631. }
  35632. },
  35633. head: {
  35634. height: math.unit(2.44, "meters"),
  35635. name: "Head",
  35636. image: {
  35637. source: "./media/characters/sabrina/head.svg"
  35638. }
  35639. },
  35640. headAngry: {
  35641. height: math.unit(2.44, "meters"),
  35642. name: "Head (Angry))",
  35643. image: {
  35644. source: "./media/characters/sabrina/head-angry.svg"
  35645. }
  35646. },
  35647. maw: {
  35648. height: math.unit(1.65, "meters"),
  35649. name: "Maw",
  35650. image: {
  35651. source: "./media/characters/sabrina/maw.svg"
  35652. }
  35653. },
  35654. spikes: {
  35655. height: math.unit(1.69, "meters"),
  35656. name: "Spikes",
  35657. image: {
  35658. source: "./media/characters/sabrina/spikes.svg"
  35659. }
  35660. },
  35661. stomach: {
  35662. height: math.unit(1.15, "meters"),
  35663. name: "Stomach",
  35664. image: {
  35665. source: "./media/characters/sabrina/stomach.svg"
  35666. }
  35667. },
  35668. tongue: {
  35669. height: math.unit(1.27, "meters"),
  35670. name: "Tongue",
  35671. image: {
  35672. source: "./media/characters/sabrina/tongue.svg"
  35673. }
  35674. },
  35675. wingDorsal: {
  35676. height: math.unit(4.85, "meters"),
  35677. name: "Wing (Dorsal)",
  35678. image: {
  35679. source: "./media/characters/sabrina/wing-dorsal.svg"
  35680. }
  35681. },
  35682. wingVentral: {
  35683. height: math.unit(4.85, "meters"),
  35684. name: "Wing (Ventral)",
  35685. image: {
  35686. source: "./media/characters/sabrina/wing-ventral.svg"
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(5, "meters"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35700. {
  35701. frontMaid: {
  35702. height: math.unit(5 + 5/12, "feet"),
  35703. weight: math.unit(130, "lb"),
  35704. name: "Front (Maid)",
  35705. image: {
  35706. source: "./media/characters/midnight-tales/front-maid.svg",
  35707. extra: 489/454,
  35708. bottom: 61/550
  35709. }
  35710. },
  35711. frontFormal: {
  35712. height: math.unit(5 + 5/12, "feet"),
  35713. weight: math.unit(130, "lb"),
  35714. name: "Front (Formal)",
  35715. image: {
  35716. source: "./media/characters/midnight-tales/front-formal.svg",
  35717. extra: 489/454,
  35718. bottom: 61/550
  35719. }
  35720. },
  35721. back: {
  35722. height: math.unit(5 + 5/12, "feet"),
  35723. weight: math.unit(130, "lb"),
  35724. name: "Back",
  35725. image: {
  35726. source: "./media/characters/midnight-tales/back.svg",
  35727. extra: 498/456,
  35728. bottom: 33/531
  35729. }
  35730. },
  35731. frontBeast: {
  35732. height: math.unit(40, "feet"),
  35733. weight: math.unit(64000, "lb"),
  35734. name: "Front (Beast)",
  35735. image: {
  35736. source: "./media/characters/midnight-tales/front-beast.svg",
  35737. extra: 927/860,
  35738. bottom: 53/980
  35739. }
  35740. },
  35741. backBeast: {
  35742. height: math.unit(40, "feet"),
  35743. weight: math.unit(64000, "lb"),
  35744. name: "Back (Beast)",
  35745. image: {
  35746. source: "./media/characters/midnight-tales/back-beast.svg",
  35747. extra: 929/855,
  35748. bottom: 16/945
  35749. }
  35750. },
  35751. footBeast: {
  35752. height: math.unit(6.7, "feet"),
  35753. name: "Foot (Beast)",
  35754. image: {
  35755. source: "./media/characters/midnight-tales/foot-beast.svg"
  35756. }
  35757. },
  35758. headBeast: {
  35759. height: math.unit(8, "feet"),
  35760. name: "Head (Beast)",
  35761. image: {
  35762. source: "./media/characters/midnight-tales/head-beast.svg"
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(5 + 5 / 12, "feet"),
  35770. default: true
  35771. },
  35772. {
  35773. name: "Macro",
  35774. height: math.unit(25, "feet")
  35775. },
  35776. ]
  35777. ))
  35778. characterMakers.push(() => makeCharacter(
  35779. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35780. {
  35781. front: {
  35782. height: math.unit(5 + 10/12, "feet"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/argon/front.svg",
  35786. extra: 2009/1935,
  35787. bottom: 118/2127
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(5 + 10/12, "feet"),
  35792. name: "Back",
  35793. image: {
  35794. source: "./media/characters/argon/back.svg",
  35795. extra: 2047/1992,
  35796. bottom: 20/2067
  35797. }
  35798. },
  35799. frontDressed: {
  35800. height: math.unit(5 + 10/12, "feet"),
  35801. name: "Front (Dressed)",
  35802. image: {
  35803. source: "./media/characters/argon/front-dressed.svg",
  35804. extra: 2009/1935,
  35805. bottom: 118/2127
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(5 + 10/12, "feet"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35819. {
  35820. front: {
  35821. height: math.unit(8 + 6/12, "feet"),
  35822. weight: math.unit(1150, "lb"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/kichi/front.svg",
  35826. extra: 1267/1164,
  35827. bottom: 61/1328
  35828. }
  35829. },
  35830. back: {
  35831. height: math.unit(8 + 6/12, "feet"),
  35832. weight: math.unit(1150, "lb"),
  35833. name: "Back",
  35834. image: {
  35835. source: "./media/characters/kichi/back.svg",
  35836. extra: 1273/1166,
  35837. bottom: 33/1306
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(8 + 6/12, "feet"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35851. {
  35852. front: {
  35853. height: math.unit(6, "feet"),
  35854. weight: math.unit(210, "lb"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/manetel-greyscale/front.svg",
  35858. extra: 350/312,
  35859. bottom: 8/358
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Micro",
  35866. height: math.unit(2, "inches")
  35867. },
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(6, "feet"),
  35871. default: true
  35872. },
  35873. {
  35874. name: "Minimacro",
  35875. height: math.unit(17, "feet")
  35876. },
  35877. {
  35878. name: "Macro",
  35879. height: math.unit(117, "feet")
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35885. {
  35886. side: {
  35887. height: math.unit(5 + 1/12, "feet"),
  35888. weight: math.unit(418, "lb"),
  35889. name: "Side",
  35890. image: {
  35891. source: "./media/characters/softpurr/side.svg",
  35892. extra: 1993/1945,
  35893. bottom: 134/2127
  35894. }
  35895. },
  35896. front: {
  35897. height: math.unit(5 + 1/12, "feet"),
  35898. weight: math.unit(418, "lb"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/softpurr/front.svg",
  35902. extra: 1950/1856,
  35903. bottom: 174/2124
  35904. }
  35905. },
  35906. paw: {
  35907. height: math.unit(1, "feet"),
  35908. name: "Paw",
  35909. image: {
  35910. source: "./media/characters/softpurr/paw.svg"
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(5 + 1/12, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35924. {
  35925. front: {
  35926. height: math.unit(260, "meters"),
  35927. name: "Front",
  35928. image: {
  35929. source: "./media/characters/anahita/front.svg",
  35930. extra: 665/635,
  35931. bottom: 89/754
  35932. }
  35933. },
  35934. },
  35935. [
  35936. {
  35937. name: "Macro",
  35938. height: math.unit(260, "meters"),
  35939. default: true
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(4 + 10/12, "feet"),
  35948. weight: math.unit(160, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/chip-mouse/front.svg",
  35952. extra: 3528/3408,
  35953. bottom: 0/3528
  35954. }
  35955. },
  35956. frontNsfw: {
  35957. height: math.unit(4 + 10/12, "feet"),
  35958. weight: math.unit(160, "lb"),
  35959. name: "Front (NSFW)",
  35960. image: {
  35961. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35962. extra: 3528/3408,
  35963. bottom: 0/3528
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(4 + 10/12, "feet"),
  35971. default: true
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35977. {
  35978. side: {
  35979. height: math.unit(10, "feet"),
  35980. weight: math.unit(14000, "lb"),
  35981. name: "Side",
  35982. image: {
  35983. source: "./media/characters/kremm/side.svg",
  35984. extra: 1390/1053,
  35985. bottom: 90/1480
  35986. }
  35987. },
  35988. gut: {
  35989. height: math.unit(5.8, "feet"),
  35990. name: "Gut",
  35991. image: {
  35992. source: "./media/characters/kremm/gut.svg"
  35993. }
  35994. },
  35995. ass: {
  35996. height: math.unit(6.1, "feet"),
  35997. name: "Ass",
  35998. image: {
  35999. source: "./media/characters/kremm/ass.svg"
  36000. }
  36001. },
  36002. jaws: {
  36003. height: math.unit(2.2, "feet"),
  36004. name: "Jaws",
  36005. image: {
  36006. source: "./media/characters/kremm/jaws.svg"
  36007. }
  36008. },
  36009. dick: {
  36010. height: math.unit(4.26, "feet"),
  36011. name: "Dick",
  36012. image: {
  36013. source: "./media/characters/kremm/dick.svg"
  36014. }
  36015. },
  36016. },
  36017. [
  36018. {
  36019. name: "Normal",
  36020. height: math.unit(10, "feet"),
  36021. default: true
  36022. },
  36023. ]
  36024. ))
  36025. characterMakers.push(() => makeCharacter(
  36026. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36027. {
  36028. front: {
  36029. height: math.unit(30, "stories"),
  36030. name: "Front",
  36031. image: {
  36032. source: "./media/characters/kai/front.svg",
  36033. extra: 1892/1718,
  36034. bottom: 162/2054
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Macro",
  36041. height: math.unit(30, "stories"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(6 + 4/12, "feet"),
  36051. weight: math.unit(145, "lb"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/sykes/front.svg",
  36055. extra: 1321 / 1187,
  36056. bottom: 66 / 1387
  36057. }
  36058. },
  36059. back: {
  36060. height: math.unit(6 + 4/12, "feet"),
  36061. weight: math.unit(145, "lb"),
  36062. name: "Back",
  36063. image: {
  36064. source: "./media/characters/sykes/back.svg",
  36065. extra: 1326/1181,
  36066. bottom: 31/1357
  36067. }
  36068. },
  36069. traditionalOutfit: {
  36070. height: math.unit(6 + 4/12, "feet"),
  36071. weight: math.unit(145, "lb"),
  36072. name: "Traditional Outfit",
  36073. image: {
  36074. source: "./media/characters/sykes/traditional-outfit.svg",
  36075. extra: 1321 / 1187,
  36076. bottom: 66 / 1387
  36077. }
  36078. },
  36079. adventureOutfit: {
  36080. height: math.unit(6 + 4/12, "feet"),
  36081. weight: math.unit(145, "lb"),
  36082. name: "Adventure Outfit",
  36083. image: {
  36084. source: "./media/characters/sykes/adventure-outfit.svg",
  36085. extra: 1321 / 1187,
  36086. bottom: 66 / 1387
  36087. }
  36088. },
  36089. handLeft: {
  36090. height: math.unit(0.9, "feet"),
  36091. name: "Hand (Left)",
  36092. image: {
  36093. source: "./media/characters/sykes/hand-left.svg"
  36094. }
  36095. },
  36096. handRight: {
  36097. height: math.unit(0.839, "feet"),
  36098. name: "Hand (Right)",
  36099. image: {
  36100. source: "./media/characters/sykes/hand-right.svg"
  36101. }
  36102. },
  36103. leftFoot: {
  36104. height: math.unit(1.2, "feet"),
  36105. name: "Foot (Left)",
  36106. image: {
  36107. source: "./media/characters/sykes/foot-left.svg"
  36108. }
  36109. },
  36110. rightFoot: {
  36111. height: math.unit(1.2, "feet"),
  36112. name: "Foot (Right)",
  36113. image: {
  36114. source: "./media/characters/sykes/foot-right.svg"
  36115. }
  36116. },
  36117. maw: {
  36118. height: math.unit(1.93, "feet"),
  36119. name: "Maw",
  36120. image: {
  36121. source: "./media/characters/sykes/maw.svg"
  36122. }
  36123. },
  36124. teeth: {
  36125. height: math.unit(0.51, "feet"),
  36126. name: "Teeth",
  36127. image: {
  36128. source: "./media/characters/sykes/teeth.svg"
  36129. }
  36130. },
  36131. tongue: {
  36132. height: math.unit(2.13, "feet"),
  36133. name: "Tongue",
  36134. image: {
  36135. source: "./media/characters/sykes/tongue.svg"
  36136. }
  36137. },
  36138. uvula: {
  36139. height: math.unit(0.16, "feet"),
  36140. name: "Uvula",
  36141. image: {
  36142. source: "./media/characters/sykes/uvula.svg"
  36143. }
  36144. },
  36145. collar: {
  36146. height: math.unit(0.287, "feet"),
  36147. name: "Collar",
  36148. image: {
  36149. source: "./media/characters/sykes/collar.svg"
  36150. }
  36151. },
  36152. tail: {
  36153. height: math.unit(3.8, "feet"),
  36154. name: "Tail",
  36155. image: {
  36156. source: "./media/characters/sykes/tail.svg"
  36157. }
  36158. },
  36159. },
  36160. [
  36161. {
  36162. name: "Shrunken",
  36163. height: math.unit(5, "inches")
  36164. },
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(6 + 4 / 12, "feet"),
  36168. default: true
  36169. },
  36170. {
  36171. name: "Big",
  36172. height: math.unit(15, "feet")
  36173. },
  36174. ]
  36175. ))
  36176. characterMakers.push(() => makeCharacter(
  36177. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36178. {
  36179. front: {
  36180. height: math.unit(5 + 8/12, "feet"),
  36181. weight: math.unit(190, "lb"),
  36182. name: "Front",
  36183. image: {
  36184. source: "./media/characters/oven-otter/front.svg",
  36185. extra: 1809/1740,
  36186. bottom: 181/1990
  36187. }
  36188. },
  36189. back: {
  36190. height: math.unit(5 + 8/12, "feet"),
  36191. weight: math.unit(190, "lb"),
  36192. name: "Back",
  36193. image: {
  36194. source: "./media/characters/oven-otter/back.svg",
  36195. extra: 1709/1635,
  36196. bottom: 118/1827
  36197. }
  36198. },
  36199. hand: {
  36200. height: math.unit(1.07, "feet"),
  36201. name: "Hand",
  36202. image: {
  36203. source: "./media/characters/oven-otter/hand.svg"
  36204. }
  36205. },
  36206. beans: {
  36207. height: math.unit(1.74, "feet"),
  36208. name: "Beans",
  36209. image: {
  36210. source: "./media/characters/oven-otter/beans.svg"
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Micro",
  36217. height: math.unit(0.5, "inches")
  36218. },
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(5 + 8/12, "feet"),
  36222. default: true
  36223. },
  36224. {
  36225. name: "Macro",
  36226. height: math.unit(250, "feet")
  36227. },
  36228. {
  36229. name: "Really High",
  36230. height: math.unit(420, "feet")
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(5, "meters"),
  36239. weight: math.unit(292000000000000, "kg"),
  36240. name: "Front",
  36241. image: {
  36242. source: "./media/characters/devourer/front.svg",
  36243. extra: 1800/1733,
  36244. bottom: 211/2011
  36245. }
  36246. },
  36247. maw: {
  36248. height: math.unit(1.1, "meter"),
  36249. name: "Maw",
  36250. image: {
  36251. source: "./media/characters/devourer/maw.svg"
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Small",
  36258. height: math.unit(3, "meters")
  36259. },
  36260. {
  36261. name: "Large",
  36262. height: math.unit(5, "meters"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36269. {
  36270. front: {
  36271. height: math.unit(6, "feet"),
  36272. weight: math.unit(400, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/ellarby/front.svg",
  36276. extra: 1909/1763,
  36277. bottom: 80/1989
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(6, "feet"),
  36282. weight: math.unit(400, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/ellarby/back.svg",
  36286. extra: 1914/1784,
  36287. bottom: 172/2086
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Mischief",
  36294. height: math.unit(18, "inches")
  36295. },
  36296. {
  36297. name: "Trouble",
  36298. height: math.unit(12, "feet")
  36299. },
  36300. {
  36301. name: "Havoc",
  36302. height: math.unit(200, "feet"),
  36303. default: true
  36304. },
  36305. {
  36306. name: "Pandemonium",
  36307. height: math.unit(1, "mile")
  36308. },
  36309. {
  36310. name: "Catastrophe",
  36311. height: math.unit(100, "miles")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36317. {
  36318. front: {
  36319. height: math.unit(4.7, "meters"),
  36320. weight: math.unit(6500, "kg"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/vex/front.svg",
  36324. extra: 1288/1140,
  36325. bottom: 100/1388
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(4.7, "meters"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36339. {
  36340. normal: {
  36341. height: math.unit(6, "feet"),
  36342. weight: math.unit(350, "lb"),
  36343. name: "Normal",
  36344. image: {
  36345. source: "./media/characters/teshy/normal.svg",
  36346. extra: 1795/1735,
  36347. bottom: 16/1811
  36348. }
  36349. },
  36350. monsterFront: {
  36351. height: math.unit(12, "feet"),
  36352. weight: math.unit(4700, "lb"),
  36353. name: "Monster (Front)",
  36354. image: {
  36355. source: "./media/characters/teshy/monster-front.svg",
  36356. extra: 2042/2034,
  36357. bottom: 128/2170
  36358. }
  36359. },
  36360. monsterSide: {
  36361. height: math.unit(12, "feet"),
  36362. weight: math.unit(4700, "lb"),
  36363. name: "Monster (Side)",
  36364. image: {
  36365. source: "./media/characters/teshy/monster-side.svg",
  36366. extra: 2067/2056,
  36367. bottom: 70/2137
  36368. }
  36369. },
  36370. monsterBack: {
  36371. height: math.unit(12, "feet"),
  36372. weight: math.unit(4700, "lb"),
  36373. name: "Monster (Back)",
  36374. image: {
  36375. source: "./media/characters/teshy/monster-back.svg",
  36376. extra: 1921/1914,
  36377. bottom: 171/2092
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(6, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(6, "feet"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/ramey/front.svg",
  36397. extra: 790/787,
  36398. bottom: 27/817
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Normal",
  36405. height: math.unit(6, "feet"),
  36406. default: true
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36412. {
  36413. front: {
  36414. height: math.unit(5 + 5/12, "feet"),
  36415. weight: math.unit(120, "lb"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/phirae/front.svg",
  36419. extra: 2491/2436,
  36420. bottom: 38/2529
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(5 + 5/12, "feet"),
  36428. default: true
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36434. {
  36435. front: {
  36436. height: math.unit(5 + 3/12, "feet"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/stagglas/front.svg",
  36440. extra: 962/882,
  36441. bottom: 53/1015
  36442. }
  36443. },
  36444. feral: {
  36445. height: math.unit(335, "cm"),
  36446. name: "Feral",
  36447. image: {
  36448. source: "./media/characters/stagglas/feral.svg",
  36449. extra: 1732/1090,
  36450. bottom: 48/1780
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(5 + 3/12, "feet"),
  36458. default: true
  36459. },
  36460. ]
  36461. ))
  36462. characterMakers.push(() => makeCharacter(
  36463. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36464. {
  36465. front: {
  36466. height: math.unit(5 + 4/12, "feet"),
  36467. weight: math.unit(145, "lb"),
  36468. name: "Front",
  36469. image: {
  36470. source: "./media/characters/starra/front.svg",
  36471. extra: 1790/1691,
  36472. bottom: 91/1881
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(5 + 4/12, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(2.2, "meters"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36492. extra: 1248/972,
  36493. bottom: 38/1286
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(2.2, "meters"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36507. {
  36508. side: {
  36509. height: math.unit(8 + 2/12, "feet"),
  36510. weight: math.unit(1240, "lb"),
  36511. name: "Side",
  36512. image: {
  36513. source: "./media/characters/mika-valentine/side.svg",
  36514. extra: 2670/2501,
  36515. bottom: 250/2920
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Normal",
  36522. height: math.unit(8 + 2/12, "feet"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(7 + 2/12, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/xoltol/front.svg",
  36535. extra: 2212/2124,
  36536. bottom: 84/2296
  36537. }
  36538. },
  36539. side: {
  36540. height: math.unit(7 + 2/12, "feet"),
  36541. name: "Side",
  36542. image: {
  36543. source: "./media/characters/xoltol/side.svg",
  36544. extra: 2273/2197,
  36545. bottom: 26/2299
  36546. }
  36547. },
  36548. hand: {
  36549. height: math.unit(2.5, "feet"),
  36550. name: "Hand",
  36551. image: {
  36552. source: "./media/characters/xoltol/hand.svg"
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Small-ish",
  36559. height: math.unit(5 + 11/12, "feet")
  36560. },
  36561. {
  36562. name: "Normal",
  36563. height: math.unit(7 + 2/12, "feet")
  36564. },
  36565. {
  36566. name: "\"Macro\"",
  36567. height: math.unit(14 + 9/12, "feet"),
  36568. default: true
  36569. },
  36570. {
  36571. name: "Alternate Height",
  36572. height: math.unit(20, "feet")
  36573. },
  36574. {
  36575. name: "Actually Macro",
  36576. height: math.unit(100, "feet")
  36577. },
  36578. ]
  36579. ))
  36580. characterMakers.push(() => makeCharacter(
  36581. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36582. {
  36583. front: {
  36584. height: math.unit(5 + 2/12, "feet"),
  36585. name: "Front",
  36586. image: {
  36587. source: "./media/characters/kotetsu-redwood/front.svg",
  36588. extra: 1053/942,
  36589. bottom: 60/1113
  36590. }
  36591. },
  36592. },
  36593. [
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(5 + 2/12, "feet"),
  36597. default: true
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36603. {
  36604. front: {
  36605. height: math.unit(2.4, "meters"),
  36606. weight: math.unit(125, "kg"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/lilith/front.svg",
  36610. extra: 1590/1513,
  36611. bottom: 203/1793
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Humanoid",
  36618. height: math.unit(2.4, "meters")
  36619. },
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(6, "meters"),
  36623. default: true
  36624. },
  36625. {
  36626. name: "Largest",
  36627. height: math.unit(55, "meters")
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(8 + 4/12, "feet"),
  36636. weight: math.unit(535, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/beh'kah-bolger/front.svg",
  36640. extra: 1660/1603,
  36641. bottom: 37/1697
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Normal",
  36648. height: math.unit(8 + 4/12, "feet"),
  36649. default: true
  36650. },
  36651. {
  36652. name: "Kaiju",
  36653. height: math.unit(250, "feet")
  36654. },
  36655. {
  36656. name: "Still Growing",
  36657. height: math.unit(10, "miles")
  36658. },
  36659. {
  36660. name: "Continental",
  36661. height: math.unit(5000, "miles")
  36662. },
  36663. {
  36664. name: "Final Form",
  36665. height: math.unit(2500000, "miles")
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(7 + 2/12, "feet"),
  36674. weight: math.unit(230, "kg"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/tatyana-milewska/front.svg",
  36678. extra: 1199/1150,
  36679. bottom: 86/1285
  36680. }
  36681. },
  36682. },
  36683. [
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(7 + 2/12, "feet"),
  36687. default: true
  36688. },
  36689. {
  36690. name: "Big",
  36691. height: math.unit(12, "feet")
  36692. },
  36693. {
  36694. name: "Minimacro",
  36695. height: math.unit(20, "feet")
  36696. },
  36697. {
  36698. name: "Macro",
  36699. height: math.unit(120, "feet")
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(7 + 8/12, "feet"),
  36708. weight: math.unit(152, "kg"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/helen-arri/front.svg",
  36712. extra: 440/423,
  36713. bottom: 14/454
  36714. }
  36715. },
  36716. back: {
  36717. height: math.unit(7 + 8/12, "feet"),
  36718. weight: math.unit(152, "kg"),
  36719. name: "Back",
  36720. image: {
  36721. source: "./media/characters/helen-arri/back.svg",
  36722. extra: 443/426,
  36723. bottom: 8/451
  36724. }
  36725. },
  36726. },
  36727. [
  36728. {
  36729. name: "Normal",
  36730. height: math.unit(7 + 8/12, "feet"),
  36731. default: true
  36732. },
  36733. {
  36734. name: "Big",
  36735. height: math.unit(14, "feet")
  36736. },
  36737. {
  36738. name: "Minimacro",
  36739. height: math.unit(24, "feet")
  36740. },
  36741. {
  36742. name: "Macro",
  36743. height: math.unit(140, "feet")
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(6, "meters"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/ehanu-rehu/front.svg",
  36755. extra: 1800/1800,
  36756. bottom: 59/1859
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(6, "meters"),
  36764. default: true
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(7 + 3/12, "feet"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/renholder/front.svg",
  36776. extra: 3096/2960,
  36777. bottom: 250/3346
  36778. }
  36779. },
  36780. },
  36781. [
  36782. {
  36783. name: "Normal Bat",
  36784. height: math.unit(7 + 3/12, "feet"),
  36785. default: true
  36786. },
  36787. {
  36788. name: "Slightly Tall Bat",
  36789. height: math.unit(100, "feet")
  36790. },
  36791. {
  36792. name: "Big Bat",
  36793. height: math.unit(1000, "feet")
  36794. },
  36795. {
  36796. name: "City-Sized Bat",
  36797. height: math.unit(200000, "feet")
  36798. },
  36799. {
  36800. name: "Bigger Bat",
  36801. height: math.unit(10000, "miles")
  36802. },
  36803. {
  36804. name: "Solar Sized Bat",
  36805. height: math.unit(100, "AU")
  36806. },
  36807. {
  36808. name: "Galactic Bat",
  36809. height: math.unit(200000, "lightyears")
  36810. },
  36811. {
  36812. name: "Universally Known Bat",
  36813. height: math.unit(1, "universe")
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(6 + 11/12, "feet"),
  36822. weight: math.unit(250, "lb"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/cookiecat/front.svg",
  36826. extra: 893/827,
  36827. bottom: 14/907
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Micro",
  36834. height: math.unit(3, "inches")
  36835. },
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(6 + 11/12, "feet"),
  36839. default: true
  36840. },
  36841. {
  36842. name: "Macro",
  36843. height: math.unit(100, "feet")
  36844. },
  36845. {
  36846. name: "Macro+",
  36847. height: math.unit(404, "feet")
  36848. },
  36849. {
  36850. name: "Megamacro",
  36851. height: math.unit(165, "miles")
  36852. },
  36853. {
  36854. name: "Planetary",
  36855. height: math.unit(4600, "miles")
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(10 + 3/12, "feet"),
  36864. weight: math.unit(1500, "lb"),
  36865. name: "Front",
  36866. image: {
  36867. source: "./media/characters/tux-kusanagi/front.svg",
  36868. extra: 944/840,
  36869. bottom: 39/983
  36870. }
  36871. },
  36872. back: {
  36873. height: math.unit(10 + 3/12, "feet"),
  36874. weight: math.unit(1500, "lb"),
  36875. name: "Back",
  36876. image: {
  36877. source: "./media/characters/tux-kusanagi/back.svg",
  36878. extra: 941/842,
  36879. bottom: 28/969
  36880. }
  36881. },
  36882. rump: {
  36883. height: math.unit(5.25, "feet"),
  36884. name: "Rump",
  36885. image: {
  36886. source: "./media/characters/tux-kusanagi/rump.svg"
  36887. }
  36888. },
  36889. beak: {
  36890. height: math.unit(1.54, "feet"),
  36891. name: "Beak",
  36892. image: {
  36893. source: "./media/characters/tux-kusanagi/beak.svg"
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(10 + 3/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(58, "feet"),
  36910. weight: math.unit(200, "tons"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/uzarmazari/front.svg",
  36914. extra: 1575/1455,
  36915. bottom: 152/1727
  36916. }
  36917. },
  36918. back: {
  36919. height: math.unit(58, "feet"),
  36920. weight: math.unit(200, "tons"),
  36921. name: "Back",
  36922. image: {
  36923. source: "./media/characters/uzarmazari/back.svg",
  36924. extra: 1585/1510,
  36925. bottom: 157/1742
  36926. }
  36927. },
  36928. head: {
  36929. height: math.unit(26, "feet"),
  36930. name: "Head",
  36931. image: {
  36932. source: "./media/characters/uzarmazari/head.svg"
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(58, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36946. {
  36947. side: {
  36948. height: math.unit(15, "feet"),
  36949. name: "Side",
  36950. image: {
  36951. source: "./media/characters/akitu/side.svg",
  36952. extra: 1421/1321,
  36953. bottom: 157/1578
  36954. }
  36955. },
  36956. front: {
  36957. height: math.unit(15, "feet"),
  36958. name: "Front",
  36959. image: {
  36960. source: "./media/characters/akitu/front.svg",
  36961. extra: 1435/1326,
  36962. bottom: 232/1667
  36963. }
  36964. },
  36965. },
  36966. [
  36967. {
  36968. name: "Normal",
  36969. height: math.unit(15, "feet"),
  36970. default: true
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(10 + 8/12, "feet"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/azalie-croixland/front.svg",
  36982. extra: 1972/1856,
  36983. bottom: 31/2003
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Original Height",
  36990. height: math.unit(5 + 4/12, "feet")
  36991. },
  36992. {
  36993. name: "Normal Height",
  36994. height: math.unit(10 + 8/12, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37001. {
  37002. side: {
  37003. height: math.unit(7 + 1/12, "feet"),
  37004. weight: math.unit(245, "lb"),
  37005. name: "Side",
  37006. image: {
  37007. source: "./media/characters/kavus-kazian/side.svg",
  37008. extra: 349/342,
  37009. bottom: 15/364
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(7 + 1/12, "feet"),
  37017. default: true
  37018. },
  37019. ]
  37020. ))
  37021. characterMakers.push(() => makeCharacter(
  37022. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37023. {
  37024. normalFront: {
  37025. height: math.unit(5 + 11/12, "feet"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/moonlight-rose/normal-front.svg",
  37029. extra: 1980/1825,
  37030. bottom: 18/1998
  37031. },
  37032. form: "normal",
  37033. default: true
  37034. },
  37035. normalBack: {
  37036. height: math.unit(5 + 11/12, "feet"),
  37037. name: "Back",
  37038. image: {
  37039. source: "./media/characters/moonlight-rose/normal-back.svg",
  37040. extra: 2010/1839,
  37041. bottom: 10/2020
  37042. },
  37043. form: "normal"
  37044. },
  37045. demonFront: {
  37046. height: math.unit(1.5, "earths"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/moonlight-rose/demon.svg",
  37050. extra: 1400/1294,
  37051. bottom: 45/1445
  37052. },
  37053. form: "demon",
  37054. default: true
  37055. },
  37056. terraFront: {
  37057. height: math.unit(1.5, "earths"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/moonlight-rose/terra.svg"
  37061. },
  37062. form: "terra",
  37063. default: true
  37064. },
  37065. jupiterFront: {
  37066. height: math.unit(69911*2, "km"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37070. extra: 1367/1286,
  37071. bottom: 55/1422
  37072. },
  37073. form: "jupiter",
  37074. default: true
  37075. },
  37076. neptuneFront: {
  37077. height: math.unit(24622*2, "feet"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37081. extra: 1851/1712,
  37082. bottom: 0/1851
  37083. },
  37084. form: "neptune",
  37085. default: true
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "\"Natural\" Height",
  37091. height: math.unit(5 + 11/12, "feet"),
  37092. form: "normal"
  37093. },
  37094. {
  37095. name: "Smallest comfortable size",
  37096. height: math.unit(40, "meters"),
  37097. form: "normal"
  37098. },
  37099. {
  37100. name: "Common size",
  37101. height: math.unit(50, "km"),
  37102. form: "normal",
  37103. default: true
  37104. },
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(1.5, "earths"),
  37108. form: "demon",
  37109. default: true
  37110. },
  37111. {
  37112. name: "Universal",
  37113. height: math.unit(15, "universes"),
  37114. form: "demon"
  37115. },
  37116. {
  37117. name: "Earth",
  37118. height: math.unit(1.5, "earths"),
  37119. form: "terra",
  37120. default: true
  37121. },
  37122. {
  37123. name: "Super Earth",
  37124. height: math.unit(67.5, "earths"),
  37125. form: "terra"
  37126. },
  37127. {
  37128. name: "Doesn't fit in a solar system...",
  37129. height: math.unit(1, "galaxy"),
  37130. form: "terra"
  37131. },
  37132. {
  37133. name: "Saturn",
  37134. height: math.unit(58232*2, "km"),
  37135. form: "jupiter"
  37136. },
  37137. {
  37138. name: "Jupiter",
  37139. height: math.unit(69911*2, "km"),
  37140. form: "jupiter",
  37141. default: true
  37142. },
  37143. {
  37144. name: "HD 100546 b",
  37145. height: math.unit(482938, "km"),
  37146. form: "jupiter"
  37147. },
  37148. {
  37149. name: "Enceladus",
  37150. height: math.unit(513*2, "km"),
  37151. form: "neptune"
  37152. },
  37153. {
  37154. name: "Europe",
  37155. height: math.unit(1560*2, "km"),
  37156. form: "neptune"
  37157. },
  37158. {
  37159. name: "Neptune",
  37160. height: math.unit(24622*2, "km"),
  37161. form: "neptune",
  37162. default: true
  37163. },
  37164. {
  37165. name: "CoRoT-9b",
  37166. height: math.unit(75067*2, "km"),
  37167. form: "neptune"
  37168. },
  37169. ],
  37170. {
  37171. "normal": {
  37172. name: "Normal",
  37173. default: true
  37174. },
  37175. "demon": {
  37176. name: "Demon"
  37177. },
  37178. "terra": {
  37179. name: "Terra"
  37180. },
  37181. "jupiter": {
  37182. name: "Jupiter"
  37183. },
  37184. "neptune": {
  37185. name: "Neptune"
  37186. }
  37187. }
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(16, "feet"),
  37194. weight: math.unit(610, "kg"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/huckle/front.svg",
  37198. extra: 1731/1625,
  37199. bottom: 33/1764
  37200. }
  37201. },
  37202. back: {
  37203. height: math.unit(16, "feet"),
  37204. weight: math.unit(610, "kg"),
  37205. name: "Back",
  37206. image: {
  37207. source: "./media/characters/huckle/back.svg",
  37208. extra: 1738/1651,
  37209. bottom: 37/1775
  37210. }
  37211. },
  37212. laughing: {
  37213. height: math.unit(3.75, "feet"),
  37214. name: "Laughing",
  37215. image: {
  37216. source: "./media/characters/huckle/laughing.svg"
  37217. }
  37218. },
  37219. angry: {
  37220. height: math.unit(4.15, "feet"),
  37221. name: "Angry",
  37222. image: {
  37223. source: "./media/characters/huckle/angry.svg"
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(16, "feet"),
  37231. default: true
  37232. },
  37233. {
  37234. name: "Mini Macro",
  37235. height: math.unit(463, "feet")
  37236. },
  37237. {
  37238. name: "Macro",
  37239. height: math.unit(1680, "meters")
  37240. },
  37241. {
  37242. name: "Mega Macro",
  37243. height: math.unit(175, "km")
  37244. },
  37245. {
  37246. name: "Terra Macro",
  37247. height: math.unit(32, "gigameters")
  37248. },
  37249. {
  37250. name: "Multiverse+",
  37251. height: math.unit(2.56e23, "yottameters")
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(6 + 9/12, "feet"),
  37260. weight: math.unit(280, "lb"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/candy/front.svg",
  37264. extra: 234/217,
  37265. bottom: 11/245
  37266. }
  37267. },
  37268. },
  37269. [
  37270. {
  37271. name: "Really Small",
  37272. height: math.unit(0.1, "nm")
  37273. },
  37274. {
  37275. name: "Micro",
  37276. height: math.unit(2, "inches")
  37277. },
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(6 + 9/12, "feet"),
  37281. default: true
  37282. },
  37283. {
  37284. name: "Small Macro",
  37285. height: math.unit(69, "feet")
  37286. },
  37287. {
  37288. name: "Macro",
  37289. height: math.unit(160, "feet")
  37290. },
  37291. {
  37292. name: "Megamacro",
  37293. height: math.unit(22000, "miles")
  37294. },
  37295. {
  37296. name: "Gigamacro",
  37297. height: math.unit(50000, "miles")
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(4, "feet"),
  37306. weight: math.unit(90, "lb"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/joey-mcdonald/front.svg",
  37310. extra: 1059/852,
  37311. bottom: 33/1092
  37312. }
  37313. },
  37314. back: {
  37315. height: math.unit(4, "feet"),
  37316. weight: math.unit(90, "lb"),
  37317. name: "Back",
  37318. image: {
  37319. source: "./media/characters/joey-mcdonald/back.svg",
  37320. extra: 1077/879,
  37321. bottom: 5/1082
  37322. }
  37323. },
  37324. frontKobold: {
  37325. height: math.unit(4, "feet"),
  37326. weight: math.unit(100, "lb"),
  37327. name: "Front-kobold",
  37328. image: {
  37329. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37330. extra: 1480/1367,
  37331. bottom: 0/1480
  37332. }
  37333. },
  37334. backKobold: {
  37335. height: math.unit(4, "feet"),
  37336. weight: math.unit(100, "lb"),
  37337. name: "Back-kobold",
  37338. image: {
  37339. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37340. extra: 1449/1361,
  37341. bottom: 0/1449
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(4, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(12 + 6/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/kass-lockheed/front.svg",
  37361. extra: 354/343,
  37362. bottom: 9/363
  37363. }
  37364. },
  37365. back: {
  37366. height: math.unit(12 + 6/12, "feet"),
  37367. name: "Back",
  37368. image: {
  37369. source: "./media/characters/kass-lockheed/back.svg",
  37370. extra: 364/352,
  37371. bottom: 3/367
  37372. }
  37373. },
  37374. dick: {
  37375. height: math.unit(3.12, "feet"),
  37376. name: "Dick",
  37377. image: {
  37378. source: "./media/characters/kass-lockheed/dick.svg"
  37379. }
  37380. },
  37381. head: {
  37382. height: math.unit(2.6, "feet"),
  37383. name: "Head",
  37384. image: {
  37385. source: "./media/characters/kass-lockheed/head.svg"
  37386. }
  37387. },
  37388. bleh: {
  37389. height: math.unit(2.85, "feet"),
  37390. name: "Bleh",
  37391. image: {
  37392. source: "./media/characters/kass-lockheed/bleh.svg"
  37393. }
  37394. },
  37395. smug: {
  37396. height: math.unit(2.85, "feet"),
  37397. name: "Smug",
  37398. image: {
  37399. source: "./media/characters/kass-lockheed/smug.svg"
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(12 + 6/12, "feet"),
  37407. default: true
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37413. {
  37414. front: {
  37415. height: math.unit(6 + 2/12, "feet"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/taylor/front.svg",
  37419. extra: 639/495,
  37420. bottom: 12/651
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(6 + 2/12, "feet"),
  37428. default: true
  37429. },
  37430. {
  37431. name: "Big",
  37432. height: math.unit(15, "feet")
  37433. },
  37434. {
  37435. name: "Lorg",
  37436. height: math.unit(80, "feet")
  37437. },
  37438. {
  37439. name: "Too Lorg",
  37440. height: math.unit(120, "feet")
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(15, "feet"),
  37449. name: "Front",
  37450. image: {
  37451. source: "./media/characters/kaizer/front.svg",
  37452. extra: 1612/1436,
  37453. bottom: 43/1655
  37454. }
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(15, "feet"),
  37461. default: true
  37462. },
  37463. ]
  37464. ))
  37465. characterMakers.push(() => makeCharacter(
  37466. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37467. {
  37468. front: {
  37469. height: math.unit(2, "feet"),
  37470. weight: math.unit(30, "lb"),
  37471. name: "Front",
  37472. image: {
  37473. source: "./media/characters/sandy/front.svg",
  37474. extra: 1439/1307,
  37475. bottom: 194/1633
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(2, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(3, "feet"),
  37492. name: "Front",
  37493. image: {
  37494. source: "./media/characters/mellvi/front.svg",
  37495. extra: 1831/1630,
  37496. bottom: 58/1889
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(3, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(5 + 11/12, "feet"),
  37513. weight: math.unit(200, "lb"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/shirou/front.svg",
  37517. extra: 2491/2383,
  37518. bottom: 189/2680
  37519. }
  37520. },
  37521. back: {
  37522. height: math.unit(5 + 11/12, "feet"),
  37523. weight: math.unit(200, "lb"),
  37524. name: "Back",
  37525. image: {
  37526. source: "./media/characters/shirou/back.svg",
  37527. extra: 2554/2450,
  37528. bottom: 76/2630
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(5 + 11/12, "feet"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(6 + 3/12, "feet"),
  37545. weight: math.unit(177, "lb"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/noryu/front.svg",
  37549. extra: 973/885,
  37550. bottom: 10/983
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(6 + 3/12, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(5 + 6/12, "feet"),
  37567. weight: math.unit(170, "lb"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/mevolas-rubenido/front.svg",
  37571. extra: 2109/1901,
  37572. bottom: 96/2205
  37573. }
  37574. },
  37575. },
  37576. [
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(5 + 6/12, "feet"),
  37580. default: true
  37581. },
  37582. ]
  37583. ))
  37584. characterMakers.push(() => makeCharacter(
  37585. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37586. {
  37587. front: {
  37588. height: math.unit(100, "feet"),
  37589. name: "Front",
  37590. image: {
  37591. source: "./media/characters/dee/front.svg",
  37592. extra: 2153/2036,
  37593. bottom: 59/2212
  37594. }
  37595. },
  37596. back: {
  37597. height: math.unit(100, "feet"),
  37598. name: "Back",
  37599. image: {
  37600. source: "./media/characters/dee/back.svg",
  37601. extra: 2183/2058,
  37602. bottom: 75/2258
  37603. }
  37604. },
  37605. foot: {
  37606. height: math.unit(19.43, "feet"),
  37607. name: "Foot",
  37608. image: {
  37609. source: "./media/characters/dee/foot.svg"
  37610. }
  37611. },
  37612. hoof: {
  37613. height: math.unit(20.6, "feet"),
  37614. name: "Hoof",
  37615. image: {
  37616. source: "./media/characters/dee/hoof.svg"
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Macro",
  37623. height: math.unit(100, "feet"),
  37624. default: true
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(5 + 6/12, "feet"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/teh/front.svg",
  37636. extra: 1002/847,
  37637. bottom: 62/1064
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(5 + 6/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37651. {
  37652. side: {
  37653. height: math.unit(6 + 1/12, "feet"),
  37654. weight: math.unit(204, "lb"),
  37655. name: "Side",
  37656. image: {
  37657. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37658. extra: 974/775,
  37659. bottom: 169/1143
  37660. }
  37661. },
  37662. sitting: {
  37663. height: math.unit(6 + 2/12, "feet"),
  37664. weight: math.unit(204, "lb"),
  37665. name: "Sitting",
  37666. image: {
  37667. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37668. extra: 1175/964,
  37669. bottom: 378/1553
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(6 + 1/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(6, "inches"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/tululi/front.svg",
  37689. extra: 1997/1876,
  37690. bottom: 20/2017
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(6, "inches"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(4 + 1/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/star/front.svg",
  37710. extra: 1493/1189,
  37711. bottom: 48/1541
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(4 + 1/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(6 + 3/12, "feet"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/comet/front.svg",
  37731. extra: 1681/1462,
  37732. bottom: 26/1707
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(6 + 3/12, "feet"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37746. {
  37747. front: {
  37748. height: math.unit(950, "feet"),
  37749. name: "Front",
  37750. image: {
  37751. source: "./media/characters/vortex/front.svg",
  37752. extra: 1497/1434,
  37753. bottom: 56/1553
  37754. }
  37755. },
  37756. maw: {
  37757. height: math.unit(285, "feet"),
  37758. name: "Maw",
  37759. image: {
  37760. source: "./media/characters/vortex/maw.svg"
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Macro",
  37767. height: math.unit(950, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(600, "feet"),
  37777. weight: math.unit(0.02, "grams"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/doodle/front.svg",
  37781. extra: 1578/1413,
  37782. bottom: 37/1615
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Macro",
  37789. height: math.unit(600, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(6 + 6/12, "feet"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/jai/front.svg",
  37802. extra: 1645/1534,
  37803. bottom: 115/1760
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(6 + 6/12, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(6 + 8/12, "feet"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/pixel/front.svg",
  37823. extra: 1900/1735,
  37824. bottom: 63/1963
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(6 + 8/12, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37838. {
  37839. back: {
  37840. height: math.unit(4 + 1/12, "feet"),
  37841. weight: math.unit(75, "lb"),
  37842. name: "Back",
  37843. image: {
  37844. source: "./media/characters/rhett/back.svg",
  37845. extra: 930/878,
  37846. bottom: 25/955
  37847. }
  37848. },
  37849. front: {
  37850. height: math.unit(4 + 1/12, "feet"),
  37851. weight: math.unit(75, "lb"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/rhett/front.svg",
  37855. extra: 1682/1586,
  37856. bottom: 92/1774
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Micro",
  37863. height: math.unit(8, "inches")
  37864. },
  37865. {
  37866. name: "Tiny",
  37867. height: math.unit(2, "feet")
  37868. },
  37869. {
  37870. name: "Normal",
  37871. height: math.unit(4 + 1/12, "feet"),
  37872. default: true
  37873. },
  37874. ]
  37875. ))
  37876. characterMakers.push(() => makeCharacter(
  37877. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37878. {
  37879. front: {
  37880. height: math.unit(3 + 3/12, "feet"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/penny/front.svg",
  37884. extra: 1406/1311,
  37885. bottom: 26/1432
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Normal",
  37892. height: math.unit(3 + 3/12, "feet"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(4 + 11/12, "feet"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/monty/front.svg",
  37905. extra: 1479/1209,
  37906. bottom: 0/1479
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(4 + 11/12, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(8 + 4/12, "feet"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/sterling/front.svg",
  37926. extra: 1420/1236,
  37927. bottom: 27/1447
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(8 + 4/12, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(15, "feet"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/marble/front.svg",
  37947. extra: 973/937,
  37948. bottom: 32/1005
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(15, "feet"),
  37956. default: true
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37962. {
  37963. front: {
  37964. height: math.unit(3, "inches"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/powder/front.svg",
  37968. extra: 1504/1334,
  37969. bottom: 518/2022
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Normal",
  37976. height: math.unit(3, "inches"),
  37977. default: true
  37978. },
  37979. ]
  37980. ))
  37981. characterMakers.push(() => makeCharacter(
  37982. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37983. {
  37984. front: {
  37985. height: math.unit(4 + 5/12, "feet"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/joey-raccoon/front.svg",
  37989. extra: 1273/1197,
  37990. bottom: 0/1273
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(4 + 5/12, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(8 + 4/12, "feet"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/vick/front.svg",
  38010. extra: 2187/2118,
  38011. bottom: 47/2234
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(8 + 4/12, "feet"),
  38019. default: true
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(5 + 5/12, "feet"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/mitsy/front.svg",
  38031. extra: 1842/1695,
  38032. bottom: 0/1842
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(5 + 5/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(6 + 3/12, "feet"),
  38049. name: "Front",
  38050. image: {
  38051. source: "./media/characters/silvy/front.svg",
  38052. extra: 1995/1836,
  38053. bottom: 225/2220
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(6 + 3/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(3 + 8/12, "feet"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/rodney/front.svg",
  38073. extra: 1956/1747,
  38074. bottom: 31/1987
  38075. }
  38076. },
  38077. frontDressed: {
  38078. height: math.unit(2.9, "feet"),
  38079. name: "Front (Dressed)",
  38080. image: {
  38081. source: "./media/characters/rodney/front-dressed.svg",
  38082. extra: 1382/1241,
  38083. bottom: 385/1767
  38084. }
  38085. },
  38086. },
  38087. [
  38088. {
  38089. name: "Normal",
  38090. height: math.unit(3 + 8/12, "feet"),
  38091. default: true
  38092. },
  38093. ]
  38094. ))
  38095. characterMakers.push(() => makeCharacter(
  38096. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38097. {
  38098. front: {
  38099. height: math.unit(5 + 9/12, "feet"),
  38100. weight: math.unit(194, "lbs"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/zakail-sudekai/front.svg",
  38104. extra: 2696/2533,
  38105. bottom: 248/2944
  38106. }
  38107. },
  38108. maw: {
  38109. height: math.unit(1.35, "feet"),
  38110. name: "Maw",
  38111. image: {
  38112. source: "./media/characters/zakail-sudekai/maw.svg"
  38113. }
  38114. },
  38115. },
  38116. [
  38117. {
  38118. name: "Normal",
  38119. height: math.unit(5 + 9/12, "feet"),
  38120. default: true
  38121. },
  38122. ]
  38123. ))
  38124. characterMakers.push(() => makeCharacter(
  38125. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38126. {
  38127. front: {
  38128. height: math.unit(8 + 4/12, "feet"),
  38129. weight: math.unit(1200, "lb"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/eleanor/front.svg",
  38133. extra: 1226/1192,
  38134. bottom: 52/1278
  38135. }
  38136. },
  38137. back: {
  38138. height: math.unit(8 + 4/12, "feet"),
  38139. weight: math.unit(1200, "lb"),
  38140. name: "Back",
  38141. image: {
  38142. source: "./media/characters/eleanor/back.svg",
  38143. extra: 1242/1184,
  38144. bottom: 60/1302
  38145. }
  38146. },
  38147. head: {
  38148. height: math.unit(2.62, "feet"),
  38149. name: "Head",
  38150. image: {
  38151. source: "./media/characters/eleanor/head.svg"
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(8 + 4/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(8 + 4/12, "feet"),
  38168. weight: math.unit(750, "lb"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/tanya/front.svg",
  38172. extra: 1749/1615,
  38173. bottom: 33/1782
  38174. }
  38175. },
  38176. },
  38177. [
  38178. {
  38179. name: "Normal",
  38180. height: math.unit(8 + 4/12, "feet"),
  38181. default: true
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38187. {
  38188. front: {
  38189. height: math.unit(5, "feet"),
  38190. weight: math.unit(225, "lb"),
  38191. name: "Front",
  38192. image: {
  38193. source: "./media/characters/cindy/front.svg",
  38194. extra: 1320/1250,
  38195. bottom: 42/1362
  38196. }
  38197. },
  38198. frontDressed: {
  38199. height: math.unit(5, "feet"),
  38200. weight: math.unit(225, "lb"),
  38201. name: "Front (Dressed)",
  38202. image: {
  38203. source: "./media/characters/cindy/front-dressed.svg",
  38204. extra: 1320/1250,
  38205. bottom: 42/1362
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(5, "feet"),
  38210. weight: math.unit(225, "lb"),
  38211. name: "Back",
  38212. image: {
  38213. source: "./media/characters/cindy/back.svg",
  38214. extra: 1384/1346,
  38215. bottom: 14/1398
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(5, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(6 + 9/12, "feet"),
  38232. weight: math.unit(440, "lb"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/wilbur-owen/front.svg",
  38236. extra: 1575/1448,
  38237. bottom: 72/1647
  38238. }
  38239. },
  38240. back: {
  38241. height: math.unit(6 + 9/12, "feet"),
  38242. weight: math.unit(440, "lb"),
  38243. name: "Back",
  38244. image: {
  38245. source: "./media/characters/wilbur-owen/back.svg",
  38246. extra: 1578/1445,
  38247. bottom: 36/1614
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6 + 9/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(6 + 5/12, "feet"),
  38264. weight: math.unit(650, "lb"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/keegan/front.svg",
  38268. extra: 2387/2198,
  38269. bottom: 33/2420
  38270. }
  38271. },
  38272. side: {
  38273. height: math.unit(6 + 5/12, "feet"),
  38274. weight: math.unit(650, "lb"),
  38275. name: "Side",
  38276. image: {
  38277. source: "./media/characters/keegan/side.svg",
  38278. extra: 2390/2202,
  38279. bottom: 47/2437
  38280. }
  38281. },
  38282. back: {
  38283. height: math.unit(6 + 5/12, "feet"),
  38284. weight: math.unit(650, "lb"),
  38285. name: "Back",
  38286. image: {
  38287. source: "./media/characters/keegan/back.svg",
  38288. extra: 2418/2268,
  38289. bottom: 15/2433
  38290. }
  38291. },
  38292. frontSfw: {
  38293. height: math.unit(6 + 5/12, "feet"),
  38294. weight: math.unit(650, "lb"),
  38295. name: "Front (SFW)",
  38296. image: {
  38297. source: "./media/characters/keegan/front-sfw.svg",
  38298. extra: 2387/2198,
  38299. bottom: 33/2420
  38300. }
  38301. },
  38302. beans: {
  38303. height: math.unit(1.85, "feet"),
  38304. name: "Beans",
  38305. image: {
  38306. source: "./media/characters/keegan/beans.svg"
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(6 + 5/12, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(9, "feet"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/colton/front.svg",
  38326. extra: 1589/1326,
  38327. bottom: 139/1728
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(9, "feet"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(2 + 9/12, "feet"),
  38344. name: "Front",
  38345. image: {
  38346. source: "./media/characters/bora/front.svg",
  38347. extra: 1265/1250,
  38348. bottom: 24/1289
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(2 + 9/12, "feet"),
  38356. default: true
  38357. },
  38358. ]
  38359. ))
  38360. characterMakers.push(() => makeCharacter(
  38361. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38362. {
  38363. front: {
  38364. height: math.unit(8, "feet"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/myu-myu/front.svg",
  38368. extra: 1949/1857,
  38369. bottom: 90/2039
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(8, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Big",
  38381. height: math.unit(15, "feet")
  38382. },
  38383. {
  38384. name: "BIG",
  38385. height: math.unit(25, "feet")
  38386. },
  38387. ]
  38388. ))
  38389. characterMakers.push(() => makeCharacter(
  38390. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38391. {
  38392. side: {
  38393. height: math.unit(7 + 5/12, "feet"),
  38394. weight: math.unit(2800, "lb"),
  38395. name: "Side",
  38396. image: {
  38397. source: "./media/characters/haloren/side.svg",
  38398. extra: 1793/409,
  38399. bottom: 59/1852
  38400. }
  38401. },
  38402. frontPaw: {
  38403. height: math.unit(2.36, "feet"),
  38404. name: "Front paw",
  38405. image: {
  38406. source: "./media/characters/haloren/front-paw.svg"
  38407. }
  38408. },
  38409. hindPaw: {
  38410. height: math.unit(3.18, "feet"),
  38411. name: "Hind paw",
  38412. image: {
  38413. source: "./media/characters/haloren/hind-paw.svg"
  38414. }
  38415. },
  38416. maw: {
  38417. height: math.unit(5.05, "feet"),
  38418. name: "Maw",
  38419. image: {
  38420. source: "./media/characters/haloren/maw.svg"
  38421. }
  38422. },
  38423. dick: {
  38424. height: math.unit(2.90, "feet"),
  38425. name: "Dick",
  38426. image: {
  38427. source: "./media/characters/haloren/dick.svg"
  38428. }
  38429. },
  38430. },
  38431. [
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(7 + 5/12, "feet"),
  38435. default: true
  38436. },
  38437. {
  38438. name: "Enhanced",
  38439. height: math.unit(14 + 3/12, "feet")
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(171, "cm"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/kimmy/front.svg",
  38451. extra: 1491/1435,
  38452. bottom: 53/1544
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Small",
  38459. height: math.unit(9, "cm")
  38460. },
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(171, "cm"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(8, "feet"),
  38473. weight: math.unit(300, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/galeboomer/front.svg",
  38477. extra: 4651/4415,
  38478. bottom: 162/4813
  38479. }
  38480. },
  38481. back: {
  38482. height: math.unit(8, "feet"),
  38483. weight: math.unit(300, "lb"),
  38484. name: "Back",
  38485. image: {
  38486. source: "./media/characters/galeboomer/back.svg",
  38487. extra: 4544/4314,
  38488. bottom: 16/4560
  38489. }
  38490. },
  38491. frontAlt: {
  38492. height: math.unit(8, "feet"),
  38493. weight: math.unit(300, "lb"),
  38494. name: "Front (Alt)",
  38495. image: {
  38496. source: "./media/characters/galeboomer/front-alt.svg",
  38497. extra: 4458/4228,
  38498. bottom: 68/4526
  38499. }
  38500. },
  38501. maw: {
  38502. height: math.unit(1.2, "feet"),
  38503. name: "Maw",
  38504. image: {
  38505. source: "./media/characters/galeboomer/maw.svg"
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(8, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(5 + 9/12, "feet"),
  38522. weight: math.unit(120, "lb"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/chyr/front.svg",
  38526. extra: 1323/1254,
  38527. bottom: 63/1386
  38528. }
  38529. },
  38530. back: {
  38531. height: math.unit(5 + 9/12, "feet"),
  38532. weight: math.unit(120, "lb"),
  38533. name: "Back",
  38534. image: {
  38535. source: "./media/characters/chyr/back.svg",
  38536. extra: 1323/1252,
  38537. bottom: 48/1371
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(5 + 9/12, "feet"),
  38545. default: true
  38546. },
  38547. ]
  38548. ))
  38549. characterMakers.push(() => makeCharacter(
  38550. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38551. {
  38552. front: {
  38553. height: math.unit(7, "feet"),
  38554. weight: math.unit(310, "lb"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/solarus/front.svg",
  38558. extra: 2415/2021,
  38559. bottom: 103/2518
  38560. }
  38561. },
  38562. back: {
  38563. height: math.unit(7, "feet"),
  38564. weight: math.unit(310, "lb"),
  38565. name: "Back",
  38566. image: {
  38567. source: "./media/characters/solarus/back.svg",
  38568. extra: 2463/2089,
  38569. bottom: 79/2542
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(7, "feet"),
  38577. default: true
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(16, "feet"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38589. extra: 1844/1780,
  38590. bottom: 58/1902
  38591. }
  38592. },
  38593. winterCoat: {
  38594. height: math.unit(16, "feet"),
  38595. name: "Winter Coat",
  38596. image: {
  38597. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38598. extra: 1807/1775,
  38599. bottom: 69/1876
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(16, "feet"),
  38607. default: true
  38608. },
  38609. {
  38610. name: "Chicago Size",
  38611. height: math.unit(560, "feet")
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(11 + 6/12, "feet"),
  38620. weight: math.unit(1366, "lb"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/lexor/front.svg",
  38624. extra: 1560/1481,
  38625. bottom: 211/1771
  38626. }
  38627. },
  38628. back: {
  38629. height: math.unit(11 + 6/12, "feet"),
  38630. weight: math.unit(1366, "lb"),
  38631. name: "Back",
  38632. image: {
  38633. source: "./media/characters/lexor/back.svg",
  38634. extra: 1614/1533,
  38635. bottom: 76/1690
  38636. }
  38637. },
  38638. maw: {
  38639. height: math.unit(3, "feet"),
  38640. name: "Maw",
  38641. image: {
  38642. source: "./media/characters/lexor/maw.svg"
  38643. }
  38644. },
  38645. dick: {
  38646. height: math.unit(2.59, "feet"),
  38647. name: "Dick",
  38648. image: {
  38649. source: "./media/characters/lexor/dick.svg"
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(11 + 6/12, "feet"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(5 + 8/12, "feet"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/magnum/front.svg",
  38669. extra: 942/855,
  38670. bottom: 26/968
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(5 + 8/12, "feet"),
  38678. default: true
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38684. {
  38685. front: {
  38686. height: math.unit(18 + 4/12, "feet"),
  38687. weight: math.unit(1500, "kg"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/solas-sharpsman/front.svg",
  38691. extra: 1698/1589,
  38692. bottom: 0/1698
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(18 + 4/12, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(5 + 5/12, "feet"),
  38709. weight: math.unit(180, "lb"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/october/front.svg",
  38713. extra: 1800/1650,
  38714. bottom: 0/1800
  38715. }
  38716. },
  38717. frontNsfw: {
  38718. height: math.unit(5 + 5/12, "feet"),
  38719. weight: math.unit(180, "lb"),
  38720. name: "Front (NSFW)",
  38721. image: {
  38722. source: "./media/characters/october/front-nsfw.svg",
  38723. extra: 1392/1307,
  38724. bottom: 42/1434
  38725. }
  38726. },
  38727. },
  38728. [
  38729. {
  38730. name: "Normal",
  38731. height: math.unit(5 + 5/12, "feet"),
  38732. default: true
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(8 + 6/12, "feet"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/essynkardi/front.svg",
  38744. extra: 1914/1846,
  38745. bottom: 22/1936
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(8 + 6/12, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38759. {
  38760. front: {
  38761. height: math.unit(6 + 6/12, "feet"),
  38762. weight: math.unit(7, "lb"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/icky/front.svg",
  38766. extra: 813/782,
  38767. bottom: 66/879
  38768. }
  38769. },
  38770. back: {
  38771. height: math.unit(6 + 6/12, "feet"),
  38772. weight: math.unit(7, "lb"),
  38773. name: "Back",
  38774. image: {
  38775. source: "./media/characters/icky/back.svg",
  38776. extra: 754/735,
  38777. bottom: 56/810
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(6 + 6/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(15, "feet"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/rojas/front.svg",
  38797. extra: 1462/1408,
  38798. bottom: 95/1557
  38799. }
  38800. },
  38801. back: {
  38802. height: math.unit(15, "feet"),
  38803. name: "Back",
  38804. image: {
  38805. source: "./media/characters/rojas/back.svg",
  38806. extra: 1023/954,
  38807. bottom: 28/1051
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(15, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38821. {
  38822. frontHuman: {
  38823. height: math.unit(5 + 7/12, "feet"),
  38824. name: "Front (Human)",
  38825. image: {
  38826. source: "./media/characters/alek-dryagan/front-human.svg",
  38827. extra: 1687/1667,
  38828. bottom: 69/1756
  38829. }
  38830. },
  38831. backHuman: {
  38832. height: math.unit(5 + 7/12, "feet"),
  38833. name: "Back (Human)",
  38834. image: {
  38835. source: "./media/characters/alek-dryagan/back-human.svg",
  38836. extra: 1670/1649,
  38837. bottom: 65/1735
  38838. }
  38839. },
  38840. frontDemi: {
  38841. height: math.unit(65, "feet"),
  38842. name: "Front (Demi)",
  38843. image: {
  38844. source: "./media/characters/alek-dryagan/front-demi.svg",
  38845. extra: 1669/1642,
  38846. bottom: 49/1718
  38847. }
  38848. },
  38849. backDemi: {
  38850. height: math.unit(65, "feet"),
  38851. name: "Back (Demi)",
  38852. image: {
  38853. source: "./media/characters/alek-dryagan/back-demi.svg",
  38854. extra: 1658/1637,
  38855. bottom: 40/1698
  38856. }
  38857. },
  38858. mawHuman: {
  38859. height: math.unit(0.3, "feet"),
  38860. name: "Maw (Human)",
  38861. image: {
  38862. source: "./media/characters/alek-dryagan/maw-human.svg"
  38863. }
  38864. },
  38865. mawDemi: {
  38866. height: math.unit(3.8, "feet"),
  38867. name: "Maw (Demi)",
  38868. image: {
  38869. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(5 + 7/12, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38883. {
  38884. frontHuman: {
  38885. height: math.unit(5 + 2/12, "feet"),
  38886. name: "Front (Human)",
  38887. image: {
  38888. source: "./media/characters/gen/front-human.svg",
  38889. extra: 1627/1538,
  38890. bottom: 71/1698
  38891. }
  38892. },
  38893. backHuman: {
  38894. height: math.unit(5 + 2/12, "feet"),
  38895. name: "Back (Human)",
  38896. image: {
  38897. source: "./media/characters/gen/back-human.svg",
  38898. extra: 1638/1548,
  38899. bottom: 69/1707
  38900. }
  38901. },
  38902. frontDemi: {
  38903. height: math.unit(5 + 2/12, "feet"),
  38904. name: "Front (Demi)",
  38905. image: {
  38906. source: "./media/characters/gen/front-demi.svg",
  38907. extra: 1627/1538,
  38908. bottom: 71/1698
  38909. }
  38910. },
  38911. backDemi: {
  38912. height: math.unit(5 + 2/12, "feet"),
  38913. name: "Back (Demi)",
  38914. image: {
  38915. source: "./media/characters/gen/back-demi.svg",
  38916. extra: 1638/1548,
  38917. bottom: 69/1707
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Normal",
  38924. height: math.unit(5 + 2/12, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38931. {
  38932. frontImp: {
  38933. height: math.unit(1 + 11/12, "feet"),
  38934. name: "Front (Imp)",
  38935. image: {
  38936. source: "./media/characters/max-kobold/front-imp.svg",
  38937. extra: 1238/1134,
  38938. bottom: 81/1319
  38939. }
  38940. },
  38941. backImp: {
  38942. height: math.unit(1 + 11/12, "feet"),
  38943. name: "Back (Imp)",
  38944. image: {
  38945. source: "./media/characters/max-kobold/back-imp.svg",
  38946. extra: 1334/1175,
  38947. bottom: 34/1368
  38948. }
  38949. },
  38950. frontDemi: {
  38951. height: math.unit(5 + 9/12, "feet"),
  38952. name: "Front (Demi)",
  38953. image: {
  38954. source: "./media/characters/max-kobold/front-demi.svg",
  38955. extra: 1715/1685,
  38956. bottom: 54/1769
  38957. }
  38958. },
  38959. backDemi: {
  38960. height: math.unit(5 + 9/12, "feet"),
  38961. name: "Back (Demi)",
  38962. image: {
  38963. source: "./media/characters/max-kobold/back-demi.svg",
  38964. extra: 1752/1729,
  38965. bottom: 41/1793
  38966. }
  38967. },
  38968. handImp: {
  38969. height: math.unit(0.45, "feet"),
  38970. name: "Hand (Imp)",
  38971. image: {
  38972. source: "./media/characters/max-kobold/hand.svg"
  38973. }
  38974. },
  38975. pawImp: {
  38976. height: math.unit(0.46, "feet"),
  38977. name: "Paw (Imp)",
  38978. image: {
  38979. source: "./media/characters/max-kobold/paw.svg"
  38980. }
  38981. },
  38982. handDemi: {
  38983. height: math.unit(0.80, "feet"),
  38984. name: "Hand (Demi)",
  38985. image: {
  38986. source: "./media/characters/max-kobold/hand.svg"
  38987. }
  38988. },
  38989. pawDemi: {
  38990. height: math.unit(1.1, "feet"),
  38991. name: "Paw (Demi)",
  38992. image: {
  38993. source: "./media/characters/max-kobold/paw.svg"
  38994. }
  38995. },
  38996. headImp: {
  38997. height: math.unit(1.33, "feet"),
  38998. name: "Head (Imp)",
  38999. image: {
  39000. source: "./media/characters/max-kobold/head-imp.svg"
  39001. }
  39002. },
  39003. mawImp: {
  39004. height: math.unit(0.75, "feet"),
  39005. name: "Maw (Imp)",
  39006. image: {
  39007. source: "./media/characters/max-kobold/maw-imp.svg"
  39008. }
  39009. },
  39010. mawDemi: {
  39011. height: math.unit(0.42, "feet"),
  39012. name: "Maw (Demi)",
  39013. image: {
  39014. source: "./media/characters/max-kobold/maw-demi.svg"
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(1 + 11/12, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(7 + 5/12, "feet"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/carbon/front.svg",
  39034. extra: 1754/1689,
  39035. bottom: 65/1819
  39036. }
  39037. },
  39038. back: {
  39039. height: math.unit(7 + 5/12, "feet"),
  39040. name: "Back",
  39041. image: {
  39042. source: "./media/characters/carbon/back.svg",
  39043. extra: 1762/1695,
  39044. bottom: 24/1786
  39045. }
  39046. },
  39047. frontGigantamax: {
  39048. height: math.unit(150, "feet"),
  39049. name: "Front (Gigantamax)",
  39050. image: {
  39051. source: "./media/characters/carbon/front-gigantamax.svg",
  39052. extra: 1826/1669,
  39053. bottom: 59/1885
  39054. }
  39055. },
  39056. backGigantamax: {
  39057. height: math.unit(150, "feet"),
  39058. name: "Back (Gigantamax)",
  39059. image: {
  39060. source: "./media/characters/carbon/back-gigantamax.svg",
  39061. extra: 1796/1653,
  39062. bottom: 53/1849
  39063. }
  39064. },
  39065. maw: {
  39066. height: math.unit(0.48, "feet"),
  39067. name: "Maw",
  39068. image: {
  39069. source: "./media/characters/carbon/maw.svg"
  39070. }
  39071. },
  39072. mawGigantamax: {
  39073. height: math.unit(7.5, "feet"),
  39074. name: "Maw (Gigantamax)",
  39075. image: {
  39076. source: "./media/characters/carbon/maw-gigantamax.svg"
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(7 + 5/12, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(6, "feet"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/maverick/front.svg",
  39096. extra: 1672/1661,
  39097. bottom: 85/1757
  39098. }
  39099. },
  39100. back: {
  39101. height: math.unit(6, "feet"),
  39102. name: "Back",
  39103. image: {
  39104. source: "./media/characters/maverick/back.svg",
  39105. extra: 1642/1631,
  39106. bottom: 38/1680
  39107. }
  39108. },
  39109. },
  39110. [
  39111. {
  39112. name: "Normal",
  39113. height: math.unit(6, "feet"),
  39114. default: true
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(15, "feet"),
  39123. weight: math.unit(615, "lb"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/grockle/front.svg",
  39127. extra: 1535/1427,
  39128. bottom: 56/1591
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(15, "feet"),
  39136. default: true
  39137. },
  39138. {
  39139. name: "Large",
  39140. height: math.unit(150, "feet")
  39141. },
  39142. {
  39143. name: "Macro",
  39144. height: math.unit(1876, "feet")
  39145. },
  39146. {
  39147. name: "Mega Macro",
  39148. height: math.unit(121940, "feet")
  39149. },
  39150. {
  39151. name: "Giga Macro",
  39152. height: math.unit(750, "km")
  39153. },
  39154. {
  39155. name: "Tera Macro",
  39156. height: math.unit(750000, "km")
  39157. },
  39158. {
  39159. name: "Galactic",
  39160. height: math.unit(1.4e5, "km")
  39161. },
  39162. {
  39163. name: "Godlike",
  39164. height: math.unit(9.8e280, "galaxies")
  39165. },
  39166. ]
  39167. ))
  39168. characterMakers.push(() => makeCharacter(
  39169. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39170. {
  39171. front: {
  39172. height: math.unit(11, "meters"),
  39173. weight: math.unit(20, "tonnes"),
  39174. name: "Front",
  39175. image: {
  39176. source: "./media/characters/alistair/front.svg",
  39177. extra: 1265/1009,
  39178. bottom: 93/1358
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(11, "meters"),
  39186. default: true
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(5 + 8/12, "feet"),
  39195. name: "Front",
  39196. image: {
  39197. source: "./media/characters/haruka/front.svg",
  39198. extra: 2012/1952,
  39199. bottom: 0/2012
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(5 + 8/12, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39213. {
  39214. back: {
  39215. height: math.unit(9, "feet"),
  39216. name: "Back",
  39217. image: {
  39218. source: "./media/characters/vivian-sylveon/back.svg",
  39219. extra: 1853/1714,
  39220. bottom: 0/1853
  39221. }
  39222. },
  39223. },
  39224. [
  39225. {
  39226. name: "Normal",
  39227. height: math.unit(9, "feet"),
  39228. default: true
  39229. },
  39230. {
  39231. name: "Macro",
  39232. height: math.unit(500, "feet")
  39233. },
  39234. {
  39235. name: "Megamacro",
  39236. height: math.unit(600, "miles")
  39237. },
  39238. {
  39239. name: "Gigamacro",
  39240. height: math.unit(30000, "miles")
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39246. {
  39247. anthro: {
  39248. height: math.unit(5 + 10/12, "feet"),
  39249. weight: math.unit(100, "lb"),
  39250. name: "Anthro",
  39251. image: {
  39252. source: "./media/characters/daiki/anthro.svg",
  39253. extra: 1115/1027,
  39254. bottom: 69/1184
  39255. }
  39256. },
  39257. feral: {
  39258. height: math.unit(200, "feet"),
  39259. name: "Feral",
  39260. image: {
  39261. source: "./media/characters/daiki/feral.svg",
  39262. extra: 1256/313,
  39263. bottom: 39/1295
  39264. }
  39265. },
  39266. feralHead: {
  39267. height: math.unit(171, "feet"),
  39268. name: "Feral Head",
  39269. image: {
  39270. source: "./media/characters/daiki/feral-head.svg"
  39271. }
  39272. },
  39273. manaDragon: {
  39274. height: math.unit(170, "meters"),
  39275. name: "Mana-dragon",
  39276. image: {
  39277. source: "./media/characters/daiki/mana-dragon.svg",
  39278. extra: 763/420,
  39279. bottom: 97/860
  39280. }
  39281. },
  39282. },
  39283. [
  39284. {
  39285. name: "Normal",
  39286. height: math.unit(5 + 10/12, "feet"),
  39287. default: true
  39288. },
  39289. ]
  39290. ))
  39291. characterMakers.push(() => makeCharacter(
  39292. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39293. {
  39294. fullyEquippedFront: {
  39295. height: math.unit(3 + 1/12, "feet"),
  39296. weight: math.unit(24, "lb"),
  39297. name: "Fully Equipped (Front)",
  39298. image: {
  39299. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39300. extra: 687/605,
  39301. bottom: 18/705
  39302. }
  39303. },
  39304. fullyEquippedBack: {
  39305. height: math.unit(3 + 1/12, "feet"),
  39306. weight: math.unit(24, "lb"),
  39307. name: "Fully Equipped (Back)",
  39308. image: {
  39309. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39310. extra: 689/590,
  39311. bottom: 18/707
  39312. }
  39313. },
  39314. dailyWear: {
  39315. height: math.unit(3 + 1/12, "feet"),
  39316. weight: math.unit(24, "lb"),
  39317. name: "Daily Wear",
  39318. image: {
  39319. source: "./media/characters/tea-spot/daily-wear.svg",
  39320. extra: 701/620,
  39321. bottom: 21/722
  39322. }
  39323. },
  39324. maidWork: {
  39325. height: math.unit(3 + 1/12, "feet"),
  39326. weight: math.unit(24, "lb"),
  39327. name: "Maid Work",
  39328. image: {
  39329. source: "./media/characters/tea-spot/maid-work.svg",
  39330. extra: 693/609,
  39331. bottom: 15/708
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(3 + 1/12, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(175, "cm"),
  39348. weight: math.unit(75, "kg"),
  39349. name: "Front",
  39350. image: {
  39351. source: "./media/characters/chee/front.svg",
  39352. extra: 1796/1740,
  39353. bottom: 40/1836
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Micro-Micro",
  39360. height: math.unit(1, "nm")
  39361. },
  39362. {
  39363. name: "Micro-erst",
  39364. height: math.unit(1, "micrometer")
  39365. },
  39366. {
  39367. name: "Micro-er",
  39368. height: math.unit(1, "cm")
  39369. },
  39370. {
  39371. name: "Normal",
  39372. height: math.unit(175, "cm"),
  39373. default: true
  39374. },
  39375. {
  39376. name: "Macro",
  39377. height: math.unit(100, "m")
  39378. },
  39379. {
  39380. name: "Macro-er",
  39381. height: math.unit(1, "km")
  39382. },
  39383. {
  39384. name: "Macro-erst",
  39385. height: math.unit(10, "km")
  39386. },
  39387. {
  39388. name: "Macro-Macro",
  39389. height: math.unit(100, "km")
  39390. },
  39391. ]
  39392. ))
  39393. characterMakers.push(() => makeCharacter(
  39394. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39395. {
  39396. front: {
  39397. height: math.unit(11 + 9/12, "feet"),
  39398. weight: math.unit(935, "lb"),
  39399. name: "Front",
  39400. image: {
  39401. source: "./media/characters/kingsley/front.svg",
  39402. extra: 1803/1674,
  39403. bottom: 127/1930
  39404. }
  39405. },
  39406. frontNude: {
  39407. height: math.unit(11 + 9/12, "feet"),
  39408. weight: math.unit(935, "lb"),
  39409. name: "Front (Nude)",
  39410. image: {
  39411. source: "./media/characters/kingsley/front-nude.svg",
  39412. extra: 1803/1674,
  39413. bottom: 127/1930
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(11 + 9/12, "feet"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39427. {
  39428. side: {
  39429. height: math.unit(9, "feet"),
  39430. name: "Side",
  39431. image: {
  39432. source: "./media/characters/rymel/side.svg",
  39433. extra: 792/469,
  39434. bottom: 121/913
  39435. }
  39436. },
  39437. maw: {
  39438. height: math.unit(2.4, "meters"),
  39439. name: "Maw",
  39440. image: {
  39441. source: "./media/characters/rymel/maw.svg"
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "House Drake",
  39448. height: math.unit(2, "feet")
  39449. },
  39450. {
  39451. name: "Reduced",
  39452. height: math.unit(4.5, "feet")
  39453. },
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(9, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(1.74, "meters"),
  39466. weight: math.unit(55, "kg"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/rubus/front.svg",
  39470. extra: 1894/1742,
  39471. bottom: 44/1938
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(1.74, "meters"),
  39479. default: true
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(5 + 2/12, "feet"),
  39488. weight: math.unit(112, "lb"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/cassie-kingston/front.svg",
  39492. extra: 1438/1390,
  39493. bottom: 47/1485
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(5 + 2/12, "feet"),
  39501. default: true
  39502. },
  39503. {
  39504. name: "Macro",
  39505. height: math.unit(128, "feet")
  39506. },
  39507. {
  39508. name: "Megamacro",
  39509. height: math.unit(2.56, "miles")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(7, "feet"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/fox/front.svg",
  39521. extra: 1798/1703,
  39522. bottom: 55/1853
  39523. }
  39524. },
  39525. back: {
  39526. height: math.unit(7, "feet"),
  39527. name: "Back",
  39528. image: {
  39529. source: "./media/characters/fox/back.svg",
  39530. extra: 1748/1649,
  39531. bottom: 32/1780
  39532. }
  39533. },
  39534. head: {
  39535. height: math.unit(1.95, "feet"),
  39536. name: "Head",
  39537. image: {
  39538. source: "./media/characters/fox/head.svg"
  39539. }
  39540. },
  39541. dick: {
  39542. height: math.unit(1.33, "feet"),
  39543. name: "Dick",
  39544. image: {
  39545. source: "./media/characters/fox/dick.svg"
  39546. }
  39547. },
  39548. foot: {
  39549. height: math.unit(1, "feet"),
  39550. name: "Foot",
  39551. image: {
  39552. source: "./media/characters/fox/foot.svg"
  39553. }
  39554. },
  39555. paw: {
  39556. height: math.unit(0.92, "feet"),
  39557. name: "Paw",
  39558. image: {
  39559. source: "./media/characters/fox/paw.svg"
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Small",
  39566. height: math.unit(3, "inches")
  39567. },
  39568. {
  39569. name: "\"Realistic\"",
  39570. height: math.unit(7, "feet")
  39571. },
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(150, "feet"),
  39575. default: true
  39576. },
  39577. {
  39578. name: "BIG",
  39579. height: math.unit(1200, "feet")
  39580. },
  39581. {
  39582. name: "👀",
  39583. height: math.unit(5, "miles")
  39584. },
  39585. {
  39586. name: "👀👀👀",
  39587. height: math.unit(64, "miles")
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39593. {
  39594. front: {
  39595. height: math.unit(625, "feet"),
  39596. name: "Front",
  39597. image: {
  39598. source: "./media/characters/asonja-rossa/front.svg",
  39599. extra: 1833/1686,
  39600. bottom: 24/1857
  39601. }
  39602. },
  39603. back: {
  39604. height: math.unit(625, "feet"),
  39605. name: "Back",
  39606. image: {
  39607. source: "./media/characters/asonja-rossa/back.svg",
  39608. extra: 1852/1753,
  39609. bottom: 26/1878
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Macro",
  39616. height: math.unit(625, "feet"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39623. {
  39624. side: {
  39625. height: math.unit(8, "feet"),
  39626. name: "Side",
  39627. image: {
  39628. source: "./media/characters/rezukii/side.svg",
  39629. extra: 979/542,
  39630. bottom: 87/1066
  39631. }
  39632. },
  39633. sitting: {
  39634. height: math.unit(14.6, "feet"),
  39635. name: "Sitting",
  39636. image: {
  39637. source: "./media/characters/rezukii/sitting.svg",
  39638. extra: 1023/813,
  39639. bottom: 45/1068
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Tiny",
  39646. height: math.unit(2, "feet")
  39647. },
  39648. {
  39649. name: "Smol",
  39650. height: math.unit(4, "feet")
  39651. },
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(8, "feet"),
  39655. default: true
  39656. },
  39657. {
  39658. name: "Big",
  39659. height: math.unit(12, "feet")
  39660. },
  39661. {
  39662. name: "Macro",
  39663. height: math.unit(30, "feet")
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(14, "feet"),
  39672. weight: math.unit(9.5, "tonnes"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/dawnheart/front.svg",
  39676. extra: 2792/2675,
  39677. bottom: 64/2856
  39678. }
  39679. },
  39680. },
  39681. [
  39682. {
  39683. name: "Normal",
  39684. height: math.unit(14, "feet"),
  39685. default: true
  39686. },
  39687. ]
  39688. ))
  39689. characterMakers.push(() => makeCharacter(
  39690. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39691. {
  39692. front: {
  39693. height: math.unit(1.7, "m"),
  39694. name: "Front",
  39695. image: {
  39696. source: "./media/characters/gladi/front.svg",
  39697. extra: 1460/1362,
  39698. bottom: 19/1479
  39699. }
  39700. },
  39701. back: {
  39702. height: math.unit(1.7, "m"),
  39703. name: "Back",
  39704. image: {
  39705. source: "./media/characters/gladi/back.svg",
  39706. extra: 1459/1357,
  39707. bottom: 12/1471
  39708. }
  39709. },
  39710. feral: {
  39711. height: math.unit(2.05, "m"),
  39712. name: "Feral",
  39713. image: {
  39714. source: "./media/characters/gladi/feral.svg",
  39715. extra: 821/557,
  39716. bottom: 91/912
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Shortest",
  39723. height: math.unit(70, "cm")
  39724. },
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(1.7, "m")
  39728. },
  39729. {
  39730. name: "Macro",
  39731. height: math.unit(10, "m"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Tallest",
  39736. height: math.unit(200, "m")
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. weight: math.unit(2, "tons"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/erdno/front.svg",
  39749. extra: 1234/1129,
  39750. bottom: 35/1269
  39751. }
  39752. },
  39753. angled: {
  39754. height: math.unit(5 + 7/12, "feet"),
  39755. weight: math.unit(2, "tons"),
  39756. name: "Angled",
  39757. image: {
  39758. source: "./media/characters/erdno/angled.svg",
  39759. extra: 1185/1139,
  39760. bottom: 36/1221
  39761. }
  39762. },
  39763. side: {
  39764. height: math.unit(5 + 7/12, "feet"),
  39765. weight: math.unit(2, "tons"),
  39766. name: "Side",
  39767. image: {
  39768. source: "./media/characters/erdno/side.svg",
  39769. extra: 1191/1144,
  39770. bottom: 40/1231
  39771. }
  39772. },
  39773. back: {
  39774. height: math.unit(5 + 7/12, "feet"),
  39775. weight: math.unit(2, "tons"),
  39776. name: "Back",
  39777. image: {
  39778. source: "./media/characters/erdno/back.svg",
  39779. extra: 1202/1146,
  39780. bottom: 17/1219
  39781. }
  39782. },
  39783. frontNsfw: {
  39784. height: math.unit(5 + 7/12, "feet"),
  39785. weight: math.unit(2, "tons"),
  39786. name: "Front (NSFW)",
  39787. image: {
  39788. source: "./media/characters/erdno/front-nsfw.svg",
  39789. extra: 1234/1129,
  39790. bottom: 35/1269
  39791. }
  39792. },
  39793. angledNsfw: {
  39794. height: math.unit(5 + 7/12, "feet"),
  39795. weight: math.unit(2, "tons"),
  39796. name: "Angled (NSFW)",
  39797. image: {
  39798. source: "./media/characters/erdno/angled-nsfw.svg",
  39799. extra: 1185/1139,
  39800. bottom: 36/1221
  39801. }
  39802. },
  39803. sideNsfw: {
  39804. height: math.unit(5 + 7/12, "feet"),
  39805. weight: math.unit(2, "tons"),
  39806. name: "Side (NSFW)",
  39807. image: {
  39808. source: "./media/characters/erdno/side-nsfw.svg",
  39809. extra: 1191/1144,
  39810. bottom: 40/1231
  39811. }
  39812. },
  39813. backNsfw: {
  39814. height: math.unit(5 + 7/12, "feet"),
  39815. weight: math.unit(2, "tons"),
  39816. name: "Back (NSFW)",
  39817. image: {
  39818. source: "./media/characters/erdno/back-nsfw.svg",
  39819. extra: 1202/1146,
  39820. bottom: 17/1219
  39821. }
  39822. },
  39823. frontHyper: {
  39824. height: math.unit(5 + 7/12, "feet"),
  39825. weight: math.unit(2, "tons"),
  39826. name: "Front (Hyper)",
  39827. image: {
  39828. source: "./media/characters/erdno/front-hyper.svg",
  39829. extra: 1298/1136,
  39830. bottom: 35/1333
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Normal",
  39837. height: math.unit(5 + 7/12, "feet"),
  39838. default: true
  39839. },
  39840. {
  39841. name: "Big",
  39842. height: math.unit(5.7, "meters")
  39843. },
  39844. {
  39845. name: "Macro",
  39846. height: math.unit(5.7, "kilometers")
  39847. },
  39848. {
  39849. name: "Megamacro",
  39850. height: math.unit(5.7, "earths")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(5 + 10/12, "feet"),
  39859. weight: math.unit(150, "lb"),
  39860. name: "Front",
  39861. image: {
  39862. source: "./media/characters/jamie/front.svg",
  39863. extra: 1908/1768,
  39864. bottom: 19/1927
  39865. }
  39866. },
  39867. },
  39868. [
  39869. {
  39870. name: "Minimum",
  39871. height: math.unit(2, "cm")
  39872. },
  39873. {
  39874. name: "Micro",
  39875. height: math.unit(3, "inches")
  39876. },
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(5 + 10/12, "feet"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Macro",
  39884. height: math.unit(150, "feet")
  39885. },
  39886. {
  39887. name: "Megamacro",
  39888. height: math.unit(10000, "m")
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(2, "meters"),
  39897. weight: math.unit(100, "kg"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/shiron/front.svg",
  39901. extra: 2103/1985,
  39902. bottom: 98/2201
  39903. }
  39904. },
  39905. back: {
  39906. height: math.unit(2, "meters"),
  39907. weight: math.unit(100, "kg"),
  39908. name: "Back",
  39909. image: {
  39910. source: "./media/characters/shiron/back.svg",
  39911. extra: 2110/2015,
  39912. bottom: 89/2199
  39913. }
  39914. },
  39915. hand: {
  39916. height: math.unit(0.96, "feet"),
  39917. name: "Hand",
  39918. image: {
  39919. source: "./media/characters/shiron/hand.svg"
  39920. }
  39921. },
  39922. foot: {
  39923. height: math.unit(1.464, "feet"),
  39924. name: "Foot",
  39925. image: {
  39926. source: "./media/characters/shiron/foot.svg"
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Normal",
  39933. height: math.unit(2, "meters")
  39934. },
  39935. {
  39936. name: "Macro",
  39937. height: math.unit(500, "meters"),
  39938. default: true
  39939. },
  39940. {
  39941. name: "Megamacro",
  39942. height: math.unit(20, "km")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(6, "feet"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/sam/front.svg",
  39954. extra: 849/826,
  39955. bottom: 19/868
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(6, "feet"),
  39963. default: true
  39964. },
  39965. ]
  39966. ))
  39967. characterMakers.push(() => makeCharacter(
  39968. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39969. {
  39970. front: {
  39971. height: math.unit(8 + 4/12, "feet"),
  39972. weight: math.unit(122, "kg"),
  39973. name: "Front",
  39974. image: {
  39975. source: "./media/characters/namori-kurogawa/front.svg",
  39976. extra: 1894/1576,
  39977. bottom: 34/1928
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Normal",
  39984. height: math.unit(8 + 4/12, "feet"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(9, "feet"),
  39994. weight: math.unit(621, "lb"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/unmru/front.svg",
  39998. extra: 1853/1747,
  39999. bottom: 73/1926
  40000. }
  40001. },
  40002. side: {
  40003. height: math.unit(9, "feet"),
  40004. weight: math.unit(621, "lb"),
  40005. name: "Side",
  40006. image: {
  40007. source: "./media/characters/unmru/side.svg",
  40008. extra: 1781/1671,
  40009. bottom: 127/1908
  40010. }
  40011. },
  40012. back: {
  40013. height: math.unit(9, "feet"),
  40014. weight: math.unit(621, "lb"),
  40015. name: "Back",
  40016. image: {
  40017. source: "./media/characters/unmru/back.svg",
  40018. extra: 1894/1765,
  40019. bottom: 75/1969
  40020. }
  40021. },
  40022. dick: {
  40023. height: math.unit(3, "feet"),
  40024. weight: math.unit(35, "lb"),
  40025. name: "Dick",
  40026. image: {
  40027. source: "./media/characters/unmru/dick.svg"
  40028. }
  40029. },
  40030. },
  40031. [
  40032. {
  40033. name: "Normal",
  40034. height: math.unit(9, "feet")
  40035. },
  40036. {
  40037. name: "Natural",
  40038. height: math.unit(27, "feet"),
  40039. default: true
  40040. },
  40041. {
  40042. name: "Giant",
  40043. height: math.unit(90, "feet")
  40044. },
  40045. {
  40046. name: "Kaiju",
  40047. height: math.unit(270, "feet")
  40048. },
  40049. {
  40050. name: "Macro",
  40051. height: math.unit(900, "feet")
  40052. },
  40053. {
  40054. name: "Macro+",
  40055. height: math.unit(2700, "feet")
  40056. },
  40057. {
  40058. name: "Megamacro",
  40059. height: math.unit(9000, "feet")
  40060. },
  40061. {
  40062. name: "City-Crushing",
  40063. height: math.unit(27000, "feet")
  40064. },
  40065. {
  40066. name: "Mountain-Mashing",
  40067. height: math.unit(90000, "feet")
  40068. },
  40069. {
  40070. name: "Earth-Eclipsing",
  40071. height: math.unit(2.7e8, "feet")
  40072. },
  40073. {
  40074. name: "Sol-Swallowing",
  40075. height: math.unit(9e10, "feet")
  40076. },
  40077. {
  40078. name: "Majoris-Munching",
  40079. height: math.unit(2.7e13, "feet")
  40080. },
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40085. {
  40086. front: {
  40087. height: math.unit(1, "inch"),
  40088. name: "Front",
  40089. image: {
  40090. source: "./media/characters/squeaks-mouse/front.svg",
  40091. extra: 352/308,
  40092. bottom: 25/377
  40093. }
  40094. },
  40095. },
  40096. [
  40097. {
  40098. name: "Micro",
  40099. height: math.unit(1, "inch"),
  40100. default: true
  40101. },
  40102. ]
  40103. ))
  40104. characterMakers.push(() => makeCharacter(
  40105. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40106. {
  40107. side: {
  40108. height: math.unit(35, "feet"),
  40109. name: "Side",
  40110. image: {
  40111. source: "./media/characters/sayko/side.svg",
  40112. extra: 1697/1021,
  40113. bottom: 82/1779
  40114. }
  40115. },
  40116. head: {
  40117. height: math.unit(16, "feet"),
  40118. name: "Head",
  40119. image: {
  40120. source: "./media/characters/sayko/head.svg"
  40121. }
  40122. },
  40123. forepaw: {
  40124. height: math.unit(7.85, "feet"),
  40125. name: "Forepaw",
  40126. image: {
  40127. source: "./media/characters/sayko/forepaw.svg"
  40128. }
  40129. },
  40130. hindpaw: {
  40131. height: math.unit(8.8, "feet"),
  40132. name: "Hindpaw",
  40133. image: {
  40134. source: "./media/characters/sayko/hindpaw.svg"
  40135. }
  40136. },
  40137. },
  40138. [
  40139. {
  40140. name: "Normal",
  40141. height: math.unit(35, "feet"),
  40142. default: true
  40143. },
  40144. {
  40145. name: "Colossus",
  40146. height: math.unit(100, "meters")
  40147. },
  40148. {
  40149. name: "\"Small\" Deity",
  40150. height: math.unit(1, "km")
  40151. },
  40152. {
  40153. name: "\"Large\" Deity",
  40154. height: math.unit(15, "km")
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(6, "feet"),
  40163. weight: math.unit(250, "lb"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/mukiro/front.svg",
  40167. extra: 1368/1310,
  40168. bottom: 34/1402
  40169. }
  40170. },
  40171. },
  40172. [
  40173. {
  40174. name: "Normal",
  40175. height: math.unit(6, "feet"),
  40176. default: true
  40177. },
  40178. ]
  40179. ))
  40180. characterMakers.push(() => makeCharacter(
  40181. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40182. {
  40183. front: {
  40184. height: math.unit(12 + 4/12, "feet"),
  40185. name: "Front",
  40186. image: {
  40187. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40188. extra: 1346/1311,
  40189. bottom: 65/1411
  40190. }
  40191. },
  40192. },
  40193. [
  40194. {
  40195. name: "Base",
  40196. height: math.unit(12 + 4/12, "feet"),
  40197. default: true
  40198. },
  40199. {
  40200. name: "Macro",
  40201. height: math.unit(150, "feet")
  40202. },
  40203. {
  40204. name: "Mega",
  40205. height: math.unit(2, "miles")
  40206. },
  40207. {
  40208. name: "Demi God",
  40209. height: math.unit(4, "AU")
  40210. },
  40211. {
  40212. name: "God Size",
  40213. height: math.unit(1, "universe")
  40214. },
  40215. ]
  40216. ))
  40217. characterMakers.push(() => makeCharacter(
  40218. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40219. {
  40220. front: {
  40221. height: math.unit(3 + 3/12, "feet"),
  40222. weight: math.unit(88, "lb"),
  40223. name: "Front",
  40224. image: {
  40225. source: "./media/characters/trey/front.svg",
  40226. extra: 1815/1509,
  40227. bottom: 60/1875
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(3 + 3/12, "feet"),
  40235. default: true
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40241. {
  40242. front: {
  40243. height: math.unit(4, "meters"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/adelonda/front.svg",
  40247. extra: 1077/982,
  40248. bottom: 39/1116
  40249. }
  40250. },
  40251. back: {
  40252. height: math.unit(4, "meters"),
  40253. name: "Back",
  40254. image: {
  40255. source: "./media/characters/adelonda/back.svg",
  40256. extra: 1105/1003,
  40257. bottom: 25/1130
  40258. }
  40259. },
  40260. feral: {
  40261. height: math.unit(40/1.5, "meters"),
  40262. name: "Feral",
  40263. image: {
  40264. source: "./media/characters/adelonda/feral.svg",
  40265. extra: 597/271,
  40266. bottom: 387/984
  40267. }
  40268. },
  40269. },
  40270. [
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(4, "meters"),
  40274. default: true
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(8 + 4/12, "feet"),
  40283. weight: math.unit(670, "lb"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/acadiel/front.svg",
  40287. extra: 1901/1595,
  40288. bottom: 142/2043
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(8 + 4/12, "feet"),
  40296. default: true
  40297. },
  40298. {
  40299. name: "Macro",
  40300. height: math.unit(200, "feet")
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(6 + 2/12, "feet"),
  40309. weight: math.unit(185, "lb"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/kayne-ein/front.svg",
  40313. extra: 1780/1560,
  40314. bottom: 81/1861
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(6 + 2/12, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Transformation Stage",
  40326. height: math.unit(15, "feet")
  40327. },
  40328. {
  40329. name: "Macro",
  40330. height: math.unit(150, "feet")
  40331. },
  40332. {
  40333. name: "Earth's Shadow",
  40334. height: math.unit(6200, "miles")
  40335. },
  40336. {
  40337. name: "Universal Demon",
  40338. height: math.unit(28e9, "parsecs")
  40339. },
  40340. {
  40341. name: "Multiverse God",
  40342. height: math.unit(3, "multiverses")
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(5 + 5/12, "feet"),
  40351. name: "Front",
  40352. image: {
  40353. source: "./media/characters/fawn/front.svg",
  40354. extra: 1873/1731,
  40355. bottom: 95/1968
  40356. }
  40357. },
  40358. back: {
  40359. height: math.unit(5 + 5/12, "feet"),
  40360. name: "Back",
  40361. image: {
  40362. source: "./media/characters/fawn/back.svg",
  40363. extra: 1813/1700,
  40364. bottom: 14/1827
  40365. }
  40366. },
  40367. hoof: {
  40368. height: math.unit(1.45, "feet"),
  40369. name: "Hoof",
  40370. image: {
  40371. source: "./media/characters/fawn/hoof.svg"
  40372. }
  40373. },
  40374. },
  40375. [
  40376. {
  40377. name: "Normal",
  40378. height: math.unit(5 + 5/12, "feet"),
  40379. default: true
  40380. },
  40381. ]
  40382. ))
  40383. characterMakers.push(() => makeCharacter(
  40384. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40385. {
  40386. front: {
  40387. height: math.unit(2 + 5/12, "feet"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/orion/front.svg",
  40391. extra: 1366/1304,
  40392. bottom: 43/1409
  40393. }
  40394. },
  40395. paw: {
  40396. height: math.unit(0.52, "feet"),
  40397. name: "Paw",
  40398. image: {
  40399. source: "./media/characters/orion/paw.svg"
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Normal",
  40406. height: math.unit(2 + 5/12, "feet"),
  40407. default: true
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(5 + 10/12, "feet"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/vera/front.svg",
  40419. extra: 1680/1575,
  40420. bottom: 49/1729
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(5 + 10/12, "feet"),
  40425. name: "Back",
  40426. image: {
  40427. source: "./media/characters/vera/back.svg",
  40428. extra: 1700/1588,
  40429. bottom: 18/1718
  40430. }
  40431. },
  40432. arcanine: {
  40433. height: math.unit(6 + 8/12, "feet"),
  40434. name: "Arcanine",
  40435. image: {
  40436. source: "./media/characters/vera/arcanine.svg",
  40437. extra: 1590/1511,
  40438. bottom: 71/1661
  40439. }
  40440. },
  40441. maw: {
  40442. height: math.unit(0.82, "feet"),
  40443. name: "Maw",
  40444. image: {
  40445. source: "./media/characters/vera/maw.svg"
  40446. }
  40447. },
  40448. mawArcanine: {
  40449. height: math.unit(0.97, "feet"),
  40450. name: "Maw (Arcanine)",
  40451. image: {
  40452. source: "./media/characters/vera/maw-arcanine.svg"
  40453. }
  40454. },
  40455. paw: {
  40456. height: math.unit(0.75, "feet"),
  40457. name: "Paw",
  40458. image: {
  40459. source: "./media/characters/vera/paw.svg"
  40460. }
  40461. },
  40462. pawprint: {
  40463. height: math.unit(0.52, "feet"),
  40464. name: "Pawprint",
  40465. image: {
  40466. source: "./media/characters/vera/pawprint.svg"
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(5 + 10/12, "feet"),
  40474. default: true
  40475. },
  40476. {
  40477. name: "Macro",
  40478. height: math.unit(75, "feet")
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40484. {
  40485. front: {
  40486. height: math.unit(4, "feet"),
  40487. weight: math.unit(40, "lb"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/orvan-rabbit/front.svg",
  40491. extra: 1896/1642,
  40492. bottom: 29/1925
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Normal",
  40499. height: math.unit(4, "feet"),
  40500. default: true
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(6, "feet"),
  40509. weight: math.unit(168, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/lisa/front.svg",
  40513. extra: 2065/1867,
  40514. bottom: 46/2111
  40515. }
  40516. },
  40517. back: {
  40518. height: math.unit(6, "feet"),
  40519. weight: math.unit(168, "lb"),
  40520. name: "Back",
  40521. image: {
  40522. source: "./media/characters/lisa/back.svg",
  40523. extra: 1982/1838,
  40524. bottom: 29/2011
  40525. }
  40526. },
  40527. maw: {
  40528. height: math.unit(0.81, "feet"),
  40529. name: "Maw",
  40530. image: {
  40531. source: "./media/characters/lisa/maw.svg"
  40532. }
  40533. },
  40534. paw: {
  40535. height: math.unit(0.9, "feet"),
  40536. name: "Paw",
  40537. image: {
  40538. source: "./media/characters/lisa/paw.svg"
  40539. }
  40540. },
  40541. caribousune: {
  40542. height: math.unit(7 + 2/12, "feet"),
  40543. weight: math.unit(268, "lb"),
  40544. name: "Caribousune",
  40545. image: {
  40546. source: "./media/characters/lisa/caribousune.svg",
  40547. extra: 1843/1633,
  40548. bottom: 29/1872
  40549. }
  40550. },
  40551. frontCaribousune: {
  40552. height: math.unit(7 + 2/12, "feet"),
  40553. weight: math.unit(268, "lb"),
  40554. name: "Front (Caribousune)",
  40555. image: {
  40556. source: "./media/characters/lisa/front-caribousune.svg",
  40557. extra: 1818/1638,
  40558. bottom: 52/1870
  40559. }
  40560. },
  40561. sideCaribousune: {
  40562. height: math.unit(7 + 2/12, "feet"),
  40563. weight: math.unit(268, "lb"),
  40564. name: "Side (Caribousune)",
  40565. image: {
  40566. source: "./media/characters/lisa/side-caribousune.svg",
  40567. extra: 1851/1635,
  40568. bottom: 16/1867
  40569. }
  40570. },
  40571. backCaribousune: {
  40572. height: math.unit(7 + 2/12, "feet"),
  40573. weight: math.unit(268, "lb"),
  40574. name: "Back (Caribousune)",
  40575. image: {
  40576. source: "./media/characters/lisa/back-caribousune.svg",
  40577. extra: 1801/1604,
  40578. bottom: 44/1845
  40579. }
  40580. },
  40581. caribou: {
  40582. height: math.unit(7 + 2/12, "feet"),
  40583. weight: math.unit(268, "lb"),
  40584. name: "Caribou",
  40585. image: {
  40586. source: "./media/characters/lisa/caribou.svg",
  40587. extra: 1843/1633,
  40588. bottom: 29/1872
  40589. }
  40590. },
  40591. frontCaribou: {
  40592. height: math.unit(7 + 2/12, "feet"),
  40593. weight: math.unit(268, "lb"),
  40594. name: "Front (Caribou)",
  40595. image: {
  40596. source: "./media/characters/lisa/front-caribou.svg",
  40597. extra: 1818/1638,
  40598. bottom: 52/1870
  40599. }
  40600. },
  40601. sideCaribou: {
  40602. height: math.unit(7 + 2/12, "feet"),
  40603. weight: math.unit(268, "lb"),
  40604. name: "Side (Caribou)",
  40605. image: {
  40606. source: "./media/characters/lisa/side-caribou.svg",
  40607. extra: 1851/1635,
  40608. bottom: 16/1867
  40609. }
  40610. },
  40611. backCaribou: {
  40612. height: math.unit(7 + 2/12, "feet"),
  40613. weight: math.unit(268, "lb"),
  40614. name: "Back (Caribou)",
  40615. image: {
  40616. source: "./media/characters/lisa/back-caribou.svg",
  40617. extra: 1801/1604,
  40618. bottom: 44/1845
  40619. }
  40620. },
  40621. mawCaribou: {
  40622. height: math.unit(1.45, "feet"),
  40623. name: "Maw (Caribou)",
  40624. image: {
  40625. source: "./media/characters/lisa/maw-caribou.svg"
  40626. }
  40627. },
  40628. mawCaribousune: {
  40629. height: math.unit(1.45, "feet"),
  40630. name: "Maw (Caribousune)",
  40631. image: {
  40632. source: "./media/characters/lisa/maw-caribousune.svg"
  40633. }
  40634. },
  40635. pawCaribousune: {
  40636. height: math.unit(1.61, "feet"),
  40637. name: "Paw (Caribou)",
  40638. image: {
  40639. source: "./media/characters/lisa/paw-caribousune.svg"
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(6, "feet")
  40647. },
  40648. {
  40649. name: "God Size",
  40650. height: math.unit(72, "feet"),
  40651. default: true
  40652. },
  40653. {
  40654. name: "Towering",
  40655. height: math.unit(288, "feet")
  40656. },
  40657. {
  40658. name: "City Size",
  40659. height: math.unit(48384, "feet")
  40660. },
  40661. {
  40662. name: "Continental",
  40663. height: math.unit(4200, "miles")
  40664. },
  40665. {
  40666. name: "Planet Eater",
  40667. height: math.unit(42, "earths")
  40668. },
  40669. {
  40670. name: "Star Swallower",
  40671. height: math.unit(42, "solarradii")
  40672. },
  40673. {
  40674. name: "System Swallower",
  40675. height: math.unit(84000, "AU")
  40676. },
  40677. {
  40678. name: "Galaxy Gobbler",
  40679. height: math.unit(42, "galaxies")
  40680. },
  40681. {
  40682. name: "Universe Devourer",
  40683. height: math.unit(42, "universes")
  40684. },
  40685. {
  40686. name: "Multiverse Muncher",
  40687. height: math.unit(42, "multiverses")
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(36, "feet"),
  40696. name: "Front",
  40697. image: {
  40698. source: "./media/characters/shadow-rat/front.svg",
  40699. extra: 1845/1758,
  40700. bottom: 83/1928
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Macro",
  40707. height: math.unit(36, "feet"),
  40708. default: true
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40714. {
  40715. side: {
  40716. height: math.unit(8, "feet"),
  40717. weight: math.unit(2630, "lb"),
  40718. name: "Side",
  40719. image: {
  40720. source: "./media/characters/torallia/side.svg",
  40721. extra: 2164/2021,
  40722. bottom: 371/2535
  40723. }
  40724. },
  40725. },
  40726. [
  40727. {
  40728. name: "Mortal Interaction",
  40729. height: math.unit(8, "feet")
  40730. },
  40731. {
  40732. name: "Natural",
  40733. height: math.unit(24, "feet"),
  40734. default: true
  40735. },
  40736. {
  40737. name: "Giant",
  40738. height: math.unit(80, "feet")
  40739. },
  40740. {
  40741. name: "Kaiju",
  40742. height: math.unit(240, "feet")
  40743. },
  40744. {
  40745. name: "Macro",
  40746. height: math.unit(800, "feet")
  40747. },
  40748. {
  40749. name: "Macro+",
  40750. height: math.unit(2400, "feet")
  40751. },
  40752. {
  40753. name: "Macro++",
  40754. height: math.unit(8000, "feet")
  40755. },
  40756. {
  40757. name: "City-Crushing",
  40758. height: math.unit(24000, "feet")
  40759. },
  40760. {
  40761. name: "Mountain-Mashing",
  40762. height: math.unit(80000, "feet")
  40763. },
  40764. {
  40765. name: "District Demolisher",
  40766. height: math.unit(240000, "feet")
  40767. },
  40768. {
  40769. name: "Tri-County Terror",
  40770. height: math.unit(800000, "feet")
  40771. },
  40772. {
  40773. name: "State Smasher",
  40774. height: math.unit(2.4e6, "feet")
  40775. },
  40776. {
  40777. name: "Nation Nemesis",
  40778. height: math.unit(8e6, "feet")
  40779. },
  40780. {
  40781. name: "Continent Cracker",
  40782. height: math.unit(2.4e7, "feet")
  40783. },
  40784. {
  40785. name: "Planet-Pillaging",
  40786. height: math.unit(8e7, "feet")
  40787. },
  40788. {
  40789. name: "Earth-Eclipsing",
  40790. height: math.unit(2.4e8, "feet")
  40791. },
  40792. {
  40793. name: "Jovian-Jostling",
  40794. height: math.unit(8e8, "feet")
  40795. },
  40796. {
  40797. name: "Gas Giant Gulper",
  40798. height: math.unit(2.4e9, "feet")
  40799. },
  40800. {
  40801. name: "Astral Annihilator",
  40802. height: math.unit(8e9, "feet")
  40803. },
  40804. {
  40805. name: "Celestial Conqueror",
  40806. height: math.unit(2.4e10, "feet")
  40807. },
  40808. {
  40809. name: "Sol-Swallowing",
  40810. height: math.unit(8e10, "feet")
  40811. },
  40812. {
  40813. name: "Hunter of the Heavens",
  40814. height: math.unit(2.4e13, "feet")
  40815. },
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40820. {
  40821. front: {
  40822. height: math.unit(6 + 8/12, "feet"),
  40823. weight: math.unit(250, "kilograms"),
  40824. volume: math.unit(28, "liters"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/rebecca-pawlson/front.svg",
  40828. extra: 1737/1596,
  40829. bottom: 107/1844
  40830. }
  40831. },
  40832. back: {
  40833. height: math.unit(6 + 8/12, "feet"),
  40834. weight: math.unit(250, "kilograms"),
  40835. volume: math.unit(28, "liters"),
  40836. name: "Back",
  40837. image: {
  40838. source: "./media/characters/rebecca-pawlson/back.svg",
  40839. extra: 1702/1523,
  40840. bottom: 86/1788
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(6 + 8/12, "feet")
  40848. },
  40849. {
  40850. name: "Mini Macro",
  40851. height: math.unit(10, "feet"),
  40852. default: true
  40853. },
  40854. {
  40855. name: "Macro",
  40856. height: math.unit(100, "feet")
  40857. },
  40858. {
  40859. name: "Mega Macro",
  40860. height: math.unit(2500, "feet")
  40861. },
  40862. {
  40863. name: "Giga Macro",
  40864. height: math.unit(50, "miles")
  40865. },
  40866. ]
  40867. ))
  40868. characterMakers.push(() => makeCharacter(
  40869. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40870. {
  40871. front: {
  40872. height: math.unit(7 + 6/12, "feet"),
  40873. weight: math.unit(600, "lb"),
  40874. name: "Front",
  40875. image: {
  40876. source: "./media/characters/moxie-nova/front.svg",
  40877. extra: 1734/1652,
  40878. bottom: 41/1775
  40879. }
  40880. },
  40881. },
  40882. [
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(7 + 6/12, "feet"),
  40886. default: true
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40892. {
  40893. goat: {
  40894. height: math.unit(4, "feet"),
  40895. weight: math.unit(180, "lb"),
  40896. name: "Goat",
  40897. image: {
  40898. source: "./media/characters/tiffany/goat.svg",
  40899. extra: 1845/1595,
  40900. bottom: 106/1951
  40901. }
  40902. },
  40903. front: {
  40904. height: math.unit(5, "feet"),
  40905. weight: math.unit(150, "lb"),
  40906. name: "Foxcoon",
  40907. image: {
  40908. source: "./media/characters/tiffany/foxcoon.svg",
  40909. extra: 1941/1845,
  40910. bottom: 58/1999
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Normal",
  40917. height: math.unit(5, "feet"),
  40918. default: true
  40919. },
  40920. ]
  40921. ))
  40922. characterMakers.push(() => makeCharacter(
  40923. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40924. {
  40925. front: {
  40926. height: math.unit(8, "feet"),
  40927. weight: math.unit(300, "lb"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/raxinath/front.svg",
  40931. extra: 1407/1309,
  40932. bottom: 39/1446
  40933. }
  40934. },
  40935. back: {
  40936. height: math.unit(8, "feet"),
  40937. weight: math.unit(300, "lb"),
  40938. name: "Back",
  40939. image: {
  40940. source: "./media/characters/raxinath/back.svg",
  40941. extra: 1405/1315,
  40942. bottom: 9/1414
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Speck",
  40949. height: math.unit(0.5, "nm")
  40950. },
  40951. {
  40952. name: "Micro",
  40953. height: math.unit(3, "inches")
  40954. },
  40955. {
  40956. name: "Kobold",
  40957. height: math.unit(3, "feet")
  40958. },
  40959. {
  40960. name: "Normal",
  40961. height: math.unit(8, "feet"),
  40962. default: true
  40963. },
  40964. {
  40965. name: "Giant",
  40966. height: math.unit(50, "feet")
  40967. },
  40968. {
  40969. name: "Macro",
  40970. height: math.unit(1000, "feet")
  40971. },
  40972. {
  40973. name: "Megamacro",
  40974. height: math.unit(1, "mile")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(10, "feet"),
  40983. weight: math.unit(1442, "lb"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/mal-dragon/front.svg",
  40987. extra: 1515/1444,
  40988. bottom: 113/1628
  40989. }
  40990. },
  40991. back: {
  40992. height: math.unit(10, "feet"),
  40993. weight: math.unit(1442, "lb"),
  40994. name: "Back",
  40995. image: {
  40996. source: "./media/characters/mal-dragon/back.svg",
  40997. extra: 1527/1434,
  40998. bottom: 25/1552
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Mortal Interaction",
  41005. height: math.unit(10, "feet"),
  41006. default: true
  41007. },
  41008. {
  41009. name: "Large",
  41010. height: math.unit(30, "feet")
  41011. },
  41012. {
  41013. name: "Kaiju",
  41014. height: math.unit(300, "feet")
  41015. },
  41016. {
  41017. name: "Megamacro",
  41018. height: math.unit(10000, "feet")
  41019. },
  41020. {
  41021. name: "Continent Cracker",
  41022. height: math.unit(30000000, "feet")
  41023. },
  41024. {
  41025. name: "Sol-Swallowing",
  41026. height: math.unit(1e11, "feet")
  41027. },
  41028. {
  41029. name: "Light Universal",
  41030. height: math.unit(5, "universes")
  41031. },
  41032. {
  41033. name: "Universe Atoms",
  41034. height: math.unit(1.829e9, "universes")
  41035. },
  41036. {
  41037. name: "Light Multiversal",
  41038. height: math.unit(5, "multiverses")
  41039. },
  41040. {
  41041. name: "Multiverse Atoms",
  41042. height: math.unit(1.829e9, "multiverses")
  41043. },
  41044. {
  41045. name: "Fabric of Time",
  41046. height: math.unit(1e262, "multiverses")
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(9, "feet"),
  41055. weight: math.unit(1050, "lb"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/tabitha/front.svg",
  41059. extra: 2083/1994,
  41060. bottom: 68/2151
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Baseline",
  41067. height: math.unit(9, "feet"),
  41068. default: true
  41069. },
  41070. {
  41071. name: "Giant",
  41072. height: math.unit(90, "feet")
  41073. },
  41074. {
  41075. name: "Macro",
  41076. height: math.unit(900, "feet")
  41077. },
  41078. {
  41079. name: "Megamacro",
  41080. height: math.unit(9000, "feet")
  41081. },
  41082. {
  41083. name: "City-Crushing",
  41084. height: math.unit(27000, "feet")
  41085. },
  41086. {
  41087. name: "Mountain-Mashing",
  41088. height: math.unit(90000, "feet")
  41089. },
  41090. {
  41091. name: "Nation Nemesis",
  41092. height: math.unit(9e6, "feet")
  41093. },
  41094. {
  41095. name: "Continent Cracker",
  41096. height: math.unit(27e6, "feet")
  41097. },
  41098. {
  41099. name: "Earth-Eclipsing",
  41100. height: math.unit(2.7e8, "feet")
  41101. },
  41102. {
  41103. name: "Gas Giant Gulper",
  41104. height: math.unit(2.7e9, "feet")
  41105. },
  41106. {
  41107. name: "Sol-Swallowing",
  41108. height: math.unit(9e10, "feet")
  41109. },
  41110. {
  41111. name: "Galaxy Gulper",
  41112. height: math.unit(9, "galaxies")
  41113. },
  41114. {
  41115. name: "Cosmos Churner",
  41116. height: math.unit(9, "universes")
  41117. },
  41118. ]
  41119. ))
  41120. characterMakers.push(() => makeCharacter(
  41121. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41122. {
  41123. front: {
  41124. height: math.unit(160, "cm"),
  41125. weight: math.unit(55, "kg"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/tow/front.svg",
  41129. extra: 1751/1722,
  41130. bottom: 74/1825
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Norm",
  41137. height: math.unit(160, "cm")
  41138. },
  41139. {
  41140. name: "Casual",
  41141. height: math.unit(3200, "m"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Show-Off",
  41146. height: math.unit(160, "km")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41152. {
  41153. front: {
  41154. height: math.unit(7 + 11/12, "feet"),
  41155. weight: math.unit(342.8, "lb"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/vivian-orca-dragon/front.svg",
  41159. extra: 1890/1865,
  41160. bottom: 28/1918
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Micro",
  41167. height: math.unit(5, "inches")
  41168. },
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(7 + 11/12, "feet"),
  41172. default: true
  41173. },
  41174. {
  41175. name: "Macro",
  41176. height: math.unit(395 + 7/12, "feet")
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41182. {
  41183. side: {
  41184. height: math.unit(10, "feet"),
  41185. weight: math.unit(1442, "lb"),
  41186. name: "Side",
  41187. image: {
  41188. source: "./media/characters/lotherakon/side.svg",
  41189. extra: 1604/1497,
  41190. bottom: 89/1693
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Mortal Interaction",
  41197. height: math.unit(10, "feet")
  41198. },
  41199. {
  41200. name: "Large",
  41201. height: math.unit(30, "feet"),
  41202. default: true
  41203. },
  41204. {
  41205. name: "Giant",
  41206. height: math.unit(100, "feet")
  41207. },
  41208. {
  41209. name: "Kaiju",
  41210. height: math.unit(300, "feet")
  41211. },
  41212. {
  41213. name: "Macro",
  41214. height: math.unit(1000, "feet")
  41215. },
  41216. {
  41217. name: "Macro+",
  41218. height: math.unit(3000, "feet")
  41219. },
  41220. {
  41221. name: "Megamacro",
  41222. height: math.unit(10000, "feet")
  41223. },
  41224. {
  41225. name: "City-Crushing",
  41226. height: math.unit(30000, "feet")
  41227. },
  41228. {
  41229. name: "Continent Cracker",
  41230. height: math.unit(30e6, "feet")
  41231. },
  41232. {
  41233. name: "Earth Eclipsing",
  41234. height: math.unit(3e8, "feet")
  41235. },
  41236. {
  41237. name: "Gas Giant Gulper",
  41238. height: math.unit(3e9, "feet")
  41239. },
  41240. {
  41241. name: "Sol-Swallowing",
  41242. height: math.unit(1e11, "feet")
  41243. },
  41244. {
  41245. name: "System Swallower",
  41246. height: math.unit(3e14, "feet")
  41247. },
  41248. {
  41249. name: "Galaxy Gulper",
  41250. height: math.unit(10, "galaxies")
  41251. },
  41252. {
  41253. name: "Light Universal",
  41254. height: math.unit(5, "universes")
  41255. },
  41256. {
  41257. name: "Universe Palm",
  41258. height: math.unit(20, "universes")
  41259. },
  41260. {
  41261. name: "Light Multiversal",
  41262. height: math.unit(5, "multiverses")
  41263. },
  41264. {
  41265. name: "Multiverse Palm",
  41266. height: math.unit(20, "multiverses")
  41267. },
  41268. {
  41269. name: "Inferno Incarnate",
  41270. height: math.unit(1e7, "multiverses")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(8, "feet"),
  41279. weight: math.unit(1200, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/malithee/front.svg",
  41283. extra: 1675/1640,
  41284. bottom: 162/1837
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Mortal Interaction",
  41291. height: math.unit(8, "feet"),
  41292. default: true
  41293. },
  41294. {
  41295. name: "Large",
  41296. height: math.unit(24, "feet")
  41297. },
  41298. {
  41299. name: "Kaiju",
  41300. height: math.unit(240, "feet")
  41301. },
  41302. {
  41303. name: "Megamacro",
  41304. height: math.unit(8000, "feet")
  41305. },
  41306. {
  41307. name: "Continent Cracker",
  41308. height: math.unit(24e6, "feet")
  41309. },
  41310. {
  41311. name: "Earth-Eclipsing",
  41312. height: math.unit(2.4e8, "feet")
  41313. },
  41314. {
  41315. name: "Sol-Swallowing",
  41316. height: math.unit(8e10, "feet")
  41317. },
  41318. {
  41319. name: "Galaxy Gulper",
  41320. height: math.unit(8, "galaxies")
  41321. },
  41322. {
  41323. name: "Light Universal",
  41324. height: math.unit(4, "universes")
  41325. },
  41326. {
  41327. name: "Universe Atoms",
  41328. height: math.unit(1.829e9, "universes")
  41329. },
  41330. {
  41331. name: "Light Multiversal",
  41332. height: math.unit(4, "multiverses")
  41333. },
  41334. {
  41335. name: "Multiverse Atoms",
  41336. height: math.unit(1.829e9, "multiverses")
  41337. },
  41338. {
  41339. name: "Nigh-Omnipresence",
  41340. height: math.unit(8e261, "multiverses")
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(10, "feet"),
  41349. weight: math.unit(1500, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/miles-thestia/front.svg",
  41353. extra: 1812/1727,
  41354. bottom: 86/1898
  41355. }
  41356. },
  41357. back: {
  41358. height: math.unit(10, "feet"),
  41359. weight: math.unit(1500, "lb"),
  41360. name: "Back",
  41361. image: {
  41362. source: "./media/characters/miles-thestia/back.svg",
  41363. extra: 1799/1690,
  41364. bottom: 47/1846
  41365. }
  41366. },
  41367. frontNsfw: {
  41368. height: math.unit(10, "feet"),
  41369. weight: math.unit(1500, "lb"),
  41370. name: "Front (NSFW)",
  41371. image: {
  41372. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41373. extra: 1812/1727,
  41374. bottom: 86/1898
  41375. }
  41376. },
  41377. },
  41378. [
  41379. {
  41380. name: "Mini-Macro",
  41381. height: math.unit(10, "feet"),
  41382. default: true
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(25, "feet"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/titan-s-wulf/front.svg",
  41394. extra: 1560/1484,
  41395. bottom: 76/1636
  41396. }
  41397. },
  41398. },
  41399. [
  41400. {
  41401. name: "Smallest",
  41402. height: math.unit(25, "feet"),
  41403. default: true
  41404. },
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(200, "feet")
  41408. },
  41409. {
  41410. name: "Macro",
  41411. height: math.unit(200000, "feet")
  41412. },
  41413. {
  41414. name: "Multiversal Original",
  41415. height: math.unit(10000, "multiverses")
  41416. },
  41417. ]
  41418. ))
  41419. characterMakers.push(() => makeCharacter(
  41420. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41421. {
  41422. front: {
  41423. height: math.unit(8, "feet"),
  41424. weight: math.unit(553, "lb"),
  41425. name: "Front",
  41426. image: {
  41427. source: "./media/characters/tawendeh/front.svg",
  41428. extra: 2365/2268,
  41429. bottom: 83/2448
  41430. }
  41431. },
  41432. frontClothed: {
  41433. height: math.unit(8, "feet"),
  41434. weight: math.unit(553, "lb"),
  41435. name: "Front (Clothed)",
  41436. image: {
  41437. source: "./media/characters/tawendeh/front-clothed.svg",
  41438. extra: 2365/2268,
  41439. bottom: 83/2448
  41440. }
  41441. },
  41442. back: {
  41443. height: math.unit(8, "feet"),
  41444. weight: math.unit(553, "lb"),
  41445. name: "Back",
  41446. image: {
  41447. source: "./media/characters/tawendeh/back.svg",
  41448. extra: 2397/2294,
  41449. bottom: 42/2439
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Mortal Interaction",
  41456. height: math.unit(8, "feet"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Giant",
  41461. height: math.unit(80, "feet")
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(800, "feet")
  41466. },
  41467. {
  41468. name: "Megamacro",
  41469. height: math.unit(8000, "feet")
  41470. },
  41471. {
  41472. name: "City-Crushing",
  41473. height: math.unit(24000, "feet")
  41474. },
  41475. {
  41476. name: "Mountain-Mashing",
  41477. height: math.unit(80000, "feet")
  41478. },
  41479. {
  41480. name: "Nation Nemesis",
  41481. height: math.unit(8e6, "feet")
  41482. },
  41483. {
  41484. name: "Continent Cracker",
  41485. height: math.unit(24e6, "feet")
  41486. },
  41487. {
  41488. name: "Earth-Eclipsing",
  41489. height: math.unit(2.4e8, "feet")
  41490. },
  41491. {
  41492. name: "Gas Giant Gulper",
  41493. height: math.unit(2.4e9, "feet")
  41494. },
  41495. {
  41496. name: "Sol-Swallowing",
  41497. height: math.unit(8e10, "feet")
  41498. },
  41499. {
  41500. name: "Galaxy Gulper",
  41501. height: math.unit(8, "galaxies")
  41502. },
  41503. {
  41504. name: "Cosmos Churner",
  41505. height: math.unit(8, "universes")
  41506. },
  41507. {
  41508. name: "Omnipotent Otter",
  41509. height: math.unit(80, "universes")
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(2.6, "meters"),
  41518. weight: math.unit(900, "kg"),
  41519. name: "Front",
  41520. image: {
  41521. source: "./media/characters/neesha/front.svg",
  41522. extra: 1803/1653,
  41523. bottom: 128/1931
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(2.6, "meters"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(50, "meters")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(5, "feet"),
  41544. weight: math.unit(185, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/kyera/front.svg",
  41548. extra: 1875/1790,
  41549. bottom: 96/1971
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(5, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(7 + 6/12, "feet"),
  41566. weight: math.unit(540, "lb"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/yuko/front.svg",
  41570. extra: 1282/1222,
  41571. bottom: 101/1383
  41572. }
  41573. },
  41574. frontClothed: {
  41575. height: math.unit(7 + 6/12, "feet"),
  41576. weight: math.unit(540, "lb"),
  41577. name: "Front (Clothed)",
  41578. image: {
  41579. source: "./media/characters/yuko/front-clothed.svg",
  41580. extra: 1282/1222,
  41581. bottom: 101/1383
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(7 + 6/12, "feet"),
  41589. default: true
  41590. },
  41591. {
  41592. name: "Macro",
  41593. height: math.unit(26 + 9/12, "feet")
  41594. },
  41595. {
  41596. name: "Megamacro",
  41597. height: math.unit(300, "feet")
  41598. },
  41599. {
  41600. name: "Gigamacro",
  41601. height: math.unit(5000, "feet")
  41602. },
  41603. {
  41604. name: "Planetary",
  41605. height: math.unit(10000, "miles")
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41611. {
  41612. front: {
  41613. height: math.unit(8 + 2/12, "feet"),
  41614. weight: math.unit(600, "lb"),
  41615. name: "Front",
  41616. image: {
  41617. source: "./media/characters/deam-nitrel/front.svg",
  41618. extra: 1308/1234,
  41619. bottom: 125/1433
  41620. }
  41621. },
  41622. },
  41623. [
  41624. {
  41625. name: "Normal",
  41626. height: math.unit(8 + 2/12, "feet"),
  41627. default: true
  41628. },
  41629. ]
  41630. ))
  41631. characterMakers.push(() => makeCharacter(
  41632. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41633. {
  41634. front: {
  41635. height: math.unit(6.1, "feet"),
  41636. weight: math.unit(180, "lb"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/skyress/front.svg",
  41640. extra: 1045/915,
  41641. bottom: 28/1073
  41642. }
  41643. },
  41644. maw: {
  41645. height: math.unit(1, "feet"),
  41646. name: "Maw",
  41647. image: {
  41648. source: "./media/characters/skyress/maw.svg"
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(6.1, "feet"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "Macro",
  41660. height: math.unit(200, "feet")
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41666. {
  41667. front: {
  41668. height: math.unit(4 + 2/12, "feet"),
  41669. weight: math.unit(40, "kg"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/amethyst-jones/front.svg",
  41673. extra: 1220/1150,
  41674. bottom: 101/1321
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(4 + 2/12, "feet"),
  41682. default: true
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41688. {
  41689. front: {
  41690. height: math.unit(1.7, "m"),
  41691. weight: math.unit(135, "lb"),
  41692. name: "Front",
  41693. image: {
  41694. source: "./media/characters/jade/front.svg",
  41695. extra: 1818/1767,
  41696. bottom: 32/1850
  41697. }
  41698. },
  41699. back: {
  41700. height: math.unit(1.7, "m"),
  41701. weight: math.unit(135, "lb"),
  41702. name: "Back",
  41703. image: {
  41704. source: "./media/characters/jade/back.svg",
  41705. extra: 1869/1809,
  41706. bottom: 35/1904
  41707. }
  41708. },
  41709. hand: {
  41710. height: math.unit(0.24, "m"),
  41711. name: "Hand",
  41712. image: {
  41713. source: "./media/characters/jade/hand.svg"
  41714. }
  41715. },
  41716. foot: {
  41717. height: math.unit(0.263, "m"),
  41718. name: "Foot",
  41719. image: {
  41720. source: "./media/characters/jade/foot.svg"
  41721. }
  41722. },
  41723. dick: {
  41724. height: math.unit(0.47, "m"),
  41725. name: "Dick",
  41726. image: {
  41727. source: "./media/characters/jade/dick.svg"
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Micro",
  41734. height: math.unit(22, "cm")
  41735. },
  41736. {
  41737. name: "Normal",
  41738. height: math.unit(1.7, "m"),
  41739. default: true
  41740. },
  41741. {
  41742. name: "Macro",
  41743. height: math.unit(152, "m")
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(100, "miles"),
  41752. weight: math.unit(20000, "tons"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/cookie/front.svg",
  41756. extra: 1125/1070,
  41757. bottom: 30/1155
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Big",
  41764. height: math.unit(50, "feet")
  41765. },
  41766. {
  41767. name: "Macro",
  41768. height: math.unit(100, "miles"),
  41769. default: true
  41770. },
  41771. {
  41772. name: "Megamacro",
  41773. height: math.unit(90000, "miles")
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(6, "feet"),
  41782. weight: math.unit(145, "lb"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/farzian/front.svg",
  41786. extra: 1902/1693,
  41787. bottom: 108/2010
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Macro",
  41794. height: math.unit(500, "feet"),
  41795. default: true
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41801. {
  41802. front: {
  41803. height: math.unit(3 + 6/12, "feet"),
  41804. weight: math.unit(50, "lb"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/kimberly-tilson/front.svg",
  41808. extra: 1400/1322,
  41809. bottom: 36/1436
  41810. }
  41811. },
  41812. back: {
  41813. height: math.unit(3 + 6/12, "feet"),
  41814. weight: math.unit(50, "lb"),
  41815. name: "Back",
  41816. image: {
  41817. source: "./media/characters/kimberly-tilson/back.svg",
  41818. extra: 1370/1307,
  41819. bottom: 20/1390
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Normal",
  41826. height: math.unit(3 + 6/12, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(1148, "feet"),
  41836. weight: math.unit(34057, "lb"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/harthos/front.svg",
  41840. extra: 1391/1339,
  41841. bottom: 13/1404
  41842. }
  41843. },
  41844. },
  41845. [
  41846. {
  41847. name: "Macro",
  41848. height: math.unit(1148, "feet"),
  41849. default: true
  41850. },
  41851. ]
  41852. ))
  41853. characterMakers.push(() => makeCharacter(
  41854. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41855. {
  41856. front: {
  41857. height: math.unit(15, "feet"),
  41858. name: "Front",
  41859. image: {
  41860. source: "./media/characters/hypatia/front.svg",
  41861. extra: 1653/1591,
  41862. bottom: 79/1732
  41863. }
  41864. },
  41865. },
  41866. [
  41867. {
  41868. name: "Normal",
  41869. height: math.unit(15, "feet")
  41870. },
  41871. {
  41872. name: "Small",
  41873. height: math.unit(300, "feet")
  41874. },
  41875. {
  41876. name: "Macro",
  41877. height: math.unit(2500, "feet"),
  41878. default: true
  41879. },
  41880. {
  41881. name: "Mega Macro",
  41882. height: math.unit(1500, "miles")
  41883. },
  41884. {
  41885. name: "Giga Macro",
  41886. height: math.unit(1.5e6, "miles")
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(6, "feet"),
  41895. weight: math.unit(200, "lb"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/wulver/front.svg",
  41899. extra: 1724/1632,
  41900. bottom: 130/1854
  41901. }
  41902. },
  41903. frontNsfw: {
  41904. height: math.unit(6, "feet"),
  41905. weight: math.unit(200, "lb"),
  41906. name: "Front (NSFW)",
  41907. image: {
  41908. source: "./media/characters/wulver/front-nsfw.svg",
  41909. extra: 1724/1632,
  41910. bottom: 130/1854
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Human-Sized",
  41917. height: math.unit(6, "feet")
  41918. },
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(4, "meters"),
  41922. default: true
  41923. },
  41924. {
  41925. name: "Large",
  41926. height: math.unit(6, "m")
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(7, "feet"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/maru/front.svg",
  41938. extra: 1595/1570,
  41939. bottom: 0/1595
  41940. }
  41941. },
  41942. },
  41943. [
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(7, "feet"),
  41947. default: true
  41948. },
  41949. {
  41950. name: "Macro",
  41951. height: math.unit(700, "feet")
  41952. },
  41953. {
  41954. name: "Mega Macro",
  41955. height: math.unit(25, "miles")
  41956. },
  41957. ]
  41958. ))
  41959. characterMakers.push(() => makeCharacter(
  41960. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41961. {
  41962. front: {
  41963. height: math.unit(6, "feet"),
  41964. weight: math.unit(170, "lb"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/xenon/front.svg",
  41968. extra: 1376/1305,
  41969. bottom: 56/1432
  41970. }
  41971. },
  41972. back: {
  41973. height: math.unit(6, "feet"),
  41974. weight: math.unit(170, "lb"),
  41975. name: "Back",
  41976. image: {
  41977. source: "./media/characters/xenon/back.svg",
  41978. extra: 1328/1259,
  41979. bottom: 95/1423
  41980. }
  41981. },
  41982. maw: {
  41983. height: math.unit(0.52, "feet"),
  41984. name: "Maw",
  41985. image: {
  41986. source: "./media/characters/xenon/maw.svg"
  41987. }
  41988. },
  41989. handLeft: {
  41990. height: math.unit(0.82 * 169 / 153, "feet"),
  41991. name: "Hand (Left)",
  41992. image: {
  41993. source: "./media/characters/xenon/hand-left.svg"
  41994. }
  41995. },
  41996. handRight: {
  41997. height: math.unit(0.82, "feet"),
  41998. name: "Hand (Right)",
  41999. image: {
  42000. source: "./media/characters/xenon/hand-right.svg"
  42001. }
  42002. },
  42003. footLeft: {
  42004. height: math.unit(1.13, "feet"),
  42005. name: "Foot (Left)",
  42006. image: {
  42007. source: "./media/characters/xenon/foot-left.svg"
  42008. }
  42009. },
  42010. footRight: {
  42011. height: math.unit(1.13 * 194 / 196, "feet"),
  42012. name: "Foot (Right)",
  42013. image: {
  42014. source: "./media/characters/xenon/foot-right.svg"
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Micro",
  42021. height: math.unit(0.8, "inches")
  42022. },
  42023. {
  42024. name: "Normal",
  42025. height: math.unit(6, "feet")
  42026. },
  42027. {
  42028. name: "Macro",
  42029. height: math.unit(50, "feet"),
  42030. default: true
  42031. },
  42032. {
  42033. name: "Macro+",
  42034. height: math.unit(250, "feet")
  42035. },
  42036. {
  42037. name: "Megamacro",
  42038. height: math.unit(1500, "feet")
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42044. {
  42045. front: {
  42046. height: math.unit(7 + 5/12, "feet"),
  42047. name: "Front",
  42048. image: {
  42049. source: "./media/characters/zane/front.svg",
  42050. extra: 1260/1203,
  42051. bottom: 94/1354
  42052. }
  42053. },
  42054. back: {
  42055. height: math.unit(5.05, "feet"),
  42056. name: "Back",
  42057. image: {
  42058. source: "./media/characters/zane/back.svg",
  42059. extra: 893/829,
  42060. bottom: 30/923
  42061. }
  42062. },
  42063. werewolf: {
  42064. height: math.unit(11, "feet"),
  42065. name: "Werewolf",
  42066. image: {
  42067. source: "./media/characters/zane/werewolf.svg",
  42068. extra: 1383/1323,
  42069. bottom: 89/1472
  42070. }
  42071. },
  42072. foot: {
  42073. height: math.unit(1.46, "feet"),
  42074. name: "Foot",
  42075. image: {
  42076. source: "./media/characters/zane/foot.svg"
  42077. }
  42078. },
  42079. footFront: {
  42080. height: math.unit(0.784, "feet"),
  42081. name: "Foot (Front)",
  42082. image: {
  42083. source: "./media/characters/zane/foot-front.svg"
  42084. }
  42085. },
  42086. dick: {
  42087. height: math.unit(1.95, "feet"),
  42088. name: "Dick",
  42089. image: {
  42090. source: "./media/characters/zane/dick.svg"
  42091. }
  42092. },
  42093. dickWerewolf: {
  42094. height: math.unit(3.77, "feet"),
  42095. name: "Dick (Werewolf)",
  42096. image: {
  42097. source: "./media/characters/zane/dick.svg"
  42098. }
  42099. },
  42100. },
  42101. [
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(7 + 5/12, "feet"),
  42105. default: true
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(6 + 2/12, "feet"),
  42114. weight: math.unit(284, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/benni-desparque/front.svg",
  42118. extra: 1353/1126,
  42119. bottom: 69/1422
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Civilian",
  42126. height: math.unit(6 + 2/12, "feet")
  42127. },
  42128. {
  42129. name: "Normal",
  42130. height: math.unit(98, "feet"),
  42131. default: true
  42132. },
  42133. {
  42134. name: "Kaiju Fighter",
  42135. height: math.unit(268, "feet")
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(5, "feet"),
  42144. weight: math.unit(105, "lb"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/maxine/front.svg",
  42148. extra: 1386/1250,
  42149. bottom: 71/1457
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Normal",
  42156. height: math.unit(5, "feet"),
  42157. default: true
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(11 + 7/12, "feet"),
  42166. weight: math.unit(9576, "lb"),
  42167. name: "Front",
  42168. image: {
  42169. source: "./media/characters/scaly/front.svg",
  42170. extra: 888/867,
  42171. bottom: 36/924
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(11 + 7/12, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42185. {
  42186. front: {
  42187. height: math.unit(6 + 3/12, "feet"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/saelria/front.svg",
  42191. extra: 1243/1138,
  42192. bottom: 46/1289
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Micro",
  42199. height: math.unit(6, "inches"),
  42200. },
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(6 + 3/12, "feet"),
  42204. default: true
  42205. },
  42206. {
  42207. name: "Macro",
  42208. height: math.unit(25, "feet")
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(80, "meters"),
  42217. weight: math.unit(7000, "tonnes"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/tef/front.svg",
  42221. extra: 2036/1991,
  42222. bottom: 54/2090
  42223. }
  42224. },
  42225. back: {
  42226. height: math.unit(80, "meters"),
  42227. weight: math.unit(7000, "tonnes"),
  42228. name: "Back",
  42229. image: {
  42230. source: "./media/characters/tef/back.svg",
  42231. extra: 2036/1991,
  42232. bottom: 54/2090
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Macro",
  42239. height: math.unit(80, "meters"),
  42240. default: true
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(13, "feet"),
  42249. weight: math.unit(6, "tons"),
  42250. name: "Front",
  42251. image: {
  42252. source: "./media/characters/rover/front.svg",
  42253. extra: 1233/1156,
  42254. bottom: 50/1283
  42255. }
  42256. },
  42257. back: {
  42258. height: math.unit(13, "feet"),
  42259. weight: math.unit(6, "tons"),
  42260. name: "Back",
  42261. image: {
  42262. source: "./media/characters/rover/back.svg",
  42263. extra: 1327/1258,
  42264. bottom: 39/1366
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(13, "feet"),
  42272. default: true
  42273. },
  42274. {
  42275. name: "Macro",
  42276. height: math.unit(1300, "feet")
  42277. },
  42278. {
  42279. name: "Megamacro",
  42280. height: math.unit(1300, "miles")
  42281. },
  42282. {
  42283. name: "Gigamacro",
  42284. height: math.unit(1300000, "miles")
  42285. },
  42286. ]
  42287. ))
  42288. characterMakers.push(() => makeCharacter(
  42289. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42290. {
  42291. front: {
  42292. height: math.unit(6, "feet"),
  42293. weight: math.unit(150, "lb"),
  42294. name: "Front",
  42295. image: {
  42296. source: "./media/characters/ariz/front.svg",
  42297. extra: 1401/1346,
  42298. bottom: 5/1406
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(10, "feet"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(6, "feet"),
  42315. weight: math.unit(140, "lb"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/sigrun/front.svg",
  42319. extra: 1418/1359,
  42320. bottom: 27/1445
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Macro",
  42327. height: math.unit(35, "feet"),
  42328. default: true
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(6, "feet"),
  42337. weight: math.unit(150, "lb"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/numin/front.svg",
  42341. extra: 1433/1388,
  42342. bottom: 12/1445
  42343. }
  42344. },
  42345. },
  42346. [
  42347. {
  42348. name: "Macro",
  42349. height: math.unit(21.5, "km"),
  42350. default: true
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42356. {
  42357. front: {
  42358. height: math.unit(6, "feet"),
  42359. weight: math.unit(463, "lb"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/melwa/front.svg",
  42363. extra: 1307/1248,
  42364. bottom: 93/1400
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Macro",
  42371. height: math.unit(50, "meters"),
  42372. default: true
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(325, "feet"),
  42381. name: "Front",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/front.svg",
  42384. extra: 1955/1814,
  42385. bottom: 40/1995
  42386. }
  42387. },
  42388. frontExtended: {
  42389. height: math.unit(325, "feet"),
  42390. name: "Front (Extended)",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/front-extended.svg",
  42393. extra: 1955/1814,
  42394. bottom: 40/1995
  42395. }
  42396. },
  42397. side: {
  42398. height: math.unit(325, "feet"),
  42399. name: "Side",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/side.svg",
  42402. extra: 1495/1396,
  42403. bottom: 17/1512
  42404. }
  42405. },
  42406. sideExtended: {
  42407. height: math.unit(325, "feet"),
  42408. name: "Side (Extended)",
  42409. image: {
  42410. source: "./media/characters/zorkaiju/side-extended.svg",
  42411. extra: 1495/1396,
  42412. bottom: 17/1512
  42413. }
  42414. },
  42415. back: {
  42416. height: math.unit(325, "feet"),
  42417. name: "Back",
  42418. image: {
  42419. source: "./media/characters/zorkaiju/back.svg",
  42420. extra: 1959/1821,
  42421. bottom: 31/1990
  42422. }
  42423. },
  42424. backExtended: {
  42425. height: math.unit(325, "feet"),
  42426. name: "Back (Extended)",
  42427. image: {
  42428. source: "./media/characters/zorkaiju/back-extended.svg",
  42429. extra: 1959/1821,
  42430. bottom: 31/1990
  42431. }
  42432. },
  42433. hand: {
  42434. height: math.unit(58.4, "feet"),
  42435. name: "Hand",
  42436. image: {
  42437. source: "./media/characters/zorkaiju/hand.svg"
  42438. }
  42439. },
  42440. handExtended: {
  42441. height: math.unit(61.4, "feet"),
  42442. name: "Hand (Extended)",
  42443. image: {
  42444. source: "./media/characters/zorkaiju/hand-extended.svg"
  42445. }
  42446. },
  42447. foot: {
  42448. height: math.unit(95, "feet"),
  42449. name: "Foot",
  42450. image: {
  42451. source: "./media/characters/zorkaiju/foot.svg"
  42452. }
  42453. },
  42454. leftArm: {
  42455. height: math.unit(59, "feet"),
  42456. name: "Left Arm",
  42457. image: {
  42458. source: "./media/characters/zorkaiju/left-arm.svg"
  42459. }
  42460. },
  42461. rightArm: {
  42462. height: math.unit(59, "feet"),
  42463. name: "Right Arm",
  42464. image: {
  42465. source: "./media/characters/zorkaiju/right-arm.svg"
  42466. }
  42467. },
  42468. leftArmExtended: {
  42469. height: math.unit(59 * 1.033546, "feet"),
  42470. name: "Left Arm (Extended)",
  42471. image: {
  42472. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42473. }
  42474. },
  42475. rightArmExtended: {
  42476. height: math.unit(59 * 1.0496, "feet"),
  42477. name: "Right Arm (Extended)",
  42478. image: {
  42479. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42480. }
  42481. },
  42482. tail: {
  42483. height: math.unit(104, "feet"),
  42484. name: "Tail",
  42485. image: {
  42486. source: "./media/characters/zorkaiju/tail.svg"
  42487. }
  42488. },
  42489. tailExtended: {
  42490. height: math.unit(104, "feet"),
  42491. name: "Tail (Extended)",
  42492. image: {
  42493. source: "./media/characters/zorkaiju/tail-extended.svg"
  42494. }
  42495. },
  42496. tailBottom: {
  42497. height: math.unit(104, "feet"),
  42498. name: "Tail Bottom",
  42499. image: {
  42500. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42501. }
  42502. },
  42503. crystal: {
  42504. height: math.unit(27.54, "feet"),
  42505. name: "Crystal",
  42506. image: {
  42507. source: "./media/characters/zorkaiju/crystal.svg"
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Kaiju",
  42514. height: math.unit(325, "feet"),
  42515. default: true
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42521. {
  42522. front: {
  42523. height: math.unit(6 + 1/12, "feet"),
  42524. weight: math.unit(115, "lb"),
  42525. name: "Front",
  42526. image: {
  42527. source: "./media/characters/bailey-belfry/front.svg",
  42528. extra: 1240/1121,
  42529. bottom: 101/1341
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(6 + 1/12, "feet"),
  42537. default: true
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42543. {
  42544. side: {
  42545. height: math.unit(4, "meters"),
  42546. weight: math.unit(250, "kg"),
  42547. name: "Side",
  42548. image: {
  42549. source: "./media/characters/blacky/side.svg",
  42550. extra: 1027/919,
  42551. bottom: 43/1070
  42552. }
  42553. },
  42554. maw: {
  42555. height: math.unit(1, "meters"),
  42556. name: "Maw",
  42557. image: {
  42558. source: "./media/characters/blacky/maw.svg"
  42559. }
  42560. },
  42561. paw: {
  42562. height: math.unit(1, "meters"),
  42563. name: "Paw",
  42564. image: {
  42565. source: "./media/characters/blacky/paw.svg"
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(4, "meters"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(170, "cm"),
  42582. weight: math.unit(66, "kg"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/thux-ei/front.svg",
  42586. extra: 1109/1011,
  42587. bottom: 8/1117
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Normal",
  42594. height: math.unit(170, "cm"),
  42595. default: true
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42601. {
  42602. front: {
  42603. height: math.unit(5, "feet"),
  42604. weight: math.unit(120, "lb"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/roxanne-voltaire/front.svg",
  42608. extra: 1901/1779,
  42609. bottom: 53/1954
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(5, "feet"),
  42617. default: true
  42618. },
  42619. {
  42620. name: "Giant",
  42621. height: math.unit(50, "feet")
  42622. },
  42623. {
  42624. name: "Titan",
  42625. height: math.unit(500, "feet")
  42626. },
  42627. {
  42628. name: "Macro",
  42629. height: math.unit(5000, "feet")
  42630. },
  42631. {
  42632. name: "Megamacro",
  42633. height: math.unit(50000, "feet")
  42634. },
  42635. {
  42636. name: "Gigamacro",
  42637. height: math.unit(500000, "feet")
  42638. },
  42639. {
  42640. name: "Teramacro",
  42641. height: math.unit(5e6, "feet")
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(6 + 2/12, "feet"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/squeaks/front.svg",
  42653. extra: 1823/1768,
  42654. bottom: 138/1961
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Micro",
  42661. height: math.unit(0.5, "inches")
  42662. },
  42663. {
  42664. name: "Normal",
  42665. height: math.unit(6 + 2/12, "feet"),
  42666. default: true
  42667. },
  42668. {
  42669. name: "Macro",
  42670. height: math.unit(600, "feet")
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(1.72, "meters"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/archinger/front.svg",
  42682. extra: 1861/1675,
  42683. bottom: 125/1986
  42684. }
  42685. },
  42686. back: {
  42687. height: math.unit(1.72, "meters"),
  42688. name: "Back",
  42689. image: {
  42690. source: "./media/characters/archinger/back.svg",
  42691. extra: 1844/1701,
  42692. bottom: 104/1948
  42693. }
  42694. },
  42695. cock: {
  42696. height: math.unit(0.59, "feet"),
  42697. name: "Cock",
  42698. image: {
  42699. source: "./media/characters/archinger/cock.svg"
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(1.72, "meters"),
  42707. default: true
  42708. },
  42709. {
  42710. name: "Macro",
  42711. height: math.unit(84, "meters")
  42712. },
  42713. {
  42714. name: "Macro+",
  42715. height: math.unit(112, "meters")
  42716. },
  42717. {
  42718. name: "Macro++",
  42719. height: math.unit(960, "meters")
  42720. },
  42721. {
  42722. name: "Macro+++",
  42723. height: math.unit(4, "km")
  42724. },
  42725. {
  42726. name: "Macro++++",
  42727. height: math.unit(48, "km")
  42728. },
  42729. {
  42730. name: "Macro+++++",
  42731. height: math.unit(4500, "km")
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(5 + 5/12, "feet"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/alsnapz/front.svg",
  42743. extra: 1157/1065,
  42744. bottom: 42/1199
  42745. }
  42746. },
  42747. },
  42748. [
  42749. {
  42750. name: "Normal",
  42751. height: math.unit(5 + 5/12, "feet"),
  42752. default: true
  42753. },
  42754. ]
  42755. ))
  42756. characterMakers.push(() => makeCharacter(
  42757. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42758. {
  42759. side: {
  42760. height: math.unit(3.2, "earths"),
  42761. name: "Side",
  42762. image: {
  42763. source: "./media/characters/mag/side.svg",
  42764. extra: 1331/1008,
  42765. bottom: 52/1383
  42766. }
  42767. },
  42768. wing: {
  42769. height: math.unit(1.94, "earths"),
  42770. name: "Wing",
  42771. image: {
  42772. source: "./media/characters/mag/wing.svg"
  42773. }
  42774. },
  42775. dick: {
  42776. height: math.unit(1.8, "earths"),
  42777. name: "Dick",
  42778. image: {
  42779. source: "./media/characters/mag/dick.svg"
  42780. }
  42781. },
  42782. ass: {
  42783. height: math.unit(1.33, "earths"),
  42784. name: "Ass",
  42785. image: {
  42786. source: "./media/characters/mag/ass.svg"
  42787. }
  42788. },
  42789. head: {
  42790. height: math.unit(1.1, "earths"),
  42791. name: "Head",
  42792. image: {
  42793. source: "./media/characters/mag/head.svg"
  42794. }
  42795. },
  42796. maw: {
  42797. height: math.unit(1.62, "earths"),
  42798. name: "Maw",
  42799. image: {
  42800. source: "./media/characters/mag/maw.svg"
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Small",
  42807. height: math.unit(162, "feet")
  42808. },
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(3.2, "earths"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(512, "feet"),
  42821. weight: math.unit(63509, "tonnes"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/vorrel-harroc/front.svg",
  42825. extra: 1075/1063,
  42826. bottom: 62/1137
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Normal",
  42833. height: math.unit(10, "feet")
  42834. },
  42835. {
  42836. name: "Macro",
  42837. height: math.unit(512, "feet"),
  42838. default: true
  42839. },
  42840. {
  42841. name: "Megamacro",
  42842. height: math.unit(256, "miles")
  42843. },
  42844. {
  42845. name: "Gigamacro",
  42846. height: math.unit(4096, "miles")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42852. {
  42853. side: {
  42854. height: math.unit(50, "feet"),
  42855. name: "Side",
  42856. image: {
  42857. source: "./media/characters/froimar/side.svg",
  42858. extra: 855/638,
  42859. bottom: 99/954
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Macro",
  42866. height: math.unit(50, "feet"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42873. {
  42874. front: {
  42875. height: math.unit(210, "miles"),
  42876. name: "Front",
  42877. image: {
  42878. source: "./media/characters/timothy/front.svg",
  42879. extra: 1007/943,
  42880. bottom: 62/1069
  42881. }
  42882. },
  42883. frontSkirt: {
  42884. height: math.unit(210, "miles"),
  42885. name: "Front (Skirt)",
  42886. image: {
  42887. source: "./media/characters/timothy/front-skirt.svg",
  42888. extra: 1007/943,
  42889. bottom: 62/1069
  42890. }
  42891. },
  42892. frontCoat: {
  42893. height: math.unit(210, "miles"),
  42894. name: "Front (Coat)",
  42895. image: {
  42896. source: "./media/characters/timothy/front-coat.svg",
  42897. extra: 1007/943,
  42898. bottom: 62/1069
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Macro",
  42905. height: math.unit(210, "miles"),
  42906. default: true
  42907. },
  42908. {
  42909. name: "Megamacro",
  42910. height: math.unit(210000, "miles")
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(188, "feet"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/pyotr/front.svg",
  42922. extra: 1912/1826,
  42923. bottom: 18/1930
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Macro",
  42930. height: math.unit(188, "feet"),
  42931. default: true
  42932. },
  42933. {
  42934. name: "Megamacro",
  42935. height: math.unit(8, "miles")
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42941. {
  42942. side: {
  42943. height: math.unit(10, "feet"),
  42944. weight: math.unit(4500, "lb"),
  42945. name: "Side",
  42946. image: {
  42947. source: "./media/characters/ackart/side.svg",
  42948. extra: 1776/1668,
  42949. bottom: 116/1892
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "Normal",
  42956. height: math.unit(10, "feet"),
  42957. default: true
  42958. },
  42959. ]
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42963. {
  42964. side: {
  42965. height: math.unit(21, "feet"),
  42966. name: "Side",
  42967. image: {
  42968. source: "./media/characters/nolow/side.svg",
  42969. extra: 1484/1434,
  42970. bottom: 85/1569
  42971. }
  42972. },
  42973. sideErect: {
  42974. height: math.unit(21, "feet"),
  42975. name: "Side-erect",
  42976. image: {
  42977. source: "./media/characters/nolow/side-erect.svg",
  42978. extra: 1484/1434,
  42979. bottom: 85/1569
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Regular",
  42986. height: math.unit(12, "feet")
  42987. },
  42988. {
  42989. name: "Big Chee",
  42990. height: math.unit(21, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(7, "feet"),
  43000. weight: math.unit(250, "lb"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/nines/front.svg",
  43004. extra: 1741/1607,
  43005. bottom: 41/1782
  43006. }
  43007. },
  43008. side: {
  43009. height: math.unit(7, "feet"),
  43010. weight: math.unit(250, "lb"),
  43011. name: "Side",
  43012. image: {
  43013. source: "./media/characters/nines/side.svg",
  43014. extra: 1854/1735,
  43015. bottom: 93/1947
  43016. }
  43017. },
  43018. back: {
  43019. height: math.unit(7, "feet"),
  43020. weight: math.unit(250, "lb"),
  43021. name: "Back",
  43022. image: {
  43023. source: "./media/characters/nines/back.svg",
  43024. extra: 1748/1615,
  43025. bottom: 20/1768
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Megamacro",
  43032. height: math.unit(99, "km"),
  43033. default: true
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(5 + 10/12, "feet"),
  43042. weight: math.unit(210, "lb"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/zenith/front.svg",
  43046. extra: 1531/1452,
  43047. bottom: 198/1729
  43048. }
  43049. },
  43050. back: {
  43051. height: math.unit(5 + 10/12, "feet"),
  43052. weight: math.unit(210, "lb"),
  43053. name: "Back",
  43054. image: {
  43055. source: "./media/characters/zenith/back.svg",
  43056. extra: 1571/1487,
  43057. bottom: 75/1646
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(5 + 10/12, "feet"),
  43065. default: true
  43066. }
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43071. {
  43072. front: {
  43073. height: math.unit(4, "feet"),
  43074. weight: math.unit(60, "lb"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/jasper/front.svg",
  43078. extra: 1450/1379,
  43079. bottom: 19/1469
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(4, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(6 + 5/12, "feet"),
  43096. weight: math.unit(290, "lb"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/tiberius-thyben/front.svg",
  43100. extra: 757/739,
  43101. bottom: 39/796
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Micro",
  43108. height: math.unit(1.5, "inches")
  43109. },
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(6 + 5/12, "feet"),
  43113. default: true
  43114. },
  43115. {
  43116. name: "Macro",
  43117. height: math.unit(300, "feet")
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(5 + 6/12, "feet"),
  43126. weight: math.unit(60, "kg"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/sabre/front.svg",
  43130. extra: 738/671,
  43131. bottom: 27/765
  43132. }
  43133. },
  43134. },
  43135. [
  43136. {
  43137. name: "Teeny",
  43138. height: math.unit(2, "inches")
  43139. },
  43140. {
  43141. name: "Smol",
  43142. height: math.unit(8, "inches")
  43143. },
  43144. {
  43145. name: "Normal",
  43146. height: math.unit(5 + 6/12, "feet"),
  43147. default: true
  43148. },
  43149. {
  43150. name: "Mini-Macro",
  43151. height: math.unit(15, "feet")
  43152. },
  43153. {
  43154. name: "Macro",
  43155. height: math.unit(50, "feet")
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(6 + 4/12, "feet"),
  43164. weight: math.unit(170, "lb"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/charlie/front.svg",
  43168. extra: 1348/1228,
  43169. bottom: 15/1363
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Macro",
  43176. height: math.unit(1700, "meters"),
  43177. default: true
  43178. },
  43179. {
  43180. name: "MegaMacro",
  43181. height: math.unit(20400, "meters")
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(6 + 3/12, "feet"),
  43190. weight: math.unit(185, "lb"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/susan-grant/front.svg",
  43194. extra: 1351/1327,
  43195. bottom: 26/1377
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(6 + 3/12, "feet"),
  43203. default: true
  43204. },
  43205. {
  43206. name: "Macro",
  43207. height: math.unit(225, "feet")
  43208. },
  43209. {
  43210. name: "Macro+",
  43211. height: math.unit(900, "feet")
  43212. },
  43213. {
  43214. name: "MegaMacro",
  43215. height: math.unit(14400, "feet")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(5 + 4/12, "feet"),
  43224. weight: math.unit(110, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/axel-isanov/front.svg",
  43228. extra: 1096/1065,
  43229. bottom: 13/1109
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5 + 4/12, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(9, "feet"),
  43246. weight: math.unit(467, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/necahual/front.svg",
  43250. extra: 920/873,
  43251. bottom: 26/946
  43252. }
  43253. },
  43254. back: {
  43255. height: math.unit(9, "feet"),
  43256. weight: math.unit(467, "lb"),
  43257. name: "Back",
  43258. image: {
  43259. source: "./media/characters/necahual/back.svg",
  43260. extra: 930/884,
  43261. bottom: 16/946
  43262. }
  43263. },
  43264. frontUnderwear: {
  43265. height: math.unit(9, "feet"),
  43266. weight: math.unit(467, "lb"),
  43267. name: "Front (Underwear)",
  43268. image: {
  43269. source: "./media/characters/necahual/front-underwear.svg",
  43270. extra: 920/873,
  43271. bottom: 26/946
  43272. }
  43273. },
  43274. frontDressed: {
  43275. height: math.unit(9, "feet"),
  43276. weight: math.unit(467, "lb"),
  43277. name: "Front (Dressed)",
  43278. image: {
  43279. source: "./media/characters/necahual/front-dressed.svg",
  43280. extra: 920/873,
  43281. bottom: 26/946
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Comprsesed",
  43288. height: math.unit(9, "feet")
  43289. },
  43290. {
  43291. name: "Natural",
  43292. height: math.unit(15, "feet"),
  43293. default: true
  43294. },
  43295. {
  43296. name: "Boosted",
  43297. height: math.unit(50, "feet")
  43298. },
  43299. {
  43300. name: "Boosted+",
  43301. height: math.unit(150, "feet")
  43302. },
  43303. {
  43304. name: "Max",
  43305. height: math.unit(500, "feet")
  43306. },
  43307. ]
  43308. ))
  43309. characterMakers.push(() => makeCharacter(
  43310. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43311. {
  43312. front: {
  43313. height: math.unit(22 + 1/12, "feet"),
  43314. weight: math.unit(3200, "lb"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/theo-acacia/front.svg",
  43318. extra: 1796/1741,
  43319. bottom: 83/1879
  43320. }
  43321. },
  43322. frontUnderwear: {
  43323. height: math.unit(22 + 1/12, "feet"),
  43324. weight: math.unit(3200, "lb"),
  43325. name: "Front (Underwear)",
  43326. image: {
  43327. source: "./media/characters/theo-acacia/front-underwear.svg",
  43328. extra: 1796/1741,
  43329. bottom: 83/1879
  43330. }
  43331. },
  43332. frontNude: {
  43333. height: math.unit(22 + 1/12, "feet"),
  43334. weight: math.unit(3200, "lb"),
  43335. name: "Front (Nude)",
  43336. image: {
  43337. source: "./media/characters/theo-acacia/front-nude.svg",
  43338. extra: 1796/1741,
  43339. bottom: 83/1879
  43340. }
  43341. },
  43342. },
  43343. [
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(22 + 1/12, "feet"),
  43347. default: true
  43348. },
  43349. ]
  43350. ))
  43351. characterMakers.push(() => makeCharacter(
  43352. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43353. {
  43354. front: {
  43355. height: math.unit(20, "feet"),
  43356. name: "Front",
  43357. image: {
  43358. source: "./media/characters/astra/front.svg",
  43359. extra: 1850/1714,
  43360. bottom: 106/1956
  43361. }
  43362. },
  43363. frontUndressed: {
  43364. height: math.unit(20, "feet"),
  43365. name: "Front (Undressed)",
  43366. image: {
  43367. source: "./media/characters/astra/front-undressed.svg",
  43368. extra: 1926/1749,
  43369. bottom: 0/1926
  43370. }
  43371. },
  43372. hand: {
  43373. height: math.unit(1.53, "feet"),
  43374. name: "Hand",
  43375. image: {
  43376. source: "./media/characters/astra/hand.svg"
  43377. }
  43378. },
  43379. paw: {
  43380. height: math.unit(1.53, "feet"),
  43381. name: "Paw",
  43382. image: {
  43383. source: "./media/characters/astra/paw.svg"
  43384. }
  43385. },
  43386. },
  43387. [
  43388. {
  43389. name: "Smallest",
  43390. height: math.unit(20, "feet")
  43391. },
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(1e9, "miles"),
  43395. default: true
  43396. },
  43397. {
  43398. name: "Larger",
  43399. height: math.unit(5, "multiverses")
  43400. },
  43401. {
  43402. name: "Largest",
  43403. height: math.unit(1e9, "multiverses")
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43409. {
  43410. front: {
  43411. height: math.unit(8, "feet"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/breanna/front.svg",
  43415. extra: 1912/1632,
  43416. bottom: 33/1945
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Smallest",
  43423. height: math.unit(8, "feet")
  43424. },
  43425. {
  43426. name: "Normal",
  43427. height: math.unit(1, "mile"),
  43428. default: true
  43429. },
  43430. {
  43431. name: "Maximum",
  43432. height: math.unit(1500000000000, "lightyears")
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(5 + 11/12, "feet"),
  43441. weight: math.unit(155, "lb"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/cai/front.svg",
  43445. extra: 1823/1702,
  43446. bottom: 32/1855
  43447. }
  43448. },
  43449. back: {
  43450. height: math.unit(5 + 11/12, "feet"),
  43451. weight: math.unit(155, "lb"),
  43452. name: "Back",
  43453. image: {
  43454. source: "./media/characters/cai/back.svg",
  43455. extra: 1809/1708,
  43456. bottom: 31/1840
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Normal",
  43463. height: math.unit(5 + 11/12, "feet"),
  43464. default: true
  43465. },
  43466. {
  43467. name: "Big",
  43468. height: math.unit(15, "feet")
  43469. },
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(200, "feet")
  43473. },
  43474. ]
  43475. ))
  43476. characterMakers.push(() => makeCharacter(
  43477. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43478. {
  43479. front: {
  43480. height: math.unit(5 + 6/12, "feet"),
  43481. weight: math.unit(160, "lb"),
  43482. name: "Front",
  43483. image: {
  43484. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43485. extra: 1227/1174,
  43486. bottom: 37/1264
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Macro",
  43493. height: math.unit(444, "meters"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(18 + 7/12, "feet"),
  43503. name: "Front",
  43504. image: {
  43505. source: "./media/characters/rex/front.svg",
  43506. extra: 1941/1807,
  43507. bottom: 66/2007
  43508. }
  43509. },
  43510. back: {
  43511. height: math.unit(18 + 7/12, "feet"),
  43512. name: "Back",
  43513. image: {
  43514. source: "./media/characters/rex/back.svg",
  43515. extra: 1937/1822,
  43516. bottom: 42/1979
  43517. }
  43518. },
  43519. boot: {
  43520. height: math.unit(3.45, "feet"),
  43521. name: "Boot",
  43522. image: {
  43523. source: "./media/characters/rex/boot.svg"
  43524. }
  43525. },
  43526. paw: {
  43527. height: math.unit(4.17, "feet"),
  43528. name: "Paw",
  43529. image: {
  43530. source: "./media/characters/rex/paw.svg"
  43531. }
  43532. },
  43533. head: {
  43534. height: math.unit(6.728, "feet"),
  43535. name: "Head",
  43536. image: {
  43537. source: "./media/characters/rex/head.svg"
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Nano",
  43544. height: math.unit(18 + 7/12, "feet")
  43545. },
  43546. {
  43547. name: "Micro",
  43548. height: math.unit(1.5, "megameters")
  43549. },
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(440, "megameters"),
  43553. default: true
  43554. },
  43555. {
  43556. name: "Macro",
  43557. height: math.unit(2.5, "gigameters")
  43558. },
  43559. {
  43560. name: "Gigamacro",
  43561. height: math.unit(2, "galaxies")
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43567. {
  43568. side: {
  43569. height: math.unit(32, "feet"),
  43570. weight: math.unit(250000, "lb"),
  43571. name: "Side",
  43572. image: {
  43573. source: "./media/characters/silverwing/side.svg",
  43574. extra: 1100/1019,
  43575. bottom: 204/1304
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(32, "feet"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(6 + 6/12, "feet"),
  43592. weight: math.unit(350, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/tristan-hawthorne/front.svg",
  43596. extra: 1159/1124,
  43597. bottom: 37/1196
  43598. },
  43599. form: "labrador",
  43600. default: true
  43601. },
  43602. skunkFront: {
  43603. height: math.unit(4 + 6/12, "feet"),
  43604. weight: math.unit(120, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43608. extra: 1609/1551,
  43609. bottom: 169/1778
  43610. },
  43611. form: "skunk",
  43612. default: true
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(6 + 6/12, "feet"),
  43619. form: "labrador",
  43620. default: true
  43621. },
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(4 + 6/12, "feet"),
  43625. form: "skunk",
  43626. default: true
  43627. },
  43628. ],
  43629. {
  43630. "labrador": {
  43631. name: "Labrador",
  43632. default: true
  43633. },
  43634. "skunk": {
  43635. name: "Skunk"
  43636. }
  43637. }
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(5 + 11/12, "feet"),
  43644. weight: math.unit(190, "lb"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/mizu/front.svg",
  43648. extra: 1988/1788,
  43649. bottom: 14/2002
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Normal",
  43656. height: math.unit(5 + 11/12, "feet"),
  43657. default: true
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43663. {
  43664. front: {
  43665. height: math.unit(1.7, "feet"),
  43666. weight: math.unit(50, "lb"),
  43667. name: "Front",
  43668. image: {
  43669. source: "./media/characters/dechroma/front.svg",
  43670. extra: 1095/859,
  43671. bottom: 64/1159
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(1.7, "feet"),
  43679. default: true
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43685. {
  43686. side: {
  43687. height: math.unit(30, "feet"),
  43688. name: "Side",
  43689. image: {
  43690. source: "./media/characters/veluren-thanazel/side.svg",
  43691. extra: 1611/633,
  43692. bottom: 118/1729
  43693. }
  43694. },
  43695. front: {
  43696. height: math.unit(30, "feet"),
  43697. name: "Front",
  43698. image: {
  43699. source: "./media/characters/veluren-thanazel/front.svg",
  43700. extra: 1486/636,
  43701. bottom: 238/1724
  43702. }
  43703. },
  43704. head: {
  43705. height: math.unit(21.4, "feet"),
  43706. name: "Head",
  43707. image: {
  43708. source: "./media/characters/veluren-thanazel/head.svg"
  43709. }
  43710. },
  43711. genitals: {
  43712. height: math.unit(19.4, "feet"),
  43713. name: "Genitals",
  43714. image: {
  43715. source: "./media/characters/veluren-thanazel/genitals.svg"
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Social",
  43722. height: math.unit(6, "feet")
  43723. },
  43724. {
  43725. name: "Play",
  43726. height: math.unit(12, "feet")
  43727. },
  43728. {
  43729. name: "True",
  43730. height: math.unit(30, "feet"),
  43731. default: true
  43732. },
  43733. ]
  43734. ))
  43735. characterMakers.push(() => makeCharacter(
  43736. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43737. {
  43738. front: {
  43739. height: math.unit(7 + 6/12, "feet"),
  43740. weight: math.unit(500, "kg"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/arcturas/front.svg",
  43744. extra: 1700/1500,
  43745. bottom: 145/1845
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Normal",
  43752. height: math.unit(7 + 6/12, "feet"),
  43753. default: true
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43759. {
  43760. side: {
  43761. height: math.unit(6, "feet"),
  43762. weight: math.unit(2, "tons"),
  43763. name: "Side",
  43764. image: {
  43765. source: "./media/characters/vitaen/side.svg",
  43766. extra: 1157/617,
  43767. bottom: 122/1279
  43768. }
  43769. },
  43770. },
  43771. [
  43772. {
  43773. name: "Normal",
  43774. height: math.unit(6, "feet"),
  43775. default: true
  43776. },
  43777. ]
  43778. ))
  43779. characterMakers.push(() => makeCharacter(
  43780. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43781. {
  43782. front: {
  43783. height: math.unit(19, "feet"),
  43784. name: "Front",
  43785. image: {
  43786. source: "./media/characters/fia-dreamweaver/front.svg",
  43787. extra: 1630/1504,
  43788. bottom: 25/1655
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(19, "feet"),
  43796. default: true
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43802. {
  43803. front: {
  43804. height: math.unit(5 + 4/12, "feet"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/artan/front.svg",
  43808. extra: 1618/1535,
  43809. bottom: 46/1664
  43810. }
  43811. },
  43812. back: {
  43813. height: math.unit(5 + 4/12, "feet"),
  43814. name: "Back",
  43815. image: {
  43816. source: "./media/characters/artan/back.svg",
  43817. extra: 1618/1543,
  43818. bottom: 31/1649
  43819. }
  43820. },
  43821. },
  43822. [
  43823. {
  43824. name: "Normal",
  43825. height: math.unit(5 + 4/12, "feet"),
  43826. default: true
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43832. {
  43833. side: {
  43834. height: math.unit(182, "cm"),
  43835. weight: math.unit(1000, "lb"),
  43836. name: "Side",
  43837. image: {
  43838. source: "./media/characters/silver-dragon/side.svg",
  43839. extra: 710/287,
  43840. bottom: 88/798
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(182, "cm"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43854. {
  43855. side: {
  43856. height: math.unit(6 + 6/12, "feet"),
  43857. weight: math.unit(1.5, "tons"),
  43858. name: "Side",
  43859. image: {
  43860. source: "./media/characters/zephyr/side.svg",
  43861. extra: 1433/586,
  43862. bottom: 109/1542
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Normal",
  43869. height: math.unit(6 + 6/12, "feet"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43876. {
  43877. side: {
  43878. height: math.unit(1, "feet"),
  43879. name: "Side",
  43880. image: {
  43881. source: "./media/characters/vixye/side.svg",
  43882. extra: 632/541,
  43883. bottom: 0/632
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(1, "feet"),
  43891. default: true
  43892. },
  43893. {
  43894. name: "True",
  43895. height: math.unit(1e15, "multiverses")
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(8 + 2/12, "feet"),
  43904. weight: math.unit(650, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43908. extra: 1174/1137,
  43909. bottom: 82/1256
  43910. }
  43911. },
  43912. back: {
  43913. height: math.unit(8 + 2/12, "feet"),
  43914. weight: math.unit(650, "lb"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43918. extra: 1204/1157,
  43919. bottom: 46/1250
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Wildform",
  43926. height: math.unit(8 + 2/12, "feet"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(18, "feet"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/cyphin/front.svg",
  43939. extra: 970/886,
  43940. bottom: 42/1012
  43941. }
  43942. },
  43943. back: {
  43944. height: math.unit(18, "feet"),
  43945. name: "Back",
  43946. image: {
  43947. source: "./media/characters/cyphin/back.svg",
  43948. extra: 1009/894,
  43949. bottom: 24/1033
  43950. }
  43951. },
  43952. head: {
  43953. height: math.unit(5.05, "feet"),
  43954. name: "Head",
  43955. image: {
  43956. source: "./media/characters/cyphin/head.svg"
  43957. }
  43958. },
  43959. tailbud: {
  43960. height: math.unit(5, "feet"),
  43961. name: "Tailbud",
  43962. image: {
  43963. source: "./media/characters/cyphin/tailbud.svg"
  43964. }
  43965. },
  43966. },
  43967. [
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43972. {
  43973. side: {
  43974. height: math.unit(10, "feet"),
  43975. weight: math.unit(6, "tons"),
  43976. name: "Side",
  43977. image: {
  43978. source: "./media/characters/raijin/side.svg",
  43979. extra: 1529/613,
  43980. bottom: 337/1866
  43981. }
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(10, "feet"),
  43988. default: true
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43994. {
  43995. side: {
  43996. height: math.unit(9, "feet"),
  43997. name: "Side",
  43998. image: {
  43999. source: "./media/characters/nilghais/side.svg",
  44000. extra: 1047/744,
  44001. bottom: 91/1138
  44002. }
  44003. },
  44004. head: {
  44005. height: math.unit(3.14, "feet"),
  44006. name: "Head",
  44007. image: {
  44008. source: "./media/characters/nilghais/head.svg"
  44009. }
  44010. },
  44011. mouth: {
  44012. height: math.unit(4.6, "feet"),
  44013. name: "Mouth",
  44014. image: {
  44015. source: "./media/characters/nilghais/mouth.svg"
  44016. }
  44017. },
  44018. wings: {
  44019. height: math.unit(24, "feet"),
  44020. name: "Wings",
  44021. image: {
  44022. source: "./media/characters/nilghais/wings.svg"
  44023. }
  44024. },
  44025. ass: {
  44026. height: math.unit(6.12, "feet"),
  44027. name: "Ass",
  44028. image: {
  44029. source: "./media/characters/nilghais/ass.svg"
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Normal",
  44036. height: math.unit(9, "feet"),
  44037. default: true
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44043. {
  44044. regular: {
  44045. height: math.unit(16 + 2/12, "feet"),
  44046. weight: math.unit(2300, "lb"),
  44047. name: "Regular",
  44048. image: {
  44049. source: "./media/characters/zolgar/regular.svg",
  44050. extra: 1246/1004,
  44051. bottom: 124/1370
  44052. }
  44053. },
  44054. boxers: {
  44055. height: math.unit(16 + 2/12, "feet"),
  44056. weight: math.unit(2300, "lb"),
  44057. name: "Boxers",
  44058. image: {
  44059. source: "./media/characters/zolgar/boxers.svg",
  44060. extra: 1246/1004,
  44061. bottom: 124/1370
  44062. }
  44063. },
  44064. armored: {
  44065. height: math.unit(16 + 2/12, "feet"),
  44066. weight: math.unit(2300, "lb"),
  44067. name: "Armored",
  44068. image: {
  44069. source: "./media/characters/zolgar/armored.svg",
  44070. extra: 1246/1004,
  44071. bottom: 124/1370
  44072. }
  44073. },
  44074. goth: {
  44075. height: math.unit(16 + 2/12, "feet"),
  44076. weight: math.unit(2300, "lb"),
  44077. name: "Goth",
  44078. image: {
  44079. source: "./media/characters/zolgar/goth.svg",
  44080. extra: 1246/1004,
  44081. bottom: 124/1370
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Shrunken Down",
  44088. height: math.unit(9 + 2/12, "feet")
  44089. },
  44090. {
  44091. name: "Normal",
  44092. height: math.unit(16 + 2/12, "feet"),
  44093. default: true
  44094. },
  44095. ]
  44096. ))
  44097. characterMakers.push(() => makeCharacter(
  44098. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44099. {
  44100. front: {
  44101. height: math.unit(6, "feet"),
  44102. weight: math.unit(168, "lb"),
  44103. name: "Front",
  44104. image: {
  44105. source: "./media/characters/luca/front.svg",
  44106. extra: 841/667,
  44107. bottom: 102/943
  44108. }
  44109. },
  44110. },
  44111. [
  44112. {
  44113. name: "Normal",
  44114. height: math.unit(6, "feet"),
  44115. default: true
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44121. {
  44122. side: {
  44123. height: math.unit(7 + 3/12, "feet"),
  44124. weight: math.unit(312, "lb"),
  44125. name: "Side",
  44126. image: {
  44127. source: "./media/characters/zezo/side.svg",
  44128. extra: 1192/1067,
  44129. bottom: 63/1255
  44130. }
  44131. },
  44132. },
  44133. [
  44134. {
  44135. name: "Normal",
  44136. height: math.unit(7 + 3/12, "feet"),
  44137. default: true
  44138. },
  44139. ]
  44140. ))
  44141. characterMakers.push(() => makeCharacter(
  44142. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44143. {
  44144. front: {
  44145. height: math.unit(5 + 5/12, "feet"),
  44146. weight: math.unit(170, "lb"),
  44147. name: "Front",
  44148. image: {
  44149. source: "./media/characters/mayso/front.svg",
  44150. extra: 1215/1108,
  44151. bottom: 16/1231
  44152. }
  44153. },
  44154. },
  44155. [
  44156. {
  44157. name: "Normal",
  44158. height: math.unit(5 + 5/12, "feet"),
  44159. default: true
  44160. },
  44161. ]
  44162. ))
  44163. characterMakers.push(() => makeCharacter(
  44164. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44165. {
  44166. front: {
  44167. height: math.unit(4 + 3/12, "feet"),
  44168. weight: math.unit(80, "lb"),
  44169. name: "Front",
  44170. image: {
  44171. source: "./media/characters/hess/front.svg",
  44172. extra: 1200/1123,
  44173. bottom: 16/1216
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(4 + 3/12, "feet"),
  44181. default: true
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44187. {
  44188. front: {
  44189. height: math.unit(1.9, "meters"),
  44190. name: "Front",
  44191. image: {
  44192. source: "./media/characters/ashgar/front.svg",
  44193. extra: 1177/1146,
  44194. bottom: 99/1276
  44195. }
  44196. },
  44197. back: {
  44198. height: math.unit(1.9, "meters"),
  44199. name: "Back",
  44200. image: {
  44201. source: "./media/characters/ashgar/back.svg",
  44202. extra: 1201/1183,
  44203. bottom: 53/1254
  44204. }
  44205. },
  44206. feral: {
  44207. height: math.unit(1.4, "meters"),
  44208. name: "Feral",
  44209. image: {
  44210. source: "./media/characters/ashgar/feral.svg",
  44211. extra: 370/345,
  44212. bottom: 45/415
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Normal",
  44219. height: math.unit(1.9, "meters"),
  44220. default: true
  44221. },
  44222. ]
  44223. ))
  44224. characterMakers.push(() => makeCharacter(
  44225. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44226. {
  44227. regular: {
  44228. height: math.unit(6, "feet"),
  44229. weight: math.unit(220, "lb"),
  44230. name: "Regular",
  44231. image: {
  44232. source: "./media/characters/phillip/regular.svg",
  44233. extra: 1373/1277,
  44234. bottom: 75/1448
  44235. }
  44236. },
  44237. dressed: {
  44238. height: math.unit(6, "feet"),
  44239. weight: math.unit(220, "lb"),
  44240. name: "Dressed",
  44241. image: {
  44242. source: "./media/characters/phillip/dressed.svg",
  44243. extra: 1373/1277,
  44244. bottom: 75/1448
  44245. }
  44246. },
  44247. paw: {
  44248. height: math.unit(1.44, "feet"),
  44249. name: "Paw",
  44250. image: {
  44251. source: "./media/characters/phillip/paw.svg"
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(6, "feet"),
  44259. default: true
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44265. {
  44266. side: {
  44267. height: math.unit(42, "feet"),
  44268. name: "Side",
  44269. image: {
  44270. source: "./media/characters/uvula/side.svg",
  44271. extra: 683/586,
  44272. bottom: 60/743
  44273. }
  44274. },
  44275. front: {
  44276. height: math.unit(42, "feet"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/uvula/front.svg",
  44280. extra: 705/613,
  44281. bottom: 54/759
  44282. }
  44283. },
  44284. maw: {
  44285. height: math.unit(23.5, "feet"),
  44286. name: "Maw",
  44287. image: {
  44288. source: "./media/characters/uvula/maw.svg"
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Original Size",
  44295. height: math.unit(14, "inches")
  44296. },
  44297. {
  44298. name: "Human Size",
  44299. height: math.unit(6, "feet")
  44300. },
  44301. {
  44302. name: "Big",
  44303. height: math.unit(42, "feet"),
  44304. default: true
  44305. },
  44306. {
  44307. name: "Bigger",
  44308. height: math.unit(100, "feet")
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(5 + 11/12, "feet"),
  44317. name: "Front",
  44318. image: {
  44319. source: "./media/characters/lannah/front.svg",
  44320. extra: 1208/1113,
  44321. bottom: 97/1305
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(5 + 11/12, "feet"),
  44329. default: true
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44335. {
  44336. front: {
  44337. height: math.unit(6 + 3/12, "feet"),
  44338. weight: math.unit(3.5, "tons"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/emberflame/front.svg",
  44342. extra: 1198/672,
  44343. bottom: 82/1280
  44344. }
  44345. },
  44346. side: {
  44347. height: math.unit(6 + 3/12, "feet"),
  44348. weight: math.unit(3.5, "tons"),
  44349. name: "Side",
  44350. image: {
  44351. source: "./media/characters/emberflame/side.svg",
  44352. extra: 938/527,
  44353. bottom: 56/994
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(6 + 3/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44367. {
  44368. side: {
  44369. height: math.unit(17.5, "feet"),
  44370. weight: math.unit(35, "tons"),
  44371. name: "Side",
  44372. image: {
  44373. source: "./media/characters/sophie-ambrose/side.svg",
  44374. extra: 1573/1242,
  44375. bottom: 71/1644
  44376. }
  44377. },
  44378. maw: {
  44379. height: math.unit(7.4, "feet"),
  44380. name: "Maw",
  44381. image: {
  44382. source: "./media/characters/sophie-ambrose/maw.svg"
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(17.5, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44396. {
  44397. front: {
  44398. height: math.unit(280, "feet"),
  44399. weight: math.unit(550, "tons"),
  44400. name: "Front",
  44401. image: {
  44402. source: "./media/characters/king-mugi/front.svg",
  44403. extra: 1102/947,
  44404. bottom: 104/1206
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "King Mugi",
  44411. height: math.unit(280, "feet"),
  44412. default: true
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44418. {
  44419. front: {
  44420. height: math.unit(64, "meters"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/nova-fox/front.svg",
  44424. extra: 1310/1246,
  44425. bottom: 65/1375
  44426. }
  44427. },
  44428. },
  44429. [
  44430. {
  44431. name: "Macro",
  44432. height: math.unit(64, "meters"),
  44433. default: true
  44434. },
  44435. ]
  44436. ))
  44437. characterMakers.push(() => makeCharacter(
  44438. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44439. {
  44440. front: {
  44441. height: math.unit(6 + 3/12, "feet"),
  44442. weight: math.unit(170, "lb"),
  44443. name: "Front",
  44444. image: {
  44445. source: "./media/characters/sam-bat/front.svg",
  44446. extra: 1601/1411,
  44447. bottom: 125/1726
  44448. }
  44449. },
  44450. back: {
  44451. height: math.unit(6 + 3/12, "feet"),
  44452. weight: math.unit(170, "lb"),
  44453. name: "Back",
  44454. image: {
  44455. source: "./media/characters/sam-bat/back.svg",
  44456. extra: 1577/1405,
  44457. bottom: 58/1635
  44458. }
  44459. },
  44460. },
  44461. [
  44462. {
  44463. name: "Normal",
  44464. height: math.unit(6 + 3/12, "feet"),
  44465. default: true
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44471. {
  44472. front: {
  44473. height: math.unit(59, "feet"),
  44474. weight: math.unit(40000, "lb"),
  44475. name: "Front",
  44476. image: {
  44477. source: "./media/characters/inari/front.svg",
  44478. extra: 1884/1350,
  44479. bottom: 95/1979
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Gigantamax",
  44486. height: math.unit(59, "feet"),
  44487. default: true
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44493. {
  44494. front: {
  44495. height: math.unit(5 + 8/12, "feet"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/elizabeth/front.svg",
  44499. extra: 1395/1298,
  44500. bottom: 54/1449
  44501. }
  44502. },
  44503. mouth: {
  44504. height: math.unit(1.97, "feet"),
  44505. name: "Mouth",
  44506. image: {
  44507. source: "./media/characters/elizabeth/mouth.svg"
  44508. }
  44509. },
  44510. foot: {
  44511. height: math.unit(1.17, "feet"),
  44512. name: "Foot",
  44513. image: {
  44514. source: "./media/characters/elizabeth/foot.svg"
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Normal",
  44521. height: math.unit(5 + 8/12, "feet"),
  44522. default: true
  44523. },
  44524. {
  44525. name: "Minimacro",
  44526. height: math.unit(18, "feet")
  44527. },
  44528. {
  44529. name: "Macro",
  44530. height: math.unit(180, "feet")
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44536. {
  44537. front: {
  44538. height: math.unit(5 + 2/12, "feet"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/october-gossamer/front.svg",
  44542. extra: 505/454,
  44543. bottom: 7/512
  44544. }
  44545. },
  44546. back: {
  44547. height: math.unit(5 + 2/12, "feet"),
  44548. name: "Back",
  44549. image: {
  44550. source: "./media/characters/october-gossamer/back.svg",
  44551. extra: 501/454,
  44552. bottom: 11/512
  44553. }
  44554. },
  44555. },
  44556. [
  44557. {
  44558. name: "Normal",
  44559. height: math.unit(5 + 2/12, "feet"),
  44560. default: true
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44566. {
  44567. front: {
  44568. height: math.unit(5, "feet"),
  44569. name: "Front",
  44570. image: {
  44571. source: "./media/characters/epiglottis/front.svg",
  44572. extra: 923/849,
  44573. bottom: 17/940
  44574. }
  44575. },
  44576. },
  44577. [
  44578. {
  44579. name: "Original Size",
  44580. height: math.unit(10, "inches")
  44581. },
  44582. {
  44583. name: "Human Size",
  44584. height: math.unit(5, "feet"),
  44585. default: true
  44586. },
  44587. {
  44588. name: "Big",
  44589. height: math.unit(25, "feet")
  44590. },
  44591. {
  44592. name: "Bigger",
  44593. height: math.unit(50, "feet")
  44594. },
  44595. {
  44596. name: "oh lawd",
  44597. height: math.unit(75, "feet")
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44603. {
  44604. front: {
  44605. height: math.unit(2 + 4/12, "feet"),
  44606. weight: math.unit(60, "lb"),
  44607. name: "Front",
  44608. image: {
  44609. source: "./media/characters/lerm/front.svg",
  44610. extra: 796/790,
  44611. bottom: 79/875
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Normal",
  44618. height: math.unit(2 + 4/12, "feet"),
  44619. default: true
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44625. {
  44626. front: {
  44627. height: math.unit(5.5, "feet"),
  44628. weight: math.unit(130, "lb"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/xena-nebadon/front.svg",
  44632. extra: 1828/1730,
  44633. bottom: 79/1907
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Tiny Puppy",
  44640. height: math.unit(3, "inches")
  44641. },
  44642. {
  44643. name: "Normal",
  44644. height: math.unit(5.5, "feet"),
  44645. default: true
  44646. },
  44647. {
  44648. name: "Lotta Lady",
  44649. height: math.unit(12, "feet")
  44650. },
  44651. {
  44652. name: "Pretty Big",
  44653. height: math.unit(100, "feet")
  44654. },
  44655. {
  44656. name: "Big",
  44657. height: math.unit(500, "feet")
  44658. },
  44659. {
  44660. name: "Skyscraper Toys",
  44661. height: math.unit(2500, "feet")
  44662. },
  44663. {
  44664. name: "Plane Catcher",
  44665. height: math.unit(8, "miles")
  44666. },
  44667. {
  44668. name: "Planet Toys",
  44669. height: math.unit(15, "earths")
  44670. },
  44671. {
  44672. name: "Stardust",
  44673. height: math.unit(0.25, "galaxies")
  44674. },
  44675. {
  44676. name: "Snacks",
  44677. height: math.unit(70, "universes")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44683. {
  44684. front: {
  44685. height: math.unit(1.6, "meters"),
  44686. weight: math.unit(60, "kg"),
  44687. name: "Front",
  44688. image: {
  44689. source: "./media/characters/bounty/front.svg",
  44690. extra: 1426/1308,
  44691. bottom: 15/1441
  44692. }
  44693. },
  44694. back: {
  44695. height: math.unit(1.6, "meters"),
  44696. weight: math.unit(60, "kg"),
  44697. name: "Back",
  44698. image: {
  44699. source: "./media/characters/bounty/back.svg",
  44700. extra: 1417/1307,
  44701. bottom: 8/1425
  44702. }
  44703. },
  44704. },
  44705. [
  44706. {
  44707. name: "Normal",
  44708. height: math.unit(1.6, "meters"),
  44709. default: true
  44710. },
  44711. {
  44712. name: "Macro",
  44713. height: math.unit(300, "meters")
  44714. },
  44715. ]
  44716. ))
  44717. characterMakers.push(() => makeCharacter(
  44718. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44719. {
  44720. front: {
  44721. height: math.unit(2 + 8/12, "feet"),
  44722. weight: math.unit(15, "lb"),
  44723. name: "Front",
  44724. image: {
  44725. source: "./media/characters/mochi/front.svg",
  44726. extra: 1022/852,
  44727. bottom: 435/1457
  44728. }
  44729. },
  44730. back: {
  44731. height: math.unit(2 + 8/12, "feet"),
  44732. weight: math.unit(15, "lb"),
  44733. name: "Back",
  44734. image: {
  44735. source: "./media/characters/mochi/back.svg",
  44736. extra: 1335/1119,
  44737. bottom: 39/1374
  44738. }
  44739. },
  44740. bird: {
  44741. height: math.unit(2 + 8/12, "feet"),
  44742. weight: math.unit(15, "lb"),
  44743. name: "Bird",
  44744. image: {
  44745. source: "./media/characters/mochi/bird.svg",
  44746. extra: 1251/1113,
  44747. bottom: 178/1429
  44748. }
  44749. },
  44750. kaiju: {
  44751. height: math.unit(154, "feet"),
  44752. weight: math.unit(1e7, "lb"),
  44753. name: "Kaiju",
  44754. image: {
  44755. source: "./media/characters/mochi/kaiju.svg",
  44756. extra: 460/324,
  44757. bottom: 40/500
  44758. }
  44759. },
  44760. head: {
  44761. height: math.unit(1.21, "feet"),
  44762. name: "Head",
  44763. image: {
  44764. source: "./media/characters/mochi/head.svg"
  44765. }
  44766. },
  44767. alternateTail: {
  44768. height: math.unit(2 + 8/12, "feet"),
  44769. weight: math.unit(45, "lb"),
  44770. name: "Alternate Tail",
  44771. image: {
  44772. source: "./media/characters/mochi/alternate-tail.svg",
  44773. extra: 139/76,
  44774. bottom: 45/184
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Micro",
  44781. height: math.unit(2, "inches")
  44782. },
  44783. {
  44784. name: "Normal",
  44785. height: math.unit(2 + 8/12, "feet"),
  44786. default: true
  44787. },
  44788. {
  44789. name: "Macro",
  44790. height: math.unit(106, "feet")
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44796. {
  44797. front: {
  44798. height: math.unit(5.67, "feet"),
  44799. weight: math.unit(135, "lb"),
  44800. name: "Front",
  44801. image: {
  44802. source: "./media/characters/sarel/front.svg",
  44803. extra: 865/788,
  44804. bottom: 97/962
  44805. }
  44806. },
  44807. back: {
  44808. height: math.unit(5.67, "feet"),
  44809. weight: math.unit(135, "lb"),
  44810. name: "Back",
  44811. image: {
  44812. source: "./media/characters/sarel/back.svg",
  44813. extra: 857/777,
  44814. bottom: 32/889
  44815. }
  44816. },
  44817. chozoan: {
  44818. height: math.unit(5.67, "feet"),
  44819. weight: math.unit(135, "lb"),
  44820. name: "Chozoan",
  44821. image: {
  44822. source: "./media/characters/sarel/chozoan.svg",
  44823. extra: 865/788,
  44824. bottom: 97/962
  44825. }
  44826. },
  44827. current: {
  44828. height: math.unit(5.67, "feet"),
  44829. weight: math.unit(135, "lb"),
  44830. name: "Current",
  44831. image: {
  44832. source: "./media/characters/sarel/current.svg",
  44833. extra: 865/788,
  44834. bottom: 97/962
  44835. }
  44836. },
  44837. head: {
  44838. height: math.unit(1.77, "feet"),
  44839. name: "Head",
  44840. image: {
  44841. source: "./media/characters/sarel/head.svg"
  44842. }
  44843. },
  44844. claws: {
  44845. height: math.unit(1.8, "feet"),
  44846. name: "Claws",
  44847. image: {
  44848. source: "./media/characters/sarel/claws.svg"
  44849. }
  44850. },
  44851. clawsAlt: {
  44852. height: math.unit(1.8, "feet"),
  44853. name: "Claws-alt",
  44854. image: {
  44855. source: "./media/characters/sarel/claws-alt.svg"
  44856. }
  44857. },
  44858. },
  44859. [
  44860. {
  44861. name: "Normal",
  44862. height: math.unit(5.67, "feet"),
  44863. default: true
  44864. },
  44865. ]
  44866. ))
  44867. characterMakers.push(() => makeCharacter(
  44868. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44869. {
  44870. front: {
  44871. height: math.unit(5500, "feet"),
  44872. name: "Front",
  44873. image: {
  44874. source: "./media/characters/alyonia/front.svg",
  44875. extra: 1200/1135,
  44876. bottom: 29/1229
  44877. }
  44878. },
  44879. back: {
  44880. height: math.unit(5500, "feet"),
  44881. name: "Back",
  44882. image: {
  44883. source: "./media/characters/alyonia/back.svg",
  44884. extra: 1205/1138,
  44885. bottom: 10/1215
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Small",
  44892. height: math.unit(10, "feet")
  44893. },
  44894. {
  44895. name: "Macro",
  44896. height: math.unit(500, "feet")
  44897. },
  44898. {
  44899. name: "Mega Macro",
  44900. height: math.unit(5500, "feet"),
  44901. default: true
  44902. },
  44903. {
  44904. name: "Mega Macro+",
  44905. height: math.unit(500000, "feet")
  44906. },
  44907. {
  44908. name: "Giga Macro",
  44909. height: math.unit(3000, "miles")
  44910. },
  44911. {
  44912. name: "Tera Macro",
  44913. height: math.unit(2.8e6, "miles")
  44914. },
  44915. {
  44916. name: "Galactic",
  44917. height: math.unit(120000, "lightyears")
  44918. },
  44919. ]
  44920. ))
  44921. characterMakers.push(() => makeCharacter(
  44922. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44923. {
  44924. werewolf: {
  44925. height: math.unit(8, "feet"),
  44926. weight: math.unit(425, "lb"),
  44927. name: "Werewolf",
  44928. image: {
  44929. source: "./media/characters/autumn/werewolf.svg",
  44930. extra: 2154/2031,
  44931. bottom: 160/2314
  44932. }
  44933. },
  44934. human: {
  44935. height: math.unit(5 + 8/12, "feet"),
  44936. weight: math.unit(150, "lb"),
  44937. name: "Human",
  44938. image: {
  44939. source: "./media/characters/autumn/human.svg",
  44940. extra: 1200/1149,
  44941. bottom: 30/1230
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Normal",
  44948. height: math.unit(8, "feet"),
  44949. default: true
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(8 + 5/12, "feet"),
  44958. weight: math.unit(825, "lb"),
  44959. name: "Front",
  44960. image: {
  44961. source: "./media/characters/cobalt-charizard/front.svg",
  44962. extra: 1268/1155,
  44963. bottom: 122/1390
  44964. }
  44965. },
  44966. side: {
  44967. height: math.unit(8 + 5/12, "feet"),
  44968. weight: math.unit(825, "lb"),
  44969. name: "Side",
  44970. image: {
  44971. source: "./media/characters/cobalt-charizard/side.svg",
  44972. extra: 1348/1257,
  44973. bottom: 58/1406
  44974. }
  44975. },
  44976. gMax: {
  44977. height: math.unit(134 + 11/12, "feet"),
  44978. name: "G-Max",
  44979. image: {
  44980. source: "./media/characters/cobalt-charizard/g-max.svg",
  44981. extra: 1835/1541,
  44982. bottom: 151/1986
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(8 + 5/12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(6 + 3/12, "feet"),
  44999. weight: math.unit(210, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/stella/front.svg",
  45003. extra: 3549/3335,
  45004. bottom: 51/3600
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(6 + 3/12, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(5, "feet"),
  45021. weight: math.unit(90, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/riley-bishop/front.svg",
  45025. extra: 1450/1428,
  45026. bottom: 152/1602
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(5, "feet"),
  45034. default: true
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45040. {
  45041. side: {
  45042. height: math.unit(8 + 2/12, "feet"),
  45043. weight: math.unit(500, "kg"),
  45044. name: "Side",
  45045. image: {
  45046. source: "./media/characters/theo-arcanine/side.svg",
  45047. extra: 1342/1074,
  45048. bottom: 111/1453
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Normal",
  45055. height: math.unit(8 + 2/12, "feet"),
  45056. default: true
  45057. },
  45058. ]
  45059. ))
  45060. characterMakers.push(() => makeCharacter(
  45061. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45062. {
  45063. front: {
  45064. height: math.unit(4, "feet"),
  45065. name: "Front",
  45066. image: {
  45067. source: "./media/characters/kali/front.svg",
  45068. extra: 1921/1357,
  45069. bottom: 70/1991
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(4, "feet"),
  45077. default: true
  45078. },
  45079. {
  45080. name: "Macro",
  45081. height: math.unit(32, "meters")
  45082. },
  45083. {
  45084. name: "Macro+",
  45085. height: math.unit(150, "meters")
  45086. },
  45087. {
  45088. name: "Megamacro",
  45089. height: math.unit(7500, "meters")
  45090. },
  45091. {
  45092. name: "Megamacro+",
  45093. height: math.unit(80, "kilometers")
  45094. },
  45095. ]
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45099. {
  45100. side: {
  45101. height: math.unit(5 + 11/12, "feet"),
  45102. weight: math.unit(236, "lb"),
  45103. name: "Side",
  45104. image: {
  45105. source: "./media/characters/gapp/side.svg",
  45106. extra: 775/340,
  45107. bottom: 58/833
  45108. }
  45109. },
  45110. mouth: {
  45111. height: math.unit(2.98, "feet"),
  45112. name: "Mouth",
  45113. image: {
  45114. source: "./media/characters/gapp/mouth.svg"
  45115. }
  45116. },
  45117. },
  45118. [
  45119. {
  45120. name: "Normal",
  45121. height: math.unit(5 + 1/12, "feet"),
  45122. default: true
  45123. },
  45124. ]
  45125. ))
  45126. characterMakers.push(() => makeCharacter(
  45127. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45128. {
  45129. front: {
  45130. height: math.unit(6, "feet"),
  45131. name: "Front",
  45132. image: {
  45133. source: "./media/characters/persephone/front.svg",
  45134. extra: 1895/1717,
  45135. bottom: 96/1991
  45136. }
  45137. },
  45138. back: {
  45139. height: math.unit(6, "feet"),
  45140. name: "Back",
  45141. image: {
  45142. source: "./media/characters/persephone/back.svg",
  45143. extra: 1868/1679,
  45144. bottom: 26/1894
  45145. }
  45146. },
  45147. casual: {
  45148. height: math.unit(6, "feet"),
  45149. name: "Casual",
  45150. image: {
  45151. source: "./media/characters/persephone/casual.svg",
  45152. extra: 1713/1541,
  45153. bottom: 76/1789
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "Human Size",
  45160. height: math.unit(6, "feet")
  45161. },
  45162. {
  45163. name: "Big Steppy",
  45164. height: math.unit(600, "meters"),
  45165. default: true
  45166. },
  45167. {
  45168. name: "Galaxy Brain",
  45169. height: math.unit(1, "zettameter")
  45170. },
  45171. ]
  45172. ))
  45173. characterMakers.push(() => makeCharacter(
  45174. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45175. {
  45176. front: {
  45177. height: math.unit(1.85, "meters"),
  45178. name: "Front",
  45179. image: {
  45180. source: "./media/characters/riley-foxthing/front.svg",
  45181. extra: 1495/1354,
  45182. bottom: 122/1617
  45183. }
  45184. },
  45185. frontAlt: {
  45186. height: math.unit(1.85, "meters"),
  45187. name: "Front (Alt)",
  45188. image: {
  45189. source: "./media/characters/riley-foxthing/front-alt.svg",
  45190. extra: 1572/1389,
  45191. bottom: 116/1688
  45192. }
  45193. },
  45194. },
  45195. [
  45196. {
  45197. name: "Normal Sized",
  45198. height: math.unit(1.85, "meters"),
  45199. default: true
  45200. },
  45201. {
  45202. name: "Quite Sizable",
  45203. height: math.unit(5, "meters")
  45204. },
  45205. {
  45206. name: "Rather Large",
  45207. height: math.unit(20, "meters")
  45208. },
  45209. {
  45210. name: "Macro",
  45211. height: math.unit(450, "meters")
  45212. },
  45213. {
  45214. name: "Giga",
  45215. height: math.unit(5, "km")
  45216. },
  45217. ]
  45218. ))
  45219. characterMakers.push(() => makeCharacter(
  45220. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45221. {
  45222. front: {
  45223. height: math.unit(6, "feet"),
  45224. weight: math.unit(200, "lb"),
  45225. name: "Front",
  45226. image: {
  45227. source: "./media/characters/blizzard/front.svg",
  45228. extra: 1136/990,
  45229. bottom: 136/1272
  45230. }
  45231. },
  45232. back: {
  45233. height: math.unit(6, "feet"),
  45234. weight: math.unit(200, "lb"),
  45235. name: "Back",
  45236. image: {
  45237. source: "./media/characters/blizzard/back.svg",
  45238. extra: 1175/1034,
  45239. bottom: 97/1272
  45240. }
  45241. },
  45242. sitting: {
  45243. height: math.unit(3.725, "feet"),
  45244. weight: math.unit(200, "lb"),
  45245. name: "Sitting",
  45246. image: {
  45247. source: "./media/characters/blizzard/sitting.svg",
  45248. extra: 581/485,
  45249. bottom: 90/671
  45250. }
  45251. },
  45252. frontWizard: {
  45253. height: math.unit(7.9, "feet"),
  45254. weight: math.unit(200, "lb"),
  45255. name: "Front (Wizard)",
  45256. image: {
  45257. source: "./media/characters/blizzard/front-wizard.svg"
  45258. }
  45259. },
  45260. backWizard: {
  45261. height: math.unit(7.9, "feet"),
  45262. weight: math.unit(200, "lb"),
  45263. name: "Back (Wizard)",
  45264. image: {
  45265. source: "./media/characters/blizzard/back-wizard.svg"
  45266. }
  45267. },
  45268. frontNsfw: {
  45269. height: math.unit(6, "feet"),
  45270. weight: math.unit(200, "lb"),
  45271. name: "Front (NSFW)",
  45272. image: {
  45273. source: "./media/characters/blizzard/front-nsfw.svg",
  45274. extra: 1136/990,
  45275. bottom: 136/1272
  45276. }
  45277. },
  45278. backNsfw: {
  45279. height: math.unit(6, "feet"),
  45280. weight: math.unit(200, "lb"),
  45281. name: "Back (NSFW)",
  45282. image: {
  45283. source: "./media/characters/blizzard/back-nsfw.svg",
  45284. extra: 1175/1034,
  45285. bottom: 97/1272
  45286. }
  45287. },
  45288. sittingNsfw: {
  45289. height: math.unit(3.725, "feet"),
  45290. weight: math.unit(200, "lb"),
  45291. name: "Sitting (NSFW)",
  45292. image: {
  45293. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45294. extra: 581/485,
  45295. bottom: 90/671
  45296. }
  45297. },
  45298. wizardFrontNsfw: {
  45299. height: math.unit(7.9, "feet"),
  45300. weight: math.unit(200, "lb"),
  45301. name: "Wizard (Front, NSFW)",
  45302. image: {
  45303. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(6, "feet"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(5 + 2/12, "feet"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/lumi/front.svg",
  45323. extra: 1328/1268,
  45324. bottom: 103/1431
  45325. }
  45326. },
  45327. back: {
  45328. height: math.unit(5 + 2/12, "feet"),
  45329. name: "Back",
  45330. image: {
  45331. source: "./media/characters/lumi/back.svg",
  45332. extra: 1381/1327,
  45333. bottom: 43/1424
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Normal",
  45340. height: math.unit(5 + 2/12, "feet"),
  45341. default: true
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45347. {
  45348. front: {
  45349. height: math.unit(5 + 9/12, "feet"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/aliya-cotton/front.svg",
  45353. extra: 577/564,
  45354. bottom: 29/606
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(5 + 9/12, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45368. {
  45369. front: {
  45370. height: math.unit(2.7, "meters"),
  45371. weight: math.unit(25000, "lb"),
  45372. name: "Front",
  45373. image: {
  45374. source: "./media/characters/noah-luxray/front.svg",
  45375. extra: 1644/825,
  45376. bottom: 339/1983
  45377. }
  45378. },
  45379. side: {
  45380. height: math.unit(2.97, "meters"),
  45381. weight: math.unit(25000, "lb"),
  45382. name: "Side",
  45383. image: {
  45384. source: "./media/characters/noah-luxray/side.svg",
  45385. extra: 1319/650,
  45386. bottom: 163/1482
  45387. }
  45388. },
  45389. dick: {
  45390. height: math.unit(7.4, "feet"),
  45391. weight: math.unit(2500, "lb"),
  45392. name: "Dick",
  45393. image: {
  45394. source: "./media/characters/noah-luxray/dick.svg"
  45395. }
  45396. },
  45397. dickAlt: {
  45398. height: math.unit(10.83, "feet"),
  45399. weight: math.unit(2500, "lb"),
  45400. name: "Dick-alt",
  45401. image: {
  45402. source: "./media/characters/noah-luxray/dick-alt.svg"
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "BIG",
  45409. height: math.unit(2.7, "meters"),
  45410. default: true
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45416. {
  45417. standing: {
  45418. height: math.unit(183, "cm"),
  45419. weight: math.unit(68, "kg"),
  45420. name: "Standing",
  45421. image: {
  45422. source: "./media/characters/arion/standing.svg",
  45423. extra: 1869/1807,
  45424. bottom: 93/1962
  45425. }
  45426. },
  45427. reclining: {
  45428. height: math.unit(70.5, "cm"),
  45429. weight: math.unit(68, "lb"),
  45430. name: "Reclining",
  45431. image: {
  45432. source: "./media/characters/arion/reclining.svg",
  45433. extra: 937/870,
  45434. bottom: 63/1000
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Colossus Size, Low",
  45441. height: math.unit(33, "meters"),
  45442. default: true
  45443. },
  45444. {
  45445. name: "Colossus Size, Mid",
  45446. height: math.unit(52, "meters")
  45447. },
  45448. {
  45449. name: "Colossus Size, High",
  45450. height: math.unit(60, "meters")
  45451. },
  45452. {
  45453. name: "Titan Size, Low",
  45454. height: math.unit(91, "meters"),
  45455. },
  45456. {
  45457. name: "Titan Size, Mid",
  45458. height: math.unit(122, "meters")
  45459. },
  45460. {
  45461. name: "Titan Size, High",
  45462. height: math.unit(162, "meters")
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45468. {
  45469. front: {
  45470. height: math.unit(53, "meters"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/stellar-marbey/front.svg",
  45474. extra: 1913/1805,
  45475. bottom: 92/2005
  45476. }
  45477. },
  45478. back: {
  45479. height: math.unit(53, "meters"),
  45480. name: "Back",
  45481. image: {
  45482. source: "./media/characters/stellar-marbey/back.svg",
  45483. extra: 1960/1851,
  45484. bottom: 28/1988
  45485. }
  45486. },
  45487. mouth: {
  45488. height: math.unit(3.5, "meters"),
  45489. name: "Mouth",
  45490. image: {
  45491. source: "./media/characters/stellar-marbey/mouth.svg"
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Macro",
  45498. height: math.unit(53, "meters"),
  45499. default: true
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45505. {
  45506. front: {
  45507. height: math.unit(8 + 1/12, "feet"),
  45508. weight: math.unit(233, "lb"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/matsu/front.svg",
  45512. extra: 832/772,
  45513. bottom: 40/872
  45514. }
  45515. },
  45516. back: {
  45517. height: math.unit(8 + 1/12, "feet"),
  45518. weight: math.unit(233, "lb"),
  45519. name: "Back",
  45520. image: {
  45521. source: "./media/characters/matsu/back.svg",
  45522. extra: 839/780,
  45523. bottom: 47/886
  45524. }
  45525. },
  45526. },
  45527. [
  45528. {
  45529. name: "Normal",
  45530. height: math.unit(8 + 1/12, "feet"),
  45531. default: true
  45532. },
  45533. ]
  45534. ))
  45535. characterMakers.push(() => makeCharacter(
  45536. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45537. {
  45538. front: {
  45539. height: math.unit(4, "feet"),
  45540. weight: math.unit(148, "lb"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/thiz/front.svg",
  45544. extra: 1913/1748,
  45545. bottom: 62/1975
  45546. }
  45547. },
  45548. },
  45549. [
  45550. {
  45551. name: "Normal",
  45552. height: math.unit(4, "feet"),
  45553. default: true
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45559. {
  45560. front: {
  45561. height: math.unit(7 + 6/12, "feet"),
  45562. weight: math.unit(267, "lb"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/marcel/front.svg",
  45566. extra: 1221/1096,
  45567. bottom: 76/1297
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(7 + 6/12, "feet"),
  45575. default: true
  45576. },
  45577. ]
  45578. ))
  45579. characterMakers.push(() => makeCharacter(
  45580. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45581. {
  45582. side: {
  45583. height: math.unit(42, "meters"),
  45584. name: "Side",
  45585. image: {
  45586. source: "./media/characters/flake/side.svg",
  45587. extra: 1525/1306,
  45588. bottom: 209/1734
  45589. }
  45590. },
  45591. },
  45592. [
  45593. {
  45594. name: "Normal",
  45595. height: math.unit(42, "meters"),
  45596. default: true
  45597. },
  45598. ]
  45599. ))
  45600. characterMakers.push(() => makeCharacter(
  45601. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45602. {
  45603. dressed: {
  45604. height: math.unit(6 + 4/12, "feet"),
  45605. weight: math.unit(520, "lb"),
  45606. name: "Dressed",
  45607. image: {
  45608. source: "./media/characters/someonne/dressed.svg",
  45609. extra: 1020/1010,
  45610. bottom: 178/1198
  45611. }
  45612. },
  45613. undressed: {
  45614. height: math.unit(6 + 4/12, "feet"),
  45615. weight: math.unit(520, "lb"),
  45616. name: "Undressed",
  45617. image: {
  45618. source: "./media/characters/someonne/undressed.svg",
  45619. extra: 1019/1014,
  45620. bottom: 169/1188
  45621. }
  45622. },
  45623. },
  45624. [
  45625. {
  45626. name: "Normal",
  45627. height: math.unit(6 + 4/12, "feet"),
  45628. default: true
  45629. },
  45630. ]
  45631. ))
  45632. characterMakers.push(() => makeCharacter(
  45633. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45634. {
  45635. front: {
  45636. height: math.unit(3, "feet"),
  45637. weight: math.unit(30, "lb"),
  45638. name: "Front",
  45639. image: {
  45640. source: "./media/characters/till/front.svg",
  45641. extra: 892/823,
  45642. bottom: 55/947
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(3, "feet"),
  45650. default: true
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(9 + 8/12, "feet"),
  45659. weight: math.unit(800, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/sydney-heki/front.svg",
  45663. extra: 1360/1300,
  45664. bottom: 22/1382
  45665. }
  45666. },
  45667. back: {
  45668. height: math.unit(9 + 8/12, "feet"),
  45669. weight: math.unit(800, "lb"),
  45670. name: "Back",
  45671. image: {
  45672. source: "./media/characters/sydney-heki/back.svg",
  45673. extra: 1356/1293,
  45674. bottom: 12/1368
  45675. }
  45676. },
  45677. frontDressed: {
  45678. height: math.unit(9 + 8/12, "feet"),
  45679. weight: math.unit(800, "lb"),
  45680. name: "Front-dressed",
  45681. image: {
  45682. source: "./media/characters/sydney-heki/front-dressed.svg",
  45683. extra: 1360/1300,
  45684. bottom: 22/1382
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(9 + 8/12, "feet"),
  45692. default: true
  45693. },
  45694. {
  45695. name: "Macro",
  45696. height: math.unit(500, "feet")
  45697. },
  45698. {
  45699. name: "Megamacro",
  45700. height: math.unit(3.6, "miles")
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45706. {
  45707. front: {
  45708. height: math.unit(200, "cm"),
  45709. weight: math.unit(250, "lb"),
  45710. name: "Front",
  45711. image: {
  45712. source: "./media/characters/fowler-karlsson/front.svg",
  45713. extra: 897/845,
  45714. bottom: 123/1020
  45715. }
  45716. },
  45717. back: {
  45718. height: math.unit(200, "cm"),
  45719. weight: math.unit(250, "lb"),
  45720. name: "Back",
  45721. image: {
  45722. source: "./media/characters/fowler-karlsson/back.svg",
  45723. extra: 999/944,
  45724. bottom: 26/1025
  45725. }
  45726. },
  45727. dick: {
  45728. height: math.unit(1.92, "feet"),
  45729. weight: math.unit(150, "lb"),
  45730. name: "Dick",
  45731. image: {
  45732. source: "./media/characters/fowler-karlsson/dick.svg"
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Normal",
  45739. height: math.unit(200, "cm"),
  45740. default: true
  45741. },
  45742. {
  45743. name: "Smaller Macro",
  45744. height: math.unit(90, "m")
  45745. },
  45746. {
  45747. name: "Macro",
  45748. height: math.unit(150, "m")
  45749. },
  45750. {
  45751. name: "Bigger Macro",
  45752. height: math.unit(300, "m")
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45758. {
  45759. side: {
  45760. height: math.unit(8 + 2/12, "feet"),
  45761. weight: math.unit(1, "tonne"),
  45762. name: "Side",
  45763. image: {
  45764. source: "./media/characters/rylide/side.svg",
  45765. extra: 1318/1034,
  45766. bottom: 106/1424
  45767. }
  45768. },
  45769. sitting: {
  45770. height: math.unit(303, "cm"),
  45771. weight: math.unit(1, "tonne"),
  45772. name: "Sitting",
  45773. image: {
  45774. source: "./media/characters/rylide/sitting.svg",
  45775. extra: 1303/1103,
  45776. bottom: 36/1339
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(8 + 2/12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(5 + 10/12, "feet"),
  45793. weight: math.unit(160, "lb"),
  45794. name: "Front",
  45795. image: {
  45796. source: "./media/characters/pudask/front.svg",
  45797. extra: 1616/1590,
  45798. bottom: 161/1777
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Ferret Height",
  45805. height: math.unit(2 + 5/12, "feet")
  45806. },
  45807. {
  45808. name: "Canon Height",
  45809. height: math.unit(5 + 10/12, "feet"),
  45810. default: true
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45816. {
  45817. front: {
  45818. height: math.unit(3 + 6/12, "feet"),
  45819. weight: math.unit(60, "lb"),
  45820. name: "Front",
  45821. image: {
  45822. source: "./media/characters/ramita/front.svg",
  45823. extra: 1402/1232,
  45824. bottom: 62/1464
  45825. }
  45826. },
  45827. dressed: {
  45828. height: math.unit(3 + 6/12, "feet"),
  45829. weight: math.unit(60, "lb"),
  45830. name: "Dressed",
  45831. image: {
  45832. source: "./media/characters/ramita/dressed.svg",
  45833. extra: 1534/1249,
  45834. bottom: 50/1584
  45835. }
  45836. },
  45837. },
  45838. [
  45839. {
  45840. name: "Normal",
  45841. height: math.unit(3 + 6/12, "feet"),
  45842. default: true
  45843. },
  45844. ]
  45845. ))
  45846. characterMakers.push(() => makeCharacter(
  45847. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45848. {
  45849. front: {
  45850. height: math.unit(8, "feet"),
  45851. name: "Front",
  45852. image: {
  45853. source: "./media/characters/ark/front.svg",
  45854. extra: 772/693,
  45855. bottom: 45/817
  45856. }
  45857. },
  45858. },
  45859. [
  45860. {
  45861. name: "Normal",
  45862. height: math.unit(8, "feet"),
  45863. default: true
  45864. },
  45865. ]
  45866. ))
  45867. characterMakers.push(() => makeCharacter(
  45868. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45869. {
  45870. front: {
  45871. height: math.unit(6, "feet"),
  45872. weight: math.unit(250, "lb"),
  45873. volume: math.unit(5/8, "gallons"),
  45874. name: "Front",
  45875. image: {
  45876. source: "./media/characters/ludwig-horn/front.svg",
  45877. extra: 1782/1635,
  45878. bottom: 96/1878
  45879. }
  45880. },
  45881. back: {
  45882. height: math.unit(6, "feet"),
  45883. weight: math.unit(250, "lb"),
  45884. volume: math.unit(5/8, "gallons"),
  45885. name: "Back",
  45886. image: {
  45887. source: "./media/characters/ludwig-horn/back.svg",
  45888. extra: 1874/1729,
  45889. bottom: 27/1901
  45890. }
  45891. },
  45892. dick: {
  45893. height: math.unit(1.05, "feet"),
  45894. weight: math.unit(15, "lb"),
  45895. volume: math.unit(5/8, "gallons"),
  45896. name: "Dick",
  45897. image: {
  45898. source: "./media/characters/ludwig-horn/dick.svg"
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "Small",
  45905. height: math.unit(6, "feet")
  45906. },
  45907. {
  45908. name: "Typical",
  45909. height: math.unit(12, "feet"),
  45910. default: true
  45911. },
  45912. {
  45913. name: "Building",
  45914. height: math.unit(80, "feet")
  45915. },
  45916. {
  45917. name: "Town",
  45918. height: math.unit(800, "feet")
  45919. },
  45920. {
  45921. name: "Kingdom",
  45922. height: math.unit(80000, "feet")
  45923. },
  45924. {
  45925. name: "Planet",
  45926. height: math.unit(8000000, "feet")
  45927. },
  45928. {
  45929. name: "Universe",
  45930. height: math.unit(8000000000, "feet")
  45931. },
  45932. {
  45933. name: "Transcended",
  45934. height: math.unit(8e27, "feet")
  45935. },
  45936. ]
  45937. ))
  45938. characterMakers.push(() => makeCharacter(
  45939. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45940. {
  45941. front: {
  45942. height: math.unit(5, "feet"),
  45943. weight: math.unit(50, "kg"),
  45944. name: "Front",
  45945. image: {
  45946. source: "./media/characters/biot-avery/front.svg",
  45947. extra: 1295/1232,
  45948. bottom: 86/1381
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(5, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(6, "feet"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/kitsune-kiro/front.svg",
  45968. extra: 1270/1158,
  45969. bottom: 42/1312
  45970. }
  45971. },
  45972. frontAlt: {
  45973. height: math.unit(6, "feet"),
  45974. name: "Front-alt",
  45975. image: {
  45976. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45977. extra: 1130/1081,
  45978. bottom: 36/1166
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Smol",
  45985. height: math.unit(3, "feet")
  45986. },
  45987. {
  45988. name: "Normal",
  45989. height: math.unit(6, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(6, "feet"),
  45999. weight: math.unit(125, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/jack-thatcher/front.svg",
  46003. extra: 1474/1370,
  46004. bottom: 26/1500
  46005. }
  46006. },
  46007. back: {
  46008. height: math.unit(6, "feet"),
  46009. weight: math.unit(125, "lb"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/jack-thatcher/back.svg",
  46013. extra: 1489/1384,
  46014. bottom: 18/1507
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(6, "feet"),
  46022. default: true
  46023. },
  46024. {
  46025. name: "Macro",
  46026. height: math.unit(75, "feet")
  46027. },
  46028. {
  46029. name: "Macro-er",
  46030. height: math.unit(250, "feet")
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46036. {
  46037. front: {
  46038. height: math.unit(7, "feet"),
  46039. weight: math.unit(110, "kg"),
  46040. name: "Front",
  46041. image: {
  46042. source: "./media/characters/max-hyper/front.svg",
  46043. extra: 1969/1881,
  46044. bottom: 49/2018
  46045. }
  46046. },
  46047. },
  46048. [
  46049. {
  46050. name: "Normal",
  46051. height: math.unit(7, "feet"),
  46052. default: true
  46053. },
  46054. ]
  46055. ))
  46056. characterMakers.push(() => makeCharacter(
  46057. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46058. {
  46059. front: {
  46060. height: math.unit(5 + 5/12, "feet"),
  46061. weight: math.unit(160, "lb"),
  46062. name: "Front",
  46063. image: {
  46064. source: "./media/characters/spook/front.svg",
  46065. extra: 794/791,
  46066. bottom: 54/848
  46067. }
  46068. },
  46069. back: {
  46070. height: math.unit(5 + 5/12, "feet"),
  46071. weight: math.unit(160, "lb"),
  46072. name: "Back",
  46073. image: {
  46074. source: "./media/characters/spook/back.svg",
  46075. extra: 812/798,
  46076. bottom: 32/844
  46077. }
  46078. },
  46079. },
  46080. [
  46081. {
  46082. name: "Normal",
  46083. height: math.unit(5 + 5/12, "feet"),
  46084. default: true
  46085. },
  46086. ]
  46087. ))
  46088. characterMakers.push(() => makeCharacter(
  46089. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46090. {
  46091. front: {
  46092. height: math.unit(18, "feet"),
  46093. name: "Front",
  46094. image: {
  46095. source: "./media/characters/xeaduulix/front.svg",
  46096. extra: 1380/1166,
  46097. bottom: 110/1490
  46098. }
  46099. },
  46100. back: {
  46101. height: math.unit(18, "feet"),
  46102. name: "Back",
  46103. image: {
  46104. source: "./media/characters/xeaduulix/back.svg",
  46105. extra: 1592/1170,
  46106. bottom: 128/1720
  46107. }
  46108. },
  46109. frontNsfw: {
  46110. height: math.unit(18, "feet"),
  46111. name: "Front (NSFW)",
  46112. image: {
  46113. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46114. extra: 1380/1166,
  46115. bottom: 110/1490
  46116. }
  46117. },
  46118. backNsfw: {
  46119. height: math.unit(18, "feet"),
  46120. name: "Back (NSFW)",
  46121. image: {
  46122. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46123. extra: 1592/1170,
  46124. bottom: 128/1720
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Normal",
  46131. height: math.unit(18, "feet"),
  46132. default: true
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46138. {
  46139. spreadWings: {
  46140. height: math.unit(20, "feet"),
  46141. name: "Spread Wings",
  46142. image: {
  46143. source: "./media/characters/fledge/spread-wings.svg",
  46144. extra: 693/635,
  46145. bottom: 26/719
  46146. }
  46147. },
  46148. front: {
  46149. height: math.unit(20, "feet"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/fledge/front.svg",
  46153. extra: 684/637,
  46154. bottom: 18/702
  46155. }
  46156. },
  46157. frontAlt: {
  46158. height: math.unit(20, "feet"),
  46159. name: "Front (Alt)",
  46160. image: {
  46161. source: "./media/characters/fledge/front-alt.svg",
  46162. extra: 708/664,
  46163. bottom: 13/721
  46164. }
  46165. },
  46166. back: {
  46167. height: math.unit(20, "feet"),
  46168. name: "Back",
  46169. image: {
  46170. source: "./media/characters/fledge/back.svg",
  46171. extra: 718/634,
  46172. bottom: 22/740
  46173. }
  46174. },
  46175. head: {
  46176. height: math.unit(5.55, "feet"),
  46177. name: "Head",
  46178. image: {
  46179. source: "./media/characters/fledge/head.svg"
  46180. }
  46181. },
  46182. headAlt: {
  46183. height: math.unit(5.1, "feet"),
  46184. name: "Head (Alt)",
  46185. image: {
  46186. source: "./media/characters/fledge/head-alt.svg"
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Small",
  46193. height: math.unit(6 + 2/12, "feet")
  46194. },
  46195. {
  46196. name: "Big",
  46197. height: math.unit(20, "feet"),
  46198. default: true
  46199. },
  46200. {
  46201. name: "Giant",
  46202. height: math.unit(100, "feet")
  46203. },
  46204. {
  46205. name: "Macro",
  46206. height: math.unit(200, "feet")
  46207. },
  46208. ]
  46209. ))
  46210. characterMakers.push(() => makeCharacter(
  46211. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46212. {
  46213. front: {
  46214. height: math.unit(1, "meter"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/atlas-morenai/front.svg",
  46218. extra: 1275/1043,
  46219. bottom: 19/1294
  46220. }
  46221. },
  46222. back: {
  46223. height: math.unit(1, "meter"),
  46224. name: "Back",
  46225. image: {
  46226. source: "./media/characters/atlas-morenai/back.svg",
  46227. extra: 1141/1001,
  46228. bottom: 25/1166
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(1, "meter"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Magic-Infused",
  46240. height: math.unit(5, "meters")
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46246. {
  46247. front: {
  46248. height: math.unit(5, "meters"),
  46249. name: "Front",
  46250. image: {
  46251. source: "./media/characters/cintia/front.svg",
  46252. extra: 1312/1228,
  46253. bottom: 38/1350
  46254. }
  46255. },
  46256. back: {
  46257. height: math.unit(5, "meters"),
  46258. name: "Back",
  46259. image: {
  46260. source: "./media/characters/cintia/back.svg",
  46261. extra: 1260/1166,
  46262. bottom: 98/1358
  46263. }
  46264. },
  46265. frontDick: {
  46266. height: math.unit(5, "meters"),
  46267. name: "Front (Dick)",
  46268. image: {
  46269. source: "./media/characters/cintia/front-dick.svg",
  46270. extra: 1312/1228,
  46271. bottom: 38/1350
  46272. }
  46273. },
  46274. backDick: {
  46275. height: math.unit(5, "meters"),
  46276. name: "Back (Dick)",
  46277. image: {
  46278. source: "./media/characters/cintia/back-dick.svg",
  46279. extra: 1260/1166,
  46280. bottom: 98/1358
  46281. }
  46282. },
  46283. bust: {
  46284. height: math.unit(1.97, "meters"),
  46285. name: "Bust",
  46286. image: {
  46287. source: "./media/characters/cintia/bust.svg",
  46288. extra: 617/565,
  46289. bottom: 0/617
  46290. }
  46291. },
  46292. },
  46293. [
  46294. {
  46295. name: "Normal",
  46296. height: math.unit(5, "meters"),
  46297. default: true
  46298. },
  46299. ]
  46300. ))
  46301. characterMakers.push(() => makeCharacter(
  46302. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46303. {
  46304. side: {
  46305. height: math.unit(100, "feet"),
  46306. name: "Side",
  46307. image: {
  46308. source: "./media/characters/denora/side.svg",
  46309. extra: 875/803,
  46310. bottom: 9/884
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Standard",
  46317. height: math.unit(100, "feet"),
  46318. default: true
  46319. },
  46320. {
  46321. name: "Grand",
  46322. height: math.unit(1000, "feet")
  46323. },
  46324. {
  46325. name: "Conquering",
  46326. height: math.unit(10000, "feet")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46332. {
  46333. dressed: {
  46334. height: math.unit(8 + 5/12, "feet"),
  46335. weight: math.unit(700, "lb"),
  46336. name: "Dressed",
  46337. image: {
  46338. source: "./media/characters/kiva/dressed.svg",
  46339. extra: 1102/1055,
  46340. bottom: 60/1162
  46341. }
  46342. },
  46343. nude: {
  46344. height: math.unit(8 + 5/12, "feet"),
  46345. weight: math.unit(700, "lb"),
  46346. name: "Nude",
  46347. image: {
  46348. source: "./media/characters/kiva/nude.svg",
  46349. extra: 1102/1055,
  46350. bottom: 60/1162
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Base Height",
  46357. height: math.unit(8 + 5/12, "feet"),
  46358. default: true
  46359. },
  46360. {
  46361. name: "Macro",
  46362. height: math.unit(100, "feet")
  46363. },
  46364. {
  46365. name: "Max",
  46366. height: math.unit(3280, "feet")
  46367. },
  46368. ]
  46369. ))
  46370. characterMakers.push(() => makeCharacter(
  46371. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46372. {
  46373. front: {
  46374. height: math.unit(6 + 8/12, "feet"),
  46375. weight: math.unit(250, "lb"),
  46376. name: "Front",
  46377. image: {
  46378. source: "./media/characters/ztragon/front.svg",
  46379. extra: 1825/1684,
  46380. bottom: 98/1923
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Normal",
  46387. height: math.unit(6 + 8/12, "feet"),
  46388. default: true
  46389. },
  46390. {
  46391. name: "Macro",
  46392. height: math.unit(80, "feet")
  46393. },
  46394. ]
  46395. ))
  46396. characterMakers.push(() => makeCharacter(
  46397. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46398. {
  46399. front: {
  46400. height: math.unit(10.4, "feet"),
  46401. weight: math.unit(2, "tons"),
  46402. name: "Front",
  46403. image: {
  46404. source: "./media/characters/yesenia/front.svg",
  46405. extra: 1479/1474,
  46406. bottom: 233/1712
  46407. }
  46408. },
  46409. },
  46410. [
  46411. {
  46412. name: "Normal",
  46413. height: math.unit(10.4, "feet"),
  46414. default: true
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46420. {
  46421. normal: {
  46422. height: math.unit(6 + 1/12, "feet"),
  46423. weight: math.unit(180, "lb"),
  46424. name: "Normal",
  46425. image: {
  46426. source: "./media/characters/leanne-lycheborne/normal.svg",
  46427. extra: 1748/1660,
  46428. bottom: 98/1846
  46429. }
  46430. },
  46431. were: {
  46432. height: math.unit(12, "feet"),
  46433. weight: math.unit(1600, "lb"),
  46434. name: "Were",
  46435. image: {
  46436. source: "./media/characters/leanne-lycheborne/were.svg",
  46437. extra: 1485/1432,
  46438. bottom: 66/1551
  46439. }
  46440. },
  46441. },
  46442. [
  46443. {
  46444. name: "Normal",
  46445. height: math.unit(6 + 1/12, "feet"),
  46446. default: true
  46447. },
  46448. ]
  46449. ))
  46450. characterMakers.push(() => makeCharacter(
  46451. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46452. {
  46453. side: {
  46454. height: math.unit(13, "feet"),
  46455. name: "Side",
  46456. image: {
  46457. source: "./media/characters/kira-tyler/side.svg",
  46458. extra: 693/393,
  46459. bottom: 58/751
  46460. }
  46461. },
  46462. },
  46463. [
  46464. {
  46465. name: "Normal",
  46466. height: math.unit(13, "feet"),
  46467. default: true
  46468. },
  46469. ]
  46470. ))
  46471. characterMakers.push(() => makeCharacter(
  46472. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46473. {
  46474. front: {
  46475. height: math.unit(10.3, "feet"),
  46476. weight: math.unit(150, "lb"),
  46477. name: "Front",
  46478. image: {
  46479. source: "./media/characters/blaze/front.svg",
  46480. extra: 1378/1286,
  46481. bottom: 172/1550
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Normal",
  46488. height: math.unit(10.3, "feet"),
  46489. default: true
  46490. },
  46491. ]
  46492. ))
  46493. characterMakers.push(() => makeCharacter(
  46494. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46495. {
  46496. side: {
  46497. height: math.unit(2, "meters"),
  46498. weight: math.unit(400, "kg"),
  46499. name: "Side",
  46500. image: {
  46501. source: "./media/characters/anu/side.svg",
  46502. extra: 506/394,
  46503. bottom: 18/524
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Humanoid",
  46510. height: math.unit(2, "meters")
  46511. },
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(5, "meters"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46521. {
  46522. front: {
  46523. height: math.unit(5 + 5/12, "feet"),
  46524. weight: math.unit(170, "lb"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/synx-the-lynx/front.svg",
  46528. extra: 1893/1745,
  46529. bottom: 17/1910
  46530. }
  46531. },
  46532. side: {
  46533. height: math.unit(5 + 5/12, "feet"),
  46534. weight: math.unit(170, "lb"),
  46535. name: "Side",
  46536. image: {
  46537. source: "./media/characters/synx-the-lynx/side.svg",
  46538. extra: 1884/1740,
  46539. bottom: 39/1923
  46540. }
  46541. },
  46542. back: {
  46543. height: math.unit(5 + 5/12, "feet"),
  46544. weight: math.unit(170, "lb"),
  46545. name: "Back",
  46546. image: {
  46547. source: "./media/characters/synx-the-lynx/back.svg",
  46548. extra: 1903/1755,
  46549. bottom: 14/1917
  46550. }
  46551. },
  46552. },
  46553. [
  46554. {
  46555. name: "Normal",
  46556. height: math.unit(5 + 5/12, "feet"),
  46557. default: true
  46558. },
  46559. ]
  46560. ))
  46561. characterMakers.push(() => makeCharacter(
  46562. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46563. {
  46564. back: {
  46565. height: math.unit(15, "feet"),
  46566. name: "Back",
  46567. image: {
  46568. source: "./media/characters/nadezda-fex/back.svg",
  46569. extra: 1695/1481,
  46570. bottom: 25/1720
  46571. }
  46572. },
  46573. },
  46574. [
  46575. {
  46576. name: "Normal",
  46577. height: math.unit(15, "feet"),
  46578. default: true
  46579. },
  46580. {
  46581. name: "Macro",
  46582. height: math.unit(2.5, "miles")
  46583. },
  46584. {
  46585. name: "Goddess",
  46586. height: math.unit(2, "multiverses")
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46592. {
  46593. front: {
  46594. height: math.unit(216, "cm"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/lev/front.svg",
  46598. extra: 1728/1670,
  46599. bottom: 82/1810
  46600. }
  46601. },
  46602. back: {
  46603. height: math.unit(216, "cm"),
  46604. name: "Back",
  46605. image: {
  46606. source: "./media/characters/lev/back.svg",
  46607. extra: 1738/1675,
  46608. bottom: 24/1762
  46609. }
  46610. },
  46611. dressed: {
  46612. height: math.unit(216, "cm"),
  46613. name: "Dressed",
  46614. image: {
  46615. source: "./media/characters/lev/dressed.svg",
  46616. extra: 1397/1351,
  46617. bottom: 73/1470
  46618. }
  46619. },
  46620. head: {
  46621. height: math.unit(0.51, "meter"),
  46622. name: "Head",
  46623. image: {
  46624. source: "./media/characters/lev/head.svg"
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(216, "cm"),
  46632. default: true
  46633. },
  46634. {
  46635. name: "Relatively Macro",
  46636. height: math.unit(80, "meters")
  46637. },
  46638. {
  46639. name: "Megamacro",
  46640. height: math.unit(21600, "meters")
  46641. },
  46642. {
  46643. name: "Megamacro+",
  46644. height: math.unit(64800, "meters")
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46650. {
  46651. front: {
  46652. height: math.unit(2, "meters"),
  46653. weight: math.unit(80, "kg"),
  46654. name: "Front",
  46655. image: {
  46656. source: "./media/characters/moka/front.svg",
  46657. extra: 1337/1255,
  46658. bottom: 58/1395
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Micro",
  46665. height: math.unit(15, "cm")
  46666. },
  46667. {
  46668. name: "Normal",
  46669. height: math.unit(2, "meters"),
  46670. default: true
  46671. },
  46672. {
  46673. name: "Macro",
  46674. height: math.unit(20, "meters"),
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(9, "feet"),
  46683. weight: math.unit(240, "lb"),
  46684. name: "Front",
  46685. image: {
  46686. source: "./media/characters/kuzco/front.svg",
  46687. extra: 1593/1487,
  46688. bottom: 32/1625
  46689. }
  46690. },
  46691. side: {
  46692. height: math.unit(9, "feet"),
  46693. weight: math.unit(240, "lb"),
  46694. name: "Side",
  46695. image: {
  46696. source: "./media/characters/kuzco/side.svg",
  46697. extra: 1575/1485,
  46698. bottom: 30/1605
  46699. }
  46700. },
  46701. back: {
  46702. height: math.unit(9, "feet"),
  46703. weight: math.unit(240, "lb"),
  46704. name: "Back",
  46705. image: {
  46706. source: "./media/characters/kuzco/back.svg",
  46707. extra: 1603/1514,
  46708. bottom: 14/1617
  46709. }
  46710. },
  46711. },
  46712. [
  46713. {
  46714. name: "Normal",
  46715. height: math.unit(9, "feet"),
  46716. default: true
  46717. },
  46718. ]
  46719. ))
  46720. characterMakers.push(() => makeCharacter(
  46721. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46722. {
  46723. side: {
  46724. height: math.unit(2, "meters"),
  46725. weight: math.unit(300, "kg"),
  46726. name: "Side",
  46727. image: {
  46728. source: "./media/characters/ceruleus/side.svg",
  46729. extra: 1068/974,
  46730. bottom: 126/1194
  46731. }
  46732. },
  46733. maw: {
  46734. height: math.unit(0.8125, "meter"),
  46735. name: "Maw",
  46736. image: {
  46737. source: "./media/characters/ceruleus/maw.svg"
  46738. }
  46739. },
  46740. },
  46741. [
  46742. {
  46743. name: "Normal",
  46744. height: math.unit(16, "meters"),
  46745. default: true
  46746. },
  46747. ]
  46748. ))
  46749. characterMakers.push(() => makeCharacter(
  46750. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46751. {
  46752. front: {
  46753. height: math.unit(9, "feet"),
  46754. weight: math.unit(500, "kg"),
  46755. name: "Front",
  46756. image: {
  46757. source: "./media/characters/acouya/front.svg",
  46758. extra: 1660/1473,
  46759. bottom: 28/1688
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(9, "feet"),
  46767. default: true
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(5 + 6/12, "feet"),
  46776. weight: math.unit(195, "lb"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/vant/front.svg",
  46780. extra: 1396/1320,
  46781. bottom: 20/1416
  46782. }
  46783. },
  46784. back: {
  46785. height: math.unit(5 + 6/12, "feet"),
  46786. weight: math.unit(195, "lb"),
  46787. name: "Back",
  46788. image: {
  46789. source: "./media/characters/vant/back.svg",
  46790. extra: 1396/1320,
  46791. bottom: 20/1416
  46792. }
  46793. },
  46794. maw: {
  46795. height: math.unit(0.75, "feet"),
  46796. name: "Maw",
  46797. image: {
  46798. source: "./media/characters/vant/maw.svg"
  46799. }
  46800. },
  46801. paw: {
  46802. height: math.unit(1.07, "feet"),
  46803. name: "Paw",
  46804. image: {
  46805. source: "./media/characters/vant/paw.svg"
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Micro",
  46812. height: math.unit(0.25, "inches")
  46813. },
  46814. {
  46815. name: "Normal",
  46816. height: math.unit(5 + 6/12, "feet"),
  46817. default: true
  46818. },
  46819. {
  46820. name: "Macro",
  46821. height: math.unit(75, "feet")
  46822. },
  46823. ]
  46824. ))
  46825. characterMakers.push(() => makeCharacter(
  46826. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46827. {
  46828. front: {
  46829. height: math.unit(30, "meters"),
  46830. weight: math.unit(363, "tons"),
  46831. name: "Front",
  46832. image: {
  46833. source: "./media/characters/ahra/front.svg",
  46834. extra: 1914/1814,
  46835. bottom: 46/1960
  46836. }
  46837. },
  46838. },
  46839. [
  46840. {
  46841. name: "Macro",
  46842. height: math.unit(30, "meters"),
  46843. default: true
  46844. },
  46845. ]
  46846. ))
  46847. characterMakers.push(() => makeCharacter(
  46848. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46849. {
  46850. undressed: {
  46851. height: math.unit(2, "m"),
  46852. weight: math.unit(250, "kg"),
  46853. name: "Undressed",
  46854. image: {
  46855. source: "./media/characters/coriander/undressed.svg",
  46856. extra: 1757/1606,
  46857. bottom: 107/1864
  46858. }
  46859. },
  46860. dressed: {
  46861. height: math.unit(2, "m"),
  46862. weight: math.unit(250, "kg"),
  46863. name: "Dressed",
  46864. image: {
  46865. source: "./media/characters/coriander/dressed.svg",
  46866. extra: 1757/1606,
  46867. bottom: 107/1864
  46868. }
  46869. },
  46870. },
  46871. [
  46872. {
  46873. name: "Normal",
  46874. height: math.unit(4, "meters"),
  46875. default: true
  46876. },
  46877. {
  46878. name: "XL",
  46879. height: math.unit(6, "meters")
  46880. },
  46881. {
  46882. name: "XXL",
  46883. height: math.unit(8, "meters")
  46884. },
  46885. ]
  46886. ))
  46887. characterMakers.push(() => makeCharacter(
  46888. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46889. {
  46890. front: {
  46891. height: math.unit(6, "feet"),
  46892. name: "Front",
  46893. image: {
  46894. source: "./media/characters/syrinx/front.svg",
  46895. extra: 1557/1259,
  46896. bottom: 171/1728
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(6 + 3/12, "feet"),
  46904. default: true
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46910. {
  46911. front: {
  46912. height: math.unit(11 + 6/12, "feet"),
  46913. weight: math.unit(1.5, "tons"),
  46914. name: "Front",
  46915. image: {
  46916. source: "./media/characters/bor/front.svg",
  46917. extra: 1189/1109,
  46918. bottom: 170/1359
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(11 + 6/12, "feet"),
  46926. default: true
  46927. },
  46928. {
  46929. name: "Macro",
  46930. height: math.unit(32 + 9/12, "feet")
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46936. {
  46937. anthro: {
  46938. height: math.unit(9, "feet"),
  46939. weight: math.unit(2076, "lb"),
  46940. name: "Anthro",
  46941. image: {
  46942. source: "./media/characters/abacus/anthro.svg",
  46943. extra: 1540/1494,
  46944. bottom: 233/1773
  46945. }
  46946. },
  46947. pigeon: {
  46948. height: math.unit(1, "feet"),
  46949. name: "Pigeon",
  46950. image: {
  46951. source: "./media/characters/abacus/pigeon.svg",
  46952. extra: 528/525,
  46953. bottom: 46/574
  46954. }
  46955. },
  46956. },
  46957. [
  46958. {
  46959. name: "Normal",
  46960. height: math.unit(9, "feet"),
  46961. default: true
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46967. {
  46968. side: {
  46969. height: math.unit(6, "feet"),
  46970. name: "Side",
  46971. image: {
  46972. source: "./media/characters/delkhan/side.svg",
  46973. extra: 1884/1786,
  46974. bottom: 308/2192
  46975. }
  46976. },
  46977. head: {
  46978. height: math.unit(3.38, "feet"),
  46979. name: "Head",
  46980. image: {
  46981. source: "./media/characters/delkhan/head.svg"
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(72, "feet"),
  46989. default: true
  46990. },
  46991. {
  46992. name: "Giant",
  46993. height: math.unit(172, "feet")
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46999. {
  47000. standing: {
  47001. height: math.unit(6, "feet"),
  47002. name: "Standing",
  47003. image: {
  47004. source: "./media/characters/euchidat/standing.svg",
  47005. extra: 1612/1553,
  47006. bottom: 116/1728
  47007. }
  47008. },
  47009. leaning: {
  47010. height: math.unit(6, "feet"),
  47011. name: "Leaning",
  47012. image: {
  47013. source: "./media/characters/euchidat/leaning.svg",
  47014. extra: 1719/1674,
  47015. bottom: 27/1746
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(175, "feet"),
  47023. default: true
  47024. },
  47025. {
  47026. name: "Megamacro",
  47027. height: math.unit(190, "miles")
  47028. },
  47029. {
  47030. name: "Gigamacro",
  47031. height: math.unit(190000, "miles")
  47032. },
  47033. ]
  47034. ))
  47035. characterMakers.push(() => makeCharacter(
  47036. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47037. {
  47038. front: {
  47039. height: math.unit(6, "feet"),
  47040. weight: math.unit(150, "lb"),
  47041. name: "Front",
  47042. image: {
  47043. source: "./media/characters/rebecca-stack/front.svg",
  47044. extra: 1256/1201,
  47045. bottom: 18/1274
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(5 + 8/12, "feet"),
  47053. default: true
  47054. },
  47055. {
  47056. name: "Demolitionist",
  47057. height: math.unit(200, "feet")
  47058. },
  47059. {
  47060. name: "Out of Control",
  47061. height: math.unit(2, "miles")
  47062. },
  47063. {
  47064. name: "Giga",
  47065. height: math.unit(7200, "miles")
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(6, "feet"),
  47074. weight: math.unit(150, "lb"),
  47075. name: "Front",
  47076. image: {
  47077. source: "./media/characters/jenny-cartwright/front.svg",
  47078. extra: 1384/1376,
  47079. bottom: 58/1442
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Normal",
  47086. height: math.unit(6 + 7/12, "feet"),
  47087. default: true
  47088. },
  47089. {
  47090. name: "Librarian",
  47091. height: math.unit(55, "feet")
  47092. },
  47093. {
  47094. name: "Sightseer",
  47095. height: math.unit(50, "miles")
  47096. },
  47097. {
  47098. name: "Giga",
  47099. height: math.unit(30000, "miles")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47105. {
  47106. nude: {
  47107. height: math.unit(8, "feet"),
  47108. weight: math.unit(225, "lb"),
  47109. name: "Nude",
  47110. image: {
  47111. source: "./media/characters/marvy/nude.svg",
  47112. extra: 1900/1683,
  47113. bottom: 89/1989
  47114. }
  47115. },
  47116. dressed: {
  47117. height: math.unit(8, "feet"),
  47118. weight: math.unit(225, "lb"),
  47119. name: "Dressed",
  47120. image: {
  47121. source: "./media/characters/marvy/dressed.svg",
  47122. extra: 1900/1683,
  47123. bottom: 89/1989
  47124. }
  47125. },
  47126. head: {
  47127. height: math.unit(2.85, "feet"),
  47128. name: "Head",
  47129. image: {
  47130. source: "./media/characters/marvy/head.svg"
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Normal",
  47137. height: math.unit(8, "feet"),
  47138. default: true
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(8, "feet"),
  47147. weight: math.unit(250, "lb"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/leah/front.svg",
  47151. extra: 1257/1149,
  47152. bottom: 109/1366
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(8, "feet"),
  47160. default: true
  47161. },
  47162. {
  47163. name: "Minimacro",
  47164. height: math.unit(40, "feet")
  47165. },
  47166. {
  47167. name: "Macro",
  47168. height: math.unit(124, "feet")
  47169. },
  47170. {
  47171. name: "Megamacro",
  47172. height: math.unit(850, "feet")
  47173. },
  47174. ]
  47175. ))
  47176. characterMakers.push(() => makeCharacter(
  47177. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47178. {
  47179. side: {
  47180. height: math.unit(13 + 6/12, "feet"),
  47181. weight: math.unit(3200, "lb"),
  47182. name: "Side",
  47183. image: {
  47184. source: "./media/characters/alvir/side.svg",
  47185. extra: 896/589,
  47186. bottom: 26/922
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(13 + 6/12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(5 + 4/12, "feet"),
  47203. weight: math.unit(236, "lb"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/zaina-khalil/front.svg",
  47207. extra: 1533/1485,
  47208. bottom: 94/1627
  47209. }
  47210. },
  47211. side: {
  47212. height: math.unit(5 + 4/12, "feet"),
  47213. weight: math.unit(236, "lb"),
  47214. name: "Side",
  47215. image: {
  47216. source: "./media/characters/zaina-khalil/side.svg",
  47217. extra: 1537/1498,
  47218. bottom: 66/1603
  47219. }
  47220. },
  47221. back: {
  47222. height: math.unit(5 + 4/12, "feet"),
  47223. weight: math.unit(236, "lb"),
  47224. name: "Back",
  47225. image: {
  47226. source: "./media/characters/zaina-khalil/back.svg",
  47227. extra: 1546/1494,
  47228. bottom: 89/1635
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(5 + 4/12, "feet"),
  47236. default: true
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47242. {
  47243. side: {
  47244. height: math.unit(12, "feet"),
  47245. weight: math.unit(4000, "lb"),
  47246. name: "Side",
  47247. image: {
  47248. source: "./media/characters/terry/side.svg",
  47249. extra: 1518/1439,
  47250. bottom: 149/1667
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Normal",
  47257. height: math.unit(12, "feet"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(12, "feet"),
  47267. weight: math.unit(1500, "lb"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/kahea/front.svg",
  47271. extra: 1722/1617,
  47272. bottom: 179/1901
  47273. }
  47274. },
  47275. },
  47276. [
  47277. {
  47278. name: "Normal",
  47279. height: math.unit(12, "feet"),
  47280. default: true
  47281. },
  47282. ]
  47283. ))
  47284. characterMakers.push(() => makeCharacter(
  47285. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47286. {
  47287. demonFront: {
  47288. height: math.unit(36, "feet"),
  47289. name: "Front",
  47290. image: {
  47291. source: "./media/characters/alex-xuria/demon-front.svg",
  47292. extra: 1705/1673,
  47293. bottom: 198/1903
  47294. },
  47295. form: "demon",
  47296. default: true
  47297. },
  47298. demonBack: {
  47299. height: math.unit(36, "feet"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/alex-xuria/demon-back.svg",
  47303. extra: 1725/1693,
  47304. bottom: 70/1795
  47305. },
  47306. form: "demon"
  47307. },
  47308. demonHead: {
  47309. height: math.unit(2.14, "meters"),
  47310. name: "Head",
  47311. image: {
  47312. source: "./media/characters/alex-xuria/demon-head.svg"
  47313. },
  47314. form: "demon"
  47315. },
  47316. demonHand: {
  47317. height: math.unit(1.61, "meters"),
  47318. name: "Hand",
  47319. image: {
  47320. source: "./media/characters/alex-xuria/demon-hand.svg"
  47321. },
  47322. form: "demon"
  47323. },
  47324. demonPaw: {
  47325. height: math.unit(1.35, "meters"),
  47326. name: "Paw",
  47327. image: {
  47328. source: "./media/characters/alex-xuria/demon-paw.svg"
  47329. },
  47330. form: "demon"
  47331. },
  47332. demonFoot: {
  47333. height: math.unit(2.2, "meters"),
  47334. name: "Foot",
  47335. image: {
  47336. source: "./media/characters/alex-xuria/demon-foot.svg"
  47337. },
  47338. form: "demon"
  47339. },
  47340. demonCock: {
  47341. height: math.unit(1.74, "meters"),
  47342. name: "Cock",
  47343. image: {
  47344. source: "./media/characters/alex-xuria/demon-cock.svg"
  47345. },
  47346. form: "demon"
  47347. },
  47348. demonTailClosed: {
  47349. height: math.unit(1.47, "meters"),
  47350. name: "Tail (Closed)",
  47351. image: {
  47352. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47353. },
  47354. form: "demon"
  47355. },
  47356. demonTailOpen: {
  47357. height: math.unit(2.85, "meters"),
  47358. name: "Tail (Open)",
  47359. image: {
  47360. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47361. },
  47362. form: "demon"
  47363. },
  47364. incubusFront: {
  47365. height: math.unit(12, "feet"),
  47366. name: "Front",
  47367. image: {
  47368. source: "./media/characters/alex-xuria/incubus-front.svg",
  47369. extra: 1754/1677,
  47370. bottom: 125/1879
  47371. },
  47372. form: "incubus",
  47373. default: true
  47374. },
  47375. incubusBack: {
  47376. height: math.unit(12, "feet"),
  47377. name: "Back",
  47378. image: {
  47379. source: "./media/characters/alex-xuria/incubus-back.svg",
  47380. extra: 1702/1647,
  47381. bottom: 30/1732
  47382. },
  47383. form: "incubus"
  47384. },
  47385. incubusHead: {
  47386. height: math.unit(3.45, "feet"),
  47387. name: "Head",
  47388. image: {
  47389. source: "./media/characters/alex-xuria/incubus-head.svg"
  47390. },
  47391. form: "incubus"
  47392. },
  47393. rabbitFront: {
  47394. height: math.unit(6, "feet"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47398. extra: 1369/1349,
  47399. bottom: 45/1414
  47400. },
  47401. form: "rabbit",
  47402. default: true
  47403. },
  47404. rabbitSide: {
  47405. height: math.unit(6, "feet"),
  47406. name: "Side",
  47407. image: {
  47408. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47409. extra: 1370/1356,
  47410. bottom: 37/1407
  47411. },
  47412. form: "rabbit"
  47413. },
  47414. rabbitBack: {
  47415. height: math.unit(6, "feet"),
  47416. name: "Back",
  47417. image: {
  47418. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47419. extra: 1375/1358,
  47420. bottom: 43/1418
  47421. },
  47422. form: "rabbit"
  47423. },
  47424. },
  47425. [
  47426. {
  47427. name: "Normal",
  47428. height: math.unit(6, "feet"),
  47429. default: true,
  47430. form: "rabbit"
  47431. },
  47432. {
  47433. name: "Incubus",
  47434. height: math.unit(12, "feet"),
  47435. default: true,
  47436. form: "incubus"
  47437. },
  47438. {
  47439. name: "Demon",
  47440. height: math.unit(36, "feet"),
  47441. default: true,
  47442. form: "demon"
  47443. }
  47444. ],
  47445. {
  47446. "demon": {
  47447. name: "Demon",
  47448. default: true
  47449. },
  47450. "incubus": {
  47451. name: "Incubus",
  47452. },
  47453. "rabbit": {
  47454. name: "Rabbit"
  47455. }
  47456. }
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(7 + 5/12, "feet"),
  47463. weight: math.unit(510, "lb"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/syrup/front.svg",
  47467. extra: 932/916,
  47468. bottom: 26/958
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Normal",
  47475. height: math.unit(7 + 5/12, "feet"),
  47476. default: true
  47477. },
  47478. {
  47479. name: "Big",
  47480. height: math.unit(50, "feet")
  47481. },
  47482. {
  47483. name: "Macro",
  47484. height: math.unit(300, "feet")
  47485. },
  47486. {
  47487. name: "Megamacro",
  47488. height: math.unit(1, "mile")
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47494. {
  47495. front: {
  47496. height: math.unit(6 + 9/12, "feet"),
  47497. name: "Front",
  47498. image: {
  47499. source: "./media/characters/zeimne/front.svg",
  47500. extra: 1969/1806,
  47501. bottom: 53/2022
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Normal",
  47508. height: math.unit(6 + 9/12, "feet"),
  47509. default: true
  47510. },
  47511. {
  47512. name: "Giant",
  47513. height: math.unit(550, "feet")
  47514. },
  47515. {
  47516. name: "Mega",
  47517. height: math.unit(3, "miles")
  47518. },
  47519. {
  47520. name: "Giga",
  47521. height: math.unit(250, "miles")
  47522. },
  47523. {
  47524. name: "Tera",
  47525. height: math.unit(1, "AU")
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47531. {
  47532. front: {
  47533. height: math.unit(5 + 2/12, "feet"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/grar/front.svg",
  47537. extra: 1331/1119,
  47538. bottom: 60/1391
  47539. }
  47540. },
  47541. back: {
  47542. height: math.unit(5 + 2/12, "feet"),
  47543. name: "Back",
  47544. image: {
  47545. source: "./media/characters/grar/back.svg",
  47546. extra: 1385/1169,
  47547. bottom: 23/1408
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(5 + 2/12, "feet"),
  47555. default: true
  47556. },
  47557. ]
  47558. ))
  47559. characterMakers.push(() => makeCharacter(
  47560. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47561. {
  47562. front: {
  47563. height: math.unit(13 + 7/12, "feet"),
  47564. weight: math.unit(2200, "lb"),
  47565. name: "Front",
  47566. image: {
  47567. source: "./media/characters/endraya/front.svg",
  47568. extra: 1289/1215,
  47569. bottom: 50/1339
  47570. }
  47571. },
  47572. nude: {
  47573. height: math.unit(13 + 7/12, "feet"),
  47574. weight: math.unit(2200, "lb"),
  47575. name: "Nude",
  47576. image: {
  47577. source: "./media/characters/endraya/nude.svg",
  47578. extra: 1247/1171,
  47579. bottom: 40/1287
  47580. }
  47581. },
  47582. head: {
  47583. height: math.unit(2.6, "feet"),
  47584. name: "Head",
  47585. image: {
  47586. source: "./media/characters/endraya/head.svg"
  47587. }
  47588. },
  47589. slit: {
  47590. height: math.unit(3.4, "feet"),
  47591. name: "Slit",
  47592. image: {
  47593. source: "./media/characters/endraya/slit.svg"
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(13 + 7/12, "feet"),
  47601. default: true
  47602. },
  47603. {
  47604. name: "Macro",
  47605. height: math.unit(200, "feet")
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47611. {
  47612. front: {
  47613. height: math.unit(1.81, "meters"),
  47614. weight: math.unit(69, "kg"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/rodryana/front.svg",
  47618. extra: 2002/1921,
  47619. bottom: 53/2055
  47620. }
  47621. },
  47622. back: {
  47623. height: math.unit(1.81, "meters"),
  47624. weight: math.unit(69, "kg"),
  47625. name: "Back",
  47626. image: {
  47627. source: "./media/characters/rodryana/back.svg",
  47628. extra: 1993/1926,
  47629. bottom: 48/2041
  47630. }
  47631. },
  47632. maw: {
  47633. height: math.unit(0.19769417475, "meters"),
  47634. name: "Maw",
  47635. image: {
  47636. source: "./media/characters/rodryana/maw.svg"
  47637. }
  47638. },
  47639. slit: {
  47640. height: math.unit(0.31631067961, "meters"),
  47641. name: "Slit",
  47642. image: {
  47643. source: "./media/characters/rodryana/slit.svg"
  47644. }
  47645. },
  47646. },
  47647. [
  47648. {
  47649. name: "Normal",
  47650. height: math.unit(1.81, "meters")
  47651. },
  47652. {
  47653. name: "Mini Macro",
  47654. height: math.unit(181, "meters")
  47655. },
  47656. {
  47657. name: "Macro",
  47658. height: math.unit(452, "meters"),
  47659. default: true
  47660. },
  47661. {
  47662. name: "Mega Macro",
  47663. height: math.unit(1.375, "km")
  47664. },
  47665. {
  47666. name: "Giga Macro",
  47667. height: math.unit(13.575, "km")
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(6, "feet"),
  47676. weight: math.unit(1000, "lb"),
  47677. name: "Front",
  47678. image: {
  47679. source: "./media/characters/asaya/front.svg",
  47680. extra: 1460/1200,
  47681. bottom: 71/1531
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(8, "km"),
  47689. default: true
  47690. },
  47691. ]
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47695. {
  47696. front: {
  47697. height: math.unit(3.5, "meters"),
  47698. name: "Front",
  47699. image: {
  47700. source: "./media/characters/sarzu-and-israz/front.svg",
  47701. extra: 1570/1558,
  47702. bottom: 150/1720
  47703. },
  47704. },
  47705. back: {
  47706. height: math.unit(3.5, "meters"),
  47707. name: "Back",
  47708. image: {
  47709. source: "./media/characters/sarzu-and-israz/back.svg",
  47710. extra: 1523/1509,
  47711. bottom: 132/1655
  47712. },
  47713. },
  47714. frontFemale: {
  47715. height: math.unit(3.5, "meters"),
  47716. name: "Front (Female)",
  47717. image: {
  47718. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47719. extra: 1570/1558,
  47720. bottom: 150/1720
  47721. },
  47722. },
  47723. frontHerm: {
  47724. height: math.unit(3.5, "meters"),
  47725. name: "Front (Herm)",
  47726. image: {
  47727. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47728. extra: 1570/1558,
  47729. bottom: 150/1720
  47730. },
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(3.5, "meters"),
  47737. default: true,
  47738. },
  47739. {
  47740. name: "Macro",
  47741. height: math.unit(65.5, "meters"),
  47742. },
  47743. ],
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47747. {
  47748. front: {
  47749. height: math.unit(6, "feet"),
  47750. weight: math.unit(250, "lb"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/zenimma/front.svg",
  47754. extra: 1346/1320,
  47755. bottom: 58/1404
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(6, "feet"),
  47760. weight: math.unit(250, "lb"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/zenimma/back.svg",
  47764. extra: 1324/1308,
  47765. bottom: 44/1368
  47766. }
  47767. },
  47768. dick: {
  47769. height: math.unit(1.44, "feet"),
  47770. name: "Dick",
  47771. image: {
  47772. source: "./media/characters/zenimma/dick.svg"
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Canon Height",
  47779. height: math.unit(66, "miles"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47786. {
  47787. nude: {
  47788. height: math.unit(6, "feet"),
  47789. weight: math.unit(150, "lb"),
  47790. name: "Nude",
  47791. image: {
  47792. source: "./media/characters/shavon/nude.svg",
  47793. extra: 1242/1096,
  47794. bottom: 98/1340
  47795. }
  47796. },
  47797. dressed: {
  47798. height: math.unit(6, "feet"),
  47799. weight: math.unit(150, "lb"),
  47800. name: "Dressed",
  47801. image: {
  47802. source: "./media/characters/shavon/dressed.svg",
  47803. extra: 1242/1096,
  47804. bottom: 98/1340
  47805. }
  47806. },
  47807. },
  47808. [
  47809. {
  47810. name: "Macro",
  47811. height: math.unit(255, "feet"),
  47812. default: true
  47813. },
  47814. ]
  47815. ))
  47816. characterMakers.push(() => makeCharacter(
  47817. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47818. {
  47819. front: {
  47820. height: math.unit(6, "feet"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/steph/front.svg",
  47824. extra: 1430/1330,
  47825. bottom: 54/1484
  47826. }
  47827. },
  47828. },
  47829. [
  47830. {
  47831. name: "Normal",
  47832. height: math.unit(6, "feet"),
  47833. default: true
  47834. },
  47835. ]
  47836. ))
  47837. characterMakers.push(() => makeCharacter(
  47838. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47839. {
  47840. front: {
  47841. height: math.unit(9, "feet"),
  47842. weight: math.unit(400, "lb"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/kil'aman/front.svg",
  47846. extra: 1210/1159,
  47847. bottom: 109/1319
  47848. }
  47849. },
  47850. head: {
  47851. height: math.unit(2.14, "feet"),
  47852. name: "Head",
  47853. image: {
  47854. source: "./media/characters/kil'aman/head.svg"
  47855. }
  47856. },
  47857. maw: {
  47858. height: math.unit(1.21, "feet"),
  47859. name: "Maw",
  47860. image: {
  47861. source: "./media/characters/kil'aman/maw.svg"
  47862. }
  47863. },
  47864. foot: {
  47865. height: math.unit(1.7, "feet"),
  47866. name: "Foot",
  47867. image: {
  47868. source: "./media/characters/kil'aman/foot.svg"
  47869. }
  47870. },
  47871. dick: {
  47872. height: math.unit(2.1, "feet"),
  47873. name: "Dick",
  47874. image: {
  47875. source: "./media/characters/kil'aman/dick.svg"
  47876. }
  47877. },
  47878. },
  47879. [
  47880. {
  47881. name: "Normal",
  47882. height: math.unit(9, "feet")
  47883. },
  47884. {
  47885. name: "Canon Height",
  47886. height: math.unit(10, "miles"),
  47887. default: true
  47888. },
  47889. {
  47890. name: "Maximum",
  47891. height: math.unit(6e9, "miles")
  47892. },
  47893. ]
  47894. ))
  47895. characterMakers.push(() => makeCharacter(
  47896. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47897. {
  47898. front: {
  47899. height: math.unit(90, "feet"),
  47900. weight: math.unit(675000, "lb"),
  47901. name: "Front",
  47902. image: {
  47903. source: "./media/characters/qadan/front.svg",
  47904. extra: 1012/1004,
  47905. bottom: 78/1090
  47906. }
  47907. },
  47908. back: {
  47909. height: math.unit(90, "feet"),
  47910. weight: math.unit(675000, "lb"),
  47911. name: "Back",
  47912. image: {
  47913. source: "./media/characters/qadan/back.svg",
  47914. extra: 1042/1031,
  47915. bottom: 55/1097
  47916. }
  47917. },
  47918. armored: {
  47919. height: math.unit(90, "feet"),
  47920. weight: math.unit(675000, "lb"),
  47921. name: "Armored",
  47922. image: {
  47923. source: "./media/characters/qadan/armored.svg",
  47924. extra: 1047/1037,
  47925. bottom: 48/1095
  47926. }
  47927. },
  47928. },
  47929. [
  47930. {
  47931. name: "Normal",
  47932. height: math.unit(90, "feet"),
  47933. default: true
  47934. },
  47935. ]
  47936. ))
  47937. characterMakers.push(() => makeCharacter(
  47938. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47939. {
  47940. front: {
  47941. height: math.unit(6, "feet"),
  47942. weight: math.unit(225, "lb"),
  47943. name: "Front",
  47944. image: {
  47945. source: "./media/characters/brooke/front.svg",
  47946. extra: 1050/1010,
  47947. bottom: 66/1116
  47948. }
  47949. },
  47950. back: {
  47951. height: math.unit(6, "feet"),
  47952. weight: math.unit(225, "lb"),
  47953. name: "Back",
  47954. image: {
  47955. source: "./media/characters/brooke/back.svg",
  47956. extra: 1053/1013,
  47957. bottom: 41/1094
  47958. }
  47959. },
  47960. dressed: {
  47961. height: math.unit(6, "feet"),
  47962. weight: math.unit(225, "lb"),
  47963. name: "Dressed",
  47964. image: {
  47965. source: "./media/characters/brooke/dressed.svg",
  47966. extra: 1050/1010,
  47967. bottom: 66/1116
  47968. }
  47969. },
  47970. },
  47971. [
  47972. {
  47973. name: "Canon Height",
  47974. height: math.unit(500, "miles"),
  47975. default: true
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(6 + 2/12, "feet"),
  47984. weight: math.unit(210, "lb"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/wubs/front.svg",
  47988. extra: 1345/1325,
  47989. bottom: 70/1415
  47990. }
  47991. },
  47992. back: {
  47993. height: math.unit(6 + 2/12, "feet"),
  47994. weight: math.unit(210, "lb"),
  47995. name: "Back",
  47996. image: {
  47997. source: "./media/characters/wubs/back.svg",
  47998. extra: 1296/1275,
  47999. bottom: 58/1354
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(6 + 2/12, "feet"),
  48007. default: true
  48008. },
  48009. {
  48010. name: "Macro",
  48011. height: math.unit(1000, "feet")
  48012. },
  48013. {
  48014. name: "Megamacro",
  48015. height: math.unit(1, "mile")
  48016. },
  48017. ]
  48018. ))
  48019. characterMakers.push(() => makeCharacter(
  48020. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48021. {
  48022. front: {
  48023. height: math.unit(4, "feet"),
  48024. weight: math.unit(120, "lb"),
  48025. name: "Front",
  48026. image: {
  48027. source: "./media/characters/blue/front.svg",
  48028. extra: 1636/1525,
  48029. bottom: 43/1679
  48030. }
  48031. },
  48032. back: {
  48033. height: math.unit(4, "feet"),
  48034. weight: math.unit(120, "lb"),
  48035. name: "Back",
  48036. image: {
  48037. source: "./media/characters/blue/back.svg",
  48038. extra: 1660/1560,
  48039. bottom: 57/1717
  48040. }
  48041. },
  48042. paws: {
  48043. height: math.unit(0.826, "feet"),
  48044. name: "Paws",
  48045. image: {
  48046. source: "./media/characters/blue/paws.svg"
  48047. }
  48048. },
  48049. },
  48050. [
  48051. {
  48052. name: "Micro",
  48053. height: math.unit(3, "inches")
  48054. },
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(4, "feet"),
  48058. default: true
  48059. },
  48060. {
  48061. name: "Femenine Form",
  48062. height: math.unit(14, "feet")
  48063. },
  48064. {
  48065. name: "Werebat Form",
  48066. height: math.unit(18, "feet")
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48072. {
  48073. female: {
  48074. height: math.unit(7 + 4/12, "feet"),
  48075. weight: math.unit(243, "lb"),
  48076. name: "Female",
  48077. image: {
  48078. source: "./media/characters/kaya/female.svg",
  48079. extra: 975/898,
  48080. bottom: 34/1009
  48081. }
  48082. },
  48083. herm: {
  48084. height: math.unit(7 + 4/12, "feet"),
  48085. weight: math.unit(243, "lb"),
  48086. name: "Herm",
  48087. image: {
  48088. source: "./media/characters/kaya/herm.svg",
  48089. extra: 975/898,
  48090. bottom: 34/1009
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(7 + 4/12, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48104. {
  48105. female: {
  48106. height: math.unit(9 + 4/12, "feet"),
  48107. weight: math.unit(398, "lb"),
  48108. name: "Female",
  48109. image: {
  48110. source: "./media/characters/kassandra/female.svg",
  48111. extra: 908/839,
  48112. bottom: 61/969
  48113. }
  48114. },
  48115. intersex: {
  48116. height: math.unit(9 + 4/12, "feet"),
  48117. weight: math.unit(398, "lb"),
  48118. name: "Intersex",
  48119. image: {
  48120. source: "./media/characters/kassandra/intersex.svg",
  48121. extra: 908/839,
  48122. bottom: 61/969
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(9 + 4/12, "feet"),
  48130. default: true
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48136. {
  48137. front: {
  48138. height: math.unit(3, "meters"),
  48139. name: "Front",
  48140. image: {
  48141. source: "./media/characters/amy/front.svg",
  48142. extra: 1380/1343,
  48143. bottom: 70/1450
  48144. }
  48145. },
  48146. back: {
  48147. height: math.unit(3, "meters"),
  48148. name: "Back",
  48149. image: {
  48150. source: "./media/characters/amy/back.svg",
  48151. extra: 1380/1347,
  48152. bottom: 66/1446
  48153. }
  48154. },
  48155. },
  48156. [
  48157. {
  48158. name: "Normal",
  48159. height: math.unit(3, "meters"),
  48160. default: true
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48166. {
  48167. side: {
  48168. height: math.unit(47, "cm"),
  48169. weight: math.unit(10.8, "kg"),
  48170. name: "Side",
  48171. image: {
  48172. source: "./media/characters/alphaschakal/side.svg",
  48173. extra: 1058/568,
  48174. bottom: 62/1120
  48175. }
  48176. },
  48177. back: {
  48178. height: math.unit(78, "cm"),
  48179. weight: math.unit(10.8, "kg"),
  48180. name: "Back",
  48181. image: {
  48182. source: "./media/characters/alphaschakal/back.svg",
  48183. extra: 1102/942,
  48184. bottom: 185/1287
  48185. }
  48186. },
  48187. head: {
  48188. height: math.unit(28, "cm"),
  48189. name: "Head",
  48190. image: {
  48191. source: "./media/characters/alphaschakal/head.svg",
  48192. extra: 696/508,
  48193. bottom: 0/696
  48194. }
  48195. },
  48196. paw: {
  48197. height: math.unit(16, "cm"),
  48198. name: "Paw",
  48199. image: {
  48200. source: "./media/characters/alphaschakal/paw.svg"
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(47, "cm"),
  48208. default: true
  48209. },
  48210. {
  48211. name: "Macro",
  48212. height: math.unit(340, "cm")
  48213. },
  48214. ]
  48215. ))
  48216. characterMakers.push(() => makeCharacter(
  48217. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48218. {
  48219. front: {
  48220. height: math.unit(36, "earths"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/ecobyss/front.svg",
  48224. extra: 1282/1215,
  48225. bottom: 11/1293
  48226. }
  48227. },
  48228. back: {
  48229. height: math.unit(36, "earths"),
  48230. name: "Back",
  48231. image: {
  48232. source: "./media/characters/ecobyss/back.svg",
  48233. extra: 1291/1222,
  48234. bottom: 8/1299
  48235. }
  48236. },
  48237. },
  48238. [
  48239. {
  48240. name: "Normal",
  48241. height: math.unit(36, "earths"),
  48242. default: true
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48248. {
  48249. front: {
  48250. height: math.unit(12, "feet"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/vasuk/front.svg",
  48254. extra: 1326/1207,
  48255. bottom: 64/1390
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(12, "feet"),
  48263. default: true
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48269. {
  48270. side: {
  48271. height: math.unit(100, "feet"),
  48272. name: "Side",
  48273. image: {
  48274. source: "./media/characters/linneaus/side.svg",
  48275. extra: 987/807,
  48276. bottom: 47/1034
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Macro",
  48283. height: math.unit(100, "feet"),
  48284. default: true
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48290. {
  48291. front: {
  48292. height: math.unit(8, "feet"),
  48293. weight: math.unit(1200, "lb"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/nyterious-daligdig/front.svg",
  48297. extra: 1284/1094,
  48298. bottom: 84/1368
  48299. }
  48300. },
  48301. back: {
  48302. height: math.unit(8, "feet"),
  48303. weight: math.unit(1200, "lb"),
  48304. name: "Back",
  48305. image: {
  48306. source: "./media/characters/nyterious-daligdig/back.svg",
  48307. extra: 1301/1121,
  48308. bottom: 129/1430
  48309. }
  48310. },
  48311. mouth: {
  48312. height: math.unit(1.464, "feet"),
  48313. name: "Mouth",
  48314. image: {
  48315. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48316. }
  48317. },
  48318. },
  48319. [
  48320. {
  48321. name: "Small",
  48322. height: math.unit(8, "feet"),
  48323. default: true
  48324. },
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(15, "feet")
  48328. },
  48329. {
  48330. name: "Macro",
  48331. height: math.unit(90, "feet")
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(7 + 4/12, "feet"),
  48340. weight: math.unit(252, "lb"),
  48341. name: "Front",
  48342. image: {
  48343. source: "./media/characters/bandel/front.svg",
  48344. extra: 1946/1775,
  48345. bottom: 26/1972
  48346. }
  48347. },
  48348. back: {
  48349. height: math.unit(7 + 4/12, "feet"),
  48350. weight: math.unit(252, "lb"),
  48351. name: "Back",
  48352. image: {
  48353. source: "./media/characters/bandel/back.svg",
  48354. extra: 1940/1770,
  48355. bottom: 25/1965
  48356. }
  48357. },
  48358. maw: {
  48359. height: math.unit(2.15, "feet"),
  48360. name: "Maw",
  48361. image: {
  48362. source: "./media/characters/bandel/maw.svg"
  48363. }
  48364. },
  48365. stomach: {
  48366. height: math.unit(1.95, "feet"),
  48367. name: "Stomach",
  48368. image: {
  48369. source: "./media/characters/bandel/stomach.svg"
  48370. }
  48371. },
  48372. },
  48373. [
  48374. {
  48375. name: "Normal",
  48376. height: math.unit(7 + 4/12, "feet"),
  48377. default: true
  48378. },
  48379. ]
  48380. ))
  48381. characterMakers.push(() => makeCharacter(
  48382. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48383. {
  48384. front: {
  48385. height: math.unit(10 + 5/12, "feet"),
  48386. weight: math.unit(773.5, "kg"),
  48387. name: "Front",
  48388. image: {
  48389. source: "./media/characters/zed/front.svg",
  48390. extra: 987/941,
  48391. bottom: 52/1039
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Short",
  48398. height: math.unit(5 + 4/12, "feet")
  48399. },
  48400. {
  48401. name: "Average",
  48402. height: math.unit(10 + 5/12, "feet"),
  48403. default: true
  48404. },
  48405. {
  48406. name: "Mini-Macro",
  48407. height: math.unit(24 + 9/12, "feet")
  48408. },
  48409. {
  48410. name: "Macro",
  48411. height: math.unit(249, "feet")
  48412. },
  48413. {
  48414. name: "Mega-Macro",
  48415. height: math.unit(12490, "feet")
  48416. },
  48417. {
  48418. name: "Giga-Macro",
  48419. height: math.unit(24.9, "miles")
  48420. },
  48421. {
  48422. name: "Tera-Macro",
  48423. height: math.unit(24900, "miles")
  48424. },
  48425. {
  48426. name: "Cosmic Scale",
  48427. height: math.unit(38.9, "lightyears")
  48428. },
  48429. {
  48430. name: "Universal Scale",
  48431. height: math.unit(138e12, "lightyears")
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48437. {
  48438. front: {
  48439. height: math.unit(1561, "inches"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/ivan/front.svg",
  48443. extra: 1126/1071,
  48444. bottom: 26/1152
  48445. }
  48446. },
  48447. back: {
  48448. height: math.unit(1561, "inches"),
  48449. name: "Back",
  48450. image: {
  48451. source: "./media/characters/ivan/back.svg",
  48452. extra: 1134/1079,
  48453. bottom: 30/1164
  48454. }
  48455. },
  48456. },
  48457. [
  48458. {
  48459. name: "Normal",
  48460. height: math.unit(1561, "inches"),
  48461. default: true
  48462. },
  48463. ]
  48464. ))
  48465. characterMakers.push(() => makeCharacter(
  48466. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48467. {
  48468. front: {
  48469. height: math.unit(5 + 7/12, "feet"),
  48470. weight: math.unit(150, "lb"),
  48471. name: "Front",
  48472. image: {
  48473. source: "./media/characters/robin-arctic-hare/front.svg",
  48474. extra: 1148/974,
  48475. bottom: 20/1168
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(5 + 7/12, "feet"),
  48483. default: true
  48484. },
  48485. ]
  48486. ))
  48487. characterMakers.push(() => makeCharacter(
  48488. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48489. {
  48490. side: {
  48491. height: math.unit(5, "feet"),
  48492. name: "Side",
  48493. image: {
  48494. source: "./media/characters/birch/side.svg",
  48495. extra: 985/796,
  48496. bottom: 111/1096
  48497. }
  48498. },
  48499. },
  48500. [
  48501. {
  48502. name: "Normal",
  48503. height: math.unit(5, "feet"),
  48504. default: true
  48505. },
  48506. ]
  48507. ))
  48508. characterMakers.push(() => makeCharacter(
  48509. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48510. {
  48511. front: {
  48512. height: math.unit(4, "feet"),
  48513. name: "Front",
  48514. image: {
  48515. source: "./media/characters/rasp/front.svg",
  48516. extra: 561/478,
  48517. bottom: 74/635
  48518. }
  48519. },
  48520. },
  48521. [
  48522. {
  48523. name: "Normal",
  48524. height: math.unit(4, "feet"),
  48525. default: true
  48526. },
  48527. ]
  48528. ))
  48529. characterMakers.push(() => makeCharacter(
  48530. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48531. {
  48532. front: {
  48533. height: math.unit(4 + 6/12, "feet"),
  48534. name: "Front",
  48535. image: {
  48536. source: "./media/characters/agatha/front.svg",
  48537. extra: 947/933,
  48538. bottom: 42/989
  48539. }
  48540. },
  48541. back: {
  48542. height: math.unit(4 + 6/12, "feet"),
  48543. name: "Back",
  48544. image: {
  48545. source: "./media/characters/agatha/back.svg",
  48546. extra: 935/922,
  48547. bottom: 48/983
  48548. }
  48549. },
  48550. },
  48551. [
  48552. {
  48553. name: "Normal",
  48554. height: math.unit(4 + 6 /12, "feet"),
  48555. default: true
  48556. },
  48557. {
  48558. name: "Max Size",
  48559. height: math.unit(500, "feet")
  48560. },
  48561. ]
  48562. ))
  48563. characterMakers.push(() => makeCharacter(
  48564. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48565. {
  48566. side: {
  48567. height: math.unit(30, "feet"),
  48568. name: "Side",
  48569. image: {
  48570. source: "./media/characters/roggy/side.svg",
  48571. extra: 909/643,
  48572. bottom: 63/972
  48573. }
  48574. },
  48575. lounging: {
  48576. height: math.unit(20, "feet"),
  48577. name: "Lounging",
  48578. image: {
  48579. source: "./media/characters/roggy/lounging.svg",
  48580. extra: 643/479,
  48581. bottom: 145/788
  48582. }
  48583. },
  48584. handpaw: {
  48585. height: math.unit(13.1, "feet"),
  48586. name: "Handpaw",
  48587. image: {
  48588. source: "./media/characters/roggy/handpaw.svg"
  48589. }
  48590. },
  48591. footpaw: {
  48592. height: math.unit(15.8, "feet"),
  48593. name: "Footpaw",
  48594. image: {
  48595. source: "./media/characters/roggy/footpaw.svg"
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Menacing",
  48602. height: math.unit(30, "feet"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(5 + 7/12, "feet"),
  48612. weight: math.unit(135, "lb"),
  48613. name: "Front",
  48614. image: {
  48615. source: "./media/characters/naomi/front.svg",
  48616. extra: 1209/1154,
  48617. bottom: 129/1338
  48618. }
  48619. },
  48620. back: {
  48621. height: math.unit(5 + 7/12, "feet"),
  48622. weight: math.unit(135, "lb"),
  48623. name: "Back",
  48624. image: {
  48625. source: "./media/characters/naomi/back.svg",
  48626. extra: 1252/1190,
  48627. bottom: 23/1275
  48628. }
  48629. },
  48630. },
  48631. [
  48632. {
  48633. name: "Normal",
  48634. height: math.unit(5 + 7 /12, "feet"),
  48635. default: true
  48636. },
  48637. ]
  48638. ))
  48639. characterMakers.push(() => makeCharacter(
  48640. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48641. {
  48642. side: {
  48643. height: math.unit(35, "meters"),
  48644. name: "Side",
  48645. image: {
  48646. source: "./media/characters/kimpi/side.svg",
  48647. extra: 419/382,
  48648. bottom: 63/482
  48649. }
  48650. },
  48651. hand: {
  48652. height: math.unit(8.96, "meters"),
  48653. name: "Hand",
  48654. image: {
  48655. source: "./media/characters/kimpi/hand.svg"
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Normal",
  48662. height: math.unit(35, "meters"),
  48663. default: true
  48664. },
  48665. ]
  48666. ))
  48667. characterMakers.push(() => makeCharacter(
  48668. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48669. {
  48670. front: {
  48671. height: math.unit(4 + 4/12, "feet"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/pepper-purrloin/front.svg",
  48675. extra: 1141/1024,
  48676. bottom: 21/1162
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(4 + 4/12, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48690. {
  48691. front: {
  48692. height: math.unit(6 + 2/12, "feet"),
  48693. name: "Front",
  48694. image: {
  48695. source: "./media/characters/raphael/front.svg",
  48696. extra: 1101/962,
  48697. bottom: 59/1160
  48698. }
  48699. },
  48700. },
  48701. [
  48702. {
  48703. name: "Normal",
  48704. height: math.unit(6 + 2/12, "feet"),
  48705. default: true
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48711. {
  48712. front: {
  48713. height: math.unit(6, "feet"),
  48714. weight: math.unit(150, "lb"),
  48715. name: "Front",
  48716. image: {
  48717. source: "./media/characters/victor-williams/front.svg",
  48718. extra: 1894/1825,
  48719. bottom: 67/1961
  48720. }
  48721. },
  48722. },
  48723. [
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(6, "feet"),
  48727. default: true
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48733. {
  48734. front: {
  48735. height: math.unit(5 + 8/12, "feet"),
  48736. weight: math.unit(150, "lb"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/rachel/front.svg",
  48740. extra: 1902/1787,
  48741. bottom: 46/1948
  48742. }
  48743. },
  48744. },
  48745. [
  48746. {
  48747. name: "Base Height",
  48748. height: math.unit(5 + 8/12, "feet"),
  48749. default: true
  48750. },
  48751. {
  48752. name: "Macro",
  48753. height: math.unit(200, "feet")
  48754. },
  48755. {
  48756. name: "Mega Macro",
  48757. height: math.unit(1, "mile")
  48758. },
  48759. {
  48760. name: "Giga Macro",
  48761. height: math.unit(1500, "miles")
  48762. },
  48763. {
  48764. name: "Tera Macro",
  48765. height: math.unit(8000, "miles")
  48766. },
  48767. {
  48768. name: "Tera Macro+",
  48769. height: math.unit(2e5, "miles")
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48775. {
  48776. front: {
  48777. height: math.unit(6.5, "feet"),
  48778. name: "Front",
  48779. image: {
  48780. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48781. extra: 860/819,
  48782. bottom: 307/1167
  48783. }
  48784. },
  48785. back: {
  48786. height: math.unit(6.5, "feet"),
  48787. name: "Back",
  48788. image: {
  48789. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48790. extra: 880/837,
  48791. bottom: 395/1275
  48792. }
  48793. },
  48794. sleeping: {
  48795. height: math.unit(2.79, "feet"),
  48796. name: "Sleeping",
  48797. image: {
  48798. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48799. extra: 465/383,
  48800. bottom: 263/728
  48801. }
  48802. },
  48803. maw: {
  48804. height: math.unit(2.52, "feet"),
  48805. name: "Maw",
  48806. image: {
  48807. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(6.5, "feet"),
  48815. default: true
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48821. {
  48822. front: {
  48823. height: math.unit(5, "feet"),
  48824. name: "Front",
  48825. image: {
  48826. source: "./media/characters/nova-nerium/front.svg",
  48827. extra: 1548/1392,
  48828. bottom: 374/1922
  48829. }
  48830. },
  48831. back: {
  48832. height: math.unit(5, "feet"),
  48833. name: "Back",
  48834. image: {
  48835. source: "./media/characters/nova-nerium/back.svg",
  48836. extra: 1658/1468,
  48837. bottom: 257/1915
  48838. }
  48839. },
  48840. },
  48841. [
  48842. {
  48843. name: "Normal",
  48844. height: math.unit(5, "feet"),
  48845. default: true
  48846. },
  48847. ]
  48848. ))
  48849. characterMakers.push(() => makeCharacter(
  48850. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48851. {
  48852. front: {
  48853. height: math.unit(5 + 4/12, "feet"),
  48854. name: "Front",
  48855. image: {
  48856. source: "./media/characters/ashe-pyriph/front.svg",
  48857. extra: 1935/1747,
  48858. bottom: 60/1995
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(5 + 4/12, "feet"),
  48866. default: true
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(8.7, "feet"),
  48875. name: "Front",
  48876. image: {
  48877. source: "./media/characters/flicker-wisp/front.svg",
  48878. extra: 1835/1613,
  48879. bottom: 449/2284
  48880. }
  48881. },
  48882. side: {
  48883. height: math.unit(8.7, "feet"),
  48884. name: "Side",
  48885. image: {
  48886. source: "./media/characters/flicker-wisp/side.svg",
  48887. extra: 1841/1642,
  48888. bottom: 336/2177
  48889. },
  48890. default: true
  48891. },
  48892. maw: {
  48893. height: math.unit(3.35, "feet"),
  48894. name: "Maw",
  48895. image: {
  48896. source: "./media/characters/flicker-wisp/maw.svg",
  48897. extra: 2338/1506,
  48898. bottom: 0/2338
  48899. }
  48900. },
  48901. ovipositor: {
  48902. height: math.unit(4.95, "feet"),
  48903. name: "Ovipositor",
  48904. image: {
  48905. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48906. }
  48907. },
  48908. egg: {
  48909. height: math.unit(0.385, "feet"),
  48910. weight: math.unit(2, "lb"),
  48911. name: "Egg",
  48912. image: {
  48913. source: "./media/characters/flicker-wisp/egg.svg"
  48914. }
  48915. },
  48916. },
  48917. [
  48918. {
  48919. name: "Normal",
  48920. height: math.unit(8.7, "feet"),
  48921. default: true
  48922. },
  48923. ]
  48924. ))
  48925. characterMakers.push(() => makeCharacter(
  48926. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48927. {
  48928. side: {
  48929. height: math.unit(11, "feet"),
  48930. name: "Side",
  48931. image: {
  48932. source: "./media/characters/faefnul/side.svg",
  48933. extra: 1100/1007,
  48934. bottom: 0/1100
  48935. }
  48936. },
  48937. },
  48938. [
  48939. {
  48940. name: "Normal",
  48941. height: math.unit(11, "feet"),
  48942. default: true
  48943. },
  48944. ]
  48945. ))
  48946. characterMakers.push(() => makeCharacter(
  48947. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48948. {
  48949. front: {
  48950. height: math.unit(6 + 2/12, "feet"),
  48951. name: "Front",
  48952. image: {
  48953. source: "./media/characters/shady/front.svg",
  48954. extra: 502/461,
  48955. bottom: 9/511
  48956. }
  48957. },
  48958. kneeling: {
  48959. height: math.unit(4.6, "feet"),
  48960. name: "Kneeling",
  48961. image: {
  48962. source: "./media/characters/shady/kneeling.svg",
  48963. extra: 1328/1219,
  48964. bottom: 117/1445
  48965. }
  48966. },
  48967. maw: {
  48968. height: math.unit(2, "feet"),
  48969. name: "Maw",
  48970. image: {
  48971. source: "./media/characters/shady/maw.svg"
  48972. }
  48973. },
  48974. },
  48975. [
  48976. {
  48977. name: "Nano",
  48978. height: math.unit(1, "mm")
  48979. },
  48980. {
  48981. name: "Micro",
  48982. height: math.unit(12, "mm")
  48983. },
  48984. {
  48985. name: "Tiny",
  48986. height: math.unit(3, "inches")
  48987. },
  48988. {
  48989. name: "Normal",
  48990. height: math.unit(6 + 2/12, "feet"),
  48991. default: true
  48992. },
  48993. {
  48994. name: "Big",
  48995. height: math.unit(15, "feet")
  48996. },
  48997. {
  48998. name: "Macro",
  48999. height: math.unit(150, "feet")
  49000. },
  49001. {
  49002. name: "Titanic",
  49003. height: math.unit(500, "feet")
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49009. {
  49010. front: {
  49011. height: math.unit(12, "feet"),
  49012. name: "Front",
  49013. image: {
  49014. source: "./media/characters/fenrir/front.svg",
  49015. extra: 968/875,
  49016. bottom: 22/990
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Big",
  49023. height: math.unit(12, "feet"),
  49024. default: true
  49025. },
  49026. ]
  49027. ))
  49028. characterMakers.push(() => makeCharacter(
  49029. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49030. {
  49031. front: {
  49032. height: math.unit(5 + 4/12, "feet"),
  49033. name: "Front",
  49034. image: {
  49035. source: "./media/characters/makar/front.svg",
  49036. extra: 1181/1112,
  49037. bottom: 78/1259
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(5 + 4/12, "feet"),
  49045. default: true
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(5 + 7/12, "feet"),
  49054. name: "Front",
  49055. image: {
  49056. source: "./media/characters/callow/front.svg",
  49057. extra: 1482/1304,
  49058. bottom: 23/1505
  49059. }
  49060. },
  49061. back: {
  49062. height: math.unit(5 + 7/12, "feet"),
  49063. name: "Back",
  49064. image: {
  49065. source: "./media/characters/callow/back.svg",
  49066. extra: 1484/1296,
  49067. bottom: 25/1509
  49068. }
  49069. },
  49070. },
  49071. [
  49072. {
  49073. name: "Micro",
  49074. height: math.unit(3, "inches"),
  49075. default: true
  49076. },
  49077. {
  49078. name: "Normal",
  49079. height: math.unit(5 + 7/12, "feet")
  49080. },
  49081. ]
  49082. ))
  49083. characterMakers.push(() => makeCharacter(
  49084. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49085. {
  49086. front: {
  49087. height: math.unit(6 + 2/12, "feet"),
  49088. name: "Front",
  49089. image: {
  49090. source: "./media/characters/natel/front.svg",
  49091. extra: 1833/1692,
  49092. bottom: 166/1999
  49093. }
  49094. },
  49095. },
  49096. [
  49097. {
  49098. name: "Normal",
  49099. height: math.unit(6 + 2/12, "feet"),
  49100. default: true
  49101. },
  49102. ]
  49103. ))
  49104. characterMakers.push(() => makeCharacter(
  49105. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49106. {
  49107. front: {
  49108. height: math.unit(1.75, "meters"),
  49109. name: "Front",
  49110. image: {
  49111. source: "./media/characters/misu/front.svg",
  49112. extra: 1690/1558,
  49113. bottom: 234/1924
  49114. }
  49115. },
  49116. back: {
  49117. height: math.unit(1.75, "meters"),
  49118. name: "Back",
  49119. image: {
  49120. source: "./media/characters/misu/back.svg",
  49121. extra: 1762/1618,
  49122. bottom: 146/1908
  49123. }
  49124. },
  49125. frontNude: {
  49126. height: math.unit(1.75, "meters"),
  49127. name: "Front (Nude)",
  49128. image: {
  49129. source: "./media/characters/misu/front-nude.svg",
  49130. extra: 1690/1558,
  49131. bottom: 234/1924
  49132. }
  49133. },
  49134. backNude: {
  49135. height: math.unit(1.75, "meters"),
  49136. name: "Back (Nude)",
  49137. image: {
  49138. source: "./media/characters/misu/back-nude.svg",
  49139. extra: 1762/1618,
  49140. bottom: 146/1908
  49141. }
  49142. },
  49143. frontErect: {
  49144. height: math.unit(1.75, "meters"),
  49145. name: "Front (Erect)",
  49146. image: {
  49147. source: "./media/characters/misu/front-erect.svg",
  49148. extra: 1690/1558,
  49149. bottom: 234/1924
  49150. }
  49151. },
  49152. maw: {
  49153. height: math.unit(0.47, "meters"),
  49154. name: "Maw",
  49155. image: {
  49156. source: "./media/characters/misu/maw.svg"
  49157. }
  49158. },
  49159. head: {
  49160. height: math.unit(0.35, "meters"),
  49161. name: "Head",
  49162. image: {
  49163. source: "./media/characters/misu/head.svg"
  49164. }
  49165. },
  49166. rear: {
  49167. height: math.unit(0.47, "meters"),
  49168. name: "Rear",
  49169. image: {
  49170. source: "./media/characters/misu/rear.svg"
  49171. }
  49172. },
  49173. },
  49174. [
  49175. {
  49176. name: "Normal",
  49177. height: math.unit(1.75, "meters")
  49178. },
  49179. {
  49180. name: "Not good for the people",
  49181. height: math.unit(42, "meters")
  49182. },
  49183. {
  49184. name: "Not good for the neighborhood",
  49185. height: math.unit(135, "meters")
  49186. },
  49187. {
  49188. name: "Bit bigger problem",
  49189. height: math.unit(380, "meters"),
  49190. default: true
  49191. },
  49192. {
  49193. name: "Not good for the city",
  49194. height: math.unit(1.5, "km")
  49195. },
  49196. {
  49197. name: "Not good for the county",
  49198. height: math.unit(5.5, "km")
  49199. },
  49200. {
  49201. name: "Not good for the state",
  49202. height: math.unit(25, "km")
  49203. },
  49204. {
  49205. name: "Not good for the country",
  49206. height: math.unit(125, "km")
  49207. },
  49208. {
  49209. name: "Not good for the continent",
  49210. height: math.unit(2100, "km")
  49211. },
  49212. {
  49213. name: "Not good for the planet",
  49214. height: math.unit(35000, "km")
  49215. },
  49216. {
  49217. name: "Just no",
  49218. height: math.unit(8.5e18, "km")
  49219. },
  49220. ]
  49221. ))
  49222. characterMakers.push(() => makeCharacter(
  49223. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49224. {
  49225. front: {
  49226. height: math.unit(6.5, "feet"),
  49227. name: "Front",
  49228. image: {
  49229. source: "./media/characters/poppy/front.svg",
  49230. extra: 1878/1812,
  49231. bottom: 43/1921
  49232. }
  49233. },
  49234. feet: {
  49235. height: math.unit(1.06, "feet"),
  49236. name: "Feet",
  49237. image: {
  49238. source: "./media/characters/poppy/feet.svg",
  49239. extra: 1083/1083,
  49240. bottom: 87/1170
  49241. }
  49242. },
  49243. },
  49244. [
  49245. {
  49246. name: "Human",
  49247. height: math.unit(6.5, "feet")
  49248. },
  49249. {
  49250. name: "Default",
  49251. height: math.unit(300, "feet"),
  49252. default: true
  49253. },
  49254. {
  49255. name: "Huge",
  49256. height: math.unit(850, "feet")
  49257. },
  49258. {
  49259. name: "Mega",
  49260. height: math.unit(8000, "feet")
  49261. },
  49262. {
  49263. name: "Giga",
  49264. height: math.unit(300, "miles")
  49265. },
  49266. ]
  49267. ))
  49268. characterMakers.push(() => makeCharacter(
  49269. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49270. {
  49271. bipedal: {
  49272. height: math.unit(7, "feet"),
  49273. name: "Bipedal",
  49274. image: {
  49275. source: "./media/characters/zener/bipedal.svg",
  49276. extra: 874/805,
  49277. bottom: 109/983
  49278. }
  49279. },
  49280. quadrupedal: {
  49281. height: math.unit(4.64, "feet"),
  49282. name: "Quadrupedal",
  49283. image: {
  49284. source: "./media/characters/zener/quadrupedal.svg",
  49285. extra: 638/507,
  49286. bottom: 190/828
  49287. }
  49288. },
  49289. cock: {
  49290. height: math.unit(18, "inches"),
  49291. name: "Cock",
  49292. image: {
  49293. source: "./media/characters/zener/cock.svg"
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(7, "feet"),
  49301. default: true
  49302. },
  49303. ]
  49304. ))
  49305. characterMakers.push(() => makeCharacter(
  49306. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49307. {
  49308. nude: {
  49309. height: math.unit(5 + 6/12, "feet"),
  49310. name: "Nude",
  49311. image: {
  49312. source: "./media/characters/charlie-dog/nude.svg",
  49313. extra: 768/734,
  49314. bottom: 26/794
  49315. }
  49316. },
  49317. dressed: {
  49318. height: math.unit(5 + 6/12, "feet"),
  49319. name: "Dressed",
  49320. image: {
  49321. source: "./media/characters/charlie-dog/dressed.svg",
  49322. extra: 768/734,
  49323. bottom: 26/794
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(5 + 6/12, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49337. {
  49338. front: {
  49339. height: math.unit(6 + 4/12, "feet"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/ir'istrasz/front.svg",
  49343. extra: 1014/977,
  49344. bottom: 65/1079
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(6 + 4/12, "feet"),
  49349. name: "Back",
  49350. image: {
  49351. source: "./media/characters/ir'istrasz/back.svg",
  49352. extra: 1024/992,
  49353. bottom: 34/1058
  49354. }
  49355. },
  49356. },
  49357. [
  49358. {
  49359. name: "Normal",
  49360. height: math.unit(6 + 4/12, "feet"),
  49361. default: true
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49367. {
  49368. front: {
  49369. height: math.unit(5 + 8/12, "feet"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/dee-ditto/front.svg",
  49373. extra: 1874/1785,
  49374. bottom: 68/1942
  49375. }
  49376. },
  49377. back: {
  49378. height: math.unit(5 + 8/12, "feet"),
  49379. name: "Back",
  49380. image: {
  49381. source: "./media/characters/dee-ditto/back.svg",
  49382. extra: 1870/1783,
  49383. bottom: 77/1947
  49384. }
  49385. },
  49386. },
  49387. [
  49388. {
  49389. name: "Normal",
  49390. height: math.unit(5 + 8/12, "feet"),
  49391. default: true
  49392. },
  49393. ]
  49394. ))
  49395. characterMakers.push(() => makeCharacter(
  49396. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49397. {
  49398. front: {
  49399. height: math.unit(7 + 6/12, "feet"),
  49400. name: "Front",
  49401. image: {
  49402. source: "./media/characters/fey/front.svg",
  49403. extra: 995/979,
  49404. bottom: 30/1025
  49405. }
  49406. },
  49407. back: {
  49408. height: math.unit(7 + 6/12, "feet"),
  49409. name: "Back",
  49410. image: {
  49411. source: "./media/characters/fey/back.svg",
  49412. extra: 1079/1008,
  49413. bottom: 5/1084
  49414. }
  49415. },
  49416. dressed: {
  49417. height: math.unit(7 + 6/12, "feet"),
  49418. name: "Dressed",
  49419. image: {
  49420. source: "./media/characters/fey/dressed.svg",
  49421. extra: 995/979,
  49422. bottom: 30/1025
  49423. }
  49424. },
  49425. },
  49426. [
  49427. {
  49428. name: "Normal",
  49429. height: math.unit(7 + 6/12, "feet"),
  49430. default: true
  49431. },
  49432. ]
  49433. ))
  49434. characterMakers.push(() => makeCharacter(
  49435. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49436. {
  49437. standing: {
  49438. height: math.unit(17, "feet"),
  49439. name: "Standing",
  49440. image: {
  49441. source: "./media/characters/aster/standing.svg",
  49442. extra: 1798/1598,
  49443. bottom: 117/1915
  49444. }
  49445. },
  49446. },
  49447. [
  49448. {
  49449. name: "Normal",
  49450. height: math.unit(17, "feet"),
  49451. default: true
  49452. },
  49453. {
  49454. name: "Homewrecker",
  49455. height: math.unit(95, "feet")
  49456. },
  49457. {
  49458. name: "Planet Devourer",
  49459. height: math.unit(1008000, "miles")
  49460. },
  49461. ]
  49462. ))
  49463. characterMakers.push(() => makeCharacter(
  49464. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49465. {
  49466. front: {
  49467. height: math.unit(6 + 5/12, "feet"),
  49468. weight: math.unit(265, "lb"),
  49469. name: "Front",
  49470. image: {
  49471. source: "./media/characters/devon-childs/front.svg",
  49472. extra: 1795/1721,
  49473. bottom: 41/1836
  49474. }
  49475. },
  49476. side: {
  49477. height: math.unit(6 + 5/12, "feet"),
  49478. weight: math.unit(265, "lb"),
  49479. name: "Side",
  49480. image: {
  49481. source: "./media/characters/devon-childs/side.svg",
  49482. extra: 1812/1738,
  49483. bottom: 30/1842
  49484. }
  49485. },
  49486. back: {
  49487. height: math.unit(6 + 5/12, "feet"),
  49488. weight: math.unit(265, "lb"),
  49489. name: "Back",
  49490. image: {
  49491. source: "./media/characters/devon-childs/back.svg",
  49492. extra: 1808/1735,
  49493. bottom: 23/1831
  49494. }
  49495. },
  49496. hand: {
  49497. height: math.unit(1.464, "feet"),
  49498. name: "Hand",
  49499. image: {
  49500. source: "./media/characters/devon-childs/hand.svg"
  49501. }
  49502. },
  49503. foot: {
  49504. height: math.unit(1.6, "feet"),
  49505. name: "Foot",
  49506. image: {
  49507. source: "./media/characters/devon-childs/foot.svg"
  49508. }
  49509. },
  49510. },
  49511. [
  49512. {
  49513. name: "Micro",
  49514. height: math.unit(7, "cm")
  49515. },
  49516. {
  49517. name: "Normal",
  49518. height: math.unit(6 + 5/12, "feet"),
  49519. default: true
  49520. },
  49521. {
  49522. name: "Macro",
  49523. height: math.unit(154, "feet")
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(6, "feet"),
  49532. weight: math.unit(180, "lb"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/lydemox-vir/front.svg",
  49536. extra: 1632/1435,
  49537. bottom: 58/1690
  49538. }
  49539. },
  49540. frontSFW: {
  49541. height: math.unit(6, "feet"),
  49542. weight: math.unit(180, "lb"),
  49543. name: "Front (SFW)",
  49544. image: {
  49545. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49546. extra: 1632/1435,
  49547. bottom: 58/1690
  49548. }
  49549. },
  49550. back: {
  49551. height: math.unit(6, "feet"),
  49552. weight: math.unit(180, "lb"),
  49553. name: "Back",
  49554. image: {
  49555. source: "./media/characters/lydemox-vir/back.svg",
  49556. extra: 1593/1408,
  49557. bottom: 31/1624
  49558. }
  49559. },
  49560. paw: {
  49561. height: math.unit(1.85, "feet"),
  49562. name: "Paw",
  49563. image: {
  49564. source: "./media/characters/lydemox-vir/paw.svg"
  49565. }
  49566. },
  49567. dick: {
  49568. height: math.unit(1.8, "feet"),
  49569. name: "Dick",
  49570. image: {
  49571. source: "./media/characters/lydemox-vir/dick.svg"
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Macro",
  49578. height: math.unit(100, "feet"),
  49579. default: true
  49580. },
  49581. {
  49582. name: "Teramacro",
  49583. height: math.unit(1, "earth")
  49584. },
  49585. {
  49586. name: "Planetary",
  49587. height: math.unit(20, "earths")
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(15 + 8/12, "feet"),
  49596. weight: math.unit(1237, "kg"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/mia/front.svg",
  49600. extra: 1573/1446,
  49601. bottom: 58/1631
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Small",
  49608. height: math.unit(9 + 5/12, "feet")
  49609. },
  49610. {
  49611. name: "Normal",
  49612. height: math.unit(15 + 8/12, "feet"),
  49613. default: true
  49614. },
  49615. ]
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49619. {
  49620. front: {
  49621. height: math.unit(10 + 6/12, "feet"),
  49622. weight: math.unit(1.3, "tons"),
  49623. name: "Front",
  49624. image: {
  49625. source: "./media/characters/mr-graves/front.svg",
  49626. extra: 1779/1695,
  49627. bottom: 198/1977
  49628. }
  49629. },
  49630. },
  49631. [
  49632. {
  49633. name: "Normal",
  49634. height: math.unit(10 + 6 /12, "feet"),
  49635. default: true
  49636. },
  49637. ]
  49638. ))
  49639. characterMakers.push(() => makeCharacter(
  49640. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49641. {
  49642. dressedFront: {
  49643. height: math.unit(5 + 8/12, "feet"),
  49644. weight: math.unit(125, "lb"),
  49645. name: "Dressed (Front)",
  49646. image: {
  49647. source: "./media/characters/jess/dressed-front.svg",
  49648. extra: 1176/1152,
  49649. bottom: 42/1218
  49650. }
  49651. },
  49652. dressedSide: {
  49653. height: math.unit(5 + 8/12, "feet"),
  49654. weight: math.unit(125, "lb"),
  49655. name: "Dressed (Side)",
  49656. image: {
  49657. source: "./media/characters/jess/dressed-side.svg",
  49658. extra: 1204/1190,
  49659. bottom: 6/1210
  49660. }
  49661. },
  49662. nudeFront: {
  49663. height: math.unit(5 + 8/12, "feet"),
  49664. weight: math.unit(125, "lb"),
  49665. name: "Nude (Front)",
  49666. image: {
  49667. source: "./media/characters/jess/nude-front.svg",
  49668. extra: 1176/1152,
  49669. bottom: 42/1218
  49670. }
  49671. },
  49672. nudeSide: {
  49673. height: math.unit(5 + 8/12, "feet"),
  49674. weight: math.unit(125, "lb"),
  49675. name: "Nude (Side)",
  49676. image: {
  49677. source: "./media/characters/jess/nude-side.svg",
  49678. extra: 1204/1190,
  49679. bottom: 6/1210
  49680. }
  49681. },
  49682. organsFront: {
  49683. height: math.unit(2.83799342105, "feet"),
  49684. name: "Organs (Front)",
  49685. image: {
  49686. source: "./media/characters/jess/organs-front.svg"
  49687. }
  49688. },
  49689. organsSide: {
  49690. height: math.unit(2.64225290474, "feet"),
  49691. name: "Organs (Side)",
  49692. image: {
  49693. source: "./media/characters/jess/organs-side.svg"
  49694. }
  49695. },
  49696. digestiveTractFront: {
  49697. height: math.unit(2.8106580871, "feet"),
  49698. name: "Digestive Tract (Front)",
  49699. image: {
  49700. source: "./media/characters/jess/digestive-tract-front.svg"
  49701. }
  49702. },
  49703. digestiveTractSide: {
  49704. height: math.unit(2.54365045014, "feet"),
  49705. name: "Digestive Tract (Side)",
  49706. image: {
  49707. source: "./media/characters/jess/digestive-tract-side.svg"
  49708. }
  49709. },
  49710. respiratorySystemFront: {
  49711. height: math.unit(1.11196233456, "feet"),
  49712. name: "Respiratory System (Front)",
  49713. image: {
  49714. source: "./media/characters/jess/respiratory-system-front.svg"
  49715. }
  49716. },
  49717. respiratorySystemSide: {
  49718. height: math.unit(0.89327966297, "feet"),
  49719. name: "Respiratory System (Side)",
  49720. image: {
  49721. source: "./media/characters/jess/respiratory-system-side.svg"
  49722. }
  49723. },
  49724. urinaryTractFront: {
  49725. height: math.unit(1.16126356186, "feet"),
  49726. name: "Urinary Tract (Front)",
  49727. image: {
  49728. source: "./media/characters/jess/urinary-tract-front.svg"
  49729. }
  49730. },
  49731. urinaryTractSide: {
  49732. height: math.unit(1.20910039627, "feet"),
  49733. name: "Urinary Tract (Side)",
  49734. image: {
  49735. source: "./media/characters/jess/urinary-tract-side.svg"
  49736. }
  49737. },
  49738. reproductiveOrgansFront: {
  49739. height: math.unit(0.48422591566, "feet"),
  49740. name: "Reproductive Organs (Front)",
  49741. image: {
  49742. source: "./media/characters/jess/reproductive-organs-front.svg"
  49743. }
  49744. },
  49745. reproductiveOrgansSide: {
  49746. height: math.unit(0.61553314481, "feet"),
  49747. name: "Reproductive Organs (Side)",
  49748. image: {
  49749. source: "./media/characters/jess/reproductive-organs-side.svg"
  49750. }
  49751. },
  49752. breastsFront: {
  49753. height: math.unit(0.47690395121, "feet"),
  49754. name: "Breasts (Front)",
  49755. image: {
  49756. source: "./media/characters/jess/breasts-front.svg"
  49757. }
  49758. },
  49759. breastsSide: {
  49760. height: math.unit(0.30556998307, "feet"),
  49761. name: "Breasts (Side)",
  49762. image: {
  49763. source: "./media/characters/jess/breasts-side.svg"
  49764. }
  49765. },
  49766. heartFront: {
  49767. height: math.unit(0.53011022622, "feet"),
  49768. name: "Heart (Front)",
  49769. image: {
  49770. source: "./media/characters/jess/heart-front.svg"
  49771. }
  49772. },
  49773. heartSide: {
  49774. height: math.unit(0.51790695213, "feet"),
  49775. name: "Heart (Side)",
  49776. image: {
  49777. source: "./media/characters/jess/heart-side.svg"
  49778. }
  49779. },
  49780. earsAndNoseFront: {
  49781. height: math.unit(0.29385483995, "feet"),
  49782. name: "Ears and Nose (Front)",
  49783. image: {
  49784. source: "./media/characters/jess/ears-and-nose-front.svg"
  49785. }
  49786. },
  49787. earsAndNoseSide: {
  49788. height: math.unit(0.18109658741, "feet"),
  49789. name: "Ears and Nose (Side)",
  49790. image: {
  49791. source: "./media/characters/jess/ears-and-nose-side.svg"
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Normal",
  49798. height: math.unit(5 + 8/12, "feet"),
  49799. default: true
  49800. },
  49801. ]
  49802. ))
  49803. characterMakers.push(() => makeCharacter(
  49804. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49805. {
  49806. front: {
  49807. height: math.unit(6, "feet"),
  49808. weight: math.unit(6.64467e-7, "grams"),
  49809. name: "Front",
  49810. image: {
  49811. source: "./media/characters/wimpering/front.svg",
  49812. extra: 597/587,
  49813. bottom: 34/631
  49814. }
  49815. },
  49816. },
  49817. [
  49818. {
  49819. name: "Micro",
  49820. height: math.unit(0.4, "mm"),
  49821. default: true
  49822. },
  49823. ]
  49824. ))
  49825. characterMakers.push(() => makeCharacter(
  49826. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49827. {
  49828. front: {
  49829. height: math.unit(5 + 2/12, "feet"),
  49830. weight: math.unit(110, "lb"),
  49831. name: "Front",
  49832. image: {
  49833. source: "./media/characters/keltre/front.svg",
  49834. extra: 1099/1057,
  49835. bottom: 22/1121
  49836. }
  49837. },
  49838. back: {
  49839. height: math.unit(5 + 2/12, "feet"),
  49840. weight: math.unit(110, "lb"),
  49841. name: "Back",
  49842. image: {
  49843. source: "./media/characters/keltre/back.svg",
  49844. extra: 1095/1053,
  49845. bottom: 17/1112
  49846. }
  49847. },
  49848. dressed: {
  49849. height: math.unit(5 + 2/12, "feet"),
  49850. weight: math.unit(110, "lb"),
  49851. name: "Dressed",
  49852. image: {
  49853. source: "./media/characters/keltre/dressed.svg",
  49854. extra: 1099/1057,
  49855. bottom: 22/1121
  49856. }
  49857. },
  49858. winter: {
  49859. height: math.unit(5 + 2/12, "feet"),
  49860. weight: math.unit(110, "lb"),
  49861. name: "Winter",
  49862. image: {
  49863. source: "./media/characters/keltre/winter.svg",
  49864. extra: 1099/1057,
  49865. bottom: 22/1121
  49866. }
  49867. },
  49868. head: {
  49869. height: math.unit(1.61 * 0.86, "feet"),
  49870. name: "Head",
  49871. image: {
  49872. source: "./media/characters/keltre/head.svg",
  49873. extra: 534/421,
  49874. bottom: 0/534
  49875. }
  49876. },
  49877. hand: {
  49878. height: math.unit(1.3 * 0.86, "feet"),
  49879. name: "Hand",
  49880. image: {
  49881. source: "./media/characters/keltre/hand.svg"
  49882. }
  49883. },
  49884. foot: {
  49885. height: math.unit(1.8 * 0.86, "feet"),
  49886. name: "Foot",
  49887. image: {
  49888. source: "./media/characters/keltre/foot.svg"
  49889. }
  49890. },
  49891. },
  49892. [
  49893. {
  49894. name: "Fine",
  49895. height: math.unit(1, "inch")
  49896. },
  49897. {
  49898. name: "Dimnutive",
  49899. height: math.unit(4, "inches")
  49900. },
  49901. {
  49902. name: "Tiny",
  49903. height: math.unit(1, "foot")
  49904. },
  49905. {
  49906. name: "Small",
  49907. height: math.unit(3, "feet")
  49908. },
  49909. {
  49910. name: "Normal",
  49911. height: math.unit(5 + 2/12, "feet"),
  49912. default: true
  49913. },
  49914. ]
  49915. ))
  49916. characterMakers.push(() => makeCharacter(
  49917. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49918. {
  49919. front: {
  49920. height: math.unit(6 + 2/12, "feet"),
  49921. name: "Front",
  49922. image: {
  49923. source: "./media/characters/nox/front.svg",
  49924. extra: 1917/1830,
  49925. bottom: 74/1991
  49926. }
  49927. },
  49928. back: {
  49929. height: math.unit(6 + 2/12, "feet"),
  49930. name: "Back",
  49931. image: {
  49932. source: "./media/characters/nox/back.svg",
  49933. extra: 1896/1815,
  49934. bottom: 21/1917
  49935. }
  49936. },
  49937. head: {
  49938. height: math.unit(1.1, "feet"),
  49939. name: "Head",
  49940. image: {
  49941. source: "./media/characters/nox/head.svg",
  49942. extra: 874/704,
  49943. bottom: 0/874
  49944. }
  49945. },
  49946. tattoo: {
  49947. height: math.unit(0.729, "feet"),
  49948. name: "Tattoo",
  49949. image: {
  49950. source: "./media/characters/nox/tattoo.svg"
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(6 + 2/12, "feet")
  49958. },
  49959. {
  49960. name: "Gigamacro",
  49961. height: math.unit(2, "earths"),
  49962. default: true
  49963. },
  49964. {
  49965. name: "Cosmic",
  49966. height: math.unit(867, "yottameters")
  49967. },
  49968. ]
  49969. ))
  49970. characterMakers.push(() => makeCharacter(
  49971. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49972. {
  49973. front: {
  49974. height: math.unit(6, "feet"),
  49975. weight: math.unit(150, "lb"),
  49976. name: "Front",
  49977. image: {
  49978. source: "./media/characters/caspian/front.svg",
  49979. extra: 1443/1359,
  49980. bottom: 0/1443
  49981. }
  49982. },
  49983. back: {
  49984. height: math.unit(6, "feet"),
  49985. weight: math.unit(150, "lb"),
  49986. name: "Back",
  49987. image: {
  49988. source: "./media/characters/caspian/back.svg",
  49989. extra: 1379/1309,
  49990. bottom: 0/1379
  49991. }
  49992. },
  49993. head: {
  49994. height: math.unit(0.9, "feet"),
  49995. name: "Head",
  49996. image: {
  49997. source: "./media/characters/caspian/head.svg",
  49998. extra: 692/492,
  49999. bottom: 0/692
  50000. }
  50001. },
  50002. headAlt: {
  50003. height: math.unit(0.95, "feet"),
  50004. name: "Head (Alt)",
  50005. image: {
  50006. source: "./media/characters/caspian/head-alt.svg",
  50007. extra: 668/508,
  50008. bottom: 0/668
  50009. }
  50010. },
  50011. hand: {
  50012. height: math.unit(0.8, "feet"),
  50013. name: "Hand",
  50014. image: {
  50015. source: "./media/characters/caspian/hand.svg"
  50016. }
  50017. },
  50018. paw: {
  50019. height: math.unit(0.95, "feet"),
  50020. name: "Paw",
  50021. image: {
  50022. source: "./media/characters/caspian/paw.svg"
  50023. }
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Normal",
  50029. height: math.unit(162, "feet"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50036. {
  50037. front: {
  50038. height: math.unit(6, "feet"),
  50039. name: "Front",
  50040. image: {
  50041. source: "./media/characters/myra-aisling/front.svg",
  50042. extra: 1268/1166,
  50043. bottom: 73/1341
  50044. }
  50045. },
  50046. back: {
  50047. height: math.unit(6, "feet"),
  50048. name: "Back",
  50049. image: {
  50050. source: "./media/characters/myra-aisling/back.svg",
  50051. extra: 1249/1149,
  50052. bottom: 79/1328
  50053. }
  50054. },
  50055. dressed: {
  50056. height: math.unit(6, "feet"),
  50057. name: "Dressed",
  50058. image: {
  50059. source: "./media/characters/myra-aisling/dressed.svg",
  50060. extra: 1290/1189,
  50061. bottom: 47/1337
  50062. }
  50063. },
  50064. hand: {
  50065. height: math.unit(1.1, "feet"),
  50066. name: "Hand",
  50067. image: {
  50068. source: "./media/characters/myra-aisling/hand.svg"
  50069. }
  50070. },
  50071. paw: {
  50072. height: math.unit(1.23, "feet"),
  50073. name: "Paw",
  50074. image: {
  50075. source: "./media/characters/myra-aisling/paw.svg"
  50076. }
  50077. },
  50078. },
  50079. [
  50080. {
  50081. name: "Normal",
  50082. height: math.unit(160, "feet"),
  50083. default: true
  50084. },
  50085. ]
  50086. ))
  50087. characterMakers.push(() => makeCharacter(
  50088. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50089. {
  50090. front: {
  50091. height: math.unit(6, "feet"),
  50092. name: "Front",
  50093. image: {
  50094. source: "./media/characters/tenley-sidero/front.svg",
  50095. extra: 1365/1276,
  50096. bottom: 47/1412
  50097. }
  50098. },
  50099. back: {
  50100. height: math.unit(6, "feet"),
  50101. name: "Back",
  50102. image: {
  50103. source: "./media/characters/tenley-sidero/back.svg",
  50104. extra: 1383/1283,
  50105. bottom: 35/1418
  50106. }
  50107. },
  50108. dressed: {
  50109. height: math.unit(6, "feet"),
  50110. name: "Dressed",
  50111. image: {
  50112. source: "./media/characters/tenley-sidero/dressed.svg",
  50113. extra: 1364/1275,
  50114. bottom: 42/1406
  50115. }
  50116. },
  50117. head: {
  50118. height: math.unit(1.47, "feet"),
  50119. name: "Head",
  50120. image: {
  50121. source: "./media/characters/tenley-sidero/head.svg",
  50122. extra: 610/490,
  50123. bottom: 0/610
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Normal",
  50130. height: math.unit(154, "feet"),
  50131. default: true
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50137. {
  50138. front: {
  50139. height: math.unit(5, "inches"),
  50140. name: "Front",
  50141. image: {
  50142. source: "./media/characters/mallory/front.svg",
  50143. extra: 1919/1678,
  50144. bottom: 29/1948
  50145. }
  50146. },
  50147. hand: {
  50148. height: math.unit(0.73, "inches"),
  50149. name: "Hand",
  50150. image: {
  50151. source: "./media/characters/mallory/hand.svg"
  50152. }
  50153. },
  50154. paw: {
  50155. height: math.unit(0.68, "inches"),
  50156. name: "Paw",
  50157. image: {
  50158. source: "./media/characters/mallory/paw.svg"
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Small",
  50165. height: math.unit(5, "inches"),
  50166. default: true
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50172. {
  50173. naked: {
  50174. height: math.unit(6, "feet"),
  50175. name: "Naked",
  50176. image: {
  50177. source: "./media/characters/mab/naked.svg",
  50178. extra: 1855/1757,
  50179. bottom: 208/2063
  50180. }
  50181. },
  50182. outside: {
  50183. height: math.unit(6, "feet"),
  50184. name: "Outside",
  50185. image: {
  50186. source: "./media/characters/mab/outside.svg",
  50187. extra: 1855/1757,
  50188. bottom: 208/2063
  50189. }
  50190. },
  50191. party: {
  50192. height: math.unit(6, "feet"),
  50193. name: "Party",
  50194. image: {
  50195. source: "./media/characters/mab/party.svg",
  50196. extra: 1855/1757,
  50197. bottom: 208/2063
  50198. }
  50199. },
  50200. },
  50201. [
  50202. {
  50203. name: "Normal",
  50204. height: math.unit(165, "feet"),
  50205. default: true
  50206. },
  50207. ]
  50208. ))
  50209. characterMakers.push(() => makeCharacter(
  50210. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50211. {
  50212. feral: {
  50213. height: math.unit(12, "feet"),
  50214. weight: math.unit(20000, "lb"),
  50215. name: "Side",
  50216. image: {
  50217. source: "./media/characters/winter/feral.svg",
  50218. extra: 1286/943,
  50219. bottom: 112/1398
  50220. },
  50221. form: "feral",
  50222. default: true
  50223. },
  50224. feralNsfw: {
  50225. height: math.unit(12, "feet"),
  50226. weight: math.unit(20000, "lb"),
  50227. name: "Side (NSFW)",
  50228. image: {
  50229. source: "./media/characters/winter/feral-nsfw.svg",
  50230. extra: 1286/943,
  50231. bottom: 112/1398
  50232. },
  50233. form: "feral"
  50234. },
  50235. dick: {
  50236. height: math.unit(3.79, "feet"),
  50237. name: "Dick",
  50238. image: {
  50239. source: "./media/characters/winter/dick.svg"
  50240. },
  50241. form: "feral"
  50242. },
  50243. anthro: {
  50244. height: math.unit(12, "feet"),
  50245. weight: math.unit(10, "tons"),
  50246. name: "Anthro",
  50247. image: {
  50248. source: "./media/characters/winter/anthro.svg",
  50249. extra: 1701/1553,
  50250. bottom: 64/1765
  50251. },
  50252. form: "anthro",
  50253. default: true
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Big",
  50259. height: math.unit(12, "feet"),
  50260. default: true,
  50261. form: "feral"
  50262. },
  50263. {
  50264. name: "Big",
  50265. height: math.unit(12, "feet"),
  50266. default: true,
  50267. form: "anthro"
  50268. },
  50269. ],
  50270. {
  50271. "feral": {
  50272. name: "Feral",
  50273. default: true
  50274. },
  50275. "anthro": {
  50276. name: "Anthro"
  50277. }
  50278. }
  50279. ))
  50280. characterMakers.push(() => makeCharacter(
  50281. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50282. {
  50283. front: {
  50284. height: math.unit(4.1, "inches"),
  50285. name: "Front",
  50286. image: {
  50287. source: "./media/characters/alto/front.svg",
  50288. extra: 736/627,
  50289. bottom: 90/826
  50290. }
  50291. },
  50292. },
  50293. [
  50294. {
  50295. name: "Normal",
  50296. height: math.unit(4.1, "inches"),
  50297. default: true
  50298. },
  50299. ]
  50300. ))
  50301. characterMakers.push(() => makeCharacter(
  50302. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50303. {
  50304. sitting: {
  50305. height: math.unit(3, "feet"),
  50306. name: "Sitting",
  50307. image: {
  50308. source: "./media/characters/ratstrid-v/sitting.svg",
  50309. extra: 355/310,
  50310. bottom: 136/491
  50311. }
  50312. },
  50313. },
  50314. [
  50315. {
  50316. name: "Normal",
  50317. height: math.unit(3, "feet"),
  50318. default: true
  50319. },
  50320. ]
  50321. ))
  50322. characterMakers.push(() => makeCharacter(
  50323. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50324. {
  50325. back: {
  50326. height: math.unit(6, "feet"),
  50327. weight: math.unit(450, "lb"),
  50328. name: "Back",
  50329. image: {
  50330. source: "./media/characters/siz/back.svg",
  50331. extra: 1449/1274,
  50332. bottom: 13/1462
  50333. }
  50334. },
  50335. },
  50336. [
  50337. {
  50338. name: "Smallest",
  50339. height: math.unit(18 + 3/12, "feet")
  50340. },
  50341. {
  50342. name: "Modest",
  50343. height: math.unit(56 + 8/12, "feet"),
  50344. default: true
  50345. },
  50346. {
  50347. name: "Largest",
  50348. height: math.unit(3590, "feet")
  50349. },
  50350. ]
  50351. ))
  50352. characterMakers.push(() => makeCharacter(
  50353. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50354. {
  50355. front: {
  50356. height: math.unit(5 + 9/12, "feet"),
  50357. weight: math.unit(150, "lb"),
  50358. name: "Front",
  50359. image: {
  50360. source: "./media/characters/ven/front.svg",
  50361. extra: 1372/1320,
  50362. bottom: 73/1445
  50363. }
  50364. },
  50365. side: {
  50366. height: math.unit(5 + 9/12, "feet"),
  50367. weight: math.unit(1150, "lb"),
  50368. name: "Side",
  50369. image: {
  50370. source: "./media/characters/ven/side.svg",
  50371. extra: 1119/1070,
  50372. bottom: 42/1161
  50373. },
  50374. default: true
  50375. },
  50376. },
  50377. [
  50378. {
  50379. name: "Normal",
  50380. height: math.unit(5 + 9/12, "feet"),
  50381. default: true
  50382. },
  50383. ]
  50384. ))
  50385. characterMakers.push(() => makeCharacter(
  50386. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50387. {
  50388. front: {
  50389. height: math.unit(12, "feet"),
  50390. weight: math.unit(1000, "kg"),
  50391. name: "Front",
  50392. image: {
  50393. source: "./media/characters/maple/front.svg",
  50394. extra: 1193/1081,
  50395. bottom: 22/1215
  50396. }
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Compressed",
  50402. height: math.unit(7, "feet")
  50403. },
  50404. {
  50405. name: "Normal",
  50406. height: math.unit(12, "feet"),
  50407. default: true
  50408. },
  50409. ]
  50410. ))
  50411. characterMakers.push(() => makeCharacter(
  50412. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50413. {
  50414. front: {
  50415. height: math.unit(9, "feet"),
  50416. weight: math.unit(1500, "lb"),
  50417. name: "Front",
  50418. image: {
  50419. source: "./media/characters/nora/front.svg",
  50420. extra: 1348/1286,
  50421. bottom: 218/1566
  50422. }
  50423. },
  50424. erect: {
  50425. height: math.unit(9, "feet"),
  50426. weight: math.unit(11500, "lb"),
  50427. name: "Erect",
  50428. image: {
  50429. source: "./media/characters/nora/erect.svg",
  50430. extra: 1488/1433,
  50431. bottom: 133/1621
  50432. }
  50433. },
  50434. },
  50435. [
  50436. {
  50437. name: "Normal",
  50438. height: math.unit(9, "feet"),
  50439. default: true
  50440. },
  50441. ]
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(25, "feet"),
  50448. weight: math.unit(27500, "lb"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/north-caudin/front.svg",
  50452. extra: 1184/1082,
  50453. bottom: 23/1207
  50454. }
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Compressed",
  50460. height: math.unit(10, "feet")
  50461. },
  50462. {
  50463. name: "Normal",
  50464. height: math.unit(25, "feet"),
  50465. default: true
  50466. },
  50467. ]
  50468. ))
  50469. characterMakers.push(() => makeCharacter(
  50470. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50471. {
  50472. front: {
  50473. height: math.unit(9, "feet"),
  50474. weight: math.unit(1250, "lb"),
  50475. name: "Front",
  50476. image: {
  50477. source: "./media/characters/merrian/front.svg",
  50478. extra: 2393/2304,
  50479. bottom: 40/2433
  50480. }
  50481. },
  50482. },
  50483. [
  50484. {
  50485. name: "Normal",
  50486. height: math.unit(9, "feet"),
  50487. default: true
  50488. },
  50489. ]
  50490. ))
  50491. characterMakers.push(() => makeCharacter(
  50492. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50493. {
  50494. front: {
  50495. height: math.unit(9, "feet"),
  50496. weight: math.unit(1000, "lb"),
  50497. name: "Front",
  50498. image: {
  50499. source: "./media/characters/hazel/front.svg",
  50500. extra: 2351/2298,
  50501. bottom: 38/2389
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Normal",
  50508. height: math.unit(9, "feet"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50515. {
  50516. front: {
  50517. height: math.unit(13, "feet"),
  50518. weight: math.unit(3200, "lb"),
  50519. name: "Front",
  50520. image: {
  50521. source: "./media/characters/emma/front.svg",
  50522. extra: 2263/2029,
  50523. bottom: 68/2331
  50524. }
  50525. },
  50526. },
  50527. [
  50528. {
  50529. name: "Normal",
  50530. height: math.unit(13, "feet"),
  50531. default: true
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50537. {
  50538. front: {
  50539. height: math.unit(11 + 9/12, "feet"),
  50540. weight: math.unit(2500, "lb"),
  50541. name: "Front",
  50542. image: {
  50543. source: "./media/characters/ilumina/front.svg",
  50544. extra: 2248/2209,
  50545. bottom: 164/2412
  50546. }
  50547. },
  50548. },
  50549. [
  50550. {
  50551. name: "Normal",
  50552. height: math.unit(11 + 9/12, "feet"),
  50553. default: true
  50554. },
  50555. ]
  50556. ))
  50557. characterMakers.push(() => makeCharacter(
  50558. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50559. {
  50560. front: {
  50561. height: math.unit(8 + 10/12, "feet"),
  50562. weight: math.unit(1350, "lb"),
  50563. name: "Front",
  50564. image: {
  50565. source: "./media/characters/moonshine/front.svg",
  50566. extra: 2395/2288,
  50567. bottom: 40/2435
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(8 + 10/12, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(14, "feet"),
  50584. weight: math.unit(3400, "lb"),
  50585. name: "Front",
  50586. image: {
  50587. source: "./media/characters/aletia/front.svg",
  50588. extra: 1185/1052,
  50589. bottom: 21/1206
  50590. }
  50591. },
  50592. },
  50593. [
  50594. {
  50595. name: "Compressed",
  50596. height: math.unit(8, "feet")
  50597. },
  50598. {
  50599. name: "Normal",
  50600. height: math.unit(14, "feet"),
  50601. default: true
  50602. },
  50603. ]
  50604. ))
  50605. characterMakers.push(() => makeCharacter(
  50606. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50607. {
  50608. front: {
  50609. height: math.unit(17, "feet"),
  50610. weight: math.unit(6500, "lb"),
  50611. name: "Front",
  50612. image: {
  50613. source: "./media/characters/deidra/front.svg",
  50614. extra: 1201/1081,
  50615. bottom: 16/1217
  50616. }
  50617. },
  50618. },
  50619. [
  50620. {
  50621. name: "Compressed",
  50622. height: math.unit(9 + 6/12, "feet")
  50623. },
  50624. {
  50625. name: "Normal",
  50626. height: math.unit(17, "feet"),
  50627. default: true
  50628. },
  50629. ]
  50630. ))
  50631. characterMakers.push(() => makeCharacter(
  50632. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50633. {
  50634. front: {
  50635. height: math.unit(7 + 4/12, "feet"),
  50636. weight: math.unit(280, "lb"),
  50637. name: "Front",
  50638. image: {
  50639. source: "./media/characters/freki-yrmori/front.svg",
  50640. extra: 1286/1182,
  50641. bottom: 29/1315
  50642. }
  50643. },
  50644. maw: {
  50645. height: math.unit(0.9, "feet"),
  50646. name: "Maw",
  50647. image: {
  50648. source: "./media/characters/freki-yrmori/maw.svg"
  50649. }
  50650. },
  50651. },
  50652. [
  50653. {
  50654. name: "Normal",
  50655. height: math.unit(7 + 4/12, "feet"),
  50656. default: true
  50657. },
  50658. {
  50659. name: "Macro",
  50660. height: math.unit(38.5, "meters")
  50661. },
  50662. ]
  50663. ))
  50664. characterMakers.push(() => makeCharacter(
  50665. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50666. {
  50667. side: {
  50668. height: math.unit(47.2, "meters"),
  50669. weight: math.unit(10000, "tons"),
  50670. name: "Side",
  50671. image: {
  50672. source: "./media/characters/aetherios/side.svg",
  50673. extra: 2363/642,
  50674. bottom: 221/2584
  50675. }
  50676. },
  50677. top: {
  50678. height: math.unit(240, "meters"),
  50679. weight: math.unit(10000, "tons"),
  50680. name: "Top",
  50681. image: {
  50682. source: "./media/characters/aetherios/top.svg"
  50683. }
  50684. },
  50685. bottom: {
  50686. height: math.unit(240, "meters"),
  50687. weight: math.unit(10000, "tons"),
  50688. name: "Bottom",
  50689. image: {
  50690. source: "./media/characters/aetherios/bottom.svg"
  50691. }
  50692. },
  50693. head: {
  50694. height: math.unit(38.6, "meters"),
  50695. name: "Head",
  50696. image: {
  50697. source: "./media/characters/aetherios/head.svg",
  50698. extra: 1335/1112,
  50699. bottom: 0/1335
  50700. }
  50701. },
  50702. front: {
  50703. height: math.unit(29, "meters"),
  50704. name: "Front",
  50705. image: {
  50706. source: "./media/characters/aetherios/front.svg",
  50707. extra: 1266/953,
  50708. bottom: 158/1424
  50709. }
  50710. },
  50711. maw: {
  50712. height: math.unit(16.37, "meters"),
  50713. name: "Maw",
  50714. image: {
  50715. source: "./media/characters/aetherios/maw.svg",
  50716. extra: 748/637,
  50717. bottom: 0/748
  50718. },
  50719. extraAttributes: {
  50720. preyCapacity: {
  50721. name: "Capacity",
  50722. power: 3,
  50723. type: "volume",
  50724. base: math.unit(1000, "people")
  50725. },
  50726. tongueSize: {
  50727. name: "Tongue Size",
  50728. power: 2,
  50729. type: "area",
  50730. base: math.unit(21, "m^2")
  50731. }
  50732. }
  50733. },
  50734. forepaw: {
  50735. height: math.unit(18, "meters"),
  50736. name: "Forepaw",
  50737. image: {
  50738. source: "./media/characters/aetherios/forepaw.svg"
  50739. }
  50740. },
  50741. hindpaw: {
  50742. height: math.unit(23, "meters"),
  50743. name: "Hindpaw",
  50744. image: {
  50745. source: "./media/characters/aetherios/hindpaw.svg"
  50746. }
  50747. },
  50748. genitals: {
  50749. height: math.unit(42, "meters"),
  50750. name: "Genitals",
  50751. image: {
  50752. source: "./media/characters/aetherios/genitals.svg"
  50753. }
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(47.2, "meters"),
  50760. default: true
  50761. },
  50762. {
  50763. name: "Macro",
  50764. height: math.unit(160, "meters")
  50765. },
  50766. {
  50767. name: "Mega",
  50768. height: math.unit(1.87, "km")
  50769. },
  50770. {
  50771. name: "Giga",
  50772. height: math.unit(40000, "km")
  50773. },
  50774. {
  50775. name: "Stellar",
  50776. height: math.unit(158000000, "km")
  50777. },
  50778. {
  50779. name: "Cosmic",
  50780. height: math.unit(9.46e12, "km")
  50781. },
  50782. ]
  50783. ))
  50784. characterMakers.push(() => makeCharacter(
  50785. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50786. {
  50787. front: {
  50788. height: math.unit(5 + 4/12, "feet"),
  50789. weight: math.unit(80, "lb"),
  50790. name: "Front",
  50791. image: {
  50792. source: "./media/characters/mizu-gieeg/front.svg",
  50793. extra: 850/709,
  50794. bottom: 52/902
  50795. }
  50796. },
  50797. back: {
  50798. height: math.unit(5 + 4/12, "feet"),
  50799. weight: math.unit(80, "lb"),
  50800. name: "Back",
  50801. image: {
  50802. source: "./media/characters/mizu-gieeg/back.svg",
  50803. extra: 882/745,
  50804. bottom: 25/907
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Normal",
  50811. height: math.unit(5 + 4/12, "feet"),
  50812. default: true
  50813. },
  50814. ]
  50815. ))
  50816. characterMakers.push(() => makeCharacter(
  50817. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50818. {
  50819. front: {
  50820. height: math.unit(6, "feet"),
  50821. name: "Front",
  50822. image: {
  50823. source: "./media/characters/roselle-st-papier/front.svg",
  50824. extra: 1430/1280,
  50825. bottom: 37/1467
  50826. }
  50827. },
  50828. back: {
  50829. height: math.unit(6, "feet"),
  50830. name: "Back",
  50831. image: {
  50832. source: "./media/characters/roselle-st-papier/back.svg",
  50833. extra: 1491/1296,
  50834. bottom: 23/1514
  50835. }
  50836. },
  50837. ear: {
  50838. height: math.unit(1.26, "feet"),
  50839. name: "Ear",
  50840. image: {
  50841. source: "./media/characters/roselle-st-papier/ear.svg"
  50842. }
  50843. },
  50844. },
  50845. [
  50846. {
  50847. name: "Normal",
  50848. height: math.unit(150, "feet"),
  50849. default: true
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(1, "inches"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/valargent/front.svg",
  50861. extra: 1825/1694,
  50862. bottom: 62/1887
  50863. }
  50864. },
  50865. back: {
  50866. height: math.unit(1, "inches"),
  50867. name: "Back",
  50868. image: {
  50869. source: "./media/characters/valargent/back.svg",
  50870. extra: 1775/1682,
  50871. bottom: 88/1863
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Micro",
  50878. height: math.unit(1, "inch"),
  50879. default: true
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50885. {
  50886. front: {
  50887. height: math.unit(3.4, "meters"),
  50888. name: "Front",
  50889. image: {
  50890. source: "./media/characters/zarina/front.svg",
  50891. extra: 1733/1425,
  50892. bottom: 93/1826
  50893. }
  50894. },
  50895. squatting: {
  50896. height: math.unit(2.14, "meters"),
  50897. name: "Squatting",
  50898. image: {
  50899. source: "./media/characters/zarina/squatting.svg",
  50900. extra: 1073/788,
  50901. bottom: 63/1136
  50902. }
  50903. },
  50904. back: {
  50905. height: math.unit(2.14, "meters"),
  50906. name: "Back",
  50907. image: {
  50908. source: "./media/characters/zarina/back.svg",
  50909. extra: 1128/885,
  50910. bottom: 0/1128
  50911. }
  50912. },
  50913. },
  50914. [
  50915. {
  50916. name: "Normal",
  50917. height: math.unit(3.4, "meters"),
  50918. default: true
  50919. },
  50920. {
  50921. name: "Big",
  50922. height: math.unit(5, "meters")
  50923. },
  50924. {
  50925. name: "Macro",
  50926. height: math.unit(110, "meters")
  50927. },
  50928. ]
  50929. ))
  50930. characterMakers.push(() => makeCharacter(
  50931. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50932. {
  50933. front: {
  50934. height: math.unit(7, "feet"),
  50935. name: "Front",
  50936. image: {
  50937. source: "./media/characters/ventus-astro-fox/front.svg",
  50938. extra: 1792/1623,
  50939. bottom: 28/1820
  50940. }
  50941. },
  50942. back: {
  50943. height: math.unit(7, "feet"),
  50944. name: "Back",
  50945. image: {
  50946. source: "./media/characters/ventus-astro-fox/back.svg",
  50947. extra: 1789/1620,
  50948. bottom: 31/1820
  50949. }
  50950. },
  50951. outfit: {
  50952. height: math.unit(7, "feet"),
  50953. name: "Outfit",
  50954. image: {
  50955. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50956. extra: 1054/925,
  50957. bottom: 15/1069
  50958. }
  50959. },
  50960. head: {
  50961. height: math.unit(1.12, "feet"),
  50962. name: "Head",
  50963. image: {
  50964. source: "./media/characters/ventus-astro-fox/head.svg",
  50965. extra: 866/504,
  50966. bottom: 0/866
  50967. }
  50968. },
  50969. hand: {
  50970. height: math.unit(1, "feet"),
  50971. name: "Hand",
  50972. image: {
  50973. source: "./media/characters/ventus-astro-fox/hand.svg"
  50974. }
  50975. },
  50976. paw: {
  50977. height: math.unit(1.5, "feet"),
  50978. name: "Paw",
  50979. image: {
  50980. source: "./media/characters/ventus-astro-fox/paw.svg"
  50981. }
  50982. },
  50983. },
  50984. [
  50985. {
  50986. name: "Normal",
  50987. height: math.unit(7, "feet"),
  50988. default: true
  50989. },
  50990. {
  50991. name: "Macro",
  50992. height: math.unit(200, "feet")
  50993. },
  50994. {
  50995. name: "Cosmic",
  50996. height: math.unit(3, "universes")
  50997. },
  50998. ]
  50999. ))
  51000. characterMakers.push(() => makeCharacter(
  51001. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51002. {
  51003. front: {
  51004. height: math.unit(3, "meters"),
  51005. weight: math.unit(7000, "lb"),
  51006. name: "Front",
  51007. image: {
  51008. source: "./media/characters/core-t/front.svg",
  51009. extra: 5729/4941,
  51010. bottom: 1129/6858
  51011. }
  51012. },
  51013. },
  51014. [
  51015. {
  51016. name: "Big",
  51017. height: math.unit(3, "meters"),
  51018. default: true
  51019. },
  51020. ]
  51021. ))
  51022. characterMakers.push(() => makeCharacter(
  51023. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51024. {
  51025. normal: {
  51026. height: math.unit(6 + 6/12, "feet"),
  51027. weight: math.unit(275, "lb"),
  51028. name: "Front",
  51029. image: {
  51030. source: "./media/characters/cadbunny/normal.svg",
  51031. extra: 1129/947,
  51032. bottom: 93/1222
  51033. },
  51034. default: true,
  51035. form: "normal"
  51036. },
  51037. gigantamax: {
  51038. height: math.unit(26, "feet"),
  51039. weight: math.unit(16000, "lb"),
  51040. name: "Front",
  51041. image: {
  51042. source: "./media/characters/cadbunny/gigantamax.svg",
  51043. extra: 1133/944,
  51044. bottom: 90/1223
  51045. },
  51046. default: true,
  51047. form: "gigantamax"
  51048. },
  51049. },
  51050. [
  51051. {
  51052. name: "Normal",
  51053. height: math.unit(6 + 6/12, "feet"),
  51054. default: true,
  51055. form: "normal"
  51056. },
  51057. {
  51058. name: "Small",
  51059. height: math.unit(26, "feet"),
  51060. default: true,
  51061. form: "gigantamax"
  51062. },
  51063. {
  51064. name: "Large",
  51065. height: math.unit(78, "feet"),
  51066. form: "gigantamax"
  51067. },
  51068. ],
  51069. {
  51070. "normal": {
  51071. name: "Normal",
  51072. default: true
  51073. },
  51074. "gigantamax": {
  51075. name: "Gigantamax"
  51076. }
  51077. }
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51081. {
  51082. anthroFront: {
  51083. height: math.unit(8, "feet"),
  51084. weight: math.unit(300, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51088. extra: 1272/1176,
  51089. bottom: 53/1325
  51090. },
  51091. form: "anthro",
  51092. default: true
  51093. },
  51094. feralSide: {
  51095. height: math.unit(4, "feet"),
  51096. weight: math.unit(250, "lb"),
  51097. name: "Side",
  51098. image: {
  51099. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51100. extra: 731/621,
  51101. bottom: 0/731
  51102. },
  51103. form: "feral",
  51104. default: true
  51105. },
  51106. },
  51107. [
  51108. {
  51109. name: "Regular",
  51110. height: math.unit(8, "feet"),
  51111. form: "anthro"
  51112. },
  51113. {
  51114. name: "Macro",
  51115. height: math.unit(250, "feet"),
  51116. form: "anthro",
  51117. default: true
  51118. },
  51119. {
  51120. name: "Regular",
  51121. height: math.unit(4, "feet"),
  51122. form: "feral"
  51123. },
  51124. {
  51125. name: "Macro",
  51126. height: math.unit(125, "feet"),
  51127. form: "feral",
  51128. default: true
  51129. },
  51130. ],
  51131. {
  51132. "anthro": {
  51133. name: "Anthro",
  51134. default: true
  51135. },
  51136. "feral": {
  51137. name: "Feral",
  51138. },
  51139. }
  51140. ))
  51141. characterMakers.push(() => makeCharacter(
  51142. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51143. {
  51144. front: {
  51145. height: math.unit(11 + 10/12, "feet"),
  51146. weight: math.unit(1587, "kg"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/maple-javira-dragon/front.svg",
  51150. extra: 1136/744,
  51151. bottom: 73/1209
  51152. }
  51153. },
  51154. side: {
  51155. height: math.unit(11 + 10/12, "feet"),
  51156. weight: math.unit(1587, "kg"),
  51157. name: "Side",
  51158. image: {
  51159. source: "./media/characters/maple-javira-dragon/side.svg",
  51160. extra: 712/505,
  51161. bottom: 17/729
  51162. }
  51163. },
  51164. head: {
  51165. height: math.unit(8.05, "feet"),
  51166. name: "Head",
  51167. image: {
  51168. source: "./media/characters/maple-javira-dragon/head.svg",
  51169. extra: 1420/1344,
  51170. bottom: 0/1420
  51171. }
  51172. },
  51173. },
  51174. [
  51175. {
  51176. name: "Normal",
  51177. height: math.unit(11 + 10/12, "feet"),
  51178. default: true
  51179. },
  51180. ]
  51181. ))
  51182. characterMakers.push(() => makeCharacter(
  51183. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51184. {
  51185. front: {
  51186. height: math.unit(117, "cm"),
  51187. weight: math.unit(50, "kg"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/sonia-wyverntail/front.svg",
  51191. extra: 708/592,
  51192. bottom: 25/733
  51193. }
  51194. },
  51195. },
  51196. [
  51197. {
  51198. name: "Normal",
  51199. height: math.unit(117, "cm"),
  51200. default: true
  51201. },
  51202. ]
  51203. ))
  51204. characterMakers.push(() => makeCharacter(
  51205. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51206. {
  51207. front: {
  51208. height: math.unit(6 + 5/12, "feet"),
  51209. name: "Front",
  51210. image: {
  51211. source: "./media/characters/micah/front.svg",
  51212. extra: 1758/1546,
  51213. bottom: 214/1972
  51214. }
  51215. },
  51216. },
  51217. [
  51218. {
  51219. name: "Normal",
  51220. height: math.unit(6 + 5/12, "feet"),
  51221. default: true
  51222. },
  51223. ]
  51224. ))
  51225. characterMakers.push(() => makeCharacter(
  51226. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51227. {
  51228. front: {
  51229. height: math.unit(1.75, "meters"),
  51230. weight: math.unit(100, "kg"),
  51231. name: "Front",
  51232. image: {
  51233. source: "./media/characters/zarya/front.svg",
  51234. extra: 741/735,
  51235. bottom: 44/785
  51236. },
  51237. extraAttributes: {
  51238. "tailLength": {
  51239. name: "Tail Length",
  51240. power: 1,
  51241. type: "length",
  51242. base: math.unit(180, "cm")
  51243. },
  51244. "pawLength": {
  51245. name: "Paw Length",
  51246. power: 1,
  51247. type: "length",
  51248. base: math.unit(31, "cm")
  51249. },
  51250. }
  51251. },
  51252. side: {
  51253. height: math.unit(1.75, "meters"),
  51254. weight: math.unit(100, "kg"),
  51255. name: "Side",
  51256. image: {
  51257. source: "./media/characters/zarya/side.svg",
  51258. extra: 776/770,
  51259. bottom: 17/793
  51260. },
  51261. extraAttributes: {
  51262. "tailLength": {
  51263. name: "Tail Length",
  51264. power: 1,
  51265. type: "length",
  51266. base: math.unit(180, "cm")
  51267. },
  51268. "pawLength": {
  51269. name: "Paw Length",
  51270. power: 1,
  51271. type: "length",
  51272. base: math.unit(31, "cm")
  51273. },
  51274. }
  51275. },
  51276. back: {
  51277. height: math.unit(1.75, "meters"),
  51278. weight: math.unit(100, "kg"),
  51279. name: "Back",
  51280. image: {
  51281. source: "./media/characters/zarya/back.svg",
  51282. extra: 741/735,
  51283. bottom: 44/785
  51284. },
  51285. extraAttributes: {
  51286. "tailLength": {
  51287. name: "Tail Length",
  51288. power: 1,
  51289. type: "length",
  51290. base: math.unit(180, "cm")
  51291. },
  51292. "pawLength": {
  51293. name: "Paw Length",
  51294. power: 1,
  51295. type: "length",
  51296. base: math.unit(31, "cm")
  51297. },
  51298. }
  51299. },
  51300. frontNoTail: {
  51301. height: math.unit(1.75, "meters"),
  51302. weight: math.unit(100, "kg"),
  51303. name: "Front (No Tail)",
  51304. image: {
  51305. source: "./media/characters/zarya/front-no-tail.svg",
  51306. extra: 741/735,
  51307. bottom: 44/785
  51308. },
  51309. extraAttributes: {
  51310. "tailLength": {
  51311. name: "Tail Length",
  51312. power: 1,
  51313. type: "length",
  51314. base: math.unit(180, "cm")
  51315. },
  51316. "pawLength": {
  51317. name: "Paw Length",
  51318. power: 1,
  51319. type: "length",
  51320. base: math.unit(31, "cm")
  51321. },
  51322. }
  51323. },
  51324. dressed: {
  51325. height: math.unit(1.75, "meters"),
  51326. weight: math.unit(100, "kg"),
  51327. name: "Dressed",
  51328. image: {
  51329. source: "./media/characters/zarya/dressed.svg",
  51330. extra: 683/672,
  51331. bottom: 79/762
  51332. },
  51333. extraAttributes: {
  51334. "tailLength": {
  51335. name: "Tail Length",
  51336. power: 1,
  51337. type: "length",
  51338. base: math.unit(180, "cm")
  51339. },
  51340. "pawLength": {
  51341. name: "Paw Length",
  51342. power: 1,
  51343. type: "length",
  51344. base: math.unit(31, "cm")
  51345. },
  51346. }
  51347. },
  51348. },
  51349. [
  51350. {
  51351. name: "Micro",
  51352. height: math.unit(5, "cm")
  51353. },
  51354. {
  51355. name: "Normal",
  51356. height: math.unit(1.75, "meters"),
  51357. default: true
  51358. },
  51359. {
  51360. name: "Macro",
  51361. height: math.unit(122, "meters")
  51362. },
  51363. ]
  51364. ))
  51365. characterMakers.push(() => makeCharacter(
  51366. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51367. {
  51368. front: {
  51369. height: math.unit(7.5, "feet"),
  51370. name: "Front",
  51371. image: {
  51372. source: "./media/characters/sven-hatisson/front.svg",
  51373. extra: 917/857,
  51374. bottom: 42/959
  51375. }
  51376. },
  51377. back: {
  51378. height: math.unit(7.5, "feet"),
  51379. name: "Back",
  51380. image: {
  51381. source: "./media/characters/sven-hatisson/back.svg",
  51382. extra: 903/856,
  51383. bottom: 15/918
  51384. }
  51385. },
  51386. },
  51387. [
  51388. {
  51389. name: "Base Height",
  51390. height: math.unit(7.5, "feet")
  51391. },
  51392. {
  51393. name: "Usual Height",
  51394. height: math.unit(13.5, "feet"),
  51395. default: true
  51396. },
  51397. {
  51398. name: "Smaller Macro",
  51399. height: math.unit(85, "feet")
  51400. },
  51401. {
  51402. name: "Moderate Macro",
  51403. height: math.unit(320, "feet")
  51404. },
  51405. {
  51406. name: "Large Macro",
  51407. height: math.unit(1000, "feet")
  51408. },
  51409. {
  51410. name: "Largest Size",
  51411. height: math.unit(2, "miles")
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51417. {
  51418. side: {
  51419. height: math.unit(1.8, "meters"),
  51420. weight: math.unit(275, "kg"),
  51421. name: "Side",
  51422. image: {
  51423. source: "./media/characters/terra/side.svg",
  51424. extra: 1273/1147,
  51425. bottom: 0/1273
  51426. }
  51427. },
  51428. },
  51429. [
  51430. {
  51431. name: "Normal",
  51432. height: math.unit(16.2, "meters"),
  51433. default: true
  51434. },
  51435. ]
  51436. ))
  51437. characterMakers.push(() => makeCharacter(
  51438. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51439. {
  51440. borzoiFront: {
  51441. height: math.unit(6 + 9/12, "feet"),
  51442. name: "Front",
  51443. image: {
  51444. source: "./media/characters/rae/borzoi-front.svg",
  51445. extra: 1161/1098,
  51446. bottom: 31/1192
  51447. },
  51448. form: "borzoi",
  51449. default: true
  51450. },
  51451. werewolfFront: {
  51452. height: math.unit(8 + 7/12, "feet"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/rae/werewolf-front.svg",
  51456. extra: 1411/1334,
  51457. bottom: 127/1538
  51458. },
  51459. form: "werewolf",
  51460. default: true
  51461. },
  51462. },
  51463. [
  51464. {
  51465. name: "Normal",
  51466. height: math.unit(6 + 9/12, "feet"),
  51467. default: true,
  51468. form: "borzoi"
  51469. },
  51470. {
  51471. name: "Normal",
  51472. height: math.unit(8 + 7/12, "feet"),
  51473. default: true,
  51474. form: "werewolf"
  51475. },
  51476. ],
  51477. {
  51478. "borzoi": {
  51479. name: "Borzoi",
  51480. default: true
  51481. },
  51482. "werewolf": {
  51483. name: "Werewolf",
  51484. },
  51485. }
  51486. ))
  51487. characterMakers.push(() => makeCharacter(
  51488. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51489. {
  51490. front: {
  51491. height: math.unit(8 + 7/12, "feet"),
  51492. weight: math.unit(482, "lb"),
  51493. name: "Front",
  51494. image: {
  51495. source: "./media/characters/kit/front.svg",
  51496. extra: 1247/1103,
  51497. bottom: 41/1288
  51498. }
  51499. },
  51500. back: {
  51501. height: math.unit(8 + 7/12, "feet"),
  51502. weight: math.unit(482, "lb"),
  51503. name: "Back",
  51504. image: {
  51505. source: "./media/characters/kit/back.svg",
  51506. extra: 1252/1123,
  51507. bottom: 21/1273
  51508. }
  51509. },
  51510. paw: {
  51511. height: math.unit(1.46, "feet"),
  51512. name: "Paw",
  51513. image: {
  51514. source: "./media/characters/kit/paw.svg"
  51515. }
  51516. },
  51517. },
  51518. [
  51519. {
  51520. name: "Normal",
  51521. height: math.unit(2.61, "meters"),
  51522. default: true
  51523. },
  51524. {
  51525. name: "\"Tall\"",
  51526. height: math.unit(8.21, "meters")
  51527. },
  51528. {
  51529. name: "Tall",
  51530. height: math.unit(19.6, "meters")
  51531. },
  51532. {
  51533. name: "Very Tall",
  51534. height: math.unit(57.91, "meters")
  51535. },
  51536. {
  51537. name: "Semi-Macro",
  51538. height: math.unit(138.64, "meters")
  51539. },
  51540. {
  51541. name: "Macro",
  51542. height: math.unit(831.99, "meters")
  51543. },
  51544. {
  51545. name: "EX-Macro",
  51546. height: math.unit(96451121, "meters")
  51547. },
  51548. {
  51549. name: "S1-Omnipotent",
  51550. height: math.unit(4.42074e+9, "meters")
  51551. },
  51552. {
  51553. name: "S2-Omnipotent",
  51554. height: math.unit(9.42074e+17, "meters")
  51555. },
  51556. {
  51557. name: "Omnipotent",
  51558. height: math.unit(4.23112e+24, "meters")
  51559. },
  51560. {
  51561. name: "Hypergod",
  51562. height: math.unit(5.05176e+27, "meters")
  51563. },
  51564. {
  51565. name: "Hypergod-EX",
  51566. height: math.unit(9.45532e+49, "meters")
  51567. },
  51568. {
  51569. name: "Hypergod-SP",
  51570. height: math.unit(9.45532e+195, "meters")
  51571. },
  51572. ]
  51573. ))
  51574. characterMakers.push(() => makeCharacter(
  51575. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51576. {
  51577. side: {
  51578. height: math.unit(0.6, "meters"),
  51579. weight: math.unit(24, "kg"),
  51580. name: "Side",
  51581. image: {
  51582. source: "./media/characters/celeste/side.svg",
  51583. extra: 810/517,
  51584. bottom: 53/863
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Velociraptor",
  51591. height: math.unit(0.6, "meters"),
  51592. default: true
  51593. },
  51594. {
  51595. name: "Utahraptor",
  51596. height: math.unit(1.8, "meters")
  51597. },
  51598. {
  51599. name: "Gallimimus",
  51600. height: math.unit(4.0, "meters")
  51601. },
  51602. {
  51603. name: "Large",
  51604. height: math.unit(20, "meters")
  51605. },
  51606. {
  51607. name: "Planetary",
  51608. height: math.unit(50, "megameters")
  51609. },
  51610. {
  51611. name: "Stellar",
  51612. height: math.unit(1.5, "gigameters")
  51613. },
  51614. {
  51615. name: "Galactic",
  51616. height: math.unit(100, "exameters")
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51622. {
  51623. front: {
  51624. height: math.unit(6, "feet"),
  51625. weight: math.unit(210, "lb"),
  51626. name: "Front",
  51627. image: {
  51628. source: "./media/characters/glacia/front.svg",
  51629. extra: 958/901,
  51630. bottom: 45/1003
  51631. }
  51632. },
  51633. },
  51634. [
  51635. {
  51636. name: "Macro",
  51637. height: math.unit(1000, "meters"),
  51638. default: true
  51639. },
  51640. ]
  51641. ))
  51642. characterMakers.push(() => makeCharacter(
  51643. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51644. {
  51645. front: {
  51646. height: math.unit(4, "meters"),
  51647. name: "Front",
  51648. image: {
  51649. source: "./media/characters/giri/front.svg",
  51650. extra: 966/894,
  51651. bottom: 21/987
  51652. }
  51653. },
  51654. },
  51655. [
  51656. {
  51657. name: "Normal",
  51658. height: math.unit(4, "meters"),
  51659. default: true
  51660. },
  51661. ]
  51662. ))
  51663. characterMakers.push(() => makeCharacter(
  51664. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51665. {
  51666. back: {
  51667. height: math.unit(4, "feet"),
  51668. weight: math.unit(37, "lb"),
  51669. name: "Back",
  51670. image: {
  51671. source: "./media/characters/tin/back.svg",
  51672. extra: 845/780,
  51673. bottom: 28/873
  51674. }
  51675. },
  51676. },
  51677. [
  51678. {
  51679. name: "Normal",
  51680. height: math.unit(4, "feet"),
  51681. default: true
  51682. },
  51683. ]
  51684. ))
  51685. characterMakers.push(() => makeCharacter(
  51686. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51687. {
  51688. front: {
  51689. height: math.unit(25, "feet"),
  51690. name: "Front",
  51691. image: {
  51692. source: "./media/characters/cadenza-vivace/front.svg",
  51693. extra: 1842/1578,
  51694. bottom: 30/1872
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Macro",
  51701. height: math.unit(25, "feet"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51708. {
  51709. front: {
  51710. height: math.unit(10, "feet"),
  51711. weight: math.unit(625, "kg"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/zain/front.svg",
  51715. extra: 1682/1498,
  51716. bottom: 223/1905
  51717. }
  51718. },
  51719. back: {
  51720. height: math.unit(10, "feet"),
  51721. weight: math.unit(625, "kg"),
  51722. name: "Back",
  51723. image: {
  51724. source: "./media/characters/zain/back.svg",
  51725. extra: 1814/1657,
  51726. bottom: 152/1966
  51727. }
  51728. },
  51729. head: {
  51730. height: math.unit(10, "feet"),
  51731. weight: math.unit(625, "kg"),
  51732. name: "Head",
  51733. image: {
  51734. source: "./media/characters/zain/head.svg",
  51735. extra: 1059/762,
  51736. bottom: 0/1059
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(10, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(6 + 5/12, "feet"),
  51753. weight: math.unit(750, "lb"),
  51754. name: "Front",
  51755. image: {
  51756. source: "./media/characters/ruchex/front.svg",
  51757. extra: 877/820,
  51758. bottom: 17/894
  51759. },
  51760. extraAttributes: {
  51761. "width": {
  51762. name: "Width",
  51763. power: 1,
  51764. type: "length",
  51765. base: math.unit(4.757, "feet")
  51766. },
  51767. }
  51768. },
  51769. },
  51770. [
  51771. {
  51772. name: "Normal",
  51773. height: math.unit(6 + 5/12, "feet"),
  51774. default: true
  51775. },
  51776. ]
  51777. ))
  51778. characterMakers.push(() => makeCharacter(
  51779. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51780. {
  51781. dressedFront: {
  51782. height: math.unit(191, "cm"),
  51783. weight: math.unit(80, "kg"),
  51784. name: "Front",
  51785. image: {
  51786. source: "./media/characters/buster/dressed-front.svg",
  51787. extra: 1022/973,
  51788. bottom: 69/1091
  51789. }
  51790. },
  51791. dressedBack: {
  51792. height: math.unit(191, "cm"),
  51793. weight: math.unit(80, "kg"),
  51794. name: "Back",
  51795. image: {
  51796. source: "./media/characters/buster/dressed-back.svg",
  51797. extra: 1018/970,
  51798. bottom: 55/1073
  51799. }
  51800. },
  51801. nudeFront: {
  51802. height: math.unit(191, "cm"),
  51803. weight: math.unit(80, "kg"),
  51804. name: "Front (Nude)",
  51805. image: {
  51806. source: "./media/characters/buster/nude-front.svg",
  51807. extra: 1022/973,
  51808. bottom: 69/1091
  51809. }
  51810. },
  51811. nudeBack: {
  51812. height: math.unit(191, "cm"),
  51813. weight: math.unit(80, "kg"),
  51814. name: "Back (Nude)",
  51815. image: {
  51816. source: "./media/characters/buster/nude-back.svg",
  51817. extra: 1018/970,
  51818. bottom: 55/1073
  51819. }
  51820. },
  51821. dick: {
  51822. height: math.unit(2.59, "feet"),
  51823. name: "Dick",
  51824. image: {
  51825. source: "./media/characters/buster/dick.svg"
  51826. }
  51827. },
  51828. ass: {
  51829. height: math.unit(1.2, "feet"),
  51830. name: "Ass",
  51831. image: {
  51832. source: "./media/characters/buster/ass.svg"
  51833. }
  51834. },
  51835. },
  51836. [
  51837. {
  51838. name: "Normal",
  51839. height: math.unit(191, "cm"),
  51840. default: true
  51841. },
  51842. ]
  51843. ))
  51844. characterMakers.push(() => makeCharacter(
  51845. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51846. {
  51847. side: {
  51848. height: math.unit(8.1, "feet"),
  51849. weight: math.unit(3500, "lb"),
  51850. name: "Side",
  51851. image: {
  51852. source: "./media/characters/sonya/side.svg",
  51853. extra: 1730/1317,
  51854. bottom: 86/1816
  51855. }
  51856. },
  51857. },
  51858. [
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(8.1, "feet"),
  51862. default: true
  51863. },
  51864. ]
  51865. ))
  51866. characterMakers.push(() => makeCharacter(
  51867. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51868. {
  51869. front: {
  51870. height: math.unit(6, "feet"),
  51871. weight: math.unit(150, "lb"),
  51872. name: "Front",
  51873. image: {
  51874. source: "./media/characters/cadence-andrysiak/front.svg",
  51875. extra: 1164/1121,
  51876. bottom: 60/1224
  51877. }
  51878. },
  51879. back: {
  51880. height: math.unit(6, "feet"),
  51881. weight: math.unit(150, "lb"),
  51882. name: "Back",
  51883. image: {
  51884. source: "./media/characters/cadence-andrysiak/back.svg",
  51885. extra: 1200/1165,
  51886. bottom: 9/1209
  51887. }
  51888. },
  51889. dressed: {
  51890. height: math.unit(6, "feet"),
  51891. weight: math.unit(150, "lb"),
  51892. name: "Dressed",
  51893. image: {
  51894. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51895. extra: 1164/1121,
  51896. bottom: 60/1224
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Micro",
  51903. height: math.unit(1, "mm")
  51904. },
  51905. {
  51906. name: "Normal",
  51907. height: math.unit(6, "feet"),
  51908. default: true
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(60, "inches"),
  51917. weight: math.unit(16, "lb"),
  51918. preyCapacity: math.unit(80, "liters"),
  51919. name: "Front",
  51920. image: {
  51921. source: "./media/characters/penny-lynx/front.svg",
  51922. extra: 1959/1769,
  51923. bottom: 49/2008
  51924. }
  51925. },
  51926. },
  51927. [
  51928. {
  51929. name: "Nokia",
  51930. height: math.unit(2, "inches")
  51931. },
  51932. {
  51933. name: "Desktop",
  51934. height: math.unit(24, "inches")
  51935. },
  51936. {
  51937. name: "TV",
  51938. height: math.unit(60, "inches")
  51939. },
  51940. {
  51941. name: "Jumbotron",
  51942. height: math.unit(12, "feet")
  51943. },
  51944. {
  51945. name: "Billboard",
  51946. height: math.unit(48, "feet"),
  51947. default: true
  51948. },
  51949. {
  51950. name: "IMAX",
  51951. height: math.unit(96, "feet")
  51952. },
  51953. {
  51954. name: "SINGULARITY",
  51955. height: math.unit(864938, "miles")
  51956. },
  51957. ]
  51958. ))
  51959. characterMakers.push(() => makeCharacter(
  51960. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51961. {
  51962. front: {
  51963. height: math.unit(5 + 4/12, "feet"),
  51964. weight: math.unit(230, "lb"),
  51965. name: "Front",
  51966. image: {
  51967. source: "./media/characters/sukebe/front.svg",
  51968. extra: 2130/2038,
  51969. bottom: 90/2220
  51970. }
  51971. },
  51972. back: {
  51973. height: math.unit(3.48, "feet"),
  51974. weight: math.unit(230, "lb"),
  51975. name: "Back",
  51976. image: {
  51977. source: "./media/characters/sukebe/back.svg",
  51978. extra: 1670/1604,
  51979. bottom: 0/1670
  51980. }
  51981. },
  51982. },
  51983. [
  51984. {
  51985. name: "Normal",
  51986. height: math.unit(5 + 4/12, "feet"),
  51987. default: true
  51988. },
  51989. ]
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51993. {
  51994. front: {
  51995. height: math.unit(6, "feet"),
  51996. name: "Front",
  51997. image: {
  51998. source: "./media/characters/nylla/front.svg",
  51999. extra: 1868/1699,
  52000. bottom: 97/1965
  52001. }
  52002. },
  52003. back: {
  52004. height: math.unit(6, "feet"),
  52005. name: "Back",
  52006. image: {
  52007. source: "./media/characters/nylla/back.svg",
  52008. extra: 1889/1712,
  52009. bottom: 93/1982
  52010. }
  52011. },
  52012. frontNsfw: {
  52013. height: math.unit(6, "feet"),
  52014. name: "Front (NSFW)",
  52015. image: {
  52016. source: "./media/characters/nylla/front-nsfw.svg",
  52017. extra: 1868/1699,
  52018. bottom: 97/1965
  52019. },
  52020. extraAttributes: {
  52021. "dickLength": {
  52022. name: "Dick Length",
  52023. power: 1,
  52024. type: "length",
  52025. base: math.unit(1.4, "feet")
  52026. },
  52027. "cumVolume": {
  52028. name: "Cum Volume",
  52029. power: 3,
  52030. type: "volume",
  52031. base: math.unit(100, "mL")
  52032. },
  52033. }
  52034. },
  52035. backNsfw: {
  52036. height: math.unit(6, "feet"),
  52037. name: "Back (NSFW)",
  52038. image: {
  52039. source: "./media/characters/nylla/back-nsfw.svg",
  52040. extra: 1889/1712,
  52041. bottom: 93/1982
  52042. }
  52043. },
  52044. maw: {
  52045. height: math.unit(2.10, "feet"),
  52046. name: "Maw",
  52047. image: {
  52048. source: "./media/characters/nylla/maw.svg"
  52049. }
  52050. },
  52051. paws: {
  52052. height: math.unit(2.06, "feet"),
  52053. name: "Paws",
  52054. image: {
  52055. source: "./media/characters/nylla/paws.svg"
  52056. }
  52057. },
  52058. muzzle: {
  52059. height: math.unit(0.61, "feet"),
  52060. name: "Muzzle",
  52061. image: {
  52062. source: "./media/characters/nylla/muzzle.svg"
  52063. }
  52064. },
  52065. sheath: {
  52066. height: math.unit(1.305, "feet"),
  52067. name: "Sheath",
  52068. image: {
  52069. source: "./media/characters/nylla/sheath.svg"
  52070. }
  52071. },
  52072. },
  52073. [
  52074. {
  52075. name: "Micro",
  52076. height: math.unit(7.5, "inches")
  52077. },
  52078. {
  52079. name: "Normal",
  52080. height: math.unit(7, "feet"),
  52081. default: true
  52082. },
  52083. {
  52084. name: "Macro",
  52085. height: math.unit(60, "feet")
  52086. },
  52087. {
  52088. name: "Mega",
  52089. height: math.unit(200, "feet")
  52090. },
  52091. ]
  52092. ))
  52093. characterMakers.push(() => makeCharacter(
  52094. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52095. {
  52096. front: {
  52097. height: math.unit(10, "feet"),
  52098. weight: math.unit(2300, "lb"),
  52099. name: "Front",
  52100. image: {
  52101. source: "./media/characters/hunt3r/front.svg",
  52102. extra: 1909/1742,
  52103. bottom: 46/1955
  52104. }
  52105. },
  52106. },
  52107. [
  52108. {
  52109. name: "Normal",
  52110. height: math.unit(10, "feet"),
  52111. default: true
  52112. },
  52113. ]
  52114. ))
  52115. characterMakers.push(() => makeCharacter(
  52116. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52117. {
  52118. dressed: {
  52119. height: math.unit(11, "feet"),
  52120. weight: math.unit(18500, "lb"),
  52121. preyCapacity: math.unit(9, "people"),
  52122. name: "Dressed",
  52123. image: {
  52124. source: "./media/characters/cylphis/dressed.svg",
  52125. extra: 1028/1003,
  52126. bottom: 75/1103
  52127. },
  52128. },
  52129. undressed: {
  52130. height: math.unit(11, "feet"),
  52131. weight: math.unit(18500, "lb"),
  52132. preyCapacity: math.unit(9, "people"),
  52133. name: "Undressed",
  52134. image: {
  52135. source: "./media/characters/cylphis/undressed.svg",
  52136. extra: 1028/1003,
  52137. bottom: 75/1103
  52138. }
  52139. },
  52140. full: {
  52141. height: math.unit(11, "feet"),
  52142. weight: math.unit(18500 + 150*9, "lb"),
  52143. preyCapacity: math.unit(9, "people"),
  52144. name: "Full",
  52145. image: {
  52146. source: "./media/characters/cylphis/full.svg",
  52147. extra: 1028/1003,
  52148. bottom: 75/1103
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Small",
  52155. height: math.unit(8, "feet")
  52156. },
  52157. {
  52158. name: "Normal",
  52159. height: math.unit(11, "feet"),
  52160. default: true
  52161. },
  52162. ]
  52163. ))
  52164. characterMakers.push(() => makeCharacter(
  52165. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52166. {
  52167. front: {
  52168. height: math.unit(2 + 7/12, "feet"),
  52169. name: "Front",
  52170. image: {
  52171. source: "./media/characters/orishan/front.svg",
  52172. extra: 1058/1023,
  52173. bottom: 23/1081
  52174. }
  52175. },
  52176. back: {
  52177. height: math.unit(2 + 7/12, "feet"),
  52178. name: "Back",
  52179. image: {
  52180. source: "./media/characters/orishan/back.svg",
  52181. extra: 1058/1023,
  52182. bottom: 23/1081
  52183. }
  52184. },
  52185. },
  52186. [
  52187. {
  52188. name: "Micro",
  52189. height: math.unit(2, "cm")
  52190. },
  52191. {
  52192. name: "Normal",
  52193. height: math.unit(2 + 7/12, "feet"),
  52194. default: true
  52195. },
  52196. ]
  52197. ))
  52198. characterMakers.push(() => makeCharacter(
  52199. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52200. {
  52201. front: {
  52202. height: math.unit(3, "meters"),
  52203. weight: math.unit(508, "kg"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/seranis/front.svg",
  52207. extra: 1478/1454,
  52208. bottom: 41/1519
  52209. }
  52210. },
  52211. },
  52212. [
  52213. {
  52214. name: "Normal",
  52215. height: math.unit(3, "meters"),
  52216. default: true
  52217. },
  52218. {
  52219. name: "Macro",
  52220. height: math.unit(108, "meters")
  52221. },
  52222. {
  52223. name: "Megamacro",
  52224. height: math.unit(1250, "meters")
  52225. },
  52226. ]
  52227. ))
  52228. characterMakers.push(() => makeCharacter(
  52229. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52230. {
  52231. undressed: {
  52232. height: math.unit(5 + 3/12, "feet"),
  52233. name: "Undressed",
  52234. image: {
  52235. source: "./media/characters/ankou/undressed.svg",
  52236. extra: 1301/1213,
  52237. bottom: 87/1388
  52238. }
  52239. },
  52240. dressed: {
  52241. height: math.unit(5 + 3/12, "feet"),
  52242. name: "Dressed",
  52243. image: {
  52244. source: "./media/characters/ankou/dressed.svg",
  52245. extra: 1301/1213,
  52246. bottom: 87/1388
  52247. }
  52248. },
  52249. head: {
  52250. height: math.unit(1.61, "feet"),
  52251. name: "Head",
  52252. image: {
  52253. source: "./media/characters/ankou/head.svg"
  52254. }
  52255. },
  52256. },
  52257. [
  52258. {
  52259. name: "Normal",
  52260. height: math.unit(5 + 3/12, "feet"),
  52261. default: true
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52267. {
  52268. side: {
  52269. height: math.unit(6 + 3/12, "feet"),
  52270. weight: math.unit(200, "kg"),
  52271. name: "Side",
  52272. image: {
  52273. source: "./media/characters/juniper-skunktaur/side.svg",
  52274. extra: 1574/1229,
  52275. bottom: 38/1612
  52276. }
  52277. },
  52278. front: {
  52279. height: math.unit(6 + 3/12, "feet"),
  52280. weight: math.unit(200, "kg"),
  52281. name: "Front",
  52282. image: {
  52283. source: "./media/characters/juniper-skunktaur/front.svg",
  52284. extra: 1337/1278,
  52285. bottom: 22/1359
  52286. }
  52287. },
  52288. back: {
  52289. height: math.unit(6 + 3/12, "feet"),
  52290. weight: math.unit(200, "kg"),
  52291. name: "Back",
  52292. image: {
  52293. source: "./media/characters/juniper-skunktaur/back.svg",
  52294. extra: 1618/1273,
  52295. bottom: 13/1631
  52296. }
  52297. },
  52298. top: {
  52299. height: math.unit(2.62, "feet"),
  52300. weight: math.unit(200, "kg"),
  52301. name: "Top",
  52302. image: {
  52303. source: "./media/characters/juniper-skunktaur/top.svg"
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Normal",
  52310. height: math.unit(6 + 3/12, "feet"),
  52311. default: true
  52312. },
  52313. ]
  52314. ))
  52315. characterMakers.push(() => makeCharacter(
  52316. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52317. {
  52318. front: {
  52319. height: math.unit(20.5, "feet"),
  52320. name: "Front",
  52321. image: {
  52322. source: "./media/characters/rei/front.svg",
  52323. extra: 1349/1195,
  52324. bottom: 31/1380
  52325. }
  52326. },
  52327. back: {
  52328. height: math.unit(20.5, "feet"),
  52329. name: "Back",
  52330. image: {
  52331. source: "./media/characters/rei/back.svg",
  52332. extra: 1358/1204,
  52333. bottom: 22/1380
  52334. }
  52335. },
  52336. pawsDigi: {
  52337. height: math.unit(3.45, "feet"),
  52338. name: "Paws (Digi)",
  52339. image: {
  52340. source: "./media/characters/rei/paws-digi.svg"
  52341. }
  52342. },
  52343. pawsPlanti: {
  52344. height: math.unit(3.45, "feet"),
  52345. name: "Paws (Planti)",
  52346. image: {
  52347. source: "./media/characters/rei/paws-planti.svg"
  52348. }
  52349. },
  52350. },
  52351. [
  52352. {
  52353. name: "Normal",
  52354. height: math.unit(20.5, "feet"),
  52355. default: true
  52356. },
  52357. ]
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52361. {
  52362. front: {
  52363. height: math.unit(5 + 11/12, "feet"),
  52364. name: "Front",
  52365. image: {
  52366. source: "./media/characters/carina/front.svg",
  52367. extra: 1720/1449,
  52368. bottom: 14/1734
  52369. }
  52370. },
  52371. back: {
  52372. height: math.unit(5 + 11/12, "feet"),
  52373. name: "Back",
  52374. image: {
  52375. source: "./media/characters/carina/back.svg",
  52376. extra: 1493/1445,
  52377. bottom: 17/1510
  52378. }
  52379. },
  52380. paw: {
  52381. height: math.unit(0.92, "feet"),
  52382. name: "Paw",
  52383. image: {
  52384. source: "./media/characters/carina/paw.svg"
  52385. }
  52386. },
  52387. },
  52388. [
  52389. {
  52390. name: "Normal",
  52391. height: math.unit(5 + 11/12, "feet"),
  52392. default: true
  52393. },
  52394. ]
  52395. ))
  52396. characterMakers.push(() => makeCharacter(
  52397. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52398. {
  52399. front: {
  52400. height: math.unit(4.88, "meters"),
  52401. name: "Front",
  52402. image: {
  52403. source: "./media/characters/maya/front.svg",
  52404. extra: 1222/1145,
  52405. bottom: 57/1279
  52406. }
  52407. },
  52408. },
  52409. [
  52410. {
  52411. name: "Normal",
  52412. height: math.unit(4.88, "meters"),
  52413. default: true
  52414. },
  52415. {
  52416. name: "Macro",
  52417. height: math.unit(38.1, "meters")
  52418. },
  52419. {
  52420. name: "Macro+",
  52421. height: math.unit(152.4, "meters")
  52422. },
  52423. {
  52424. name: "Macro++",
  52425. height: math.unit(16.09, "km")
  52426. },
  52427. {
  52428. name: "Mega-macro",
  52429. height: math.unit(700, "megameters")
  52430. },
  52431. ]
  52432. ))
  52433. characterMakers.push(() => makeCharacter(
  52434. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52435. {
  52436. front: {
  52437. height: math.unit(6 + 2/12, "feet"),
  52438. weight: math.unit(500, "lb"),
  52439. preyCapacity: math.unit(4, "people"),
  52440. name: "Front",
  52441. image: {
  52442. source: "./media/characters/yepir/front.svg"
  52443. }
  52444. },
  52445. side: {
  52446. height: math.unit(6 + 2/12, "feet"),
  52447. weight: math.unit(500, "lb"),
  52448. preyCapacity: math.unit(4, "people"),
  52449. name: "Side",
  52450. image: {
  52451. source: "./media/characters/yepir/side.svg"
  52452. }
  52453. },
  52454. paw: {
  52455. height: math.unit(1.05, "feet"),
  52456. name: "Paw",
  52457. image: {
  52458. source: "./media/characters/yepir/paw.svg"
  52459. }
  52460. },
  52461. },
  52462. [
  52463. {
  52464. name: "Normal",
  52465. height: math.unit(6 + 2/12, "feet"),
  52466. default: true
  52467. },
  52468. ]
  52469. ))
  52470. characterMakers.push(() => makeCharacter(
  52471. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52472. {
  52473. front: {
  52474. height: math.unit(5 + 4/12, "feet"),
  52475. name: "Front",
  52476. image: {
  52477. source: "./media/characters/russec/front.svg",
  52478. extra: 1926/1626,
  52479. bottom: 72/1998
  52480. }
  52481. },
  52482. back: {
  52483. height: math.unit(5 + 4/12, "feet"),
  52484. name: "Back",
  52485. image: {
  52486. source: "./media/characters/russec/back.svg",
  52487. extra: 1910/1591,
  52488. bottom: 48/1958
  52489. }
  52490. },
  52491. },
  52492. [
  52493. {
  52494. name: "Small",
  52495. height: math.unit(5 + 4/12, "feet")
  52496. },
  52497. {
  52498. name: "Normal",
  52499. height: math.unit(72, "feet"),
  52500. default: true
  52501. },
  52502. ]
  52503. ))
  52504. characterMakers.push(() => makeCharacter(
  52505. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52506. {
  52507. side: {
  52508. height: math.unit(12, "feet"),
  52509. name: "Side",
  52510. image: {
  52511. source: "./media/characters/cianus/side.svg",
  52512. extra: 808/526,
  52513. bottom: 61/869
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(12, "feet"),
  52521. default: true
  52522. },
  52523. ]
  52524. ))
  52525. characterMakers.push(() => makeCharacter(
  52526. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52527. {
  52528. front: {
  52529. height: math.unit(9 + 6/12, "feet"),
  52530. weight: math.unit(300, "lb"),
  52531. name: "Front",
  52532. image: {
  52533. source: "./media/characters/ahab/front.svg",
  52534. extra: 1897/1868,
  52535. bottom: 121/2018
  52536. }
  52537. },
  52538. frontNsfw: {
  52539. height: math.unit(9 + 6/12, "feet"),
  52540. weight: math.unit(300, "lb"),
  52541. name: "Front-nsfw",
  52542. image: {
  52543. source: "./media/characters/ahab/front-nsfw.svg",
  52544. extra: 1897/1868,
  52545. bottom: 121/2018
  52546. }
  52547. },
  52548. },
  52549. [
  52550. {
  52551. name: "Normal",
  52552. height: math.unit(9 + 6/12, "feet")
  52553. },
  52554. {
  52555. name: "Macro",
  52556. height: math.unit(657, "feet"),
  52557. default: true
  52558. },
  52559. ]
  52560. ))
  52561. characterMakers.push(() => makeCharacter(
  52562. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52563. {
  52564. front: {
  52565. height: math.unit(2.69, "meters"),
  52566. weight: math.unit(132, "kg"),
  52567. name: "Front",
  52568. image: {
  52569. source: "./media/characters/aarkus/front.svg",
  52570. extra: 1400/1231,
  52571. bottom: 34/1434
  52572. }
  52573. },
  52574. back: {
  52575. height: math.unit(2.69, "meters"),
  52576. weight: math.unit(132, "kg"),
  52577. name: "Back",
  52578. image: {
  52579. source: "./media/characters/aarkus/back.svg",
  52580. extra: 1381/1218,
  52581. bottom: 30/1411
  52582. }
  52583. },
  52584. frontNsfw: {
  52585. height: math.unit(2.69, "meters"),
  52586. weight: math.unit(132, "kg"),
  52587. name: "Front (NSFW)",
  52588. image: {
  52589. source: "./media/characters/aarkus/front-nsfw.svg",
  52590. extra: 1400/1231,
  52591. bottom: 34/1434
  52592. }
  52593. },
  52594. foot: {
  52595. height: math.unit(1.45, "feet"),
  52596. name: "Foot",
  52597. image: {
  52598. source: "./media/characters/aarkus/foot.svg"
  52599. }
  52600. },
  52601. head: {
  52602. height: math.unit(2.85, "feet"),
  52603. name: "Head",
  52604. image: {
  52605. source: "./media/characters/aarkus/head.svg"
  52606. }
  52607. },
  52608. headAlt: {
  52609. height: math.unit(3.07, "feet"),
  52610. name: "Head (Alt)",
  52611. image: {
  52612. source: "./media/characters/aarkus/head-alt.svg"
  52613. }
  52614. },
  52615. mouth: {
  52616. height: math.unit(1.25, "feet"),
  52617. name: "Mouth",
  52618. image: {
  52619. source: "./media/characters/aarkus/mouth.svg"
  52620. }
  52621. },
  52622. dick: {
  52623. height: math.unit(1.77, "feet"),
  52624. name: "Dick",
  52625. image: {
  52626. source: "./media/characters/aarkus/dick.svg"
  52627. }
  52628. },
  52629. },
  52630. [
  52631. {
  52632. name: "Normal",
  52633. height: math.unit(2.69, "meters"),
  52634. default: true
  52635. },
  52636. {
  52637. name: "Macro",
  52638. height: math.unit(269, "meters")
  52639. },
  52640. {
  52641. name: "Macro+",
  52642. height: math.unit(672.5, "meters")
  52643. },
  52644. {
  52645. name: "Megamacro",
  52646. height: math.unit(2.017, "km")
  52647. },
  52648. ]
  52649. ))
  52650. characterMakers.push(() => makeCharacter(
  52651. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52652. {
  52653. front: {
  52654. height: math.unit(23.47, "cm"),
  52655. weight: math.unit(600, "grams"),
  52656. name: "Front",
  52657. image: {
  52658. source: "./media/characters/diode/front.svg",
  52659. extra: 1778/1396,
  52660. bottom: 95/1873
  52661. }
  52662. },
  52663. side: {
  52664. height: math.unit(23.47, "cm"),
  52665. weight: math.unit(600, "grams"),
  52666. name: "Side",
  52667. image: {
  52668. source: "./media/characters/diode/side.svg",
  52669. extra: 1831/1404,
  52670. bottom: 86/1917
  52671. }
  52672. },
  52673. wings: {
  52674. height: math.unit(0.683, "feet"),
  52675. name: "Wings",
  52676. image: {
  52677. source: "./media/characters/diode/wings.svg"
  52678. }
  52679. },
  52680. },
  52681. [
  52682. {
  52683. name: "Normal",
  52684. height: math.unit(23.47, "cm"),
  52685. default: true
  52686. },
  52687. ]
  52688. ))
  52689. characterMakers.push(() => makeCharacter(
  52690. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52691. {
  52692. front: {
  52693. height: math.unit(6 + 3/12, "feet"),
  52694. weight: math.unit(250, "lb"),
  52695. name: "Front",
  52696. image: {
  52697. source: "./media/characters/reika/front.svg",
  52698. extra: 1120/1078,
  52699. bottom: 86/1206
  52700. }
  52701. },
  52702. },
  52703. [
  52704. {
  52705. name: "Normal",
  52706. height: math.unit(6 + 3/12, "feet"),
  52707. default: true
  52708. },
  52709. ]
  52710. ))
  52711. characterMakers.push(() => makeCharacter(
  52712. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52713. {
  52714. front: {
  52715. height: math.unit(16 + 8/12, "feet"),
  52716. weight: math.unit(9000, "lb"),
  52717. name: "Front",
  52718. image: {
  52719. source: "./media/characters/lokuto-takama/front.svg",
  52720. extra: 1774/1632,
  52721. bottom: 147/1921
  52722. },
  52723. extraAttributes: {
  52724. "bustWidth": {
  52725. name: "Bust Width",
  52726. power: 1,
  52727. type: "length",
  52728. base: math.unit(2.4, "meters")
  52729. },
  52730. "breastWeight": {
  52731. name: "Breast Weight",
  52732. power: 3,
  52733. type: "mass",
  52734. base: math.unit(1000, "kg")
  52735. },
  52736. }
  52737. },
  52738. },
  52739. [
  52740. {
  52741. name: "Normal",
  52742. height: math.unit(16 + 8/12, "feet"),
  52743. default: true
  52744. },
  52745. ]
  52746. ))
  52747. characterMakers.push(() => makeCharacter(
  52748. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52749. {
  52750. front: {
  52751. height: math.unit(10, "cm"),
  52752. weight: math.unit(850, "grams"),
  52753. name: "Front",
  52754. image: {
  52755. source: "./media/characters/owak-bone/front.svg",
  52756. extra: 1965/1801,
  52757. bottom: 31/1996
  52758. }
  52759. },
  52760. },
  52761. [
  52762. {
  52763. name: "Normal",
  52764. height: math.unit(10, "cm"),
  52765. default: true
  52766. },
  52767. ]
  52768. ))
  52769. characterMakers.push(() => makeCharacter(
  52770. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52771. {
  52772. front: {
  52773. height: math.unit(2 + 6/12, "feet"),
  52774. weight: math.unit(9, "lb"),
  52775. name: "Front",
  52776. image: {
  52777. source: "./media/characters/muffin/front.svg",
  52778. extra: 1220/1195,
  52779. bottom: 84/1304
  52780. }
  52781. },
  52782. },
  52783. [
  52784. {
  52785. name: "Normal",
  52786. height: math.unit(2 + 6/12, "feet"),
  52787. default: true
  52788. },
  52789. ]
  52790. ))
  52791. characterMakers.push(() => makeCharacter(
  52792. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52793. {
  52794. front: {
  52795. height: math.unit(7, "feet"),
  52796. name: "Front",
  52797. image: {
  52798. source: "./media/characters/chimera/front.svg",
  52799. extra: 1752/1614,
  52800. bottom: 68/1820
  52801. }
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Normal",
  52807. height: math.unit(7, "feet")
  52808. },
  52809. {
  52810. name: "Gigamacro",
  52811. height: math.unit(2.9, "gigameters"),
  52812. default: true
  52813. },
  52814. {
  52815. name: "Universal",
  52816. height: math.unit(1.56e26, "yottameters")
  52817. },
  52818. ]
  52819. ))
  52820. characterMakers.push(() => makeCharacter(
  52821. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52822. {
  52823. front: {
  52824. height: math.unit(3, "feet"),
  52825. weight: math.unit(20, "lb"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/kit-fennec-fox/front.svg",
  52829. extra: 1027/932,
  52830. bottom: 16/1043
  52831. }
  52832. },
  52833. back: {
  52834. height: math.unit(3, "feet"),
  52835. weight: math.unit(20, "lb"),
  52836. name: "Back",
  52837. image: {
  52838. source: "./media/characters/kit-fennec-fox/back.svg",
  52839. extra: 1027/932,
  52840. bottom: 16/1043
  52841. }
  52842. },
  52843. },
  52844. [
  52845. {
  52846. name: "Normal",
  52847. height: math.unit(3, "feet"),
  52848. default: true
  52849. },
  52850. ]
  52851. ))
  52852. characterMakers.push(() => makeCharacter(
  52853. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52854. {
  52855. front: {
  52856. height: math.unit(167, "cm"),
  52857. name: "Front",
  52858. image: {
  52859. source: "./media/characters/blue-otter/front.svg",
  52860. extra: 1951/1920,
  52861. bottom: 31/1982
  52862. }
  52863. },
  52864. },
  52865. [
  52866. {
  52867. name: "Otter-Sized",
  52868. height: math.unit(100, "cm")
  52869. },
  52870. {
  52871. name: "Normal",
  52872. height: math.unit(167, "cm"),
  52873. default: true
  52874. },
  52875. ]
  52876. ))
  52877. characterMakers.push(() => makeCharacter(
  52878. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52879. {
  52880. front: {
  52881. height: math.unit(4 + 4/12, "feet"),
  52882. name: "Front",
  52883. image: {
  52884. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52885. extra: 1072/1067,
  52886. bottom: 117/1189
  52887. }
  52888. },
  52889. back: {
  52890. height: math.unit(4 + 4/12, "feet"),
  52891. name: "Back",
  52892. image: {
  52893. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52894. extra: 1135/1129,
  52895. bottom: 57/1192
  52896. }
  52897. },
  52898. head: {
  52899. height: math.unit(1.77, "feet"),
  52900. name: "Head",
  52901. image: {
  52902. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52903. }
  52904. },
  52905. },
  52906. [
  52907. {
  52908. name: "Normal",
  52909. height: math.unit(4 + 4/12, "feet"),
  52910. default: true
  52911. },
  52912. ]
  52913. ))
  52914. characterMakers.push(() => makeCharacter(
  52915. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52916. {
  52917. front: {
  52918. height: math.unit(2, "inches"),
  52919. name: "Front",
  52920. image: {
  52921. source: "./media/characters/carley-hartford/front.svg",
  52922. extra: 1035/988,
  52923. bottom: 23/1058
  52924. }
  52925. },
  52926. back: {
  52927. height: math.unit(2, "inches"),
  52928. name: "Back",
  52929. image: {
  52930. source: "./media/characters/carley-hartford/back.svg",
  52931. extra: 1035/988,
  52932. bottom: 23/1058
  52933. }
  52934. },
  52935. dressed: {
  52936. height: math.unit(2, "inches"),
  52937. name: "Dressed",
  52938. image: {
  52939. source: "./media/characters/carley-hartford/dressed.svg",
  52940. extra: 651/620,
  52941. bottom: 0/651
  52942. }
  52943. },
  52944. },
  52945. [
  52946. {
  52947. name: "Micro",
  52948. height: math.unit(2, "inches"),
  52949. default: true
  52950. },
  52951. {
  52952. name: "Macro",
  52953. height: math.unit(6 + 3/12, "feet")
  52954. },
  52955. ]
  52956. ))
  52957. characterMakers.push(() => makeCharacter(
  52958. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52959. {
  52960. front: {
  52961. height: math.unit(2 + 3/12, "feet"),
  52962. weight: math.unit(15 + 7/16, "lb"),
  52963. name: "Front",
  52964. image: {
  52965. source: "./media/characters/duke/front.svg",
  52966. extra: 910/815,
  52967. bottom: 30/940
  52968. }
  52969. },
  52970. },
  52971. [
  52972. {
  52973. name: "Normal",
  52974. height: math.unit(2 + 3/12, "feet"),
  52975. default: true
  52976. },
  52977. ]
  52978. ))
  52979. characterMakers.push(() => makeCharacter(
  52980. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52981. {
  52982. front: {
  52983. height: math.unit(5 + 4/12, "feet"),
  52984. weight: math.unit(156, "lb"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/dein/front.svg",
  52988. extra: 855/815,
  52989. bottom: 48/903
  52990. }
  52991. },
  52992. side: {
  52993. height: math.unit(5 + 4/12, "feet"),
  52994. weight: math.unit(156, "lb"),
  52995. name: "side",
  52996. image: {
  52997. source: "./media/characters/dein/side.svg",
  52998. extra: 846/803,
  52999. bottom: 25/871
  53000. }
  53001. },
  53002. maw: {
  53003. height: math.unit(1.45, "feet"),
  53004. name: "Maw",
  53005. image: {
  53006. source: "./media/characters/dein/maw.svg"
  53007. }
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Ferret Sized",
  53013. height: math.unit(2 + 5/12, "feet")
  53014. },
  53015. {
  53016. name: "Normal",
  53017. height: math.unit(5 + 4/12, "feet"),
  53018. default: true
  53019. },
  53020. ]
  53021. ))
  53022. characterMakers.push(() => makeCharacter(
  53023. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53024. {
  53025. front: {
  53026. height: math.unit(84 + 8/12, "feet"),
  53027. weight: math.unit(942180, "lb"),
  53028. name: "Front",
  53029. image: {
  53030. source: "./media/characters/daurine-arima/front.svg",
  53031. extra: 1989/1782,
  53032. bottom: 37/2026
  53033. }
  53034. },
  53035. side: {
  53036. height: math.unit(84 + 8/12, "feet"),
  53037. weight: math.unit(942180, "lb"),
  53038. name: "Side",
  53039. image: {
  53040. source: "./media/characters/daurine-arima/side.svg",
  53041. extra: 1997/1790,
  53042. bottom: 21/2018
  53043. }
  53044. },
  53045. back: {
  53046. height: math.unit(84 + 8/12, "feet"),
  53047. weight: math.unit(942180, "lb"),
  53048. name: "Back",
  53049. image: {
  53050. source: "./media/characters/daurine-arima/back.svg",
  53051. extra: 1992/1800,
  53052. bottom: 12/2004
  53053. }
  53054. },
  53055. head: {
  53056. height: math.unit(15.5, "feet"),
  53057. name: "Head",
  53058. image: {
  53059. source: "./media/characters/daurine-arima/head.svg"
  53060. }
  53061. },
  53062. headAlt: {
  53063. height: math.unit(19.19, "feet"),
  53064. name: "Head (Alt)",
  53065. image: {
  53066. source: "./media/characters/daurine-arima/head-alt.svg"
  53067. }
  53068. },
  53069. },
  53070. [
  53071. {
  53072. name: "Minimum height",
  53073. height: math.unit(8 + 10/12, "feet")
  53074. },
  53075. {
  53076. name: "Comfort height",
  53077. height: math.unit(19 + 6 /12, "feet")
  53078. },
  53079. {
  53080. name: "\"Normal\" height",
  53081. height: math.unit(28 + 10/12, "feet")
  53082. },
  53083. {
  53084. name: "Base height",
  53085. height: math.unit(84 + 8/12, "feet"),
  53086. default: true
  53087. },
  53088. {
  53089. name: "Mini-macro",
  53090. height: math.unit(2360, "feet")
  53091. },
  53092. {
  53093. name: "Macro",
  53094. height: math.unit(10, "miles")
  53095. },
  53096. {
  53097. name: "Goddess",
  53098. height: math.unit(9.99e40, "yottameters")
  53099. },
  53100. ]
  53101. ))
  53102. characterMakers.push(() => makeCharacter(
  53103. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53104. {
  53105. front: {
  53106. height: math.unit(2.3, "meters"),
  53107. name: "Front",
  53108. image: {
  53109. source: "./media/characters/cilenomon/front.svg",
  53110. extra: 1963/1778,
  53111. bottom: 54/2017
  53112. }
  53113. },
  53114. },
  53115. [
  53116. {
  53117. name: "Normal",
  53118. height: math.unit(2.3, "meters"),
  53119. default: true
  53120. },
  53121. {
  53122. name: "Big",
  53123. height: math.unit(5, "meters")
  53124. },
  53125. {
  53126. name: "Macro",
  53127. height: math.unit(30, "meters")
  53128. },
  53129. {
  53130. name: "True",
  53131. height: math.unit(1, "universe")
  53132. },
  53133. ]
  53134. ))
  53135. characterMakers.push(() => makeCharacter(
  53136. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53137. {
  53138. front: {
  53139. height: math.unit(5, "feet"),
  53140. name: "Front",
  53141. image: {
  53142. source: "./media/characters/sen-mink/front.svg",
  53143. extra: 1727/1675,
  53144. bottom: 35/1762
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(5, "feet"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53158. {
  53159. front: {
  53160. height: math.unit(5.42999, "feet"),
  53161. weight: math.unit(100, "lb"),
  53162. name: "Front",
  53163. image: {
  53164. source: "./media/characters/ophois/front.svg",
  53165. extra: 1429/1286,
  53166. bottom: 60/1489
  53167. }
  53168. },
  53169. },
  53170. [
  53171. {
  53172. name: "Normal",
  53173. height: math.unit(5.42999, "feet"),
  53174. default: true
  53175. },
  53176. ]
  53177. ))
  53178. characterMakers.push(() => makeCharacter(
  53179. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53180. {
  53181. front: {
  53182. height: math.unit(2, "meters"),
  53183. name: "Front",
  53184. image: {
  53185. source: "./media/characters/riley/front.svg",
  53186. extra: 1779/1754,
  53187. bottom: 139/1918
  53188. }
  53189. },
  53190. },
  53191. [
  53192. {
  53193. name: "Normal",
  53194. height: math.unit(2, "meters"),
  53195. default: true
  53196. },
  53197. ]
  53198. ))
  53199. characterMakers.push(() => makeCharacter(
  53200. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53201. {
  53202. front: {
  53203. height: math.unit(6 + 2/12, "feet"),
  53204. weight: math.unit(195, "lb"),
  53205. preyCapacity: math.unit(6, "people"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/shuken-flash/front.svg",
  53209. extra: 1905/1739,
  53210. bottom: 65/1970
  53211. }
  53212. },
  53213. back: {
  53214. height: math.unit(6 + 2/12, "feet"),
  53215. weight: math.unit(195, "lb"),
  53216. preyCapacity: math.unit(6, "people"),
  53217. name: "Back",
  53218. image: {
  53219. source: "./media/characters/shuken-flash/back.svg",
  53220. extra: 1912/1751,
  53221. bottom: 13/1925
  53222. }
  53223. },
  53224. },
  53225. [
  53226. {
  53227. name: "Normal",
  53228. height: math.unit(6 + 2/12, "feet"),
  53229. default: true
  53230. },
  53231. ]
  53232. ))
  53233. characterMakers.push(() => makeCharacter(
  53234. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53235. {
  53236. front: {
  53237. height: math.unit(5 + 9/12, "feet"),
  53238. weight: math.unit(150, "lb"),
  53239. name: "Front",
  53240. image: {
  53241. source: "./media/characters/plat/front.svg",
  53242. extra: 1816/1703,
  53243. bottom: 43/1859
  53244. }
  53245. },
  53246. side: {
  53247. height: math.unit(5 + 9/12, "feet"),
  53248. weight: math.unit(300, "lb"),
  53249. name: "Side",
  53250. image: {
  53251. source: "./media/characters/plat/side.svg",
  53252. extra: 1824/1699,
  53253. bottom: 18/1842
  53254. }
  53255. },
  53256. },
  53257. [
  53258. {
  53259. name: "Normal",
  53260. height: math.unit(5 + 9/12, "feet"),
  53261. default: true
  53262. },
  53263. ]
  53264. ))
  53265. characterMakers.push(() => makeCharacter(
  53266. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53267. {
  53268. front: {
  53269. height: math.unit(9, "feet"),
  53270. weight: math.unit(1800, "lb"),
  53271. name: "Front",
  53272. image: {
  53273. source: "./media/characters/elaine/front.svg",
  53274. extra: 1833/1354,
  53275. bottom: 25/1858
  53276. }
  53277. },
  53278. back: {
  53279. height: math.unit(8.8, "feet"),
  53280. weight: math.unit(1800, "lb"),
  53281. name: "Back",
  53282. image: {
  53283. source: "./media/characters/elaine/back.svg",
  53284. extra: 1641/1233,
  53285. bottom: 53/1694
  53286. }
  53287. },
  53288. },
  53289. [
  53290. {
  53291. name: "Normal",
  53292. height: math.unit(9, "feet"),
  53293. default: true
  53294. },
  53295. ]
  53296. ))
  53297. characterMakers.push(() => makeCharacter(
  53298. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53299. {
  53300. front: {
  53301. height: math.unit(17 + 9/12, "feet"),
  53302. weight: math.unit(8000, "lb"),
  53303. name: "Front",
  53304. image: {
  53305. source: "./media/characters/vera-raven/front.svg",
  53306. extra: 1457/1412,
  53307. bottom: 121/1578
  53308. }
  53309. },
  53310. side: {
  53311. height: math.unit(17 + 9/12, "feet"),
  53312. weight: math.unit(8000, "lb"),
  53313. name: "Side",
  53314. image: {
  53315. source: "./media/characters/vera-raven/side.svg",
  53316. extra: 1510/1464,
  53317. bottom: 54/1564
  53318. }
  53319. },
  53320. },
  53321. [
  53322. {
  53323. name: "Normal",
  53324. height: math.unit(17 + 9/12, "feet"),
  53325. default: true
  53326. },
  53327. ]
  53328. ))
  53329. characterMakers.push(() => makeCharacter(
  53330. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53331. {
  53332. dressed: {
  53333. height: math.unit(6 + 9/12, "feet"),
  53334. name: "Dressed",
  53335. image: {
  53336. source: "./media/characters/nakisha/dressed.svg",
  53337. extra: 1909/1757,
  53338. bottom: 48/1957
  53339. }
  53340. },
  53341. nude: {
  53342. height: math.unit(6 + 9/12, "feet"),
  53343. name: "Nude",
  53344. image: {
  53345. source: "./media/characters/nakisha/nude.svg",
  53346. extra: 1917/1765,
  53347. bottom: 34/1951
  53348. }
  53349. },
  53350. },
  53351. [
  53352. {
  53353. name: "Normal",
  53354. height: math.unit(6 + 9/12, "feet"),
  53355. default: true
  53356. },
  53357. ]
  53358. ))
  53359. characterMakers.push(() => makeCharacter(
  53360. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53361. {
  53362. front: {
  53363. height: math.unit(87, "meters"),
  53364. name: "Front",
  53365. image: {
  53366. source: "./media/characters/serafin/front.svg",
  53367. extra: 1919/1776,
  53368. bottom: 65/1984
  53369. }
  53370. },
  53371. },
  53372. [
  53373. {
  53374. name: "Normal",
  53375. height: math.unit(87, "meters"),
  53376. default: true
  53377. },
  53378. ]
  53379. ))
  53380. characterMakers.push(() => makeCharacter(
  53381. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53382. {
  53383. front: {
  53384. height: math.unit(6, "feet"),
  53385. weight: math.unit(200, "lb"),
  53386. name: "Front",
  53387. image: {
  53388. source: "./media/characters/poptart/front.svg",
  53389. extra: 615/583,
  53390. bottom: 23/638
  53391. }
  53392. },
  53393. back: {
  53394. height: math.unit(6, "feet"),
  53395. weight: math.unit(200, "lb"),
  53396. name: "Back",
  53397. image: {
  53398. source: "./media/characters/poptart/back.svg",
  53399. extra: 617/584,
  53400. bottom: 22/639
  53401. }
  53402. },
  53403. frontNsfw: {
  53404. height: math.unit(6, "feet"),
  53405. weight: math.unit(200, "lb"),
  53406. name: "Front (NSFW)",
  53407. image: {
  53408. source: "./media/characters/poptart/front-nsfw.svg",
  53409. extra: 615/583,
  53410. bottom: 23/638
  53411. }
  53412. },
  53413. backNsfw: {
  53414. height: math.unit(6, "feet"),
  53415. weight: math.unit(200, "lb"),
  53416. name: "Back (NSFW)",
  53417. image: {
  53418. source: "./media/characters/poptart/back-nsfw.svg",
  53419. extra: 617/584,
  53420. bottom: 22/639
  53421. }
  53422. },
  53423. hand: {
  53424. height: math.unit(1.14, "feet"),
  53425. name: "Hand",
  53426. image: {
  53427. source: "./media/characters/poptart/hand.svg"
  53428. }
  53429. },
  53430. foot: {
  53431. height: math.unit(1.5, "feet"),
  53432. name: "Foot",
  53433. image: {
  53434. source: "./media/characters/poptart/foot.svg"
  53435. }
  53436. },
  53437. },
  53438. [
  53439. {
  53440. name: "Normal",
  53441. height: math.unit(6, "feet"),
  53442. default: true
  53443. },
  53444. {
  53445. name: "Grande",
  53446. height: math.unit(350, "feet")
  53447. },
  53448. {
  53449. name: "Massif",
  53450. height: math.unit(967, "feet")
  53451. },
  53452. ]
  53453. ))
  53454. characterMakers.push(() => makeCharacter(
  53455. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53456. {
  53457. hyenaSide: {
  53458. height: math.unit(120, "cm"),
  53459. weight: math.unit(120, "lb"),
  53460. name: "Side",
  53461. image: {
  53462. source: "./media/characters/trance/hyena-side.svg",
  53463. extra: 998/904,
  53464. bottom: 76/1074
  53465. }
  53466. },
  53467. },
  53468. [
  53469. {
  53470. name: "Normal",
  53471. height: math.unit(120, "cm"),
  53472. default: true
  53473. },
  53474. {
  53475. name: "Dire",
  53476. height: math.unit(230, "cm")
  53477. },
  53478. {
  53479. name: "Macro",
  53480. height: math.unit(37, "feet")
  53481. },
  53482. ]
  53483. ))
  53484. characterMakers.push(() => makeCharacter(
  53485. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53486. {
  53487. front: {
  53488. height: math.unit(6 + 3/12, "feet"),
  53489. name: "Front",
  53490. image: {
  53491. source: "./media/characters/michael-berretta/front.svg",
  53492. extra: 515/494,
  53493. bottom: 20/535
  53494. }
  53495. },
  53496. back: {
  53497. height: math.unit(6 + 3/12, "feet"),
  53498. name: "Back",
  53499. image: {
  53500. source: "./media/characters/michael-berretta/back.svg",
  53501. extra: 520/497,
  53502. bottom: 21/541
  53503. }
  53504. },
  53505. frontNsfw: {
  53506. height: math.unit(6 + 3/12, "feet"),
  53507. name: "Front (NSFW)",
  53508. image: {
  53509. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53510. extra: 515/494,
  53511. bottom: 20/535
  53512. }
  53513. },
  53514. dick: {
  53515. height: math.unit(1, "feet"),
  53516. name: "Dick",
  53517. image: {
  53518. source: "./media/characters/michael-berretta/dick.svg"
  53519. }
  53520. },
  53521. },
  53522. [
  53523. {
  53524. name: "Normal",
  53525. height: math.unit(6 + 3/12, "feet"),
  53526. default: true
  53527. },
  53528. {
  53529. name: "Big",
  53530. height: math.unit(12, "feet")
  53531. },
  53532. {
  53533. name: "Macro",
  53534. height: math.unit(187.5, "feet")
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(9 + 9/12, "feet"),
  53543. weight: math.unit(1244, "lb"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/stella-edgecomb/front.svg",
  53547. extra: 1835/1706,
  53548. bottom: 49/1884
  53549. }
  53550. },
  53551. pen: {
  53552. height: math.unit(0.95, "feet"),
  53553. name: "Pen",
  53554. image: {
  53555. source: "./media/characters/stella-edgecomb/pen.svg"
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Cozy Bear",
  53562. height: math.unit(0.5, "inches")
  53563. },
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(9 + 9/12, "feet"),
  53567. default: true
  53568. },
  53569. {
  53570. name: "Giga Bear",
  53571. height: math.unit(1, "mile")
  53572. },
  53573. {
  53574. name: "Great Bear",
  53575. height: math.unit(53, "miles")
  53576. },
  53577. {
  53578. name: "Goddess Bear",
  53579. height: math.unit(40000, "miles")
  53580. },
  53581. {
  53582. name: "Sun Bear",
  53583. height: math.unit(900000, "miles")
  53584. },
  53585. ]
  53586. ))
  53587. characterMakers.push(() => makeCharacter(
  53588. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53589. {
  53590. anthroFront: {
  53591. height: math.unit(556, "cm"),
  53592. weight: math.unit(2650, "kg"),
  53593. preyCapacity: math.unit(3, "people"),
  53594. name: "Front",
  53595. image: {
  53596. source: "./media/characters/ash´iika/front.svg",
  53597. extra: 710/673,
  53598. bottom: 15/725
  53599. },
  53600. form: "anthro",
  53601. default: true
  53602. },
  53603. anthroSide: {
  53604. height: math.unit(556, "cm"),
  53605. weight: math.unit(2650, "kg"),
  53606. preyCapacity: math.unit(3, "people"),
  53607. name: "Side",
  53608. image: {
  53609. source: "./media/characters/ash´iika/side.svg",
  53610. extra: 696/676,
  53611. bottom: 13/709
  53612. },
  53613. form: "anthro"
  53614. },
  53615. anthroDressed: {
  53616. height: math.unit(556, "cm"),
  53617. weight: math.unit(2650, "kg"),
  53618. preyCapacity: math.unit(3, "people"),
  53619. name: "Dressed",
  53620. image: {
  53621. source: "./media/characters/ash´iika/dressed.svg",
  53622. extra: 710/673,
  53623. bottom: 15/725
  53624. },
  53625. form: "anthro"
  53626. },
  53627. anthroHead: {
  53628. height: math.unit(3.5, "feet"),
  53629. name: "Head",
  53630. image: {
  53631. source: "./media/characters/ash´iika/head.svg",
  53632. extra: 348/291,
  53633. bottom: 45/393
  53634. },
  53635. form: "anthro"
  53636. },
  53637. feralSide: {
  53638. height: math.unit(870, "cm"),
  53639. weight: math.unit(17500, "kg"),
  53640. preyCapacity: math.unit(15, "people"),
  53641. name: "Side",
  53642. image: {
  53643. source: "./media/characters/ash´iika/feral.svg",
  53644. extra: 595/199,
  53645. bottom: 7/602
  53646. },
  53647. form: "feral",
  53648. default: true,
  53649. },
  53650. },
  53651. [
  53652. {
  53653. name: "Normal",
  53654. height: math.unit(556, "cm"),
  53655. default: true,
  53656. form: "anthro"
  53657. },
  53658. {
  53659. name: "Macro",
  53660. height: math.unit(88, "meters"),
  53661. form: "anthro"
  53662. },
  53663. {
  53664. name: "Normal",
  53665. height: math.unit(870, "cm"),
  53666. default: true,
  53667. form: "feral"
  53668. },
  53669. {
  53670. name: "Large",
  53671. height: math.unit(25, "meters"),
  53672. form: "feral"
  53673. },
  53674. ],
  53675. {
  53676. "anthro": {
  53677. name: "Anthro",
  53678. default: true
  53679. },
  53680. "feral": {
  53681. name: "Feral",
  53682. },
  53683. }
  53684. ))
  53685. characterMakers.push(() => makeCharacter(
  53686. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53687. {
  53688. front: {
  53689. height: math.unit(10, "feet"),
  53690. weight: math.unit(800, "lb"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/yen/front.svg",
  53694. extra: 443/411,
  53695. bottom: 6/449
  53696. }
  53697. },
  53698. sleeping: {
  53699. height: math.unit(10, "feet"),
  53700. weight: math.unit(800, "lb"),
  53701. name: "Sleeping",
  53702. image: {
  53703. source: "./media/characters/yen/sleeping.svg",
  53704. extra: 470/422,
  53705. bottom: 0/470
  53706. }
  53707. },
  53708. head: {
  53709. height: math.unit(2.2, "feet"),
  53710. name: "Head",
  53711. image: {
  53712. source: "./media/characters/yen/head.svg"
  53713. }
  53714. },
  53715. headAlt: {
  53716. height: math.unit(2.1, "feet"),
  53717. name: "Head (Alt)",
  53718. image: {
  53719. source: "./media/characters/yen/head-alt.svg"
  53720. }
  53721. },
  53722. },
  53723. [
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(10, "feet"),
  53727. default: true
  53728. },
  53729. ]
  53730. ))
  53731. characterMakers.push(() => makeCharacter(
  53732. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53733. {
  53734. front: {
  53735. height: math.unit(12, "feet"),
  53736. name: "Front",
  53737. image: {
  53738. source: "./media/characters/citra/front.svg",
  53739. extra: 1950/1710,
  53740. bottom: 47/1997
  53741. }
  53742. },
  53743. },
  53744. [
  53745. {
  53746. name: "Normal",
  53747. height: math.unit(12, "feet"),
  53748. default: true
  53749. },
  53750. ]
  53751. ))
  53752. characterMakers.push(() => makeCharacter(
  53753. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53754. {
  53755. side: {
  53756. height: math.unit(7 + 10/12, "feet"),
  53757. name: "Side",
  53758. image: {
  53759. source: "./media/characters/sholstim/side.svg",
  53760. extra: 786/682,
  53761. bottom: 40/826
  53762. }
  53763. },
  53764. },
  53765. [
  53766. {
  53767. name: "Normal",
  53768. height: math.unit(7 + 10/12, "feet"),
  53769. default: true
  53770. },
  53771. ]
  53772. ))
  53773. characterMakers.push(() => makeCharacter(
  53774. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53775. {
  53776. front: {
  53777. height: math.unit(3.10, "meters"),
  53778. name: "Front",
  53779. image: {
  53780. source: "./media/characters/aggyn/front.svg",
  53781. extra: 1188/963,
  53782. bottom: 24/1212
  53783. }
  53784. },
  53785. },
  53786. [
  53787. {
  53788. name: "Normal",
  53789. height: math.unit(3.10, "meters"),
  53790. default: true
  53791. },
  53792. ]
  53793. ))
  53794. characterMakers.push(() => makeCharacter(
  53795. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53796. {
  53797. front: {
  53798. height: math.unit(7 + 5/12, "feet"),
  53799. weight: math.unit(687, "lb"),
  53800. name: "Front",
  53801. image: {
  53802. source: "./media/characters/alsandair-hergenroether/front.svg",
  53803. extra: 1251/1186,
  53804. bottom: 75/1326
  53805. }
  53806. },
  53807. back: {
  53808. height: math.unit(7 + 5/12, "feet"),
  53809. weight: math.unit(687, "lb"),
  53810. name: "Back",
  53811. image: {
  53812. source: "./media/characters/alsandair-hergenroether/back.svg",
  53813. extra: 1290/1229,
  53814. bottom: 17/1307
  53815. }
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Max Compression",
  53821. height: math.unit(7 + 5/12, "feet"),
  53822. default: true
  53823. },
  53824. {
  53825. name: "\"Normal\"",
  53826. height: math.unit(2, "universes")
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53832. {
  53833. front: {
  53834. height: math.unit(4 + 1/12, "feet"),
  53835. weight: math.unit(92, "lb"),
  53836. name: "Front",
  53837. image: {
  53838. source: "./media/characters/ie/front.svg",
  53839. extra: 1585/1352,
  53840. bottom: 91/1676
  53841. }
  53842. },
  53843. },
  53844. [
  53845. {
  53846. name: "Normal",
  53847. height: math.unit(4 + 1/12, "feet"),
  53848. default: true
  53849. },
  53850. ]
  53851. ))
  53852. characterMakers.push(() => makeCharacter(
  53853. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53854. {
  53855. anthro: {
  53856. height: math.unit(6, "feet"),
  53857. weight: math.unit(150, "lb"),
  53858. name: "Front",
  53859. image: {
  53860. source: "./media/characters/willow/anthro.svg",
  53861. extra: 1073/986,
  53862. bottom: 34/1107
  53863. },
  53864. form: "anthro",
  53865. default: true
  53866. },
  53867. taur: {
  53868. height: math.unit(6, "feet"),
  53869. weight: math.unit(150, "lb"),
  53870. name: "Side",
  53871. image: {
  53872. source: "./media/characters/willow/taur.svg",
  53873. extra: 647/512,
  53874. bottom: 136/783
  53875. },
  53876. form: "taur",
  53877. default: true
  53878. },
  53879. },
  53880. [
  53881. {
  53882. name: "Humanoid",
  53883. height: math.unit(2.7, "meters"),
  53884. form: "anthro"
  53885. },
  53886. {
  53887. name: "Normal",
  53888. height: math.unit(9, "meters"),
  53889. form: "anthro",
  53890. default: true
  53891. },
  53892. {
  53893. name: "Humanoid",
  53894. height: math.unit(2.1, "meters"),
  53895. form: "taur"
  53896. },
  53897. {
  53898. name: "Normal",
  53899. height: math.unit(7, "meters"),
  53900. form: "taur",
  53901. default: true
  53902. },
  53903. ],
  53904. {
  53905. "anthro": {
  53906. name: "Anthro",
  53907. default: true
  53908. },
  53909. "taur": {
  53910. name: "Taur",
  53911. },
  53912. }
  53913. ))
  53914. characterMakers.push(() => makeCharacter(
  53915. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53916. {
  53917. front: {
  53918. height: math.unit(2 + 5/12, "feet"),
  53919. name: "Front",
  53920. image: {
  53921. source: "./media/characters/kyan/front.svg",
  53922. extra: 460/334,
  53923. bottom: 23/483
  53924. },
  53925. extraAttributes: {
  53926. "toeLength": {
  53927. name: "Toe Length",
  53928. power: 1,
  53929. type: "length",
  53930. base: math.unit(7, "cm")
  53931. },
  53932. "toeclawLength": {
  53933. name: "Toeclaw Length",
  53934. power: 1,
  53935. type: "length",
  53936. base: math.unit(4.7, "cm")
  53937. },
  53938. "earHeight": {
  53939. name: "Ear Height",
  53940. power: 1,
  53941. type: "length",
  53942. base: math.unit(14.1, "cm")
  53943. },
  53944. }
  53945. },
  53946. paws: {
  53947. height: math.unit(0.45, "feet"),
  53948. name: "Paws",
  53949. image: {
  53950. source: "./media/characters/kyan/paws.svg",
  53951. extra: 581/581,
  53952. bottom: 114/695
  53953. }
  53954. },
  53955. },
  53956. [
  53957. {
  53958. name: "Normal",
  53959. height: math.unit(2 + 5/12, "feet"),
  53960. default: true
  53961. },
  53962. ]
  53963. ))
  53964. characterMakers.push(() => makeCharacter(
  53965. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53966. {
  53967. front: {
  53968. height: math.unit(2 + 2/3, "feet"),
  53969. name: "Front",
  53970. image: {
  53971. source: "./media/characters/xazzon/front.svg",
  53972. extra: 1109/984,
  53973. bottom: 42/1151
  53974. }
  53975. },
  53976. back: {
  53977. height: math.unit(2 + 2/3, "feet"),
  53978. name: "Back",
  53979. image: {
  53980. source: "./media/characters/xazzon/back.svg",
  53981. extra: 1095/971,
  53982. bottom: 23/1118
  53983. }
  53984. },
  53985. },
  53986. [
  53987. {
  53988. name: "Normal",
  53989. height: math.unit(2 + 2/3, "feet"),
  53990. default: true
  53991. },
  53992. ]
  53993. ))
  53994. characterMakers.push(() => makeCharacter(
  53995. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53996. {
  53997. dressed: {
  53998. height: math.unit(5 + 7/12, "feet"),
  53999. weight: math.unit(173, "lb"),
  54000. name: "Dressed",
  54001. image: {
  54002. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54003. extra: 3262/2862,
  54004. bottom: 188/3450
  54005. }
  54006. },
  54007. undressed: {
  54008. height: math.unit(5 + 7/12, "feet"),
  54009. weight: math.unit(173, "lb"),
  54010. name: "Undressed",
  54011. image: {
  54012. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54013. extra: 3262/2862,
  54014. bottom: 188/3450
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "The void",
  54021. height: math.unit(7.29193e-34, "angstroms")
  54022. },
  54023. {
  54024. name: "Uh-Oh.",
  54025. height: math.unit(5.734e-7, "angstroms")
  54026. },
  54027. {
  54028. name: "Pico",
  54029. height: math.unit(0.876, "angstroms")
  54030. },
  54031. {
  54032. name: "Nano",
  54033. height: math.unit(0.000134200, "mm")
  54034. },
  54035. {
  54036. name: "Micro",
  54037. height: math.unit(0.0673020, "mm")
  54038. },
  54039. {
  54040. name: "Tiny",
  54041. height: math.unit(2.4, "mm")
  54042. },
  54043. {
  54044. name: "Actual Normal",
  54045. height: math.unit(3, "inches"),
  54046. default: true
  54047. },
  54048. {
  54049. name: "Normal",
  54050. height: math.unit(5 + 8/12, "feet")
  54051. },
  54052. {
  54053. name: "Giant",
  54054. height: math.unit(12, "feet")
  54055. },
  54056. {
  54057. name: "City Ruler",
  54058. height: math.unit(270, "meters")
  54059. },
  54060. {
  54061. name: "Giga",
  54062. height: math.unit(1117.6, "km")
  54063. },
  54064. {
  54065. name: "All-Powerful Queen",
  54066. height: math.unit(70.8, "gigameters")
  54067. },
  54068. {
  54069. name: "'Goddess'",
  54070. height: math.unit(600, "yottameters")
  54071. },
  54072. {
  54073. name: "Biggest!",
  54074. height: math.unit(4.23e5, "yottameters")
  54075. },
  54076. ]
  54077. ))
  54078. characterMakers.push(() => makeCharacter(
  54079. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54080. {
  54081. front: {
  54082. height: math.unit(8, "feet"),
  54083. weight: math.unit(300, "lb"),
  54084. name: "Front",
  54085. image: {
  54086. source: "./media/characters/khyla-shadowsong/front.svg",
  54087. extra: 861/798,
  54088. bottom: 32/893
  54089. }
  54090. },
  54091. side: {
  54092. height: math.unit(8, "feet"),
  54093. weight: math.unit(300, "lb"),
  54094. name: "Side",
  54095. image: {
  54096. source: "./media/characters/khyla-shadowsong/side.svg",
  54097. extra: 790/750,
  54098. bottom: 87/877
  54099. }
  54100. },
  54101. back: {
  54102. height: math.unit(8, "feet"),
  54103. weight: math.unit(300, "lb"),
  54104. name: "Back",
  54105. image: {
  54106. source: "./media/characters/khyla-shadowsong/back.svg",
  54107. extra: 855/808,
  54108. bottom: 14/869
  54109. }
  54110. },
  54111. head: {
  54112. height: math.unit(2.7, "feet"),
  54113. name: "Head",
  54114. image: {
  54115. source: "./media/characters/khyla-shadowsong/head.svg"
  54116. }
  54117. },
  54118. },
  54119. [
  54120. {
  54121. name: "Micro",
  54122. height: math.unit(6, "inches")
  54123. },
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(8, "feet"),
  54127. default: true
  54128. },
  54129. ]
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54133. {
  54134. hyperFront: {
  54135. height: math.unit(9 + 4/12, "feet"),
  54136. weight: math.unit(2000, "lb"),
  54137. name: "Front",
  54138. image: {
  54139. source: "./media/characters/tiden/hyper-front.svg",
  54140. extra: 400/382,
  54141. bottom: 6/406
  54142. },
  54143. form: "hyper",
  54144. },
  54145. regularFront: {
  54146. height: math.unit(7 + 10/12, "feet"),
  54147. weight: math.unit(470, "lb"),
  54148. name: "Front",
  54149. image: {
  54150. source: "./media/characters/tiden/regular-front.svg",
  54151. extra: 468/442,
  54152. bottom: 6/474
  54153. },
  54154. form: "regular",
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(9 + 4/12, "feet"),
  54161. default: true,
  54162. form: "hyper"
  54163. },
  54164. {
  54165. name: "Normal",
  54166. height: math.unit(7 + 10/12, "feet"),
  54167. default: true,
  54168. form: "regular"
  54169. },
  54170. ],
  54171. {
  54172. "hyper": {
  54173. name: "Hyper",
  54174. default: true
  54175. },
  54176. "regular": {
  54177. name: "Regular",
  54178. },
  54179. }
  54180. ))
  54181. characterMakers.push(() => makeCharacter(
  54182. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54183. {
  54184. side: {
  54185. height: math.unit(6, "feet"),
  54186. weight: math.unit(150, "lb"),
  54187. name: "Side",
  54188. image: {
  54189. source: "./media/characters/jason-crowe/side.svg",
  54190. extra: 1771/766,
  54191. bottom: 219/1990
  54192. }
  54193. },
  54194. },
  54195. [
  54196. {
  54197. name: "Pocket Gryphon",
  54198. height: math.unit(6, "cm")
  54199. },
  54200. {
  54201. name: "Raven",
  54202. height: math.unit(60, "cm")
  54203. },
  54204. {
  54205. name: "Normal",
  54206. height: math.unit(1, "meter"),
  54207. default: true
  54208. },
  54209. ]
  54210. ))
  54211. characterMakers.push(() => makeCharacter(
  54212. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54213. {
  54214. front: {
  54215. height: math.unit(9 + 6/12, "feet"),
  54216. weight: math.unit(1100, "lb"),
  54217. name: "Front",
  54218. image: {
  54219. source: "./media/characters/django/front.svg",
  54220. extra: 1231/1136,
  54221. bottom: 34/1265
  54222. }
  54223. },
  54224. side: {
  54225. height: math.unit(9 + 6/12, "feet"),
  54226. weight: math.unit(1100, "lb"),
  54227. name: "Side",
  54228. image: {
  54229. source: "./media/characters/django/side.svg",
  54230. extra: 1267/1174,
  54231. bottom: 9/1276
  54232. }
  54233. },
  54234. },
  54235. [
  54236. {
  54237. name: "Normal",
  54238. height: math.unit(9 + 6/12, "feet"),
  54239. default: true
  54240. },
  54241. {
  54242. name: "Macro 1",
  54243. height: math.unit(50, "feet")
  54244. },
  54245. {
  54246. name: "Macro 2",
  54247. height: math.unit(500, "feet")
  54248. },
  54249. {
  54250. name: "Mega Macro",
  54251. height: math.unit(5300, "feet")
  54252. },
  54253. ]
  54254. ))
  54255. characterMakers.push(() => makeCharacter(
  54256. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54257. {
  54258. frontSfw: {
  54259. height: math.unit(120, "cm"),
  54260. weight: math.unit(15, "kg"),
  54261. name: "Front (SFW)",
  54262. image: {
  54263. source: "./media/characters/eri/front-sfw.svg",
  54264. extra: 1014/939,
  54265. bottom: 37/1051
  54266. },
  54267. form: "moth",
  54268. },
  54269. frontNsfw: {
  54270. height: math.unit(120, "cm"),
  54271. weight: math.unit(15, "kg"),
  54272. name: "Front (NSFW)",
  54273. image: {
  54274. source: "./media/characters/eri/front-nsfw.svg",
  54275. extra: 1014/939,
  54276. bottom: 37/1051
  54277. },
  54278. form: "moth",
  54279. default: true
  54280. },
  54281. egg: {
  54282. height: math.unit(10, "cm"),
  54283. name: "Egg",
  54284. image: {
  54285. source: "./media/characters/eri/egg.svg"
  54286. },
  54287. form: "egg",
  54288. default: true
  54289. },
  54290. },
  54291. [
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(120, "cm"),
  54295. default: true,
  54296. form: "moth"
  54297. },
  54298. {
  54299. name: "Normal",
  54300. height: math.unit(10, "cm"),
  54301. default: true,
  54302. form: "egg"
  54303. },
  54304. ],
  54305. {
  54306. "moth": {
  54307. name: "Moth",
  54308. default: true
  54309. },
  54310. "egg": {
  54311. name: "Egg",
  54312. },
  54313. }
  54314. ))
  54315. characterMakers.push(() => makeCharacter(
  54316. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54317. {
  54318. front: {
  54319. height: math.unit(200, "feet"),
  54320. name: "Front",
  54321. image: {
  54322. source: "./media/characters/bishop-dowser/front.svg",
  54323. extra: 933/868,
  54324. bottom: 106/1039
  54325. }
  54326. },
  54327. },
  54328. [
  54329. {
  54330. name: "Giant",
  54331. height: math.unit(200, "feet"),
  54332. default: true
  54333. },
  54334. ]
  54335. ))
  54336. characterMakers.push(() => makeCharacter(
  54337. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54338. {
  54339. front: {
  54340. height: math.unit(2, "meters"),
  54341. preyCapacity: math.unit(3, "people"),
  54342. name: "Front",
  54343. image: {
  54344. source: "./media/characters/fryra/front.svg",
  54345. extra: 1025/948,
  54346. bottom: 30/1055
  54347. },
  54348. extraAttributes: {
  54349. "breastVolume": {
  54350. name: "Breast Volume",
  54351. power: 3,
  54352. type: "volume",
  54353. base: math.unit(8, "liters")
  54354. },
  54355. }
  54356. },
  54357. back: {
  54358. height: math.unit(2, "meters"),
  54359. preyCapacity: math.unit(3, "people"),
  54360. name: "Back",
  54361. image: {
  54362. source: "./media/characters/fryra/back.svg",
  54363. extra: 993/938,
  54364. bottom: 38/1031
  54365. },
  54366. extraAttributes: {
  54367. "breastVolume": {
  54368. name: "Breast Volume",
  54369. power: 3,
  54370. type: "volume",
  54371. base: math.unit(8, "liters")
  54372. },
  54373. }
  54374. },
  54375. head: {
  54376. height: math.unit(1.33, "feet"),
  54377. name: "Head",
  54378. image: {
  54379. source: "./media/characters/fryra/head.svg"
  54380. }
  54381. },
  54382. maw: {
  54383. height: math.unit(0.56, "feet"),
  54384. name: "Maw",
  54385. image: {
  54386. source: "./media/characters/fryra/maw.svg"
  54387. }
  54388. },
  54389. },
  54390. [
  54391. {
  54392. name: "Micro",
  54393. height: math.unit(5, "cm")
  54394. },
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(2, "meters"),
  54398. default: true
  54399. },
  54400. {
  54401. name: "Small Macro",
  54402. height: math.unit(8, "meters")
  54403. },
  54404. {
  54405. name: "Macro",
  54406. height: math.unit(50, "meters")
  54407. },
  54408. {
  54409. name: "Megamacro",
  54410. height: math.unit(1, "km")
  54411. },
  54412. {
  54413. name: "Planetary",
  54414. height: math.unit(300000, "km")
  54415. },
  54416. {
  54417. name: "Universal",
  54418. height: math.unit(250, "lightyears")
  54419. },
  54420. {
  54421. name: "Fabric of Reality",
  54422. height: math.unit(1000, "multiverses")
  54423. },
  54424. ]
  54425. ))
  54426. characterMakers.push(() => makeCharacter(
  54427. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54428. {
  54429. frontDressed: {
  54430. height: math.unit(6 + 2/12, "feet"),
  54431. name: "Front (Dressed)",
  54432. image: {
  54433. source: "./media/characters/fiera/front-dressed.svg",
  54434. extra: 1883/1793,
  54435. bottom: 70/1953
  54436. }
  54437. },
  54438. backDressed: {
  54439. height: math.unit(6 + 2/12, "feet"),
  54440. name: "Back (Dressed)",
  54441. image: {
  54442. source: "./media/characters/fiera/back-dressed.svg",
  54443. extra: 1847/1780,
  54444. bottom: 70/1917
  54445. }
  54446. },
  54447. frontNude: {
  54448. height: math.unit(6 + 2/12, "feet"),
  54449. name: "Front (Nude)",
  54450. image: {
  54451. source: "./media/characters/fiera/front-nude.svg",
  54452. extra: 1875/1785,
  54453. bottom: 66/1941
  54454. }
  54455. },
  54456. backNude: {
  54457. height: math.unit(6 + 2/12, "feet"),
  54458. name: "Back (Nude)",
  54459. image: {
  54460. source: "./media/characters/fiera/back-nude.svg",
  54461. extra: 1855/1788,
  54462. bottom: 44/1899
  54463. }
  54464. },
  54465. maw: {
  54466. height: math.unit(1.3, "feet"),
  54467. name: "Maw",
  54468. image: {
  54469. source: "./media/characters/fiera/maw.svg"
  54470. }
  54471. },
  54472. paw: {
  54473. height: math.unit(1, "feet"),
  54474. name: "Paw",
  54475. image: {
  54476. source: "./media/characters/fiera/paw.svg"
  54477. }
  54478. },
  54479. shoe: {
  54480. height: math.unit(1.05, "feet"),
  54481. name: "Shoe",
  54482. image: {
  54483. source: "./media/characters/fiera/shoe.svg"
  54484. }
  54485. },
  54486. },
  54487. [
  54488. {
  54489. name: "Normal",
  54490. height: math.unit(6 + 2/12, "feet"),
  54491. default: true
  54492. },
  54493. {
  54494. name: "Size Difference",
  54495. height: math.unit(13, "feet")
  54496. },
  54497. {
  54498. name: "Macro",
  54499. height: math.unit(60, "feet")
  54500. },
  54501. {
  54502. name: "Mega Macro",
  54503. height: math.unit(200, "feet")
  54504. },
  54505. ]
  54506. ))
  54507. characterMakers.push(() => makeCharacter(
  54508. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54509. {
  54510. back: {
  54511. height: math.unit(6, "feet"),
  54512. name: "Back",
  54513. image: {
  54514. source: "./media/characters/flare/back.svg",
  54515. extra: 1883/1765,
  54516. bottom: 32/1915
  54517. }
  54518. },
  54519. },
  54520. [
  54521. {
  54522. name: "Normal",
  54523. height: math.unit(6 + 2/12, "feet"),
  54524. default: true
  54525. },
  54526. {
  54527. name: "Size Difference",
  54528. height: math.unit(13, "feet")
  54529. },
  54530. {
  54531. name: "Macro",
  54532. height: math.unit(60, "feet")
  54533. },
  54534. {
  54535. name: "Macro 2",
  54536. height: math.unit(100, "feet")
  54537. },
  54538. {
  54539. name: "Mega Macro",
  54540. height: math.unit(200, "feet")
  54541. },
  54542. ]
  54543. ))
  54544. characterMakers.push(() => makeCharacter(
  54545. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54546. {
  54547. front: {
  54548. height: math.unit(2.2, "m"),
  54549. weight: math.unit(300, "kg"),
  54550. name: "Front",
  54551. image: {
  54552. source: "./media/characters/hanna/front.svg",
  54553. extra: 1696/1502,
  54554. bottom: 206/1902
  54555. }
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Humanoid",
  54561. height: math.unit(2.2, "meters")
  54562. },
  54563. {
  54564. name: "Normal",
  54565. height: math.unit(4.8, "meters"),
  54566. default: true
  54567. },
  54568. ]
  54569. ))
  54570. characterMakers.push(() => makeCharacter(
  54571. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54572. {
  54573. front: {
  54574. height: math.unit(2.8, "meters"),
  54575. name: "Front",
  54576. image: {
  54577. source: "./media/characters/argo/front.svg",
  54578. extra: 731/518,
  54579. bottom: 84/815
  54580. }
  54581. },
  54582. },
  54583. [
  54584. {
  54585. name: "Normal",
  54586. height: math.unit(3, "meters"),
  54587. default: true
  54588. },
  54589. ]
  54590. ))
  54591. characterMakers.push(() => makeCharacter(
  54592. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54593. {
  54594. side: {
  54595. height: math.unit(3.8, "meters"),
  54596. name: "Side",
  54597. image: {
  54598. source: "./media/characters/sybil/side.svg",
  54599. extra: 382/361,
  54600. bottom: 25/407
  54601. }
  54602. },
  54603. },
  54604. [
  54605. {
  54606. name: "Normal",
  54607. height: math.unit(3.8, "meters"),
  54608. default: true
  54609. },
  54610. ]
  54611. ))
  54612. characterMakers.push(() => makeCharacter(
  54613. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54614. {
  54615. side: {
  54616. height: math.unit(6, "meters"),
  54617. name: "Side",
  54618. image: {
  54619. source: "./media/characters/plum/side.svg",
  54620. extra: 858/755,
  54621. bottom: 45/903
  54622. },
  54623. form: "taur",
  54624. default: true
  54625. },
  54626. back: {
  54627. height: math.unit(6.3, "meters"),
  54628. name: "Back",
  54629. image: {
  54630. source: "./media/characters/plum/back.svg",
  54631. extra: 887/813,
  54632. bottom: 32/919
  54633. },
  54634. form: "taur",
  54635. },
  54636. feral: {
  54637. height: math.unit(5.5, "meter"),
  54638. name: "Front",
  54639. image: {
  54640. source: "./media/characters/plum/feral.svg",
  54641. extra: 568/403,
  54642. bottom: 51/619
  54643. },
  54644. form: "feral",
  54645. default: true
  54646. },
  54647. head: {
  54648. height: math.unit(1.46, "meter"),
  54649. name: "Head",
  54650. image: {
  54651. source: "./media/characters/plum/head.svg"
  54652. },
  54653. form: "taur"
  54654. },
  54655. tailTop: {
  54656. height: math.unit(5.6, "meter"),
  54657. name: "Tail (Top)",
  54658. image: {
  54659. source: "./media/characters/plum/tail-top.svg"
  54660. },
  54661. form: "taur",
  54662. },
  54663. tailBottom: {
  54664. height: math.unit(5.6, "meter"),
  54665. name: "Tail (Bottom)",
  54666. image: {
  54667. source: "./media/characters/plum/tail-bottom.svg"
  54668. },
  54669. form: "taur",
  54670. },
  54671. feralHead: {
  54672. height: math.unit(2.56549521, "meter"),
  54673. name: "Head",
  54674. image: {
  54675. source: "./media/characters/plum/head.svg"
  54676. },
  54677. form: "feral"
  54678. },
  54679. feralTailTop: {
  54680. height: math.unit(5.44728435, "meter"),
  54681. name: "Tail (Top)",
  54682. image: {
  54683. source: "./media/characters/plum/tail-top.svg"
  54684. },
  54685. form: "feral",
  54686. },
  54687. feralTailBottom: {
  54688. height: math.unit(5.44728435, "meter"),
  54689. name: "Tail (Bottom)",
  54690. image: {
  54691. source: "./media/characters/plum/tail-bottom.svg"
  54692. },
  54693. form: "feral",
  54694. },
  54695. },
  54696. [
  54697. {
  54698. name: "Normal",
  54699. height: math.unit(6, "meters"),
  54700. default: true,
  54701. form: "taur"
  54702. },
  54703. {
  54704. name: "Normal",
  54705. height: math.unit(5.5, "meters"),
  54706. default: true,
  54707. form: "feral"
  54708. },
  54709. ],
  54710. {
  54711. "taur": {
  54712. name: "Taur",
  54713. default: true
  54714. },
  54715. "feral": {
  54716. name: "Feral",
  54717. },
  54718. }
  54719. ))
  54720. characterMakers.push(() => makeCharacter(
  54721. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54722. {
  54723. front: {
  54724. height: math.unit(6, "feet"),
  54725. weight: math.unit(115, "lb"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/celeste-kitsune/front.svg",
  54729. extra: 393/366,
  54730. bottom: 7/400
  54731. }
  54732. },
  54733. side: {
  54734. height: math.unit(6, "feet"),
  54735. weight: math.unit(115, "lb"),
  54736. name: "Side",
  54737. image: {
  54738. source: "./media/characters/celeste-kitsune/side.svg",
  54739. extra: 818/765,
  54740. bottom: 40/858
  54741. }
  54742. },
  54743. },
  54744. [
  54745. {
  54746. name: "Megamacro",
  54747. height: math.unit(1500, "miles"),
  54748. default: true
  54749. },
  54750. ]
  54751. ))
  54752. characterMakers.push(() => makeCharacter(
  54753. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54754. {
  54755. front: {
  54756. height: math.unit(8, "meters"),
  54757. name: "Front",
  54758. image: {
  54759. source: "./media/characters/io/front.svg",
  54760. extra: 865/722,
  54761. bottom: 58/923
  54762. }
  54763. },
  54764. back: {
  54765. height: math.unit(8, "meters"),
  54766. name: "Back",
  54767. image: {
  54768. source: "./media/characters/io/back.svg",
  54769. extra: 920/776,
  54770. bottom: 42/962
  54771. }
  54772. },
  54773. head: {
  54774. height: math.unit(5.09, "meters"),
  54775. name: "Head",
  54776. image: {
  54777. source: "./media/characters/io/head.svg"
  54778. }
  54779. },
  54780. hand: {
  54781. height: math.unit(1.6, "meters"),
  54782. name: "Hand",
  54783. image: {
  54784. source: "./media/characters/io/hand.svg"
  54785. }
  54786. },
  54787. foot: {
  54788. height: math.unit(2.4, "meters"),
  54789. name: "Foot",
  54790. image: {
  54791. source: "./media/characters/io/foot.svg"
  54792. }
  54793. },
  54794. },
  54795. [
  54796. {
  54797. name: "Normal",
  54798. height: math.unit(8, "meters"),
  54799. default: true
  54800. },
  54801. ]
  54802. ))
  54803. characterMakers.push(() => makeCharacter(
  54804. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54805. {
  54806. side: {
  54807. height: math.unit(6 + 3/12, "feet"),
  54808. weight: math.unit(225, "lb"),
  54809. name: "Side",
  54810. image: {
  54811. source: "./media/characters/silas/side.svg",
  54812. extra: 703/653,
  54813. bottom: 23/726
  54814. },
  54815. extraAttributes: {
  54816. "pawLength": {
  54817. name: "Paw Length",
  54818. power: 1,
  54819. type: "length",
  54820. base: math.unit(12, "inches")
  54821. },
  54822. "pawWidth": {
  54823. name: "Paw Width",
  54824. power: 1,
  54825. type: "length",
  54826. base: math.unit(4.5, "inches")
  54827. },
  54828. "pawArea": {
  54829. name: "Paw Area",
  54830. power: 2,
  54831. type: "area",
  54832. base: math.unit(12 * 4.5, "inches^2")
  54833. },
  54834. }
  54835. },
  54836. },
  54837. [
  54838. {
  54839. name: "Normal",
  54840. height: math.unit(6 + 3/12, "feet"),
  54841. default: true
  54842. },
  54843. ]
  54844. ))
  54845. characterMakers.push(() => makeCharacter(
  54846. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54847. {
  54848. back: {
  54849. height: math.unit(1.6, "meters"),
  54850. weight: math.unit(150, "lb"),
  54851. name: "Back",
  54852. image: {
  54853. source: "./media/characters/zari/back.svg",
  54854. extra: 424/411,
  54855. bottom: 32/456
  54856. },
  54857. extraAttributes: {
  54858. "bladderCapacity": {
  54859. name: "Bladder Size",
  54860. power: 3,
  54861. type: "volume",
  54862. base: math.unit(500, "mL")
  54863. },
  54864. "bladderFlow": {
  54865. name: "Flow Rate",
  54866. power: 3,
  54867. type: "volume",
  54868. base: math.unit(25, "mL")
  54869. },
  54870. }
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Normal",
  54876. height: math.unit(1.6, "meters"),
  54877. default: true
  54878. },
  54879. ]
  54880. ))
  54881. characterMakers.push(() => makeCharacter(
  54882. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54883. {
  54884. front: {
  54885. height: math.unit(25, "feet"),
  54886. weight: math.unit(5, "tons"),
  54887. name: "Front",
  54888. image: {
  54889. source: "./media/characters/charlie-human/front.svg",
  54890. extra: 1870/1740,
  54891. bottom: 102/1972
  54892. },
  54893. extraAttributes: {
  54894. "dickLength": {
  54895. name: "Dick Length",
  54896. power: 1,
  54897. type: "length",
  54898. base: math.unit(9, "feet")
  54899. },
  54900. }
  54901. },
  54902. back: {
  54903. height: math.unit(25, "feet"),
  54904. weight: math.unit(5, "tons"),
  54905. name: "Back",
  54906. image: {
  54907. source: "./media/characters/charlie-human/back.svg",
  54908. extra: 1858/1733,
  54909. bottom: 105/1963
  54910. },
  54911. extraAttributes: {
  54912. "dickLength": {
  54913. name: "Dick Length",
  54914. power: 1,
  54915. type: "length",
  54916. base: math.unit(9, "feet")
  54917. },
  54918. }
  54919. },
  54920. },
  54921. [
  54922. {
  54923. name: "\"Normal\"",
  54924. height: math.unit(6 + 4/12, "feet")
  54925. },
  54926. {
  54927. name: "Big",
  54928. height: math.unit(25, "feet"),
  54929. default: true
  54930. },
  54931. ]
  54932. ))
  54933. characterMakers.push(() => makeCharacter(
  54934. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54935. {
  54936. front: {
  54937. height: math.unit(6 + 4/12, "feet"),
  54938. weight: math.unit(320, "lb"),
  54939. name: "Front",
  54940. image: {
  54941. source: "./media/characters/ookitsu/front.svg",
  54942. extra: 1160/976,
  54943. bottom: 38/1198
  54944. }
  54945. },
  54946. frontNsfw: {
  54947. height: math.unit(6 + 4/12, "feet"),
  54948. weight: math.unit(320, "lb"),
  54949. name: "Front (NSFW)",
  54950. image: {
  54951. source: "./media/characters/ookitsu/front-nsfw.svg",
  54952. extra: 1160/976,
  54953. bottom: 38/1198
  54954. }
  54955. },
  54956. back: {
  54957. height: math.unit(6 + 4/12, "feet"),
  54958. weight: math.unit(320, "lb"),
  54959. name: "Back",
  54960. image: {
  54961. source: "./media/characters/ookitsu/back.svg",
  54962. extra: 1030/975,
  54963. bottom: 70/1100
  54964. }
  54965. },
  54966. head: {
  54967. height: math.unit(1.79, "feet"),
  54968. name: "Head",
  54969. image: {
  54970. source: "./media/characters/ookitsu/head.svg"
  54971. }
  54972. },
  54973. hand: {
  54974. height: math.unit(0.92, "feet"),
  54975. name: "Hand",
  54976. image: {
  54977. source: "./media/characters/ookitsu/hand.svg"
  54978. }
  54979. },
  54980. tails: {
  54981. height: math.unit(3.3, "feet"),
  54982. name: "Tails",
  54983. image: {
  54984. source: "./media/characters/ookitsu/tails.svg"
  54985. }
  54986. },
  54987. dick: {
  54988. height: math.unit(1.10833, "feet"),
  54989. name: "Dick",
  54990. image: {
  54991. source: "./media/characters/ookitsu/dick.svg"
  54992. }
  54993. },
  54994. },
  54995. [
  54996. {
  54997. name: "Normal",
  54998. height: math.unit(6 + 4/12, "feet"),
  54999. default: true
  55000. },
  55001. {
  55002. name: "Macro",
  55003. height: math.unit(30, "feet")
  55004. },
  55005. ]
  55006. ))
  55007. characterMakers.push(() => makeCharacter(
  55008. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55009. {
  55010. anthroFront: {
  55011. height: math.unit(6, "feet"),
  55012. weight: math.unit(250, "lb"),
  55013. name: "Front",
  55014. image: {
  55015. source: "./media/characters/jhusky/anthro-front.svg",
  55016. extra: 474/439,
  55017. bottom: 7/481
  55018. },
  55019. form: "anthro",
  55020. default: true
  55021. },
  55022. taurSideSfw: {
  55023. height: math.unit(6 + 4/12, "feet"),
  55024. weight: math.unit(500, "lb"),
  55025. name: "Side (SFW)",
  55026. image: {
  55027. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55028. extra: 1741/1629,
  55029. bottom: 196/1937
  55030. },
  55031. form: "taur",
  55032. default: true
  55033. },
  55034. taurSideNsfw: {
  55035. height: math.unit(6 + 4/12, "feet"),
  55036. weight: math.unit(500, "lb"),
  55037. name: "Taur (NSFW)",
  55038. image: {
  55039. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55040. extra: 1741/1629,
  55041. bottom: 196/1937
  55042. },
  55043. form: "taur",
  55044. },
  55045. },
  55046. [
  55047. {
  55048. name: "Huge",
  55049. height: math.unit(500, "feet"),
  55050. form: "anthro"
  55051. },
  55052. {
  55053. name: "Macro",
  55054. height: math.unit(1000, "feet"),
  55055. default: true,
  55056. form: "anthro"
  55057. },
  55058. {
  55059. name: "Megamacro",
  55060. height: math.unit(10000, "feet"),
  55061. form: "anthro"
  55062. },
  55063. {
  55064. name: "Huge",
  55065. height: math.unit(528, "feet"),
  55066. form: "taur"
  55067. },
  55068. {
  55069. name: "Macro",
  55070. height: math.unit(1056, "feet"),
  55071. default: true,
  55072. form: "taur"
  55073. },
  55074. {
  55075. name: "Megamacro",
  55076. height: math.unit(10556, "feet"),
  55077. form: "taur"
  55078. },
  55079. ],
  55080. {
  55081. "anthro": {
  55082. name: "Anthro",
  55083. default: true
  55084. },
  55085. "taur": {
  55086. name: "Taur",
  55087. },
  55088. }
  55089. ))
  55090. characterMakers.push(() => makeCharacter(
  55091. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55092. {
  55093. front: {
  55094. height: math.unit(8, "feet"),
  55095. weight: math.unit(500, "lb"),
  55096. name: "Front",
  55097. image: {
  55098. source: "./media/characters/armail/front.svg",
  55099. extra: 1753/1669,
  55100. bottom: 155/1908
  55101. }
  55102. },
  55103. back: {
  55104. height: math.unit(8, "feet"),
  55105. weight: math.unit(500, "lb"),
  55106. name: "Back",
  55107. image: {
  55108. source: "./media/characters/armail/back.svg",
  55109. extra: 1872/1803,
  55110. bottom: 63/1935
  55111. }
  55112. },
  55113. },
  55114. [
  55115. {
  55116. name: "Micro",
  55117. height: math.unit(0.25, "feet")
  55118. },
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(8, "feet"),
  55122. default: true
  55123. },
  55124. {
  55125. name: "Mini-macro",
  55126. height: math.unit(30, "feet")
  55127. },
  55128. {
  55129. name: "Macro",
  55130. height: math.unit(400, "feet")
  55131. },
  55132. {
  55133. name: "Mega-macro",
  55134. height: math.unit(6000, "feet")
  55135. },
  55136. ]
  55137. ))
  55138. characterMakers.push(() => makeCharacter(
  55139. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55140. {
  55141. front: {
  55142. height: math.unit(6 + 7/12, "feet"),
  55143. weight: math.unit(210, "lb"),
  55144. name: "Front",
  55145. image: {
  55146. source: "./media/characters/wilfred-t-buxton/front.svg",
  55147. extra: 1068/882,
  55148. bottom: 28/1096
  55149. }
  55150. },
  55151. },
  55152. [
  55153. {
  55154. name: "Normal",
  55155. height: math.unit(6 + 7/12, "feet"),
  55156. default: true
  55157. },
  55158. ]
  55159. ))
  55160. characterMakers.push(() => makeCharacter(
  55161. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55162. {
  55163. front: {
  55164. height: math.unit(5 + 2/12, "feet"),
  55165. weight: math.unit(120, "lb"),
  55166. name: "Front",
  55167. image: {
  55168. source: "./media/characters/leighton-marrow/front.svg",
  55169. extra: 441/409,
  55170. bottom: 37/478
  55171. }
  55172. },
  55173. },
  55174. [
  55175. {
  55176. name: "Normal",
  55177. height: math.unit(5 + 2/12, "feet"),
  55178. default: true
  55179. },
  55180. ]
  55181. ))
  55182. characterMakers.push(() => makeCharacter(
  55183. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55184. {
  55185. front: {
  55186. height: math.unit(4, "meters"),
  55187. weight: math.unit(1200, "kg"),
  55188. name: "Front",
  55189. image: {
  55190. source: "./media/characters/licos/front.svg",
  55191. extra: 1727/1604,
  55192. bottom: 101/1828
  55193. },
  55194. form: "anthro",
  55195. default: true
  55196. },
  55197. taur_side: {
  55198. height: math.unit(20, "meters"),
  55199. weight: math.unit(1100000, "kg"),
  55200. name: "Side",
  55201. image: {
  55202. source: "./media/characters/licos/taur.svg",
  55203. extra: 1158/1091,
  55204. bottom: 80/1238
  55205. },
  55206. form: "taur",
  55207. default: true
  55208. },
  55209. },
  55210. [
  55211. {
  55212. name: "Normal",
  55213. height: math.unit(4, "meters"),
  55214. default: true,
  55215. form: "anthro"
  55216. },
  55217. {
  55218. name: "Normal",
  55219. height: math.unit(20, "meters"),
  55220. default: true,
  55221. form: "taur"
  55222. },
  55223. ],
  55224. {
  55225. "anthro": {
  55226. name: "Anthro",
  55227. default: true
  55228. },
  55229. "taur": {
  55230. name: "Taur",
  55231. },
  55232. }
  55233. ))
  55234. characterMakers.push(() => makeCharacter(
  55235. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55236. {
  55237. front: {
  55238. height: math.unit(10 + 3/12, "feet"),
  55239. name: "Front",
  55240. image: {
  55241. source: "./media/characters/theo-monkey/front.svg",
  55242. extra: 1735/1658,
  55243. bottom: 73/1808
  55244. }
  55245. },
  55246. back: {
  55247. height: math.unit(10 + 3/12, "feet"),
  55248. name: "Back",
  55249. image: {
  55250. source: "./media/characters/theo-monkey/back.svg",
  55251. extra: 1742/1664,
  55252. bottom: 33/1775
  55253. }
  55254. },
  55255. head: {
  55256. height: math.unit(2.29, "feet"),
  55257. name: "Head",
  55258. image: {
  55259. source: "./media/characters/theo-monkey/head.svg"
  55260. }
  55261. },
  55262. handPalm: {
  55263. height: math.unit(1.73, "feet"),
  55264. name: "Hand (Palm)",
  55265. image: {
  55266. source: "./media/characters/theo-monkey/hand-palm.svg"
  55267. }
  55268. },
  55269. handBack: {
  55270. height: math.unit(1.63, "feet"),
  55271. name: "Hand (Back)",
  55272. image: {
  55273. source: "./media/characters/theo-monkey/hand-back.svg"
  55274. }
  55275. },
  55276. footSole: {
  55277. height: math.unit(2.15, "feet"),
  55278. name: "Foot (Sole)",
  55279. image: {
  55280. source: "./media/characters/theo-monkey/foot-sole.svg"
  55281. }
  55282. },
  55283. footSide: {
  55284. height: math.unit(1.6, "feet"),
  55285. name: "Foot (Side)",
  55286. image: {
  55287. source: "./media/characters/theo-monkey/foot-side.svg"
  55288. }
  55289. },
  55290. },
  55291. [
  55292. {
  55293. name: "Normal",
  55294. height: math.unit(10 + 3/12, "feet"),
  55295. default: true
  55296. },
  55297. ]
  55298. ))
  55299. characterMakers.push(() => makeCharacter(
  55300. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55301. {
  55302. front: {
  55303. height: math.unit(11, "feet"),
  55304. weight: math.unit(3000, "lb"),
  55305. preyCapacity: math.unit(10, "people"),
  55306. name: "Front",
  55307. image: {
  55308. source: "./media/characters/brook/front.svg",
  55309. extra: 909/835,
  55310. bottom: 108/1017
  55311. }
  55312. },
  55313. back: {
  55314. height: math.unit(11, "feet"),
  55315. weight: math.unit(3000, "lb"),
  55316. preyCapacity: math.unit(10, "people"),
  55317. name: "Back",
  55318. image: {
  55319. source: "./media/characters/brook/back.svg",
  55320. extra: 976/916,
  55321. bottom: 34/1010
  55322. }
  55323. },
  55324. backAlt: {
  55325. height: math.unit(11, "feet"),
  55326. weight: math.unit(3000, "lb"),
  55327. preyCapacity: math.unit(10, "people"),
  55328. name: "Back (Alt)",
  55329. image: {
  55330. source: "./media/characters/brook/back-alt.svg",
  55331. extra: 1283/1213,
  55332. bottom: 35/1318
  55333. }
  55334. },
  55335. bust: {
  55336. height: math.unit(9.0859030837, "feet"),
  55337. weight: math.unit(3000, "lb"),
  55338. preyCapacity: math.unit(10, "people"),
  55339. name: "Bust",
  55340. image: {
  55341. source: "./media/characters/brook/bust.svg",
  55342. extra: 2043/1923,
  55343. bottom: 0/2043
  55344. }
  55345. },
  55346. },
  55347. [
  55348. {
  55349. name: "Small",
  55350. height: math.unit(11, "feet"),
  55351. default: true
  55352. },
  55353. {
  55354. name: "Towering",
  55355. height: math.unit(5, "km")
  55356. },
  55357. {
  55358. name: "Enormous",
  55359. height: math.unit(25, "earths")
  55360. },
  55361. ]
  55362. ))
  55363. characterMakers.push(() => makeCharacter(
  55364. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55365. {
  55366. front: {
  55367. height: math.unit(4, "feet"),
  55368. weight: math.unit(150, "lb"),
  55369. name: "Front",
  55370. image: {
  55371. source: "./media/characters/squishi/front.svg",
  55372. extra: 1428/1271,
  55373. bottom: 30/1458
  55374. },
  55375. extraAttributes: {
  55376. "pawSize": {
  55377. name: "Paw Size",
  55378. power: 1,
  55379. type: "length",
  55380. base: math.unit(14, "ShoeSizeMensUS"),
  55381. defaultUnit: "ShoeSizeMensUS"
  55382. },
  55383. }
  55384. },
  55385. side: {
  55386. height: math.unit(4, "feet"),
  55387. weight: math.unit(150, "lb"),
  55388. name: "Side",
  55389. image: {
  55390. source: "./media/characters/squishi/side.svg",
  55391. extra: 1428/1271,
  55392. bottom: 30/1458
  55393. },
  55394. extraAttributes: {
  55395. "pawSize": {
  55396. name: "Paw Size",
  55397. power: 1,
  55398. type: "length",
  55399. base: math.unit(14, "ShoeSizeMensUS"),
  55400. defaultUnit: "ShoeSizeMensUS"
  55401. },
  55402. }
  55403. },
  55404. back: {
  55405. height: math.unit(4, "feet"),
  55406. weight: math.unit(150, "lb"),
  55407. name: "Back",
  55408. image: {
  55409. source: "./media/characters/squishi/back.svg",
  55410. extra: 1428/1271,
  55411. bottom: 30/1458
  55412. },
  55413. extraAttributes: {
  55414. "pawSize": {
  55415. name: "Paw Size",
  55416. power: 1,
  55417. type: "length",
  55418. base: math.unit(14, "ShoeSizeMensUS"),
  55419. defaultUnit: "ShoeSizeMensUS"
  55420. },
  55421. }
  55422. },
  55423. },
  55424. [
  55425. {
  55426. name: "Normal",
  55427. height: math.unit(4, "feet"),
  55428. default: true
  55429. },
  55430. ]
  55431. ))
  55432. characterMakers.push(() => makeCharacter(
  55433. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55434. {
  55435. front: {
  55436. height: math.unit(7 + 8/12, "feet"),
  55437. weight: math.unit(333, "lb"),
  55438. name: "Front",
  55439. image: {
  55440. source: "./media/characters/vincent-vasroc/front.svg",
  55441. extra: 1962/1860,
  55442. bottom: 41/2003
  55443. }
  55444. },
  55445. back: {
  55446. height: math.unit(7 + 8/12, "feet"),
  55447. weight: math.unit(333, "lb"),
  55448. name: "Back",
  55449. image: {
  55450. source: "./media/characters/vincent-vasroc/back.svg",
  55451. extra: 1952/1815,
  55452. bottom: 33/1985
  55453. }
  55454. },
  55455. paw: {
  55456. height: math.unit(1.24, "feet"),
  55457. name: "Paw",
  55458. image: {
  55459. source: "./media/characters/vincent-vasroc/paw.svg"
  55460. }
  55461. },
  55462. ear: {
  55463. height: math.unit(0.75, "feet"),
  55464. name: "Ear",
  55465. image: {
  55466. source: "./media/characters/vincent-vasroc/ear.svg"
  55467. }
  55468. },
  55469. },
  55470. [
  55471. {
  55472. name: "Nano",
  55473. height: math.unit(92, "micrometers")
  55474. },
  55475. {
  55476. name: "Normal",
  55477. height: math.unit(7 + 8/12, "feet"),
  55478. default: true
  55479. },
  55480. ]
  55481. ))
  55482. characterMakers.push(() => makeCharacter(
  55483. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55484. {
  55485. frontNsfw: {
  55486. height: math.unit(40, "feet"),
  55487. weight: math.unit(58, "tons"),
  55488. name: "Front (NSFW)",
  55489. image: {
  55490. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55491. extra: 1265/965,
  55492. bottom: 155/1420
  55493. }
  55494. },
  55495. frontSfw: {
  55496. height: math.unit(40, "feet"),
  55497. weight: math.unit(58, "tons"),
  55498. name: "Front (SFW)",
  55499. image: {
  55500. source: "./media/characters/ru-kahn/front-sfw.svg",
  55501. extra: 1265/965,
  55502. bottom: 80/1345
  55503. }
  55504. },
  55505. },
  55506. [
  55507. {
  55508. name: "Small",
  55509. height: math.unit(4, "feet")
  55510. },
  55511. {
  55512. name: "Normal",
  55513. height: math.unit(40, "feet"),
  55514. default: true
  55515. },
  55516. {
  55517. name: "Macro",
  55518. height: math.unit(400, "feet")
  55519. },
  55520. ]
  55521. ))
  55522. characterMakers.push(() => makeCharacter(
  55523. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55524. {
  55525. frontNude: {
  55526. height: math.unit(6 + 5/12, "feet"),
  55527. name: "Front (Nude)",
  55528. image: {
  55529. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55530. extra: 1369/1366,
  55531. bottom: 68/1437
  55532. }
  55533. },
  55534. frontDressed: {
  55535. height: math.unit(6 + 5/12, "feet"),
  55536. name: "Front (Dressed)",
  55537. image: {
  55538. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55539. extra: 1369/1366,
  55540. bottom: 68/1437
  55541. }
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Normal",
  55547. height: math.unit(6 + 5/12, "feet"),
  55548. default: true
  55549. },
  55550. {
  55551. name: "Maximum",
  55552. height: math.unit(1930, "feet")
  55553. },
  55554. ]
  55555. ))
  55556. characterMakers.push(() => makeCharacter(
  55557. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55558. {
  55559. front: {
  55560. height: math.unit(5 + 6/12, "feet"),
  55561. name: "Front",
  55562. image: {
  55563. source: "./media/characters/kaja/front.svg",
  55564. extra: 1874/1514,
  55565. bottom: 117/1991
  55566. }
  55567. },
  55568. },
  55569. [
  55570. {
  55571. name: "Normal",
  55572. height: math.unit(5 + 6/12, "feet"),
  55573. default: true
  55574. },
  55575. ]
  55576. ))
  55577. characterMakers.push(() => makeCharacter(
  55578. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55579. {
  55580. front: {
  55581. height: math.unit(5 + 9/12, "feet"),
  55582. weight: math.unit(200, "lb"),
  55583. name: "Front",
  55584. image: {
  55585. source: "./media/characters/mark-smith/front.svg",
  55586. extra: 1004/943,
  55587. bottom: 58/1062
  55588. }
  55589. },
  55590. back: {
  55591. height: math.unit(5 + 9/12, "feet"),
  55592. weight: math.unit(200, "lb"),
  55593. name: "Back",
  55594. image: {
  55595. source: "./media/characters/mark-smith/back.svg",
  55596. extra: 1023/953,
  55597. bottom: 24/1047
  55598. }
  55599. },
  55600. head: {
  55601. height: math.unit(1.82, "feet"),
  55602. name: "Head",
  55603. image: {
  55604. source: "./media/characters/mark-smith/head.svg"
  55605. }
  55606. },
  55607. hand: {
  55608. height: math.unit(1.4, "feet"),
  55609. name: "Hand",
  55610. image: {
  55611. source: "./media/characters/mark-smith/hand.svg"
  55612. }
  55613. },
  55614. paw: {
  55615. height: math.unit(1.69, "feet"),
  55616. name: "Paw",
  55617. image: {
  55618. source: "./media/characters/mark-smith/paw.svg"
  55619. }
  55620. },
  55621. },
  55622. [
  55623. {
  55624. name: "Micro",
  55625. height: math.unit(0.25, "inches")
  55626. },
  55627. {
  55628. name: "Normal",
  55629. height: math.unit(5 + 9/12, "feet"),
  55630. default: true
  55631. },
  55632. {
  55633. name: "Macro",
  55634. height: math.unit(500, "feet")
  55635. },
  55636. ]
  55637. ))
  55638. characterMakers.push(() => makeCharacter(
  55639. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55640. {
  55641. frontNude: {
  55642. height: math.unit(6, "feet"),
  55643. name: "Front (Nude)",
  55644. image: {
  55645. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55646. extra: 1384/1321,
  55647. bottom: 57/1441
  55648. }
  55649. },
  55650. frontDressed: {
  55651. height: math.unit(6, "feet"),
  55652. name: "Front (Dressed)",
  55653. image: {
  55654. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55655. extra: 1384/1321,
  55656. bottom: 57/1441
  55657. }
  55658. },
  55659. },
  55660. [
  55661. {
  55662. name: "Normal",
  55663. height: math.unit(6, "feet"),
  55664. default: true
  55665. },
  55666. {
  55667. name: "Maximum",
  55668. height: math.unit(1776, "feet")
  55669. },
  55670. ]
  55671. ))
  55672. characterMakers.push(() => makeCharacter(
  55673. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55674. {
  55675. front: {
  55676. height: math.unit(2 + 4/12, "feet"),
  55677. weight: math.unit(350, "lb"),
  55678. name: "Front",
  55679. image: {
  55680. source: "./media/characters/devos/front.svg",
  55681. extra: 958/852,
  55682. bottom: 143/1101
  55683. }
  55684. },
  55685. },
  55686. [
  55687. {
  55688. name: "Base",
  55689. height: math.unit(2 + 4/12, "feet"),
  55690. default: true
  55691. },
  55692. ]
  55693. ))
  55694. characterMakers.push(() => makeCharacter(
  55695. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55696. {
  55697. front: {
  55698. height: math.unit(9 + 2/12, "feet"),
  55699. name: "Front",
  55700. image: {
  55701. source: "./media/characters/hiveheart/front.svg",
  55702. extra: 394/364,
  55703. bottom: 65/459
  55704. }
  55705. },
  55706. back: {
  55707. height: math.unit(9 + 2/12, "feet"),
  55708. name: "Back",
  55709. image: {
  55710. source: "./media/characters/hiveheart/back.svg",
  55711. extra: 374/357,
  55712. bottom: 63/437
  55713. }
  55714. },
  55715. },
  55716. [
  55717. {
  55718. name: "Base",
  55719. height: math.unit(9 + 2/12, "feet"),
  55720. default: true
  55721. },
  55722. ]
  55723. ))
  55724. characterMakers.push(() => makeCharacter(
  55725. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55726. {
  55727. front: {
  55728. height: math.unit(2.5, "inches"),
  55729. weight: math.unit(0.6, "oz"),
  55730. name: "Front",
  55731. image: {
  55732. source: "./media/characters/bryn/front.svg",
  55733. extra: 1480/1205,
  55734. bottom: 27/1507
  55735. }
  55736. },
  55737. back: {
  55738. height: math.unit(2.5, "inches"),
  55739. weight: math.unit(0.6, "oz"),
  55740. name: "Back",
  55741. image: {
  55742. source: "./media/characters/bryn/back.svg",
  55743. extra: 1475/1201,
  55744. bottom: 39/1514
  55745. }
  55746. },
  55747. foot: {
  55748. height: math.unit(0.4, "inches"),
  55749. name: "Foot",
  55750. image: {
  55751. source: "./media/characters/bryn/foot.svg"
  55752. }
  55753. },
  55754. },
  55755. [
  55756. {
  55757. name: "Normal",
  55758. height: math.unit(2.5, "inches"),
  55759. default: true
  55760. },
  55761. ]
  55762. ))
  55763. characterMakers.push(() => makeCharacter(
  55764. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55765. {
  55766. side: {
  55767. height: math.unit(7, "feet"),
  55768. weight: math.unit(657, "kg"),
  55769. name: "Side",
  55770. image: {
  55771. source: "./media/characters/delta/side.svg",
  55772. extra: 781/212,
  55773. bottom: 7/788
  55774. },
  55775. extraAttributes: {
  55776. "wingspan": {
  55777. name: "Wingspan",
  55778. power: 1,
  55779. type: "length",
  55780. base: math.unit(48, "feet")
  55781. },
  55782. "length": {
  55783. name: "Length",
  55784. power: 1,
  55785. type: "length",
  55786. base: math.unit(21, "feet")
  55787. },
  55788. "pawSize": {
  55789. name: "Paw Size",
  55790. power: 2,
  55791. type: "area",
  55792. base: math.unit(1.5*1.4, "feet^2")
  55793. },
  55794. }
  55795. },
  55796. },
  55797. [
  55798. {
  55799. name: "Normal",
  55800. height: math.unit(6, "feet"),
  55801. default: true
  55802. },
  55803. ]
  55804. ))
  55805. characterMakers.push(() => makeCharacter(
  55806. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55807. {
  55808. front: {
  55809. height: math.unit(6, "feet"),
  55810. name: "Front",
  55811. image: {
  55812. source: "./media/characters/pyrow/front.svg",
  55813. extra: 513/486,
  55814. bottom: 14/527
  55815. }
  55816. },
  55817. frontWing: {
  55818. height: math.unit(6, "feet"),
  55819. name: "Front (Wing)",
  55820. image: {
  55821. source: "./media/characters/pyrow/front-wing.svg",
  55822. extra: 539/383,
  55823. bottom: 20/559
  55824. }
  55825. },
  55826. back: {
  55827. height: math.unit(6, "feet"),
  55828. name: "Back",
  55829. image: {
  55830. source: "./media/characters/pyrow/back.svg",
  55831. extra: 500/473,
  55832. bottom: 9/509
  55833. }
  55834. },
  55835. },
  55836. [
  55837. {
  55838. name: "Normal",
  55839. height: math.unit(6, "feet"),
  55840. default: true
  55841. },
  55842. ]
  55843. ))
  55844. characterMakers.push(() => makeCharacter(
  55845. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55846. {
  55847. front: {
  55848. height: math.unit(5, "meters"),
  55849. weight: math.unit(3, "tonnes"),
  55850. name: "Front",
  55851. image: {
  55852. source: "./media/characters/velikan/front.svg",
  55853. extra: 867/744,
  55854. bottom: 71/938
  55855. },
  55856. extraAttributes: {
  55857. "shoeSize": {
  55858. name: "Shoe Size",
  55859. power: 1,
  55860. type: "length",
  55861. base: math.unit(135, "ShoeSizeUK"),
  55862. defaultUnit: "ShoeSizeUK"
  55863. },
  55864. }
  55865. },
  55866. },
  55867. [
  55868. {
  55869. name: "Normal",
  55870. height: math.unit(5, "meters"),
  55871. default: true
  55872. },
  55873. {
  55874. name: "Macro",
  55875. height: math.unit(1, "km")
  55876. },
  55877. {
  55878. name: "Mega Macro",
  55879. height: math.unit(100, "km")
  55880. },
  55881. {
  55882. name: "Giga Macro",
  55883. height: math.unit(2, "megameters")
  55884. },
  55885. {
  55886. name: "Planetary",
  55887. height: math.unit(22, "megameters")
  55888. },
  55889. {
  55890. name: "Solar",
  55891. height: math.unit(8, "gigameters")
  55892. },
  55893. {
  55894. name: "Cosmic",
  55895. height: math.unit(10, "zettameters")
  55896. },
  55897. {
  55898. name: "Omni",
  55899. height: math.unit(9e260, "multiverses")
  55900. },
  55901. ]
  55902. ))
  55903. characterMakers.push(() => makeCharacter(
  55904. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55905. {
  55906. front: {
  55907. height: math.unit(4 + 3/12, "feet"),
  55908. weight: math.unit(90, "lb"),
  55909. name: "Front",
  55910. image: {
  55911. source: "./media/characters/sabiki/front.svg",
  55912. extra: 1662/1423,
  55913. bottom: 65/1727
  55914. }
  55915. },
  55916. },
  55917. [
  55918. {
  55919. name: "Normal",
  55920. height: math.unit(4 + 3/12, "feet"),
  55921. default: true
  55922. },
  55923. ]
  55924. ))
  55925. characterMakers.push(() => makeCharacter(
  55926. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55927. {
  55928. frontSfw: {
  55929. height: math.unit(2, "mm"),
  55930. name: "Front (SFW)",
  55931. image: {
  55932. source: "./media/characters/carmel/front-sfw.svg",
  55933. extra: 1131/1006,
  55934. bottom: 66/1197
  55935. }
  55936. },
  55937. frontNsfw: {
  55938. height: math.unit(2, "mm"),
  55939. name: "Front (NSFW)",
  55940. image: {
  55941. source: "./media/characters/carmel/front-nsfw.svg",
  55942. extra: 1131/1006,
  55943. bottom: 66/1197
  55944. }
  55945. },
  55946. foot: {
  55947. height: math.unit(0.3, "mm"),
  55948. name: "Foot",
  55949. image: {
  55950. source: "./media/characters/carmel/foot.svg"
  55951. }
  55952. },
  55953. tongue: {
  55954. height: math.unit(0.71, "mm"),
  55955. name: "Tongue",
  55956. image: {
  55957. source: "./media/characters/carmel/tongue.svg"
  55958. }
  55959. },
  55960. dick: {
  55961. height: math.unit(0.085, "mm"),
  55962. name: "Dick",
  55963. image: {
  55964. source: "./media/characters/carmel/dick.svg"
  55965. }
  55966. },
  55967. },
  55968. [
  55969. {
  55970. name: "Micro",
  55971. height: math.unit(2, "mm"),
  55972. default: true
  55973. },
  55974. {
  55975. name: "Normal",
  55976. height: math.unit(4 + 8/12, "feet")
  55977. },
  55978. {
  55979. name: "Mega Macro",
  55980. height: math.unit(250, "feet")
  55981. },
  55982. {
  55983. name: "BIGGER",
  55984. height: math.unit(1000, "feet")
  55985. },
  55986. {
  55987. name: "BIGGEST",
  55988. height: math.unit(2, "miles")
  55989. },
  55990. ]
  55991. ))
  55992. characterMakers.push(() => makeCharacter(
  55993. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55994. {
  55995. front: {
  55996. height: math.unit(6.5, "feet"),
  55997. weight: math.unit(198, "lb"),
  55998. name: "Front",
  55999. image: {
  56000. source: "./media/characters/tamani/anthro.svg",
  56001. extra: 930/890,
  56002. bottom: 34/964
  56003. },
  56004. form: "anthro",
  56005. default: true
  56006. },
  56007. side: {
  56008. height: math.unit(6, "feet"),
  56009. weight: math.unit(198*2, "lb"),
  56010. name: "Side",
  56011. image: {
  56012. source: "./media/characters/tamani/feral.svg",
  56013. extra: 559/519,
  56014. bottom: 43/602
  56015. },
  56016. form: "feral"
  56017. },
  56018. },
  56019. [
  56020. {
  56021. name: "Normal",
  56022. height: math.unit(6.5, "feet"),
  56023. default: true,
  56024. form: "anthro"
  56025. },
  56026. {
  56027. name: "Normal",
  56028. height: math.unit(6, "feet"),
  56029. default: true,
  56030. form: "feral"
  56031. },
  56032. ],
  56033. {
  56034. "anthro": {
  56035. name: "Anthro",
  56036. default: true
  56037. },
  56038. "feral": {
  56039. name: "Feral",
  56040. },
  56041. }
  56042. ))
  56043. characterMakers.push(() => makeCharacter(
  56044. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56045. {
  56046. front: {
  56047. height: math.unit(4 + 1/12, "feet"),
  56048. weight: math.unit(114, "lb"),
  56049. name: "Front",
  56050. image: {
  56051. source: "./media/characters/dex/front.svg",
  56052. extra: 787/680,
  56053. bottom: 18/805
  56054. }
  56055. },
  56056. side: {
  56057. height: math.unit(4 + 1/12, "feet"),
  56058. weight: math.unit(114, "lb"),
  56059. name: "Side",
  56060. image: {
  56061. source: "./media/characters/dex/side.svg",
  56062. extra: 785/680,
  56063. bottom: 12/797
  56064. }
  56065. },
  56066. back: {
  56067. height: math.unit(4 + 1/12, "feet"),
  56068. weight: math.unit(114, "lb"),
  56069. name: "Back",
  56070. image: {
  56071. source: "./media/characters/dex/back.svg",
  56072. extra: 785/681,
  56073. bottom: 17/802
  56074. }
  56075. },
  56076. loungewear: {
  56077. height: math.unit(4 + 1/12, "feet"),
  56078. weight: math.unit(114, "lb"),
  56079. name: "Loungewear",
  56080. image: {
  56081. source: "./media/characters/dex/loungewear.svg",
  56082. extra: 787/680,
  56083. bottom: 18/805
  56084. }
  56085. },
  56086. workout: {
  56087. height: math.unit(4 + 1/12, "feet"),
  56088. weight: math.unit(114, "lb"),
  56089. name: "Workout",
  56090. image: {
  56091. source: "./media/characters/dex/workout.svg",
  56092. extra: 787/680,
  56093. bottom: 18/805
  56094. }
  56095. },
  56096. schoolUniform: {
  56097. height: math.unit(4 + 1/12, "feet"),
  56098. weight: math.unit(114, "lb"),
  56099. name: "School-uniform",
  56100. image: {
  56101. source: "./media/characters/dex/school-uniform.svg",
  56102. extra: 787/680,
  56103. bottom: 18/805
  56104. }
  56105. },
  56106. maw: {
  56107. height: math.unit(0.55, "feet"),
  56108. name: "Maw",
  56109. image: {
  56110. source: "./media/characters/dex/maw.svg"
  56111. }
  56112. },
  56113. paw: {
  56114. height: math.unit(0.87, "feet"),
  56115. name: "Paw",
  56116. image: {
  56117. source: "./media/characters/dex/paw.svg"
  56118. }
  56119. },
  56120. bust: {
  56121. height: math.unit(1.67, "feet"),
  56122. name: "Bust",
  56123. image: {
  56124. source: "./media/characters/dex/bust.svg"
  56125. }
  56126. },
  56127. },
  56128. [
  56129. {
  56130. name: "Normal",
  56131. height: math.unit(4 + 1/12, "feet"),
  56132. default: true
  56133. },
  56134. ]
  56135. ))
  56136. characterMakers.push(() => makeCharacter(
  56137. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56138. {
  56139. front: {
  56140. height: math.unit(4 + 3/12, "feet"),
  56141. weight: math.unit(60, "lb"),
  56142. name: "Front",
  56143. image: {
  56144. source: "./media/characters/silke/front.svg",
  56145. extra: 1334/1122,
  56146. bottom: 21/1355
  56147. }
  56148. },
  56149. back: {
  56150. height: math.unit(4 + 3/12, "feet"),
  56151. weight: math.unit(60, "lb"),
  56152. name: "Back",
  56153. image: {
  56154. source: "./media/characters/silke/back.svg",
  56155. extra: 1328/1092,
  56156. bottom: 16/1344
  56157. }
  56158. },
  56159. dressed: {
  56160. height: math.unit(4 + 3/12, "feet"),
  56161. weight: math.unit(60, "lb"),
  56162. name: "Dressed",
  56163. image: {
  56164. source: "./media/characters/silke/dressed.svg",
  56165. extra: 1334/1122,
  56166. bottom: 43/1377
  56167. }
  56168. },
  56169. },
  56170. [
  56171. {
  56172. name: "Normal",
  56173. height: math.unit(4 + 3/12, "feet"),
  56174. default: true
  56175. },
  56176. ]
  56177. ))
  56178. characterMakers.push(() => makeCharacter(
  56179. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56180. {
  56181. front: {
  56182. height: math.unit(1.58, "meters"),
  56183. weight: math.unit(47, "kg"),
  56184. name: "Front",
  56185. image: {
  56186. source: "./media/characters/wireshark/front.svg",
  56187. extra: 883/838,
  56188. bottom: 66/949
  56189. }
  56190. },
  56191. },
  56192. [
  56193. {
  56194. name: "Normal",
  56195. height: math.unit(1.58, "meters"),
  56196. default: true
  56197. },
  56198. ]
  56199. ))
  56200. characterMakers.push(() => makeCharacter(
  56201. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56202. {
  56203. front: {
  56204. height: math.unit(6, "meters"),
  56205. weight: math.unit(15000, "kg"),
  56206. name: "Front",
  56207. image: {
  56208. source: "./media/characters/gallagher/front.svg",
  56209. extra: 532/493,
  56210. bottom: 0/532
  56211. }
  56212. },
  56213. },
  56214. [
  56215. {
  56216. name: "Normal",
  56217. height: math.unit(6, "meters"),
  56218. default: true
  56219. },
  56220. ]
  56221. ))
  56222. characterMakers.push(() => makeCharacter(
  56223. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56224. {
  56225. front: {
  56226. height: math.unit(2.4, "meters"),
  56227. weight: math.unit(270, "kg"),
  56228. name: "Front",
  56229. image: {
  56230. source: "./media/characters/alice/front.svg",
  56231. extra: 950/900,
  56232. bottom: 36/986
  56233. }
  56234. },
  56235. side: {
  56236. height: math.unit(2.4, "meters"),
  56237. weight: math.unit(270, "kg"),
  56238. name: "Side",
  56239. image: {
  56240. source: "./media/characters/alice/side.svg",
  56241. extra: 921/876,
  56242. bottom: 19/940
  56243. }
  56244. },
  56245. dressed: {
  56246. height: math.unit(2.4, "meters"),
  56247. weight: math.unit(270, "kg"),
  56248. name: "Dressed",
  56249. image: {
  56250. source: "./media/characters/alice/dressed.svg",
  56251. extra: 905/850,
  56252. bottom: 81/986
  56253. }
  56254. },
  56255. fishnet: {
  56256. height: math.unit(2.4, "meters"),
  56257. weight: math.unit(270, "kg"),
  56258. name: "Fishnet",
  56259. image: {
  56260. source: "./media/characters/alice/fishnet.svg",
  56261. extra: 905/850,
  56262. bottom: 81/986
  56263. }
  56264. },
  56265. },
  56266. [
  56267. {
  56268. name: "Normal",
  56269. height: math.unit(2.4, "meters"),
  56270. default: true
  56271. },
  56272. ]
  56273. ))
  56274. characterMakers.push(() => makeCharacter(
  56275. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56276. {
  56277. front: {
  56278. height: math.unit(175.25, "feet"),
  56279. name: "Front",
  56280. image: {
  56281. source: "./media/characters/fio/front.svg",
  56282. extra: 1883/1591,
  56283. bottom: 34/1917
  56284. }
  56285. },
  56286. },
  56287. [
  56288. {
  56289. name: "Normal",
  56290. height: math.unit(175.25, "cm"),
  56291. default: true
  56292. },
  56293. ]
  56294. ))
  56295. characterMakers.push(() => makeCharacter(
  56296. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56297. {
  56298. side: {
  56299. height: math.unit(6, "meters"),
  56300. weight: math.unit(3400, "kg"),
  56301. preyCapacity: math.unit(1700, "liters"),
  56302. name: "Side",
  56303. image: {
  56304. source: "./media/characters/hass/side.svg",
  56305. extra: 1058/997,
  56306. bottom: 177/1235
  56307. }
  56308. },
  56309. feeding: {
  56310. height: math.unit(6*0.63, "meters"),
  56311. weight: math.unit(3400, "kg"),
  56312. preyCapacity: math.unit(1700, "liters"),
  56313. name: "Feeding",
  56314. image: {
  56315. source: "./media/characters/hass/feeding.svg",
  56316. extra: 689/579,
  56317. bottom: 146/835
  56318. }
  56319. },
  56320. guts: {
  56321. height: math.unit(6, "meters"),
  56322. weight: math.unit(3400, "kg"),
  56323. name: "Guts",
  56324. image: {
  56325. source: "./media/characters/hass/guts.svg",
  56326. extra: 1223/1198,
  56327. bottom: 182/1405
  56328. }
  56329. },
  56330. dickFront: {
  56331. height: math.unit(1.4, "meters"),
  56332. name: "Dick (Front)",
  56333. image: {
  56334. source: "./media/characters/hass/dick-front.svg"
  56335. }
  56336. },
  56337. dickSide: {
  56338. height: math.unit(1.3, "meters"),
  56339. name: "Dick (Side)",
  56340. image: {
  56341. source: "./media/characters/hass/dick-side.svg"
  56342. }
  56343. },
  56344. dickBack: {
  56345. height: math.unit(1.4, "meters"),
  56346. name: "Dick (Back)",
  56347. image: {
  56348. source: "./media/characters/hass/dick-back.svg"
  56349. }
  56350. },
  56351. },
  56352. [
  56353. {
  56354. name: "Normal",
  56355. height: math.unit(6, "meters"),
  56356. default: true
  56357. },
  56358. ]
  56359. ))
  56360. characterMakers.push(() => makeCharacter(
  56361. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56362. {
  56363. front: {
  56364. height: math.unit(4, "feet"),
  56365. weight: math.unit(60, "lb"),
  56366. name: "Front",
  56367. image: {
  56368. source: "./media/characters/hickory-finnegan/front.svg",
  56369. extra: 444/411,
  56370. bottom: 10/454
  56371. }
  56372. },
  56373. side: {
  56374. height: math.unit(4, "feet"),
  56375. weight: math.unit(60, "lb"),
  56376. name: "Side",
  56377. image: {
  56378. source: "./media/characters/hickory-finnegan/side.svg",
  56379. extra: 444/411,
  56380. bottom: 10/454
  56381. }
  56382. },
  56383. back: {
  56384. height: math.unit(4, "feet"),
  56385. weight: math.unit(60, "lb"),
  56386. name: "Back",
  56387. image: {
  56388. source: "./media/characters/hickory-finnegan/back.svg",
  56389. extra: 444/411,
  56390. bottom: 10/454
  56391. }
  56392. },
  56393. },
  56394. [
  56395. {
  56396. name: "Normal",
  56397. height: math.unit(4, "feet"),
  56398. default: true
  56399. },
  56400. ]
  56401. ))
  56402. characterMakers.push(() => makeCharacter(
  56403. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56404. {
  56405. snivy_front: {
  56406. height: math.unit(2, "feet"),
  56407. weight: math.unit(17.9, "lb"),
  56408. name: "Front",
  56409. image: {
  56410. source: "./media/characters/robin-phox/snivy-front.svg",
  56411. extra: 569/504,
  56412. bottom: 33/602
  56413. },
  56414. form: "snivy",
  56415. default: true
  56416. },
  56417. snivy_frontNsfw: {
  56418. height: math.unit(2, "feet"),
  56419. weight: math.unit(17.9, "lb"),
  56420. name: "Front (NSFW)",
  56421. image: {
  56422. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56423. extra: 569/504,
  56424. bottom: 33/602
  56425. },
  56426. form: "snivy",
  56427. },
  56428. snivy_back: {
  56429. height: math.unit(2, "feet"),
  56430. weight: math.unit(17.9, "lb"),
  56431. name: "Back",
  56432. image: {
  56433. source: "./media/characters/robin-phox/snivy-back.svg",
  56434. extra: 577/508,
  56435. bottom: 21/598
  56436. },
  56437. form: "snivy",
  56438. },
  56439. snivy_foot: {
  56440. height: math.unit(0.68, "feet"),
  56441. name: "Foot",
  56442. image: {
  56443. source: "./media/characters/robin-phox/snivy-foot.svg"
  56444. },
  56445. form: "snivy",
  56446. },
  56447. snivy_sole: {
  56448. height: math.unit(0.68, "feet"),
  56449. name: "Sole",
  56450. image: {
  56451. source: "./media/characters/robin-phox/snivy-sole.svg"
  56452. },
  56453. form: "snivy",
  56454. },
  56455. yoshi_front: {
  56456. height: math.unit(6, "feet"),
  56457. weight: math.unit(150, "lb"),
  56458. name: "Front",
  56459. image: {
  56460. source: "./media/characters/robin-phox/yoshi-front.svg",
  56461. extra: 890/792,
  56462. bottom: 29/919
  56463. },
  56464. form: "yoshi",
  56465. default: true
  56466. },
  56467. yoshi_frontNsfw: {
  56468. height: math.unit(6, "feet"),
  56469. weight: math.unit(150, "lb"),
  56470. name: "Front (NSFW)",
  56471. image: {
  56472. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56473. extra: 890/792,
  56474. bottom: 29/919
  56475. },
  56476. form: "yoshi",
  56477. },
  56478. yoshi_back: {
  56479. height: math.unit(6, "feet"),
  56480. weight: math.unit(150, "lb"),
  56481. name: "Back",
  56482. image: {
  56483. source: "./media/characters/robin-phox/yoshi-back.svg",
  56484. extra: 890/792,
  56485. bottom: 29/919
  56486. },
  56487. form: "yoshi",
  56488. },
  56489. yoshi_foot: {
  56490. height: math.unit(1.5, "feet"),
  56491. name: "Foot",
  56492. image: {
  56493. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56494. },
  56495. form: "yoshi",
  56496. },
  56497. delphox_front: {
  56498. height: math.unit(4 + 11/12, "feet"),
  56499. weight: math.unit(86, "lb"),
  56500. name: "Front",
  56501. image: {
  56502. source: "./media/characters/robin-phox/delphox-front.svg",
  56503. extra: 1266/1069,
  56504. bottom: 32/1298
  56505. },
  56506. form: "delphox",
  56507. default: true
  56508. },
  56509. delphox_frontNsfw: {
  56510. height: math.unit(4 + 11/12, "feet"),
  56511. weight: math.unit(86, "lb"),
  56512. name: "Front (NSFW)",
  56513. image: {
  56514. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56515. extra: 1266/1069,
  56516. bottom: 32/1298
  56517. },
  56518. form: "delphox",
  56519. },
  56520. delphox_back: {
  56521. height: math.unit(4 + 11/12, "feet"),
  56522. weight: math.unit(86, "lb"),
  56523. name: "Back",
  56524. image: {
  56525. source: "./media/characters/robin-phox/delphox-back.svg",
  56526. extra: 1269/1083,
  56527. bottom: 15/1284
  56528. },
  56529. form: "delphox",
  56530. },
  56531. mienshao_front: {
  56532. height: math.unit(4 + 7/12, "feet"),
  56533. weight: math.unit(78.3, "lb"),
  56534. name: "Front",
  56535. image: {
  56536. source: "./media/characters/robin-phox/mienshao-front.svg",
  56537. extra: 1052/970,
  56538. bottom: 108/1160
  56539. },
  56540. form: "mienshao",
  56541. default: true
  56542. },
  56543. mienshao_frontNsfw: {
  56544. height: math.unit(4 + 7/12, "feet"),
  56545. weight: math.unit(78.3, "lb"),
  56546. name: "Front (NSFW)",
  56547. image: {
  56548. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56549. extra: 1052/970,
  56550. bottom: 108/1160
  56551. },
  56552. form: "mienshao",
  56553. },
  56554. mienshao_back: {
  56555. height: math.unit(4 + 7/12, "feet"),
  56556. weight: math.unit(78.3, "lb"),
  56557. name: "Back",
  56558. image: {
  56559. source: "./media/characters/robin-phox/mienshao-back.svg",
  56560. extra: 1102/982,
  56561. bottom: 32/1134
  56562. },
  56563. form: "mienshao",
  56564. },
  56565. inteleon_front: {
  56566. height: math.unit(6 + 3/12, "feet"),
  56567. weight: math.unit(99.6, "lb"),
  56568. name: "Front",
  56569. image: {
  56570. source: "./media/characters/robin-phox/inteleon-front.svg",
  56571. extra: 910/799,
  56572. bottom: 76/986
  56573. },
  56574. form: "inteleon",
  56575. default: true
  56576. },
  56577. inteleon_frontNsfw: {
  56578. height: math.unit(6 + 3/12, "feet"),
  56579. weight: math.unit(99.6, "lb"),
  56580. name: "Front (NSFW)",
  56581. image: {
  56582. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56583. extra: 910/799,
  56584. bottom: 76/986
  56585. },
  56586. form: "inteleon",
  56587. },
  56588. inteleon_back: {
  56589. height: math.unit(6 + 3/12, "feet"),
  56590. weight: math.unit(99.6, "lb"),
  56591. name: "Back",
  56592. image: {
  56593. source: "./media/characters/robin-phox/inteleon-back.svg",
  56594. extra: 907/796,
  56595. bottom: 25/932
  56596. },
  56597. form: "inteleon",
  56598. },
  56599. reshiram_front: {
  56600. height: math.unit(10 + 6/12, "feet"),
  56601. weight: math.unit(727.5, "lb"),
  56602. name: "Front",
  56603. image: {
  56604. source: "./media/characters/robin-phox/reshiram-front.svg",
  56605. extra: 1198/940,
  56606. bottom: 123/1321
  56607. },
  56608. form: "reshiram",
  56609. },
  56610. reshiram_frontNsfw: {
  56611. height: math.unit(10 + 6/12, "feet"),
  56612. weight: math.unit(727.5, "lb"),
  56613. name: "Front-nsfw",
  56614. image: {
  56615. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56616. extra: 1198/940,
  56617. bottom: 123/1321
  56618. },
  56619. form: "reshiram",
  56620. },
  56621. reshiram_back: {
  56622. height: math.unit(10 + 6/12, "feet"),
  56623. weight: math.unit(727.5, "lb"),
  56624. name: "Back",
  56625. image: {
  56626. source: "./media/characters/robin-phox/reshiram-back.svg",
  56627. extra: 1024/904,
  56628. bottom: 85/1109
  56629. },
  56630. form: "reshiram",
  56631. },
  56632. samurott_front: {
  56633. height: math.unit(8, "feet"),
  56634. weight: math.unit(208.6, "lb"),
  56635. name: "Front",
  56636. image: {
  56637. source: "./media/characters/robin-phox/samurott-front.svg",
  56638. extra: 1048/984,
  56639. bottom: 100/1148
  56640. },
  56641. form: "samurott",
  56642. },
  56643. samurott_frontNsfw: {
  56644. height: math.unit(8, "feet"),
  56645. weight: math.unit(208.6, "lb"),
  56646. name: "Front-nsfw",
  56647. image: {
  56648. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56649. extra: 1048/984,
  56650. bottom: 100/1148
  56651. },
  56652. form: "samurott",
  56653. },
  56654. samurott_back: {
  56655. height: math.unit(8, "feet"),
  56656. weight: math.unit(208.6, "lb"),
  56657. name: "Back",
  56658. image: {
  56659. source: "./media/characters/robin-phox/samurott-back.svg",
  56660. extra: 1110/1042,
  56661. bottom: 12/1122
  56662. },
  56663. form: "samurott",
  56664. },
  56665. samurott_feral: {
  56666. height: math.unit(4 + 11/12, "feet"),
  56667. weight: math.unit(208.6, "lb"),
  56668. name: "Feral",
  56669. image: {
  56670. source: "./media/characters/robin-phox/samurott-feral.svg",
  56671. extra: 766/681,
  56672. bottom: 108/874
  56673. },
  56674. form: "samurott",
  56675. },
  56676. },
  56677. [
  56678. {
  56679. name: "Normal",
  56680. height: math.unit(2, "feet"),
  56681. default: true,
  56682. form: "snivy"
  56683. },
  56684. {
  56685. name: "Normal",
  56686. height: math.unit(6, "feet"),
  56687. default: true,
  56688. form: "yoshi"
  56689. },
  56690. {
  56691. name: "Normal",
  56692. height: math.unit(4 + 11/12, "feet"),
  56693. default: true,
  56694. form: "delphox"
  56695. },
  56696. {
  56697. name: "Normal",
  56698. height: math.unit(4 + 7/12, "feet"),
  56699. default: true,
  56700. form: "mienshao"
  56701. },
  56702. {
  56703. name: "Normal",
  56704. height: math.unit(6 + 3/12, "feet"),
  56705. default: true,
  56706. form: "inteleon"
  56707. },
  56708. {
  56709. name: "Normal",
  56710. height: math.unit(10 + 6/12, "feet"),
  56711. default: true,
  56712. form: "reshiram"
  56713. },
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(8, "feet"),
  56717. default: true,
  56718. form: "samurott"
  56719. },
  56720. {
  56721. name: "Macro",
  56722. height: math.unit(500, "feet"),
  56723. allForms: true
  56724. },
  56725. {
  56726. name: "Mega Macro",
  56727. height: math.unit(10, "earths"),
  56728. allForms: true
  56729. },
  56730. {
  56731. name: "Giga Macro",
  56732. height: math.unit(1, "galaxy"),
  56733. allForms: true
  56734. },
  56735. {
  56736. name: "Godly Macro",
  56737. height: math.unit(1e10, "multiverses"),
  56738. allForms: true
  56739. },
  56740. ],
  56741. {
  56742. "snivy": {
  56743. name: "Snivy",
  56744. default: true
  56745. },
  56746. "yoshi": {
  56747. name: "Yoshi",
  56748. },
  56749. "delphox": {
  56750. name: "Delphox",
  56751. },
  56752. "mienshao": {
  56753. name: "Mienshao",
  56754. },
  56755. "inteleon": {
  56756. name: "Inteleon",
  56757. },
  56758. "reshiram": {
  56759. name: "Reshiram",
  56760. },
  56761. "samurott": {
  56762. name: "Samurott",
  56763. },
  56764. }
  56765. ))
  56766. characterMakers.push(() => makeCharacter(
  56767. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56768. {
  56769. front: {
  56770. height: math.unit(4, "feet"),
  56771. name: "Front",
  56772. image: {
  56773. source: "./media/characters/ash-leung/front.svg",
  56774. extra: 1916/1792,
  56775. bottom: 50/1966
  56776. }
  56777. },
  56778. },
  56779. [
  56780. {
  56781. name: "Atomic",
  56782. height: math.unit(1, "angstrom")
  56783. },
  56784. {
  56785. name: "Microscopic",
  56786. height: math.unit(4000, "angstroms")
  56787. },
  56788. {
  56789. name: "Speck",
  56790. height: math.unit(1, "mm")
  56791. },
  56792. {
  56793. name: "Small",
  56794. height: math.unit(1, "inch")
  56795. },
  56796. {
  56797. name: "Normal",
  56798. height: math.unit(4, "feet"),
  56799. default: true
  56800. },
  56801. ]
  56802. ))
  56803. characterMakers.push(() => makeCharacter(
  56804. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56805. {
  56806. frontDressed: {
  56807. height: math.unit(2.08, "meters"),
  56808. weight: math.unit(175, "lb"),
  56809. name: "Front (Dressed)",
  56810. image: {
  56811. source: "./media/characters/carie/front-dressed.svg",
  56812. extra: 456/417,
  56813. bottom: 7/463
  56814. }
  56815. },
  56816. backDressed: {
  56817. height: math.unit(2.08, "meters"),
  56818. weight: math.unit(175, "lb"),
  56819. name: "Back (Dressed)",
  56820. image: {
  56821. source: "./media/characters/carie/back-dressed.svg",
  56822. extra: 455/414,
  56823. bottom: 11/466
  56824. }
  56825. },
  56826. front: {
  56827. height: math.unit(2, "meters"),
  56828. weight: math.unit(175, "lb"),
  56829. name: "Front",
  56830. image: {
  56831. source: "./media/characters/carie/front.svg",
  56832. extra: 438/399,
  56833. bottom: 12/450
  56834. }
  56835. },
  56836. back: {
  56837. height: math.unit(2, "meters"),
  56838. weight: math.unit(175, "lb"),
  56839. name: "Back",
  56840. image: {
  56841. source: "./media/characters/carie/back.svg",
  56842. extra: 438/397,
  56843. bottom: 7/445
  56844. }
  56845. },
  56846. },
  56847. [
  56848. {
  56849. name: "Normal",
  56850. height: math.unit(2.08, "meters"),
  56851. default: true
  56852. },
  56853. {
  56854. name: "Macro",
  56855. height: math.unit(2.08e3, "meters")
  56856. },
  56857. {
  56858. name: "Mega Macro",
  56859. height: math.unit(2.08e6, "meters")
  56860. },
  56861. {
  56862. name: "Giga Macro",
  56863. height: math.unit(2.08e9, "meters")
  56864. },
  56865. {
  56866. name: "Tera Macro",
  56867. height: math.unit(2.08e12, "meters")
  56868. },
  56869. {
  56870. name: "Peta Macro",
  56871. height: math.unit(2.08e15, "meters")
  56872. },
  56873. {
  56874. name: "Exa Macro",
  56875. height: math.unit(2.08e18, "meters")
  56876. },
  56877. {
  56878. name: "Zetta Macro",
  56879. height: math.unit(2.08e21, "meters")
  56880. },
  56881. {
  56882. name: "Yotta Macro",
  56883. height: math.unit(2.08e24, "meters")
  56884. },
  56885. ]
  56886. ))
  56887. characterMakers.push(() => makeCharacter(
  56888. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56889. {
  56890. front: {
  56891. height: math.unit(5 + 2/12, "feet"),
  56892. weight: math.unit(120, "lb"),
  56893. name: "Front",
  56894. image: {
  56895. source: "./media/characters/sai-bree/front.svg",
  56896. extra: 1843/1702,
  56897. bottom: 91/1934
  56898. }
  56899. },
  56900. back: {
  56901. height: math.unit(5 + 2/12, "feet"),
  56902. weight: math.unit(120, "lb"),
  56903. name: "Back",
  56904. image: {
  56905. source: "./media/characters/sai-bree/back.svg",
  56906. extra: 1809/1637,
  56907. bottom: 56/1865
  56908. }
  56909. },
  56910. },
  56911. [
  56912. {
  56913. name: "Normal",
  56914. height: math.unit(5 + 2/12, "feet"),
  56915. default: true
  56916. },
  56917. {
  56918. name: "Macro",
  56919. height: math.unit(500, "feet")
  56920. },
  56921. ]
  56922. ))
  56923. characterMakers.push(() => makeCharacter(
  56924. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56925. {
  56926. side: {
  56927. height: math.unit(0.77, "meters"),
  56928. weight: math.unit(120, "lb"),
  56929. name: "Side",
  56930. image: {
  56931. source: "./media/characters/davwyn/side.svg",
  56932. extra: 1557/1225,
  56933. bottom: 131/1688
  56934. }
  56935. },
  56936. front: {
  56937. height: math.unit(0.835410, "meters"),
  56938. weight: math.unit(120, "lb"),
  56939. name: "Front",
  56940. image: {
  56941. source: "./media/characters/davwyn/front.svg",
  56942. extra: 870/843,
  56943. bottom: 175/1045
  56944. }
  56945. },
  56946. },
  56947. [
  56948. {
  56949. name: "Minidrake",
  56950. height: math.unit(0.77/4, "meters")
  56951. },
  56952. {
  56953. name: "Normal",
  56954. height: math.unit(0.77, "meters"),
  56955. default: true
  56956. },
  56957. ]
  56958. ))
  56959. characterMakers.push(() => makeCharacter(
  56960. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56961. {
  56962. front: {
  56963. height: math.unit(10 + 3/12, "feet"),
  56964. weight: math.unit(2857, "lb"),
  56965. name: "Front",
  56966. image: {
  56967. source: "./media/characters/balans/front.svg",
  56968. extra: 427/402,
  56969. bottom: 26/453
  56970. }
  56971. },
  56972. side: {
  56973. height: math.unit(10 + 3/12, "feet"),
  56974. weight: math.unit(2857, "lb"),
  56975. name: "Side",
  56976. image: {
  56977. source: "./media/characters/balans/side.svg",
  56978. extra: 397/371,
  56979. bottom: 17/414
  56980. }
  56981. },
  56982. back: {
  56983. height: math.unit(10 + 3/12, "feet"),
  56984. weight: math.unit(2857, "lb"),
  56985. name: "Back",
  56986. image: {
  56987. source: "./media/characters/balans/back.svg",
  56988. extra: 408/381,
  56989. bottom: 14/422
  56990. }
  56991. },
  56992. hand: {
  56993. height: math.unit(1.15, "feet"),
  56994. name: "Hand",
  56995. image: {
  56996. source: "./media/characters/balans/hand.svg"
  56997. }
  56998. },
  56999. footRest: {
  57000. height: math.unit(3.1, "feet"),
  57001. name: "Foot (Rest)",
  57002. image: {
  57003. source: "./media/characters/balans/foot-rest.svg"
  57004. }
  57005. },
  57006. footActive: {
  57007. height: math.unit(3.5, "feet"),
  57008. name: "Foot (Active)",
  57009. image: {
  57010. source: "./media/characters/balans/foot-active.svg"
  57011. }
  57012. },
  57013. },
  57014. [
  57015. {
  57016. name: "Normal",
  57017. height: math.unit(10 + 3/12, "feet"),
  57018. default: true
  57019. },
  57020. ]
  57021. ))
  57022. characterMakers.push(() => makeCharacter(
  57023. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57024. {
  57025. side: {
  57026. height: math.unit(9, "meters"),
  57027. weight: math.unit(114, "tonnes"),
  57028. name: "Side",
  57029. image: {
  57030. source: "./media/characters/eldkveikir/side.svg",
  57031. extra: 1927/338,
  57032. bottom: 42/1969
  57033. }
  57034. },
  57035. sitting: {
  57036. height: math.unit(13.4, "meters"),
  57037. weight: math.unit(114, "tonnes"),
  57038. name: "Sitting",
  57039. image: {
  57040. source: "./media/characters/eldkveikir/sitting.svg",
  57041. extra: 1108/963,
  57042. bottom: 610/1718
  57043. }
  57044. },
  57045. maw: {
  57046. height: math.unit(8.36, "meters"),
  57047. name: "Maw",
  57048. image: {
  57049. source: "./media/characters/eldkveikir/maw.svg"
  57050. }
  57051. },
  57052. hand: {
  57053. height: math.unit(4.84, "meters"),
  57054. name: "Hand",
  57055. image: {
  57056. source: "./media/characters/eldkveikir/hand.svg"
  57057. }
  57058. },
  57059. foot: {
  57060. height: math.unit(6.9, "meters"),
  57061. name: "Foot",
  57062. image: {
  57063. source: "./media/characters/eldkveikir/foot.svg"
  57064. }
  57065. },
  57066. genitals: {
  57067. height: math.unit(9.6, "meters"),
  57068. name: "Genitals",
  57069. image: {
  57070. source: "./media/characters/eldkveikir/genitals.svg"
  57071. }
  57072. },
  57073. },
  57074. [
  57075. {
  57076. name: "Normal",
  57077. height: math.unit(9, "meters"),
  57078. default: true
  57079. },
  57080. ]
  57081. ))
  57082. characterMakers.push(() => makeCharacter(
  57083. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57084. {
  57085. front: {
  57086. height: math.unit(14, "feet"),
  57087. weight: math.unit(4100, "lb"),
  57088. name: "Front",
  57089. image: {
  57090. source: "./media/characters/arrow/front.svg",
  57091. extra: 330/318,
  57092. bottom: 56/386
  57093. }
  57094. },
  57095. },
  57096. [
  57097. {
  57098. name: "Normal",
  57099. height: math.unit(14, "feet"),
  57100. default: true
  57101. },
  57102. {
  57103. name: "Minimacro",
  57104. height: math.unit(63, "feet")
  57105. },
  57106. {
  57107. name: "Macro",
  57108. height: math.unit(630, "feet")
  57109. },
  57110. {
  57111. name: "Megamacro",
  57112. height: math.unit(12600, "feet")
  57113. },
  57114. {
  57115. name: "Gigamacro",
  57116. height: math.unit(18000, "miles")
  57117. },
  57118. ]
  57119. ))
  57120. characterMakers.push(() => makeCharacter(
  57121. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57122. {
  57123. front: {
  57124. height: math.unit(10, "feet"),
  57125. weight: math.unit(2.4, "tons"),
  57126. name: "Front",
  57127. image: {
  57128. source: "./media/characters/3yk-k0-unit/front.svg",
  57129. extra: 573/561,
  57130. bottom: 33/606
  57131. }
  57132. },
  57133. back: {
  57134. height: math.unit(10, "feet"),
  57135. weight: math.unit(2.4, "tons"),
  57136. name: "Back",
  57137. image: {
  57138. source: "./media/characters/3yk-k0-unit/back.svg",
  57139. extra: 614/573,
  57140. bottom: 32/646
  57141. }
  57142. },
  57143. maw: {
  57144. height: math.unit(2.15, "feet"),
  57145. name: "Maw",
  57146. image: {
  57147. source: "./media/characters/3yk-k0-unit/maw.svg"
  57148. }
  57149. },
  57150. },
  57151. [
  57152. {
  57153. name: "Normal",
  57154. height: math.unit(10, "feet"),
  57155. default: true
  57156. },
  57157. ]
  57158. ))
  57159. characterMakers.push(() => makeCharacter(
  57160. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57161. {
  57162. front: {
  57163. height: math.unit(8 + 8/12, "feet"),
  57164. name: "Front",
  57165. image: {
  57166. source: "./media/characters/nemo/front.svg",
  57167. extra: 1308/1217,
  57168. bottom: 57/1365
  57169. }
  57170. },
  57171. },
  57172. [
  57173. {
  57174. name: "Normal",
  57175. height: math.unit(8 + 8/12, "feet"),
  57176. default: true
  57177. },
  57178. ]
  57179. ))
  57180. characterMakers.push(() => makeCharacter(
  57181. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57182. {
  57183. front: {
  57184. height: math.unit(8, "feet"),
  57185. weight: math.unit(760, "lb"),
  57186. name: "Front",
  57187. image: {
  57188. source: "./media/characters/rexx/front.svg",
  57189. extra: 786/750,
  57190. bottom: 17/803
  57191. },
  57192. extraAttributes: {
  57193. "pawLength": {
  57194. name: "Paw Length",
  57195. power: 1,
  57196. type: "length",
  57197. base: math.unit(27, "inches")
  57198. },
  57199. }
  57200. },
  57201. },
  57202. [
  57203. {
  57204. name: "Micro",
  57205. height: math.unit(2, "inches")
  57206. },
  57207. {
  57208. name: "Normal",
  57209. height: math.unit(8, "feet"),
  57210. default: true
  57211. },
  57212. {
  57213. name: "Macro",
  57214. height: math.unit(150, "feet")
  57215. },
  57216. ]
  57217. ))
  57218. characterMakers.push(() => makeCharacter(
  57219. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57220. {
  57221. front: {
  57222. height: math.unit(18, "feet"),
  57223. weight: math.unit(1975, "lb"),
  57224. name: "Front",
  57225. image: {
  57226. source: "./media/characters/draco/front.svg",
  57227. extra: 1325/1241,
  57228. bottom: 83/1408
  57229. }
  57230. },
  57231. back: {
  57232. height: math.unit(18, "feet"),
  57233. weight: math.unit(1975, "lb"),
  57234. name: "Back",
  57235. image: {
  57236. source: "./media/characters/draco/back.svg",
  57237. extra: 1332/1250,
  57238. bottom: 43/1375
  57239. }
  57240. },
  57241. dick: {
  57242. height: math.unit(7.5, "feet"),
  57243. name: "Dick",
  57244. image: {
  57245. source: "./media/characters/draco/dick.svg"
  57246. }
  57247. },
  57248. },
  57249. [
  57250. {
  57251. name: "Normal",
  57252. height: math.unit(18, "feet"),
  57253. default: true
  57254. },
  57255. ]
  57256. ))
  57257. characterMakers.push(() => makeCharacter(
  57258. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57259. {
  57260. front: {
  57261. height: math.unit(3.2, "meters"),
  57262. name: "Front",
  57263. image: {
  57264. source: "./media/characters/harriett/front.svg",
  57265. extra: 1966/1915,
  57266. bottom: 9/1975
  57267. }
  57268. },
  57269. },
  57270. [
  57271. {
  57272. name: "Normal",
  57273. height: math.unit(3.2, "meters"),
  57274. default: true
  57275. },
  57276. ]
  57277. ))
  57278. characterMakers.push(() => makeCharacter(
  57279. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57280. {
  57281. sitting: {
  57282. height: math.unit(0.8, "meter"),
  57283. name: "Sitting",
  57284. image: {
  57285. source: "./media/characters/serpentus/sitting.svg",
  57286. extra: 293/290,
  57287. bottom: 140/433
  57288. }
  57289. },
  57290. },
  57291. [
  57292. {
  57293. name: "Normal",
  57294. height: math.unit(0.8, "meter"),
  57295. default: true
  57296. },
  57297. ]
  57298. ))
  57299. characterMakers.push(() => makeCharacter(
  57300. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57301. {
  57302. front: {
  57303. height: math.unit(5.7174385736, "feet"),
  57304. name: "Front",
  57305. image: {
  57306. source: "./media/characters/nova-polecat/front.svg",
  57307. extra: 1317/1216,
  57308. bottom: 92/1409
  57309. }
  57310. },
  57311. },
  57312. [
  57313. {
  57314. name: "Normal",
  57315. height: math.unit(5.7174385736, "feet"),
  57316. default: true
  57317. },
  57318. ]
  57319. ))
  57320. characterMakers.push(() => makeCharacter(
  57321. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57322. {
  57323. front: {
  57324. height: math.unit(5 + 4/12, "feet"),
  57325. weight: math.unit(250, "lb"),
  57326. name: "Front",
  57327. image: {
  57328. source: "./media/characters/mook/front.svg",
  57329. extra: 1088/1037,
  57330. bottom: 132/1220
  57331. }
  57332. },
  57333. back: {
  57334. height: math.unit(5 + 1/12, "feet"),
  57335. weight: math.unit(250, "lb"),
  57336. name: "Back",
  57337. image: {
  57338. source: "./media/characters/mook/back.svg",
  57339. extra: 1184/905,
  57340. bottom: 96/1280
  57341. }
  57342. },
  57343. head: {
  57344. height: math.unit(1.85, "feet"),
  57345. name: "Head",
  57346. image: {
  57347. source: "./media/characters/mook/head.svg"
  57348. }
  57349. },
  57350. hand: {
  57351. height: math.unit(1.9, "feet"),
  57352. name: "Hand",
  57353. image: {
  57354. source: "./media/characters/mook/hand.svg"
  57355. }
  57356. },
  57357. palm: {
  57358. height: math.unit(1.84, "feet"),
  57359. name: "Palm",
  57360. image: {
  57361. source: "./media/characters/mook/palm.svg"
  57362. }
  57363. },
  57364. foot: {
  57365. height: math.unit(1.44, "feet"),
  57366. name: "Foot",
  57367. image: {
  57368. source: "./media/characters/mook/foot.svg"
  57369. }
  57370. },
  57371. sole: {
  57372. height: math.unit(1.44, "feet"),
  57373. name: "Sole",
  57374. image: {
  57375. source: "./media/characters/mook/sole.svg"
  57376. }
  57377. },
  57378. },
  57379. [
  57380. {
  57381. name: "Normal",
  57382. height: math.unit(5 + 4/12, "feet"),
  57383. default: true
  57384. },
  57385. {
  57386. name: "Big",
  57387. height: math.unit(12, "feet")
  57388. },
  57389. ]
  57390. ))
  57391. characterMakers.push(() => makeCharacter(
  57392. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57393. {
  57394. front: {
  57395. height: math.unit(6 + 10/12, "feet"),
  57396. weight: math.unit(233, "lb"),
  57397. name: "Front",
  57398. image: {
  57399. source: "./media/characters/kayla/front.svg",
  57400. extra: 1850/1775,
  57401. bottom: 65/1915
  57402. }
  57403. },
  57404. },
  57405. [
  57406. {
  57407. name: "Normal",
  57408. height: math.unit(6 + 10/12, "feet"),
  57409. default: true
  57410. },
  57411. {
  57412. name: "Amazonian",
  57413. height: math.unit(12 + 5/12, "feet")
  57414. },
  57415. {
  57416. name: "Mini Giantess",
  57417. height: math.unit(26, "feet")
  57418. },
  57419. {
  57420. name: "Giantess",
  57421. height: math.unit(200, "feet")
  57422. },
  57423. {
  57424. name: "Mega Giantess",
  57425. height: math.unit(2500, "feet")
  57426. },
  57427. {
  57428. name: "City Sized",
  57429. height: math.unit(50, "miles")
  57430. },
  57431. {
  57432. name: "Country Sized",
  57433. height: math.unit(500, "miles")
  57434. },
  57435. {
  57436. name: "Continent Sized",
  57437. height: math.unit(2500, "miles")
  57438. },
  57439. {
  57440. name: "Planet Sized",
  57441. height: math.unit(10000, "miles")
  57442. },
  57443. {
  57444. name: "Star Sized",
  57445. height: math.unit(5e6, "miles")
  57446. },
  57447. {
  57448. name: "Solar System Sized",
  57449. height: math.unit(125, "AU")
  57450. },
  57451. {
  57452. name: "Galaxy Sized",
  57453. height: math.unit(300e3, "lightyears")
  57454. },
  57455. {
  57456. name: "Universe Sized",
  57457. height: math.unit(200e9, "lightyears")
  57458. },
  57459. {
  57460. name: "Multiverse Sized",
  57461. height: math.unit(20, "exauniverses")
  57462. },
  57463. {
  57464. name: "Mother of Existence",
  57465. height: math.unit(1e6, "yottauniverses")
  57466. },
  57467. ]
  57468. ))
  57469. characterMakers.push(() => makeCharacter(
  57470. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57471. {
  57472. side: {
  57473. height: math.unit(9.5, "meters"),
  57474. name: "Side",
  57475. image: {
  57476. source: "./media/characters/kulve-ragnarok/side.svg",
  57477. extra: 364/326,
  57478. bottom: 50/414
  57479. }
  57480. },
  57481. },
  57482. [
  57483. {
  57484. name: "Normal",
  57485. height: math.unit(9.5, "meters"),
  57486. default: true
  57487. },
  57488. ]
  57489. ))
  57490. characterMakers.push(() => makeCharacter(
  57491. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57492. {
  57493. front: {
  57494. height: math.unit(8 + 9/12, "feet"),
  57495. name: "Front",
  57496. image: {
  57497. source: "./media/characters/atlas-goat/front.svg",
  57498. extra: 1462/1323,
  57499. bottom: 12/1474
  57500. }
  57501. },
  57502. },
  57503. [
  57504. {
  57505. name: "Normal",
  57506. height: math.unit(8 + 9/12, "feet"),
  57507. default: true
  57508. },
  57509. {
  57510. name: "Skyline",
  57511. height: math.unit(845, "feet")
  57512. },
  57513. {
  57514. name: "Orbital",
  57515. height: math.unit(93000, "miles")
  57516. },
  57517. {
  57518. name: "Constellation",
  57519. height: math.unit(27000, "lightyears")
  57520. },
  57521. ]
  57522. ))
  57523. //characters
  57524. function makeCharacters() {
  57525. const results = [];
  57526. characterMakers.forEach(character => {
  57527. results.push(character());
  57528. });
  57529. return results;
  57530. }