less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

55710 satır
1.4 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. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. }
  2103. //species
  2104. function getSpeciesInfo(speciesList) {
  2105. let result = new Set();
  2106. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2107. result.add(entry)
  2108. });
  2109. return Array.from(result);
  2110. };
  2111. function getSpeciesInfoHelper(species) {
  2112. if (!speciesData[species]) {
  2113. console.warn(species + " doesn't exist");
  2114. return [];
  2115. }
  2116. if (speciesData[species].parents) {
  2117. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2118. } else {
  2119. return [species];
  2120. }
  2121. }
  2122. characterMakers.push(() => makeCharacter(
  2123. {
  2124. name: "Fen",
  2125. species: ["crux"],
  2126. description: {
  2127. title: "Bio",
  2128. text: "Very furry. Sheds on everything."
  2129. },
  2130. tags: [
  2131. "anthro",
  2132. "goo"
  2133. ]
  2134. },
  2135. {
  2136. front: {
  2137. height: math.unit(12, "feet"),
  2138. weight: math.unit(2400, "lb"),
  2139. preyCapacity: math.unit(1, "people"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/fen/front.svg",
  2143. extra: 1804/1562,
  2144. bottom: 205/2009
  2145. },
  2146. extraAttributes: {
  2147. pawSize: {
  2148. name: "Paw Size",
  2149. power: 2,
  2150. type: "area",
  2151. base: math.unit(0.35, "m^2")
  2152. }
  2153. }
  2154. },
  2155. diving: {
  2156. height: math.unit(4.9, "meters"),
  2157. weight: math.unit(2400, "lb"),
  2158. name: "Diving",
  2159. image: {
  2160. source: "./media/characters/fen/diving.svg"
  2161. }
  2162. },
  2163. sleeby: {
  2164. height: math.unit(3.45, "meters"),
  2165. weight: math.unit(2400, "lb"),
  2166. name: "Sleeby",
  2167. image: {
  2168. source: "./media/characters/fen/sleeby.svg"
  2169. }
  2170. },
  2171. goo: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3600, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo",
  2177. image: {
  2178. source: "./media/characters/fen/goo.svg",
  2179. extra: 1307/1071,
  2180. bottom: 134/1441
  2181. }
  2182. },
  2183. gooNsfw: {
  2184. height: math.unit(12, "feet"),
  2185. weight: math.unit(3750, "lb"),
  2186. volume: math.unit(1000, "liters"),
  2187. preyCapacity: math.unit(6, "people"),
  2188. name: "Goo (NSFW)",
  2189. image: {
  2190. source: "./media/characters/fen/goo-nsfw.svg",
  2191. extra: 1875/1734,
  2192. bottom: 122/1997
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(5.03, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/fen/maw.svg"
  2200. }
  2201. },
  2202. gooCeiling: {
  2203. height: math.unit(6.6, "feet"),
  2204. weight: math.unit(3000, "lb"),
  2205. volume: math.unit(1000, "liters"),
  2206. preyCapacity: math.unit(6, "people"),
  2207. name: "Goo (Ceiling)",
  2208. image: {
  2209. source: "./media/characters/fen/goo-ceiling.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(3.77, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/fen/paw.svg"
  2217. },
  2218. extraAttributes: {
  2219. "toeSize": {
  2220. name: "Toe Size",
  2221. power: 2,
  2222. type: "area",
  2223. base: math.unit(0.02875, "m^2")
  2224. },
  2225. "pawSize": {
  2226. name: "Paw Size",
  2227. power: 2,
  2228. type: "area",
  2229. base: math.unit(0.378, "m^2")
  2230. },
  2231. }
  2232. },
  2233. tail: {
  2234. height: math.unit(12.1, "feet"),
  2235. name: "Tail",
  2236. image: {
  2237. source: "./media/characters/fen/tail.svg"
  2238. }
  2239. },
  2240. tailFull: {
  2241. height: math.unit(12.1, "feet"),
  2242. name: "Full Tail",
  2243. image: {
  2244. source: "./media/characters/fen/tail-full.svg"
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(12, "feet"),
  2249. weight: math.unit(2400, "lb"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/fen/back.svg",
  2253. },
  2254. info: {
  2255. description: {
  2256. mode: "append",
  2257. text: "\n\nHe is not currently looking at you."
  2258. }
  2259. }
  2260. },
  2261. full: {
  2262. height: math.unit(1.85, "meter"),
  2263. weight: math.unit(3200, "lb"),
  2264. name: "Full",
  2265. image: {
  2266. source: "./media/characters/fen/full.svg",
  2267. extra: 1133/859,
  2268. bottom: 145/1278
  2269. },
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nMunch."
  2274. }
  2275. }
  2276. },
  2277. gooLounging: {
  2278. height: math.unit(4.53, "feet"),
  2279. weight: math.unit(3000, "lb"),
  2280. preyCapacity: math.unit(6, "people"),
  2281. name: "Goo (Lounging)",
  2282. image: {
  2283. source: "./media/characters/fen/goo-lounging.svg",
  2284. bottom: 116 / 613
  2285. }
  2286. },
  2287. lounging: {
  2288. height: math.unit(10.52, "feet"),
  2289. weight: math.unit(2400, "lb"),
  2290. name: "Lounging",
  2291. image: {
  2292. source: "./media/characters/fen/lounging.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Small",
  2299. height: math.unit(2.2428, "meter")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(12, "feet"),
  2304. default: true,
  2305. },
  2306. {
  2307. name: "Big",
  2308. height: math.unit(20, "feet")
  2309. },
  2310. {
  2311. name: "Minimacro",
  2312. height: math.unit(40, "feet"),
  2313. info: {
  2314. description: {
  2315. mode: "append",
  2316. text: "\n\nTOO DAMN BIG"
  2317. }
  2318. }
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. info: {
  2324. description: {
  2325. mode: "append",
  2326. text: "\n\nTOO DAMN BIG"
  2327. }
  2328. }
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(2, "miles")
  2333. },
  2334. {
  2335. name: "Gigamacro",
  2336. height: math.unit(10, "earths")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(183, "cm"),
  2345. weight: math.unit(80, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sofia-fluttertail/front.svg",
  2349. bottom: 0.01,
  2350. extra: 2154 / 2081
  2351. }
  2352. },
  2353. frontAlt: {
  2354. height: math.unit(183, "cm"),
  2355. weight: math.unit(80, "kg"),
  2356. name: "Front (alt)",
  2357. image: {
  2358. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(183, "cm"),
  2363. weight: math.unit(80, "kg"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/back.svg"
  2367. }
  2368. },
  2369. kneeling: {
  2370. height: math.unit(125, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Kneeling",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2375. extra: 1033 / 977,
  2376. bottom: 23.7 / 1057
  2377. }
  2378. },
  2379. maw: {
  2380. height: math.unit(183 / 5, "cm"),
  2381. name: "Maw",
  2382. image: {
  2383. source: "./media/characters/sofia-fluttertail/maw.svg"
  2384. }
  2385. },
  2386. mawcloseup: {
  2387. height: math.unit(183 / 5 * 0.41, "cm"),
  2388. name: "Maw (Closeup)",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2391. }
  2392. },
  2393. paws: {
  2394. height: math.unit(1.17, "feet"),
  2395. name: "Paws",
  2396. image: {
  2397. source: "./media/characters/sofia-fluttertail/paws.svg",
  2398. extra: 851 / 851,
  2399. bottom: 17 / 868
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Normal",
  2406. height: math.unit(1.83, "meter")
  2407. },
  2408. {
  2409. name: "Size Thief",
  2410. height: math.unit(18, "feet")
  2411. },
  2412. {
  2413. name: "50 Foot Collie",
  2414. height: math.unit(50, "feet")
  2415. },
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(96, "feet"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Megamerger",
  2423. height: math.unit(650, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/march/front.svg",
  2436. extra: 1992/1851,
  2437. bottom: 39/2031
  2438. }
  2439. },
  2440. foot: {
  2441. height: math.unit(0.9, "feet"),
  2442. name: "Foot",
  2443. image: {
  2444. source: "./media/characters/march/foot.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(7.9, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(220, "meters")
  2456. },
  2457. {
  2458. name: "Megamacro",
  2459. height: math.unit(2.98, "km"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Gigamacro",
  2464. height: math.unit(15963, "km")
  2465. },
  2466. {
  2467. name: "Teramacro",
  2468. height: math.unit(2980000000, "km")
  2469. },
  2470. {
  2471. name: "Examacro",
  2472. height: math.unit(250, "parsecs")
  2473. },
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2478. {
  2479. front: {
  2480. height: math.unit(6, "feet"),
  2481. weight: math.unit(60, "kg"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/noir/front.svg",
  2485. extra: 1,
  2486. bottom: 0.032
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(6.6, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(500, "feet")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(2.5, "km"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(22500, "km")
  2507. },
  2508. {
  2509. name: "Teramacro",
  2510. height: math.unit(2500000000, "km")
  2511. },
  2512. {
  2513. name: "Examacro",
  2514. height: math.unit(200, "parsecs")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/okuri/front.svg",
  2527. extra: 739/665,
  2528. bottom: 39/778
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/okuri/back.svg",
  2537. extra: 734/653,
  2538. bottom: 13/747
  2539. }
  2540. },
  2541. sitting: {
  2542. height: math.unit(2.95, "feet"),
  2543. weight: math.unit(100, "kg"),
  2544. name: "Sitting",
  2545. image: {
  2546. source: "./media/characters/okuri/sitting.svg",
  2547. extra: 370/318,
  2548. bottom: 99/469
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Smallest",
  2555. height: math.unit(5 + 2/12, "feet")
  2556. },
  2557. {
  2558. name: "Smaller",
  2559. height: math.unit(300, "feet")
  2560. },
  2561. {
  2562. name: "Small",
  2563. height: math.unit(1000, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(1, "mile")
  2568. },
  2569. {
  2570. name: "Mega Macro (Small)",
  2571. height: math.unit(20, "km")
  2572. },
  2573. {
  2574. name: "Mega Macro (Large)",
  2575. height: math.unit(600, "km")
  2576. },
  2577. {
  2578. name: "Giga Macro",
  2579. height: math.unit(10000, "km")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(577560, "km"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Large",
  2588. height: math.unit(4, "galaxies")
  2589. },
  2590. {
  2591. name: "Largest",
  2592. height: math.unit(15, "multiverses")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(100, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/manny/front.svg",
  2605. extra: 1,
  2606. bottom: 0.06
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7, "feet"),
  2611. weight: math.unit(100, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/manny/back.svg",
  2615. extra: 1,
  2616. bottom: 0.014
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(7, "feet"),
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(78, "feet"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Macro+",
  2632. height: math.unit(300, "meters")
  2633. },
  2634. {
  2635. name: "Macro++",
  2636. height: math.unit(2400, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(5167, "meters")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(41769, "miles")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(100, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/adake/front-1.svg"
  2657. }
  2658. },
  2659. frontAlt: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front (Alt)",
  2663. image: {
  2664. source: "./media/characters/adake/front-2.svg",
  2665. extra: 1,
  2666. bottom: 0.01
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(7, "feet"),
  2671. weight: math.unit(100, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/adake/back.svg",
  2675. }
  2676. },
  2677. kneel: {
  2678. height: math.unit(5.385, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Kneeling",
  2681. image: {
  2682. source: "./media/characters/adake/kneel.svg",
  2683. bottom: 0.052
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(7, "feet"),
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(78, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(300, "meters")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(2400, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(5167, "meters")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(41769, "miles")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2717. {
  2718. front: {
  2719. height: math.unit(1.65, "meters"),
  2720. weight: math.unit(50, "kg"),
  2721. name: "Front",
  2722. image: {
  2723. source: "./media/characters/elijah/front.svg",
  2724. extra: 858 / 830,
  2725. bottom: 95.5 / 953.8559
  2726. }
  2727. },
  2728. back: {
  2729. height: math.unit(1.65, "meters"),
  2730. weight: math.unit(50, "kg"),
  2731. name: "Back",
  2732. image: {
  2733. source: "./media/characters/elijah/back.svg",
  2734. extra: 895 / 850,
  2735. bottom: 5.3 / 897.956
  2736. }
  2737. },
  2738. frontNsfw: {
  2739. height: math.unit(1.65, "meters"),
  2740. weight: math.unit(50, "kg"),
  2741. name: "Front (NSFW)",
  2742. image: {
  2743. source: "./media/characters/elijah/front-nsfw.svg",
  2744. extra: 858 / 830,
  2745. bottom: 95.5 / 953.8559
  2746. }
  2747. },
  2748. backNsfw: {
  2749. height: math.unit(1.65, "meters"),
  2750. weight: math.unit(50, "kg"),
  2751. name: "Back (NSFW)",
  2752. image: {
  2753. source: "./media/characters/elijah/back-nsfw.svg",
  2754. extra: 895 / 850,
  2755. bottom: 5.3 / 897.956
  2756. }
  2757. },
  2758. dick: {
  2759. height: math.unit(1, "feet"),
  2760. name: "Dick",
  2761. image: {
  2762. source: "./media/characters/elijah/dick.svg"
  2763. }
  2764. },
  2765. beakOpen: {
  2766. height: math.unit(1.25, "feet"),
  2767. name: "Beak (Open)",
  2768. image: {
  2769. source: "./media/characters/elijah/beak-open.svg"
  2770. }
  2771. },
  2772. beakShut: {
  2773. height: math.unit(1.25, "feet"),
  2774. name: "Beak (Shut)",
  2775. image: {
  2776. source: "./media/characters/elijah/beak-shut.svg"
  2777. }
  2778. },
  2779. footFlexing: {
  2780. height: math.unit(1.61, "feet"),
  2781. name: "Foot (Flexing)",
  2782. image: {
  2783. source: "./media/characters/elijah/foot-flexing.svg"
  2784. }
  2785. },
  2786. footStepping: {
  2787. height: math.unit(1.44, "feet"),
  2788. name: "Foot (Stepping)",
  2789. image: {
  2790. source: "./media/characters/elijah/foot-stepping.svg"
  2791. }
  2792. },
  2793. plantigradeLeg: {
  2794. height: math.unit(2.34, "feet"),
  2795. name: "Plantigrade Leg",
  2796. image: {
  2797. source: "./media/characters/elijah/plantigrade-leg.svg"
  2798. }
  2799. },
  2800. plantigradeFootLeft: {
  2801. height: math.unit(0.9, "feet"),
  2802. name: "Plantigrade Foot (Left)",
  2803. image: {
  2804. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2805. }
  2806. },
  2807. plantigradeFootRight: {
  2808. height: math.unit(0.9, "feet"),
  2809. name: "Plantigrade Foot (Right)",
  2810. image: {
  2811. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(1.65, "meters")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(55, "meters"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(105, "meters")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7 + 2/12, "feet"),
  2836. weight: math.unit(320, "kg"),
  2837. preyCapacity: math.unit(0.276549935, "people"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/rai/front.svg",
  2841. extra: 1802/1696,
  2842. bottom: 68/1870
  2843. },
  2844. form: "anthro",
  2845. default: true
  2846. },
  2847. frontDressed: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Front (Dressed)",
  2852. image: {
  2853. source: "./media/characters/rai/front-dressed.svg",
  2854. extra: 1802/1696,
  2855. bottom: 68/1870
  2856. },
  2857. form: "anthro"
  2858. },
  2859. side: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/rai/side.svg",
  2866. extra: 1789/1710,
  2867. bottom: 115/1904
  2868. },
  2869. form: "anthro"
  2870. },
  2871. back: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/rai/back.svg",
  2878. extra: 1770/1707,
  2879. bottom: 28/1798
  2880. },
  2881. form: "anthro"
  2882. },
  2883. feral: {
  2884. height: math.unit(9.5, "feet"),
  2885. weight: math.unit(640, "kg"),
  2886. preyCapacity: math.unit(4, "people"),
  2887. name: "Feral",
  2888. image: {
  2889. source: "./media/characters/rai/feral.svg",
  2890. extra: 945/553,
  2891. bottom: 176/1121
  2892. },
  2893. form: "feral",
  2894. default: true
  2895. },
  2896. dragon: {
  2897. height: math.unit(23, "feet"),
  2898. weight: math.unit(50000, "lb"),
  2899. name: "Dragon",
  2900. image: {
  2901. source: "./media/characters/rai/dragon.svg",
  2902. extra: 2498 / 2030,
  2903. bottom: 85.2 / 2584
  2904. },
  2905. form: "dragon",
  2906. default: true
  2907. },
  2908. maw: {
  2909. height: math.unit(1.69, "feet"),
  2910. name: "Maw",
  2911. image: {
  2912. source: "./media/characters/rai/maw.svg"
  2913. },
  2914. form: "anthro"
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(7 + 2/12, "feet"),
  2921. form: "anthro"
  2922. },
  2923. {
  2924. name: "Big",
  2925. height: math.unit(11, "feet"),
  2926. form: "anthro"
  2927. },
  2928. {
  2929. name: "Minimacro",
  2930. height: math.unit(77, "feet"),
  2931. form: "anthro"
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(302, "feet"),
  2936. default: true,
  2937. form: "anthro"
  2938. },
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(9.5, "feet"),
  2942. form: "feral",
  2943. default: true
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(23, "feet"),
  2948. form: "dragon",
  2949. default: true
  2950. }
  2951. ],
  2952. {
  2953. "anthro": {
  2954. name: "Anthro",
  2955. default: true
  2956. },
  2957. "feral": {
  2958. name: "Feral",
  2959. },
  2960. "dragon": {
  2961. name: "Dragon",
  2962. },
  2963. }
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2967. {
  2968. frontDressed: {
  2969. height: math.unit(216, "feet"),
  2970. weight: math.unit(7000000, "lb"),
  2971. preyCapacity: math.unit(1321, "people"),
  2972. name: "Front (Dressed)",
  2973. image: {
  2974. source: "./media/characters/jazzy/front-dressed.svg",
  2975. extra: 2738 / 2651,
  2976. bottom: 41.8 / 2786
  2977. }
  2978. },
  2979. backDressed: {
  2980. height: math.unit(216, "feet"),
  2981. weight: math.unit(7000000, "lb"),
  2982. preyCapacity: math.unit(1321, "people"),
  2983. name: "Back (Dressed)",
  2984. image: {
  2985. source: "./media/characters/jazzy/back-dressed.svg",
  2986. extra: 2775 / 2673,
  2987. bottom: 36.8 / 2817
  2988. }
  2989. },
  2990. front: {
  2991. height: math.unit(216, "feet"),
  2992. weight: math.unit(7000000, "lb"),
  2993. preyCapacity: math.unit(1321, "people"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/jazzy/front.svg",
  2997. extra: 2738 / 2651,
  2998. bottom: 41.8 / 2786
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(216, "feet"),
  3003. weight: math.unit(7000000, "lb"),
  3004. preyCapacity: math.unit(1321, "people"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/jazzy/back.svg",
  3008. extra: 2775 / 2673,
  3009. bottom: 36.8 / 2817
  3010. }
  3011. },
  3012. maw: {
  3013. height: math.unit(20, "feet"),
  3014. name: "Maw",
  3015. image: {
  3016. source: "./media/characters/jazzy/maw.svg"
  3017. }
  3018. },
  3019. paws: {
  3020. height: math.unit(27.5, "feet"),
  3021. name: "Paws",
  3022. image: {
  3023. source: "./media/characters/jazzy/paws.svg"
  3024. }
  3025. },
  3026. eye: {
  3027. height: math.unit(4.4, "feet"),
  3028. name: "Eye",
  3029. image: {
  3030. source: "./media/characters/jazzy/eye.svg"
  3031. }
  3032. },
  3033. droneOffense: {
  3034. height: math.unit(9.5, "inches"),
  3035. name: "Drone (Offense)",
  3036. image: {
  3037. source: "./media/characters/jazzy/drone-offense.svg"
  3038. }
  3039. },
  3040. droneRecon: {
  3041. height: math.unit(9.5, "inches"),
  3042. name: "Drone (Recon)",
  3043. image: {
  3044. source: "./media/characters/jazzy/drone-recon.svg"
  3045. }
  3046. },
  3047. droneDefense: {
  3048. height: math.unit(9.5, "inches"),
  3049. name: "Drone (Defense)",
  3050. image: {
  3051. source: "./media/characters/jazzy/drone-defense.svg"
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(216, "feet"),
  3059. default: true
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(9 + 6/12, "feet"),
  3068. weight: math.unit(700, "lb"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/flamm/front.svg",
  3072. extra: 1751/1632,
  3073. bottom: 46/1797
  3074. }
  3075. },
  3076. buff: {
  3077. height: math.unit(9 + 6/12, "feet"),
  3078. weight: math.unit(950, "lb"),
  3079. name: "Buff",
  3080. image: {
  3081. source: "./media/characters/flamm/buff.svg",
  3082. extra: 3018/2874,
  3083. bottom: 221/3239
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(9.5, "feet")
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(200, "feet"),
  3095. default: true
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(5 + 3/12, "feet"),
  3104. weight: math.unit(60, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/zephiro/front.svg",
  3108. extra: 1873/1761,
  3109. bottom: 147/2020
  3110. }
  3111. },
  3112. side: {
  3113. height: math.unit(5 + 3/12, "feet"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Side",
  3116. image: {
  3117. source: "./media/characters/zephiro/side.svg",
  3118. extra: 1929/1827,
  3119. bottom: 65/1994
  3120. }
  3121. },
  3122. back: {
  3123. height: math.unit(5 + 3/12, "feet"),
  3124. weight: math.unit(60, "kg"),
  3125. name: "Back",
  3126. image: {
  3127. source: "./media/characters/zephiro/back.svg",
  3128. extra: 1926/1816,
  3129. bottom: 41/1967
  3130. }
  3131. },
  3132. hand: {
  3133. height: math.unit(0.68, "feet"),
  3134. name: "Hand",
  3135. image: {
  3136. source: "./media/characters/zephiro/hand.svg"
  3137. }
  3138. },
  3139. paw: {
  3140. height: math.unit(1, "feet"),
  3141. name: "Paw",
  3142. image: {
  3143. source: "./media/characters/zephiro/paw.svg"
  3144. }
  3145. },
  3146. beans: {
  3147. height: math.unit(0.93, "feet"),
  3148. name: "Beans",
  3149. image: {
  3150. source: "./media/characters/zephiro/beans.svg"
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Micro",
  3157. height: math.unit(3, "inches")
  3158. },
  3159. {
  3160. name: "Normal",
  3161. height: math.unit(5 + 3 / 12, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(118, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(5, "feet"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/fory/front.svg",
  3179. extra: 2862 / 2674,
  3180. bottom: 180 / 3043.8
  3181. },
  3182. form: "weaselbun",
  3183. default: true,
  3184. extraAttributes: {
  3185. "pawSize": {
  3186. name: "Paw Size",
  3187. power: 2,
  3188. type: "area",
  3189. base: math.unit(0.1596, "m^2")
  3190. },
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(5, "feet"),
  3195. weight: math.unit(90, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/fory/back.svg",
  3199. extra: 1790/1672,
  3200. bottom: 84/1874
  3201. },
  3202. form: "weaselbun",
  3203. extraAttributes: {
  3204. "pawSize": {
  3205. name: "Paw Size",
  3206. power: 2,
  3207. type: "area",
  3208. base: math.unit(0.1596, "m^2")
  3209. },
  3210. }
  3211. },
  3212. paw: {
  3213. height: math.unit(2.14, "feet"),
  3214. name: "Paw",
  3215. image: {
  3216. source: "./media/characters/fory/paw.svg"
  3217. },
  3218. form: "weaselbun",
  3219. extraAttributes: {
  3220. "pawSize": {
  3221. name: "Paw Size",
  3222. power: 2,
  3223. type: "area",
  3224. base: math.unit(0.1596, "m^2")
  3225. },
  3226. }
  3227. },
  3228. bunBack: {
  3229. height: math.unit(3, "feet"),
  3230. weight: math.unit(20, "kg"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/fory/bun-back.svg",
  3234. extra: 1749/1564,
  3235. bottom: 246/1995
  3236. },
  3237. form: "bun",
  3238. default: true,
  3239. extraAttributes: {
  3240. "pawSize": {
  3241. name: "Paw Size",
  3242. power: 2,
  3243. type: "area",
  3244. base: math.unit(0.072, "m^2")
  3245. },
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(5, "feet"),
  3253. form: "weaselbun"
  3254. },
  3255. {
  3256. name: "Macro",
  3257. height: math.unit(50, "feet"),
  3258. default: true,
  3259. form: "weaselbun"
  3260. },
  3261. {
  3262. name: "Megamacro",
  3263. height: math.unit(10, "miles"),
  3264. form: "weaselbun"
  3265. },
  3266. {
  3267. name: "Gigamacro",
  3268. height: math.unit(5, "earths"),
  3269. form: "weaselbun"
  3270. },
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(3, "feet"),
  3274. default: true,
  3275. form: "bun"
  3276. },
  3277. {
  3278. name: "Fun-Size",
  3279. height: math.unit(12, "feet"),
  3280. form: "bun"
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(100, "feet"),
  3285. form: "bun"
  3286. },
  3287. {
  3288. name: "Planetary",
  3289. height: math.unit(3, "earths"),
  3290. form: "bun"
  3291. },
  3292. ],
  3293. {
  3294. "weaselbun": {
  3295. name: "Weaselbun",
  3296. default: true
  3297. },
  3298. "bun": {
  3299. name: "Bun",
  3300. },
  3301. }
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(7, "feet"),
  3308. weight: math.unit(90, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kurrikage/front.svg",
  3312. extra: 1845/1733,
  3313. bottom: 119/1964
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(7, "feet"),
  3318. weight: math.unit(90, "kg"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/kurrikage/back.svg",
  3322. extra: 1790/1677,
  3323. bottom: 61/1851
  3324. }
  3325. },
  3326. dressed: {
  3327. height: math.unit(7, "feet"),
  3328. weight: math.unit(90, "kg"),
  3329. name: "Dressed",
  3330. image: {
  3331. source: "./media/characters/kurrikage/dressed.svg",
  3332. extra: 1845/1733,
  3333. bottom: 119/1964
  3334. }
  3335. },
  3336. foot: {
  3337. height: math.unit(1.5, "feet"),
  3338. name: "Foot",
  3339. image: {
  3340. source: "./media/characters/kurrikage/foot.svg"
  3341. }
  3342. },
  3343. staff: {
  3344. height: math.unit(6.7, "feet"),
  3345. name: "Staff",
  3346. image: {
  3347. source: "./media/characters/kurrikage/staff.svg"
  3348. }
  3349. },
  3350. peek: {
  3351. height: math.unit(1.05, "feet"),
  3352. name: "Peeking",
  3353. image: {
  3354. source: "./media/characters/kurrikage/peek.svg",
  3355. bottom: 0.08
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(12, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Big",
  3367. height: math.unit(20, "feet")
  3368. },
  3369. {
  3370. name: "Macro",
  3371. height: math.unit(500, "feet")
  3372. },
  3373. {
  3374. name: "Megamacro",
  3375. height: math.unit(20, "miles")
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(6, "feet"),
  3384. weight: math.unit(75, "kg"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/shingo/front.svg",
  3388. extra: 1900/1825,
  3389. bottom: 82/1982
  3390. }
  3391. },
  3392. side: {
  3393. height: math.unit(6, "feet"),
  3394. weight: math.unit(75, "kg"),
  3395. name: "Side",
  3396. image: {
  3397. source: "./media/characters/shingo/side.svg",
  3398. extra: 1930/1865,
  3399. bottom: 16/1946
  3400. }
  3401. },
  3402. back: {
  3403. height: math.unit(6, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Back",
  3406. image: {
  3407. source: "./media/characters/shingo/back.svg",
  3408. extra: 1922/1852,
  3409. bottom: 16/1938
  3410. }
  3411. },
  3412. frontDressed: {
  3413. height: math.unit(6, "feet"),
  3414. weight: math.unit(150, "lb"),
  3415. name: "Front-dressed",
  3416. image: {
  3417. source: "./media/characters/shingo/front-dressed.svg",
  3418. extra: 1900/1825,
  3419. bottom: 82/1982
  3420. }
  3421. },
  3422. paw: {
  3423. height: math.unit(1.29, "feet"),
  3424. name: "Paw",
  3425. image: {
  3426. source: "./media/characters/shingo/paw.svg"
  3427. }
  3428. },
  3429. hand: {
  3430. height: math.unit(1.07, "feet"),
  3431. name: "Hand",
  3432. image: {
  3433. source: "./media/characters/shingo/hand.svg"
  3434. }
  3435. },
  3436. frontAlt: {
  3437. height: math.unit(6, "feet"),
  3438. weight: math.unit(75, "kg"),
  3439. name: "Front (Alt)",
  3440. image: {
  3441. source: "./media/characters/shingo/front-alt.svg",
  3442. extra: 3511 / 3338,
  3443. bottom: 0.005
  3444. }
  3445. },
  3446. frontAlt2: {
  3447. height: math.unit(6, "feet"),
  3448. weight: math.unit(75, "kg"),
  3449. name: "Front (Alt 2)",
  3450. image: {
  3451. source: "./media/characters/shingo/front-alt-2.svg",
  3452. extra: 706/681,
  3453. bottom: 11/717
  3454. }
  3455. },
  3456. pawAlt: {
  3457. height: math.unit(1, "feet"),
  3458. name: "Paw (Alt)",
  3459. image: {
  3460. source: "./media/characters/shingo/paw-alt.svg"
  3461. }
  3462. },
  3463. },
  3464. [
  3465. {
  3466. name: "Micro",
  3467. height: math.unit(4, "inches")
  3468. },
  3469. {
  3470. name: "Normal",
  3471. height: math.unit(6, "feet"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Macro",
  3476. height: math.unit(108, "feet")
  3477. },
  3478. {
  3479. name: "Macro+",
  3480. height: math.unit(1500, "feet")
  3481. },
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3486. {
  3487. side: {
  3488. height: math.unit(6, "feet"),
  3489. weight: math.unit(75, "kg"),
  3490. name: "Side",
  3491. image: {
  3492. source: "./media/characters/aigey/side.svg"
  3493. }
  3494. },
  3495. },
  3496. [
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(200, "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(100, "miles")
  3505. },
  3506. ]
  3507. )
  3508. )
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3511. {
  3512. front: {
  3513. height: math.unit(5 + 5 / 12, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Front",
  3516. image: {
  3517. source: "./media/characters/natasha/front.svg",
  3518. extra: 859 / 824,
  3519. bottom: 23 / 879.6
  3520. }
  3521. },
  3522. frontNsfw: {
  3523. height: math.unit(5 + 5 / 12, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Front (NSFW)",
  3526. image: {
  3527. source: "./media/characters/natasha/front-nsfw.svg",
  3528. extra: 859 / 824,
  3529. bottom: 23 / 879.6
  3530. }
  3531. },
  3532. frontErect: {
  3533. height: math.unit(5 + 5 / 12, "feet"),
  3534. weight: math.unit(75, "kg"),
  3535. name: "Front (Erect)",
  3536. image: {
  3537. source: "./media/characters/natasha/front-erect.svg",
  3538. extra: 859 / 824,
  3539. bottom: 23 / 879.6
  3540. }
  3541. },
  3542. back: {
  3543. height: math.unit(5 + 5 / 12, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Back",
  3546. image: {
  3547. source: "./media/characters/natasha/back.svg",
  3548. extra: 887.9 / 852.6,
  3549. bottom: 9.7 / 896.4
  3550. }
  3551. },
  3552. backAlt: {
  3553. height: math.unit(5 + 5 / 12, "feet"),
  3554. weight: math.unit(75, "kg"),
  3555. name: "Back (Alt)",
  3556. image: {
  3557. source: "./media/characters/natasha/back-alt.svg",
  3558. extra: 1236.7 / 1192,
  3559. bottom: 22.3 / 1258.2
  3560. }
  3561. },
  3562. dick: {
  3563. height: math.unit(1.772, "feet"),
  3564. name: "Dick",
  3565. image: {
  3566. source: "./media/characters/natasha/dick.svg"
  3567. }
  3568. },
  3569. paw: {
  3570. height: math.unit(0.250, "meters"),
  3571. name: "Paw",
  3572. image: {
  3573. source: "./media/characters/natasha/paw.svg"
  3574. },
  3575. extraAttributes: {
  3576. "toeSize": {
  3577. name: "Toe Size",
  3578. power: 2,
  3579. type: "area",
  3580. base: math.unit(0.0024, "m^2")
  3581. },
  3582. "padSize": {
  3583. name: "Pad Size",
  3584. power: 2,
  3585. type: "area",
  3586. base: math.unit(0.00889, "m^2")
  3587. },
  3588. "pawSize": {
  3589. name: "Paw Size",
  3590. power: 2,
  3591. type: "area",
  3592. base: math.unit(0.023667, "m^2")
  3593. },
  3594. }
  3595. },
  3596. },
  3597. [
  3598. {
  3599. name: "Shortstack",
  3600. height: math.unit(3, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(5 + 5 / 12, "feet")
  3606. },
  3607. {
  3608. name: "Large",
  3609. height: math.unit(12, "feet")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(100, "feet")
  3614. },
  3615. {
  3616. name: "Macro+",
  3617. height: math.unit(260, "feet")
  3618. },
  3619. {
  3620. name: "Macro++",
  3621. height: math.unit(1, "mile")
  3622. },
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(6, "feet"),
  3630. weight: math.unit(75, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/malik/front.svg",
  3634. extra: 1750/1561,
  3635. bottom: 80/1830
  3636. },
  3637. extraAttributes: {
  3638. "toeSize": {
  3639. name: "Toe Size",
  3640. power: 2,
  3641. type: "area",
  3642. base: math.unit(0.0159, "m^2")
  3643. },
  3644. "pawSize": {
  3645. name: "Paw Size",
  3646. power: 2,
  3647. type: "area",
  3648. base: math.unit(0.09834, "m^2")
  3649. },
  3650. }
  3651. },
  3652. side: {
  3653. height: math.unit(6, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Side",
  3656. image: {
  3657. source: "./media/characters/malik/side.svg",
  3658. extra: 1802/1685,
  3659. bottom: 42/1844
  3660. },
  3661. extraAttributes: {
  3662. "toeSize": {
  3663. name: "Toe Size",
  3664. power: 2,
  3665. type: "area",
  3666. base: math.unit(0.0159, "m^2")
  3667. },
  3668. "pawSize": {
  3669. name: "Paw Size",
  3670. power: 2,
  3671. type: "area",
  3672. base: math.unit(0.09834, "m^2")
  3673. },
  3674. }
  3675. },
  3676. back: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(75, "kg"),
  3679. name: "Back",
  3680. image: {
  3681. source: "./media/characters/malik/back.svg",
  3682. extra: 1803/1607,
  3683. bottom: 33/1836
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0159, "m^2")
  3691. },
  3692. "pawSize": {
  3693. name: "Paw Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.09834, "m^2")
  3697. },
  3698. }
  3699. },
  3700. },
  3701. [
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(156, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "Macro+",
  3709. height: math.unit(1188, "feet")
  3710. },
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(75, "kg"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/sefer/front.svg",
  3722. extra: 848 / 659,
  3723. bottom: 28.3 / 876.442
  3724. }
  3725. },
  3726. back: {
  3727. height: math.unit(6, "feet"),
  3728. weight: math.unit(75, "kg"),
  3729. name: "Back",
  3730. image: {
  3731. source: "./media/characters/sefer/back.svg",
  3732. extra: 864 / 695,
  3733. bottom: 10 / 871
  3734. }
  3735. },
  3736. frontDressed: {
  3737. height: math.unit(6, "feet"),
  3738. weight: math.unit(75, "kg"),
  3739. name: "Dressed",
  3740. image: {
  3741. source: "./media/characters/sefer/dressed.svg",
  3742. extra: 839 / 653,
  3743. bottom: 37.6 / 878
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(6, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Big",
  3755. height: math.unit(8, "meters")
  3756. },
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3761. {
  3762. body: {
  3763. height: math.unit(2.2428, "meter"),
  3764. weight: math.unit(124.738, "kg"),
  3765. name: "Body",
  3766. image: {
  3767. extra: 1225 / 1050,
  3768. source: "./media/characters/north/front.svg"
  3769. }
  3770. }
  3771. },
  3772. [
  3773. {
  3774. name: "Micro",
  3775. height: math.unit(4, "inches")
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(63, "meters")
  3780. },
  3781. {
  3782. name: "Megamacro",
  3783. height: math.unit(101, "miles"),
  3784. default: true
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3790. {
  3791. angled: {
  3792. height: math.unit(4, "meter"),
  3793. weight: math.unit(150, "kg"),
  3794. name: "Angled",
  3795. image: {
  3796. source: "./media/characters/talan/angled-sfw.svg",
  3797. bottom: 29 / 3734
  3798. }
  3799. },
  3800. angledNsfw: {
  3801. height: math.unit(4, "meter"),
  3802. weight: math.unit(150, "kg"),
  3803. name: "Angled (NSFW)",
  3804. image: {
  3805. source: "./media/characters/talan/angled-nsfw.svg",
  3806. bottom: 29 / 3734
  3807. }
  3808. },
  3809. frontNsfw: {
  3810. height: math.unit(4, "meter"),
  3811. weight: math.unit(150, "kg"),
  3812. name: "Front (NSFW)",
  3813. image: {
  3814. source: "./media/characters/talan/front-nsfw.svg",
  3815. bottom: 29 / 3734
  3816. }
  3817. },
  3818. sideNsfw: {
  3819. height: math.unit(4, "meter"),
  3820. weight: math.unit(150, "kg"),
  3821. name: "Side (NSFW)",
  3822. image: {
  3823. source: "./media/characters/talan/side-nsfw.svg",
  3824. bottom: 29 / 3734
  3825. }
  3826. },
  3827. back: {
  3828. height: math.unit(4, "meter"),
  3829. weight: math.unit(150, "kg"),
  3830. name: "Back",
  3831. image: {
  3832. source: "./media/characters/talan/back.svg"
  3833. }
  3834. },
  3835. dickBottom: {
  3836. height: math.unit(0.621, "meter"),
  3837. name: "Dick (Bottom)",
  3838. image: {
  3839. source: "./media/characters/talan/dick-bottom.svg"
  3840. }
  3841. },
  3842. dickTop: {
  3843. height: math.unit(0.621, "meter"),
  3844. name: "Dick (Top)",
  3845. image: {
  3846. source: "./media/characters/talan/dick-top.svg"
  3847. }
  3848. },
  3849. dickSide: {
  3850. height: math.unit(0.305, "meter"),
  3851. name: "Dick (Side)",
  3852. image: {
  3853. source: "./media/characters/talan/dick-side.svg"
  3854. }
  3855. },
  3856. dickFront: {
  3857. height: math.unit(0.305, "meter"),
  3858. name: "Dick (Front)",
  3859. image: {
  3860. source: "./media/characters/talan/dick-front.svg"
  3861. }
  3862. },
  3863. },
  3864. [
  3865. {
  3866. name: "Normal",
  3867. height: math.unit(4, "meters")
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(100, "meters")
  3872. },
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(2, "miles"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Gigamacro",
  3880. height: math.unit(5000, "miles")
  3881. },
  3882. {
  3883. name: "Teramacro",
  3884. height: math.unit(100, "parsecs")
  3885. }
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(2, "meter"),
  3893. weight: math.unit(90, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/gael'rathus/front.svg"
  3897. }
  3898. },
  3899. frontAlt: {
  3900. height: math.unit(2, "meter"),
  3901. weight: math.unit(90, "kg"),
  3902. name: "Front (alt)",
  3903. image: {
  3904. source: "./media/characters/gael'rathus/front-alt.svg"
  3905. }
  3906. },
  3907. frontAlt2: {
  3908. height: math.unit(2, "meter"),
  3909. weight: math.unit(90, "kg"),
  3910. name: "Front (alt 2)",
  3911. image: {
  3912. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3913. }
  3914. }
  3915. },
  3916. [
  3917. {
  3918. name: "Normal",
  3919. height: math.unit(9, "feet"),
  3920. default: true
  3921. },
  3922. {
  3923. name: "Large",
  3924. height: math.unit(25, "feet")
  3925. },
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(0.25, "miles")
  3929. },
  3930. {
  3931. name: "Megamacro",
  3932. height: math.unit(10, "miles")
  3933. }
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3938. {
  3939. side: {
  3940. height: math.unit(2, "meter"),
  3941. weight: math.unit(140, "kg"),
  3942. name: "Side",
  3943. image: {
  3944. source: "./media/characters/sosha/side.svg",
  3945. extra: 1170/1006,
  3946. bottom: 94/1264
  3947. }
  3948. },
  3949. maw: {
  3950. height: math.unit(2.87, "feet"),
  3951. name: "Maw",
  3952. image: {
  3953. source: "./media/characters/sosha/maw.svg",
  3954. extra: 966/865,
  3955. bottom: 0/966
  3956. }
  3957. },
  3958. cooch: {
  3959. height: math.unit(5.6, "feet"),
  3960. name: "Cooch",
  3961. image: {
  3962. source: "./media/characters/sosha/cooch.svg"
  3963. }
  3964. },
  3965. },
  3966. [
  3967. {
  3968. name: "Normal",
  3969. height: math.unit(12, "feet"),
  3970. default: true
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3976. {
  3977. side: {
  3978. height: math.unit(5 + 5 / 12, "feet"),
  3979. weight: math.unit(170, "kg"),
  3980. name: "Side",
  3981. image: {
  3982. source: "./media/characters/runnola/side.svg",
  3983. extra: 741 / 448,
  3984. bottom: 0.05
  3985. }
  3986. },
  3987. },
  3988. [
  3989. {
  3990. name: "Small",
  3991. height: math.unit(3, "feet")
  3992. },
  3993. {
  3994. name: "Normal",
  3995. height: math.unit(5 + 5 / 12, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Big",
  4000. height: math.unit(10, "feet")
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4006. {
  4007. front: {
  4008. height: math.unit(2, "meter"),
  4009. weight: math.unit(50, "kg"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/kurribird/front.svg",
  4013. bottom: 0.015
  4014. }
  4015. },
  4016. frontAlt: {
  4017. height: math.unit(1.5, "meter"),
  4018. weight: math.unit(50, "kg"),
  4019. name: "Front (Alt)",
  4020. image: {
  4021. source: "./media/characters/kurribird/front-alt.svg",
  4022. extra: 1.45
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(7, "feet")
  4030. },
  4031. {
  4032. name: "Big",
  4033. height: math.unit(12, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(1500, "feet")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(2, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(80, "kg"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/elbial/front.svg",
  4055. extra: 1643 / 1556,
  4056. bottom: 60.2 / 1696
  4057. }
  4058. },
  4059. side: {
  4060. height: math.unit(2, "meter"),
  4061. weight: math.unit(80, "kg"),
  4062. name: "Side",
  4063. image: {
  4064. source: "./media/characters/elbial/side.svg",
  4065. extra: 1601/1528,
  4066. bottom: 97/1698
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(2, "meter"),
  4071. weight: math.unit(80, "kg"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/elbial/back.svg",
  4075. extra: 1653/1569,
  4076. bottom: 20/1673
  4077. }
  4078. },
  4079. frontDressed: {
  4080. height: math.unit(2, "meter"),
  4081. weight: math.unit(80, "kg"),
  4082. name: "Front (Dressed)",
  4083. image: {
  4084. source: "./media/characters/elbial/front-dressed.svg",
  4085. extra: 1638/1569,
  4086. bottom: 70/1708
  4087. }
  4088. },
  4089. genitals: {
  4090. height: math.unit(2 / 3.367, "meter"),
  4091. name: "Genitals",
  4092. image: {
  4093. source: "./media/characters/elbial/genitals.svg"
  4094. }
  4095. },
  4096. },
  4097. [
  4098. {
  4099. name: "Large",
  4100. height: math.unit(100, "feet")
  4101. },
  4102. {
  4103. name: "Macro",
  4104. height: math.unit(500, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(10, "miles")
  4110. },
  4111. {
  4112. name: "Gigamacro",
  4113. height: math.unit(25000, "miles")
  4114. },
  4115. {
  4116. name: "Full-Size",
  4117. height: math.unit(8000000, "gigaparsecs")
  4118. }
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(60, "kg"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/noah/front.svg"
  4130. }
  4131. },
  4132. talons: {
  4133. height: math.unit(0.315, "meter"),
  4134. name: "Talons",
  4135. image: {
  4136. source: "./media/characters/noah/talons.svg"
  4137. }
  4138. }
  4139. },
  4140. [
  4141. {
  4142. name: "Large",
  4143. height: math.unit(50, "feet")
  4144. },
  4145. {
  4146. name: "Macro",
  4147. height: math.unit(750, "feet"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(50, "miles")
  4153. },
  4154. {
  4155. name: "Gigamacro",
  4156. height: math.unit(100000, "miles")
  4157. },
  4158. {
  4159. name: "Full-Size",
  4160. height: math.unit(3000000000, "miles")
  4161. }
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(2, "meter"),
  4169. weight: math.unit(80, "kg"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/natalya/front.svg"
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(2, "meter"),
  4177. weight: math.unit(80, "kg"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/natalya/back.svg"
  4181. }
  4182. }
  4183. },
  4184. [
  4185. {
  4186. name: "Normal",
  4187. height: math.unit(150, "feet"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(5, "miles")
  4193. },
  4194. {
  4195. name: "Full-Size",
  4196. height: math.unit(600, "kiloparsecs")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(2, "meter"),
  4205. weight: math.unit(50, "kg"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/erestrebah/front.svg",
  4209. extra: 1262/1162,
  4210. bottom: 96/1358
  4211. }
  4212. },
  4213. back: {
  4214. height: math.unit(2, "meter"),
  4215. weight: math.unit(50, "kg"),
  4216. name: "Back",
  4217. image: {
  4218. source: "./media/characters/erestrebah/back.svg",
  4219. extra: 1257/1139,
  4220. bottom: 13/1270
  4221. }
  4222. },
  4223. wing: {
  4224. height: math.unit(2, "meter"),
  4225. weight: math.unit(50, "kg"),
  4226. name: "Wing",
  4227. image: {
  4228. source: "./media/characters/erestrebah/wing.svg",
  4229. extra: 1262/1162,
  4230. bottom: 96/1358
  4231. }
  4232. },
  4233. mouth: {
  4234. height: math.unit(0.39, "feet"),
  4235. name: "Mouth",
  4236. image: {
  4237. source: "./media/characters/erestrebah/mouth.svg"
  4238. }
  4239. }
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(10, "feet")
  4245. },
  4246. {
  4247. name: "Large",
  4248. height: math.unit(50, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(300, "feet")
  4254. },
  4255. {
  4256. name: "Macro+",
  4257. height: math.unit(750, "feet")
  4258. },
  4259. {
  4260. name: "Megamacro",
  4261. height: math.unit(3, "miles")
  4262. }
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4267. {
  4268. front: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/jennifer/front.svg",
  4274. bottom: 0.11,
  4275. extra: 1.16
  4276. }
  4277. },
  4278. frontAlt: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(80, "kg"),
  4281. name: "Front (Alt)",
  4282. image: {
  4283. source: "./media/characters/jennifer/front-alt.svg"
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Canon Height",
  4290. height: math.unit(120, "feet"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Macro+",
  4295. height: math.unit(300, "feet")
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(20000, "feet")
  4300. }
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(50, "kg"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/kalista/front.svg",
  4312. extra: 1314/1145,
  4313. bottom: 101/1415
  4314. }
  4315. },
  4316. back: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(50, "kg"),
  4319. name: "Back",
  4320. image: {
  4321. source: "./media/characters/kalista/back.svg",
  4322. extra: 1366 / 1156,
  4323. bottom: 33.9 / 1362.78
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Uncomfortably Small",
  4330. height: math.unit(10, "feet")
  4331. },
  4332. {
  4333. name: "Small",
  4334. height: math.unit(30, "feet")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(100, "feet"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Macro+",
  4343. height: math.unit(2000, "feet")
  4344. },
  4345. {
  4346. name: "True Form",
  4347. height: math.unit(8924, "miles")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(120, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/ggv/front.svg"
  4360. }
  4361. },
  4362. side: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(120, "kg"),
  4365. name: "Side",
  4366. image: {
  4367. source: "./media/characters/ggv/side.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Extremely Puny",
  4374. height: math.unit(9 + 5 / 12, "feet")
  4375. },
  4376. {
  4377. name: "Horribly Small",
  4378. height: math.unit(47.7, "miles"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Reasonably Sized",
  4383. height: math.unit(25000, "parsecs")
  4384. },
  4385. {
  4386. name: "Slightly Uncompressed",
  4387. height: math.unit(7.77e31, "parsecs")
  4388. },
  4389. {
  4390. name: "Omniversal",
  4391. height: math.unit(1e300, "meters")
  4392. },
  4393. ]
  4394. ))
  4395. characterMakers.push(() => makeCharacter(
  4396. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4397. {
  4398. front: {
  4399. height: math.unit(2, "meter"),
  4400. weight: math.unit(75, "lb"),
  4401. name: "Front",
  4402. image: {
  4403. source: "./media/characters/napalm/front.svg"
  4404. }
  4405. },
  4406. back: {
  4407. height: math.unit(2, "meter"),
  4408. weight: math.unit(75, "lb"),
  4409. name: "Back",
  4410. image: {
  4411. source: "./media/characters/napalm/back.svg"
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Standard",
  4418. height: math.unit(55, "feet"),
  4419. default: true
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(7 + 5 / 6, "feet"),
  4428. weight: math.unit(325, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/asana/front.svg",
  4432. extra: 1133 / 1060,
  4433. bottom: 15.2 / 1148.6
  4434. }
  4435. },
  4436. back: {
  4437. height: math.unit(7 + 5 / 6, "feet"),
  4438. weight: math.unit(325, "lb"),
  4439. name: "Back",
  4440. image: {
  4441. source: "./media/characters/asana/back.svg",
  4442. extra: 1114 / 1043,
  4443. bottom: 5 / 1120
  4444. }
  4445. },
  4446. dressedDark: {
  4447. height: math.unit(7 + 5 / 6, "feet"),
  4448. weight: math.unit(325, "lb"),
  4449. name: "Dressed (Dark)",
  4450. image: {
  4451. source: "./media/characters/asana/dressed-dark.svg",
  4452. extra: 1133 / 1060,
  4453. bottom: 15.2 / 1148.6
  4454. }
  4455. },
  4456. dressedLight: {
  4457. height: math.unit(7 + 5 / 6, "feet"),
  4458. weight: math.unit(325, "lb"),
  4459. name: "Dressed (Light)",
  4460. image: {
  4461. source: "./media/characters/asana/dressed-light.svg",
  4462. extra: 1133 / 1060,
  4463. bottom: 15.2 / 1148.6
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Standard",
  4470. height: math.unit(7 + 5 / 6, "feet"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Large",
  4475. height: math.unit(10, "meters")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(2500, "meters")
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(5e6, "meters")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(5e12, "lightyears")
  4488. },
  4489. {
  4490. name: "Max Size",
  4491. height: math.unit(1e31, "lightyears")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(2, "meter"),
  4500. weight: math.unit(60, "kg"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/ebony/front.svg",
  4504. bottom: 0.03,
  4505. extra: 1045 / 810 + 0.03
  4506. }
  4507. },
  4508. side: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(60, "kg"),
  4511. name: "Side",
  4512. image: {
  4513. source: "./media/characters/ebony/side.svg",
  4514. bottom: 0.03,
  4515. extra: 1045 / 810 + 0.03
  4516. }
  4517. },
  4518. back: {
  4519. height: math.unit(2, "meter"),
  4520. weight: math.unit(60, "kg"),
  4521. name: "Back",
  4522. image: {
  4523. source: "./media/characters/ebony/back.svg",
  4524. bottom: 0.01,
  4525. extra: 1045 / 810 + 0.01
  4526. }
  4527. },
  4528. },
  4529. [
  4530. // TODO check why I did this lol
  4531. {
  4532. name: "Standard",
  4533. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Macro",
  4538. height: math.unit(200, "feet")
  4539. },
  4540. {
  4541. name: "Gigamacro",
  4542. height: math.unit(13000, "km")
  4543. }
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(6, "feet"),
  4551. weight: math.unit(175, "lb"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/mountain/front.svg",
  4555. extra: 972 / 955,
  4556. bottom: 64 / 1036.6
  4557. }
  4558. },
  4559. back: {
  4560. height: math.unit(6, "feet"),
  4561. weight: math.unit(175, "lb"),
  4562. name: "Back",
  4563. image: {
  4564. source: "./media/characters/mountain/back.svg",
  4565. extra: 970 / 950,
  4566. bottom: 28.25 / 999
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "Large",
  4573. height: math.unit(20, "meters")
  4574. },
  4575. {
  4576. name: "Macro",
  4577. height: math.unit(300, "meters")
  4578. },
  4579. {
  4580. name: "Gigamacro",
  4581. height: math.unit(10000, "km"),
  4582. default: true
  4583. },
  4584. {
  4585. name: "Examacro",
  4586. height: math.unit(10e9, "lightyears")
  4587. }
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(8, "feet"),
  4595. weight: math.unit(500, "lb"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/rick/front.svg"
  4599. }
  4600. }
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(8, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(5, "km")
  4611. }
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4616. {
  4617. front: {
  4618. height: math.unit(8, "feet"),
  4619. weight: math.unit(120, "lb"),
  4620. name: "Front",
  4621. image: {
  4622. source: "./media/characters/ona/front.svg"
  4623. }
  4624. },
  4625. frontAlt: {
  4626. height: math.unit(8, "feet"),
  4627. weight: math.unit(120, "lb"),
  4628. name: "Front (Alt)",
  4629. image: {
  4630. source: "./media/characters/ona/front-alt.svg"
  4631. }
  4632. },
  4633. back: {
  4634. height: math.unit(8, "feet"),
  4635. weight: math.unit(120, "lb"),
  4636. name: "Back",
  4637. image: {
  4638. source: "./media/characters/ona/back.svg"
  4639. }
  4640. },
  4641. foot: {
  4642. height: math.unit(1.1, "feet"),
  4643. name: "Foot",
  4644. image: {
  4645. source: "./media/characters/ona/foot.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Megamacro",
  4652. height: math.unit(70, "km"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Gigamacro",
  4657. height: math.unit(681818, "miles")
  4658. },
  4659. {
  4660. name: "Examacro",
  4661. height: math.unit(3800000, "lightyears")
  4662. },
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(12, "feet"),
  4670. weight: math.unit(3000, "lb"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/mech/front.svg",
  4674. extra: 2900 / 2770,
  4675. bottom: 110 / 3010
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(12, "feet"),
  4680. weight: math.unit(3000, "lb"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/mech/back.svg",
  4684. extra: 3011 / 2890,
  4685. bottom: 94 / 3105
  4686. }
  4687. },
  4688. maw: {
  4689. height: math.unit(3.07, "feet"),
  4690. name: "Maw",
  4691. image: {
  4692. source: "./media/characters/mech/maw.svg"
  4693. }
  4694. },
  4695. head: {
  4696. height: math.unit(3.07, "feet"),
  4697. name: "Head",
  4698. image: {
  4699. source: "./media/characters/mech/head.svg"
  4700. }
  4701. },
  4702. dick: {
  4703. height: math.unit(1.43, "feet"),
  4704. name: "Dick",
  4705. image: {
  4706. source: "./media/characters/mech/dick.svg"
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(12, "feet")
  4714. },
  4715. {
  4716. name: "Macro",
  4717. height: math.unit(300, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Macro+",
  4722. height: math.unit(1500, "feet")
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(1.3, "meter"),
  4731. weight: math.unit(30, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/gregory/front.svg",
  4735. }
  4736. }
  4737. },
  4738. [
  4739. {
  4740. name: "Normal",
  4741. height: math.unit(1.3, "meter"),
  4742. default: true
  4743. },
  4744. {
  4745. name: "Macro",
  4746. height: math.unit(20, "meter")
  4747. }
  4748. ]
  4749. ))
  4750. characterMakers.push(() => makeCharacter(
  4751. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4752. {
  4753. front: {
  4754. height: math.unit(2.8, "meter"),
  4755. weight: math.unit(200, "kg"),
  4756. name: "Front",
  4757. image: {
  4758. source: "./media/characters/elory/front.svg",
  4759. }
  4760. }
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(2.8, "meter"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(38, "meter")
  4771. }
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(470, "feet"),
  4779. weight: math.unit(924, "tons"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/angelpatamon/front.svg",
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(470, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Deity Size I",
  4794. height: math.unit(28651.2, "km")
  4795. },
  4796. {
  4797. name: "Deity Size II",
  4798. height: math.unit(171907.2, "km")
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4804. {
  4805. side: {
  4806. height: math.unit(7.2, "meter"),
  4807. weight: math.unit(8.2, "tons"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/cryae/side.svg",
  4811. extra: 3500 / 1500
  4812. }
  4813. }
  4814. },
  4815. [
  4816. {
  4817. name: "Normal",
  4818. height: math.unit(7.2, "meter"),
  4819. default: true
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(6, "feet"),
  4828. weight: math.unit(175, "lb"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/xera/front.svg",
  4832. extra: 2377 / 1972,
  4833. bottom: 75.5 / 2452
  4834. }
  4835. },
  4836. side: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(175, "lb"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/xera/side.svg",
  4842. extra: 2345 / 2019,
  4843. bottom: 39.7 / 2384
  4844. }
  4845. },
  4846. back: {
  4847. height: math.unit(6, "feet"),
  4848. weight: math.unit(175, "lb"),
  4849. name: "Back",
  4850. image: {
  4851. source: "./media/characters/xera/back.svg",
  4852. extra: 2095 / 1984,
  4853. bottom: 67 / 2166
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Small",
  4860. height: math.unit(10, "feet")
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(500, "meters"),
  4865. default: true
  4866. },
  4867. {
  4868. name: "Macro+",
  4869. height: math.unit(10, "km")
  4870. },
  4871. {
  4872. name: "Gigamacro",
  4873. height: math.unit(25000, "km")
  4874. },
  4875. {
  4876. name: "Teramacro",
  4877. height: math.unit(3e6, "km")
  4878. }
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4883. {
  4884. front: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(175, "lb"),
  4887. name: "Front",
  4888. image: {
  4889. source: "./media/characters/nebula/front.svg",
  4890. extra: 2566 / 2362,
  4891. bottom: 81 / 2644
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Small",
  4898. height: math.unit(4.5, "meters")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(1500, "meters"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Megamacro",
  4907. height: math.unit(150, "km")
  4908. },
  4909. {
  4910. name: "Gigamacro",
  4911. height: math.unit(27000, "km")
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(225, "lb"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/abysgar/front.svg",
  4924. extra: 1739/1614,
  4925. bottom: 71/1810
  4926. }
  4927. },
  4928. frontNsfw: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(225, "lb"),
  4931. name: "Front (NSFW)",
  4932. image: {
  4933. source: "./media/characters/abysgar/front-nsfw.svg",
  4934. extra: 1739/1614,
  4935. bottom: 71/1810
  4936. }
  4937. },
  4938. back: {
  4939. height: math.unit(4.6, "feet"),
  4940. weight: math.unit(225, "lb"),
  4941. name: "Back",
  4942. image: {
  4943. source: "./media/characters/abysgar/back.svg",
  4944. extra: 1384/1327,
  4945. bottom: 0/1384
  4946. }
  4947. },
  4948. head: {
  4949. height: math.unit(1.25, "feet"),
  4950. name: "Head",
  4951. image: {
  4952. source: "./media/characters/abysgar/head.svg",
  4953. extra: 669/569,
  4954. bottom: 0/669
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Small",
  4961. height: math.unit(4.5, "meters")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(1250, "meters"),
  4966. default: true
  4967. },
  4968. {
  4969. name: "Megamacro",
  4970. height: math.unit(125, "km")
  4971. },
  4972. {
  4973. name: "Gigamacro",
  4974. height: math.unit(26000, "km")
  4975. }
  4976. ]
  4977. ))
  4978. characterMakers.push(() => makeCharacter(
  4979. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4980. {
  4981. front: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(180, "lb"),
  4984. name: "Front",
  4985. image: {
  4986. source: "./media/characters/yakuz/front.svg"
  4987. }
  4988. }
  4989. },
  4990. [
  4991. {
  4992. name: "Small",
  4993. height: math.unit(5, "meters")
  4994. },
  4995. {
  4996. name: "Macro",
  4997. height: math.unit(1500, "meters"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(200, "km")
  5003. },
  5004. {
  5005. name: "Gigamacro",
  5006. height: math.unit(100000, "km")
  5007. }
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5012. {
  5013. front: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(175, "lb"),
  5016. name: "Front",
  5017. image: {
  5018. source: "./media/characters/mirova/front.svg",
  5019. extra: 3334 / 3071,
  5020. bottom: 42 / 3375.6
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Small",
  5027. height: math.unit(5, "meters")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(900, "meters"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megamacro",
  5036. height: math.unit(135, "km")
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(20000, "km")
  5041. }
  5042. ]
  5043. ))
  5044. characterMakers.push(() => makeCharacter(
  5045. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5046. {
  5047. side: {
  5048. height: math.unit(28.35, "feet"),
  5049. weight: math.unit(99.75, "tons"),
  5050. name: "Side",
  5051. image: {
  5052. source: "./media/characters/asana-mech/side.svg",
  5053. extra: 923 / 699,
  5054. bottom: 50 / 975
  5055. }
  5056. },
  5057. chaingun: {
  5058. height: math.unit(7, "feet"),
  5059. weight: math.unit(2400, "lb"),
  5060. name: "Chaingun",
  5061. image: {
  5062. source: "./media/characters/asana-mech/chaingun.svg"
  5063. }
  5064. },
  5065. laser: {
  5066. height: math.unit(7.12, "feet"),
  5067. weight: math.unit(2000, "lb"),
  5068. name: "Laser",
  5069. image: {
  5070. source: "./media/characters/asana-mech/laser.svg"
  5071. }
  5072. },
  5073. },
  5074. [
  5075. {
  5076. name: "Normal",
  5077. height: math.unit(28.35, "feet"),
  5078. default: true
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(2500, "feet")
  5083. },
  5084. {
  5085. name: "Megamacro",
  5086. height: math.unit(25, "miles")
  5087. },
  5088. {
  5089. name: "Examacro",
  5090. height: math.unit(6e8, "lightyears")
  5091. },
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5096. {
  5097. front: {
  5098. height: math.unit(5, "meters"),
  5099. weight: math.unit(1000, "kg"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/asche/front.svg",
  5103. extra: 1258 / 1190,
  5104. bottom: 47 / 1305
  5105. }
  5106. },
  5107. frontUnderwear: {
  5108. height: math.unit(5, "meters"),
  5109. weight: math.unit(1000, "kg"),
  5110. name: "Front (Underwear)",
  5111. image: {
  5112. source: "./media/characters/asche/front-underwear.svg",
  5113. extra: 1258 / 1190,
  5114. bottom: 47 / 1305
  5115. }
  5116. },
  5117. frontDressed: {
  5118. height: math.unit(5, "meters"),
  5119. weight: math.unit(1000, "kg"),
  5120. name: "Front (Dressed)",
  5121. image: {
  5122. source: "./media/characters/asche/front-dressed.svg",
  5123. extra: 1258 / 1190,
  5124. bottom: 47 / 1305
  5125. }
  5126. },
  5127. frontArmor: {
  5128. height: math.unit(5, "meters"),
  5129. weight: math.unit(1000, "kg"),
  5130. name: "Front (Armored)",
  5131. image: {
  5132. source: "./media/characters/asche/front-armored.svg",
  5133. extra: 1374 / 1308,
  5134. bottom: 23 / 1397
  5135. }
  5136. },
  5137. mp724: {
  5138. height: math.unit(0.96, "meters"),
  5139. weight: math.unit(38, "kg"),
  5140. name: "H&K MP724",
  5141. image: {
  5142. source: "./media/characters/asche/h&k-mp724.svg"
  5143. }
  5144. },
  5145. side: {
  5146. height: math.unit(5, "meters"),
  5147. weight: math.unit(1000, "kg"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/asche/side.svg",
  5151. extra: 1717 / 1609,
  5152. bottom: 0.005
  5153. }
  5154. },
  5155. back: {
  5156. height: math.unit(5, "meters"),
  5157. weight: math.unit(1000, "kg"),
  5158. name: "Back",
  5159. image: {
  5160. source: "./media/characters/asche/back.svg",
  5161. extra: 1570 / 1501
  5162. }
  5163. },
  5164. },
  5165. [
  5166. {
  5167. name: "DEFCON 5",
  5168. height: math.unit(5, "meters")
  5169. },
  5170. {
  5171. name: "DEFCON 4",
  5172. height: math.unit(500, "meters"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "DEFCON 3",
  5177. height: math.unit(5, "km")
  5178. },
  5179. {
  5180. name: "DEFCON 2",
  5181. height: math.unit(500, "km")
  5182. },
  5183. {
  5184. name: "DEFCON 1",
  5185. height: math.unit(500000, "km")
  5186. },
  5187. {
  5188. name: "DEFCON 0",
  5189. height: math.unit(3, "gigaparsecs")
  5190. },
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(2, "meters"),
  5198. weight: math.unit(76, "kg"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/gale/front.svg"
  5202. }
  5203. },
  5204. frontAlt1: {
  5205. height: math.unit(2, "meters"),
  5206. weight: math.unit(76, "kg"),
  5207. name: "Front (Alt 1)",
  5208. image: {
  5209. source: "./media/characters/gale/front-alt-1.svg"
  5210. }
  5211. },
  5212. frontAlt2: {
  5213. height: math.unit(2, "meters"),
  5214. weight: math.unit(76, "kg"),
  5215. name: "Front (Alt 2)",
  5216. image: {
  5217. source: "./media/characters/gale/front-alt-2.svg"
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(7, "feet")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(150, "feet"),
  5229. default: true
  5230. },
  5231. {
  5232. name: "Macro+",
  5233. height: math.unit(300, "feet")
  5234. },
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5239. {
  5240. front: {
  5241. height: math.unit(5 + 10/12, "feet"),
  5242. weight: math.unit(67, "kg"),
  5243. name: "Front",
  5244. image: {
  5245. source: "./media/characters/draylen/front.svg",
  5246. extra: 832/777,
  5247. bottom: 85/917
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(5 + 10/12, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(150, "feet"),
  5259. default: true
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(7 + 9 / 12, "feet"),
  5268. weight: math.unit(379, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/chez/front.svg"
  5272. }
  5273. },
  5274. side: {
  5275. height: math.unit(7 + 9 / 12, "feet"),
  5276. weight: math.unit(379, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/chez/side.svg"
  5280. }
  5281. }
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(7 + 9 / 12, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "God King",
  5291. height: math.unit(9750000, "meters")
  5292. }
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(275, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/kaylum/front.svg",
  5304. bottom: 0.01,
  5305. extra: 1166 / 1031
  5306. }
  5307. },
  5308. frontWingless: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(275, "lbs"),
  5311. name: "Front (Wingless)",
  5312. image: {
  5313. source: "./media/characters/kaylum/front-wingless.svg",
  5314. bottom: 0.01,
  5315. extra: 1117 / 1031
  5316. }
  5317. }
  5318. },
  5319. [
  5320. {
  5321. name: "Normal",
  5322. height: math.unit(3.05, "meters")
  5323. },
  5324. {
  5325. name: "Master",
  5326. height: math.unit(5.5, "meters")
  5327. },
  5328. {
  5329. name: "Rampage",
  5330. height: math.unit(19, "meters")
  5331. },
  5332. {
  5333. name: "Macro Lite",
  5334. height: math.unit(37, "meters")
  5335. },
  5336. {
  5337. name: "Hyper Predator",
  5338. height: math.unit(61, "meters")
  5339. },
  5340. {
  5341. name: "Macro",
  5342. height: math.unit(138, "meters"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5349. {
  5350. front: {
  5351. height: math.unit(5 + 5 / 12, "feet"),
  5352. weight: math.unit(120, "lbs"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/geta/front.svg",
  5356. extra: 1003/933,
  5357. bottom: 21/1024
  5358. }
  5359. },
  5360. paw: {
  5361. height: math.unit(0.35, "feet"),
  5362. name: "Paw",
  5363. image: {
  5364. source: "./media/characters/geta/paw.svg"
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Micro",
  5371. height: math.unit(3, "inches"),
  5372. default: true
  5373. },
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(5 + 5 / 12, "feet")
  5377. }
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(300, "lbs"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/tyrnn/front.svg"
  5389. }
  5390. }
  5391. },
  5392. [
  5393. {
  5394. name: "Main Height",
  5395. height: math.unit(355, "feet"),
  5396. default: true
  5397. },
  5398. {
  5399. name: "Fave. Height",
  5400. height: math.unit(2400, "feet")
  5401. }
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5406. {
  5407. front: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(300, "lbs"),
  5410. name: "Front",
  5411. image: {
  5412. source: "./media/characters/appledectomy/front.svg"
  5413. }
  5414. }
  5415. },
  5416. [
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(2500, "feet")
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(50, "miles"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Gigamacro",
  5428. height: math.unit(5000, "miles")
  5429. },
  5430. {
  5431. name: "Teramacro",
  5432. height: math.unit(250000, "miles")
  5433. },
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(200, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/vulpes/front.svg",
  5445. extra: 573 / 543,
  5446. bottom: 0.033
  5447. }
  5448. },
  5449. side: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(200, "lbs"),
  5452. name: "Side",
  5453. image: {
  5454. source: "./media/characters/vulpes/side.svg",
  5455. extra: 577 / 549,
  5456. bottom: 11 / 588
  5457. }
  5458. },
  5459. back: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(200, "lbs"),
  5462. name: "Back",
  5463. image: {
  5464. source: "./media/characters/vulpes/back.svg",
  5465. extra: 573 / 549,
  5466. bottom: 20 / 593
  5467. }
  5468. },
  5469. feet: {
  5470. height: math.unit(1.276, "feet"),
  5471. name: "Feet",
  5472. image: {
  5473. source: "./media/characters/vulpes/feet.svg"
  5474. }
  5475. },
  5476. maw: {
  5477. height: math.unit(1.18, "feet"),
  5478. name: "Maw",
  5479. image: {
  5480. source: "./media/characters/vulpes/maw.svg"
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Micro",
  5487. height: math.unit(2, "inches")
  5488. },
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(6.3, "feet")
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(850, "feet")
  5496. },
  5497. {
  5498. name: "Megamacro",
  5499. height: math.unit(7500, "feet"),
  5500. default: true
  5501. },
  5502. {
  5503. name: "Gigamacro",
  5504. height: math.unit(570000, "miles")
  5505. }
  5506. ]
  5507. ))
  5508. characterMakers.push(() => makeCharacter(
  5509. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5510. {
  5511. front: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(210, "lbs"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/rain-fallen/front.svg"
  5517. }
  5518. },
  5519. side: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(210, "lbs"),
  5522. name: "Side",
  5523. image: {
  5524. source: "./media/characters/rain-fallen/side.svg"
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(210, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/rain-fallen/back.svg"
  5533. }
  5534. },
  5535. feral: {
  5536. height: math.unit(9, "feet"),
  5537. weight: math.unit(700, "lbs"),
  5538. name: "Feral",
  5539. image: {
  5540. source: "./media/characters/rain-fallen/feral.svg"
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Meddling with Mortals",
  5547. height: math.unit(8 + 8/12, "feet")
  5548. },
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(5, "meter")
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(150, "meter"),
  5556. default: true
  5557. },
  5558. {
  5559. name: "Megamacro",
  5560. height: math.unit(278e6, "meter")
  5561. },
  5562. {
  5563. name: "Gigamacro",
  5564. height: math.unit(2e9, "meter")
  5565. },
  5566. {
  5567. name: "Teramacro",
  5568. height: math.unit(8e12, "meter")
  5569. },
  5570. {
  5571. name: "Devourer",
  5572. height: math.unit(14, "zettameters")
  5573. },
  5574. {
  5575. name: "Scarlet King",
  5576. height: math.unit(18, "yottameters")
  5577. },
  5578. {
  5579. name: "Void",
  5580. height: math.unit(1e88, "yottameters")
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5586. {
  5587. standing: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(180, "lbs"),
  5590. name: "Standing",
  5591. image: {
  5592. source: "./media/characters/zaakira/standing.svg",
  5593. extra: 1599/1504,
  5594. bottom: 39/1638
  5595. }
  5596. },
  5597. laying: {
  5598. height: math.unit(3.3, "feet"),
  5599. weight: math.unit(180, "lbs"),
  5600. name: "Laying",
  5601. image: {
  5602. source: "./media/characters/zaakira/laying.svg"
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(12, "feet")
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(279, "feet"),
  5614. default: true
  5615. }
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5620. {
  5621. femSfw: {
  5622. height: math.unit(8, "feet"),
  5623. weight: math.unit(350, "lb"),
  5624. name: "Fem",
  5625. image: {
  5626. source: "./media/characters/sigvald/fem-sfw.svg",
  5627. extra: 182 / 164,
  5628. bottom: 8.7 / 190.5
  5629. }
  5630. },
  5631. femNsfw: {
  5632. height: math.unit(8, "feet"),
  5633. weight: math.unit(350, "lb"),
  5634. name: "Fem (NSFW)",
  5635. image: {
  5636. source: "./media/characters/sigvald/fem-nsfw.svg",
  5637. extra: 182 / 164,
  5638. bottom: 8.7 / 190.5
  5639. }
  5640. },
  5641. maleNsfw: {
  5642. height: math.unit(8, "feet"),
  5643. weight: math.unit(350, "lb"),
  5644. name: "Male (NSFW)",
  5645. image: {
  5646. source: "./media/characters/sigvald/male-nsfw.svg",
  5647. extra: 182 / 164,
  5648. bottom: 8.7 / 190.5
  5649. }
  5650. },
  5651. hermNsfw: {
  5652. height: math.unit(8, "feet"),
  5653. weight: math.unit(350, "lb"),
  5654. name: "Herm (NSFW)",
  5655. image: {
  5656. source: "./media/characters/sigvald/herm-nsfw.svg",
  5657. extra: 182 / 164,
  5658. bottom: 8.7 / 190.5
  5659. }
  5660. },
  5661. dick: {
  5662. height: math.unit(2.36, "feet"),
  5663. name: "Dick",
  5664. image: {
  5665. source: "./media/characters/sigvald/dick.svg"
  5666. }
  5667. },
  5668. eye: {
  5669. height: math.unit(0.31, "feet"),
  5670. name: "Eye",
  5671. image: {
  5672. source: "./media/characters/sigvald/eye.svg"
  5673. }
  5674. },
  5675. mouth: {
  5676. height: math.unit(0.92, "feet"),
  5677. name: "Mouth",
  5678. image: {
  5679. source: "./media/characters/sigvald/mouth.svg"
  5680. }
  5681. },
  5682. paws: {
  5683. height: math.unit(2.2, "feet"),
  5684. name: "Paws",
  5685. image: {
  5686. source: "./media/characters/sigvald/paws.svg"
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(8, "feet")
  5694. },
  5695. {
  5696. name: "Large",
  5697. height: math.unit(12, "feet")
  5698. },
  5699. {
  5700. name: "Larger",
  5701. height: math.unit(20, "feet")
  5702. },
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(150, "feet")
  5706. },
  5707. {
  5708. name: "Macro+",
  5709. height: math.unit(200, "feet"),
  5710. default: true
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5716. {
  5717. side: {
  5718. height: math.unit(12, "feet"),
  5719. weight: math.unit(2000, "kg"),
  5720. name: "Side",
  5721. image: {
  5722. source: "./media/characters/scott/side.svg",
  5723. extra: 754 / 724,
  5724. bottom: 0.069
  5725. }
  5726. },
  5727. upright: {
  5728. height: math.unit(12, "feet"),
  5729. weight: math.unit(2000, "kg"),
  5730. name: "Upright",
  5731. image: {
  5732. source: "./media/characters/scott/upright.svg",
  5733. extra: 3881 / 3722,
  5734. bottom: 0.05
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(12, "feet"),
  5742. default: true
  5743. },
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5748. {
  5749. side: {
  5750. height: math.unit(8, "meters"),
  5751. weight: math.unit(84755, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/tobias/side.svg",
  5755. extra: 1474 / 1096,
  5756. bottom: 38.9 / 1513.1235
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(8, "meters"),
  5764. default: true
  5765. },
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5770. {
  5771. front: {
  5772. height: math.unit(5.5, "feet"),
  5773. weight: math.unit(400, "lbs"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/kieran/front.svg",
  5777. extra: 2694 / 2364,
  5778. bottom: 217 / 2908
  5779. }
  5780. },
  5781. side: {
  5782. height: math.unit(5.5, "feet"),
  5783. weight: math.unit(400, "lbs"),
  5784. name: "Side",
  5785. image: {
  5786. source: "./media/characters/kieran/side.svg",
  5787. extra: 875 / 777,
  5788. bottom: 84.6 / 959
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(5.5, "feet"),
  5796. default: true
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5802. {
  5803. side: {
  5804. height: math.unit(2, "meters"),
  5805. weight: math.unit(70, "kg"),
  5806. name: "Side",
  5807. image: {
  5808. source: "./media/characters/sanya/side.svg",
  5809. bottom: 0.02,
  5810. extra: 1.02
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Small",
  5817. height: math.unit(2, "meters")
  5818. },
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(3, "meters")
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(16, "meters"),
  5826. default: true
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(2, "meters"),
  5835. weight: math.unit(120, "kg"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/miranda/front.svg",
  5839. extra: 195 / 185,
  5840. bottom: 10.9 / 206.5
  5841. }
  5842. },
  5843. back: {
  5844. height: math.unit(2, "meters"),
  5845. weight: math.unit(120, "kg"),
  5846. name: "Back",
  5847. image: {
  5848. source: "./media/characters/miranda/back.svg",
  5849. extra: 201 / 193,
  5850. bottom: 2.3 / 203.7
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(10, "feet"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "James", species: ["deer"], tags: ["anthro"] },
  5864. {
  5865. side: {
  5866. height: math.unit(2, "meters"),
  5867. weight: math.unit(100, "kg"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/james/front.svg",
  5871. extra: 10 / 8.5
  5872. }
  5873. },
  5874. },
  5875. [
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(8.5, "feet"),
  5879. default: true
  5880. }
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5885. {
  5886. side: {
  5887. height: math.unit(9.5, "feet"),
  5888. weight: math.unit(2500, "lbs"),
  5889. name: "Side",
  5890. image: {
  5891. source: "./media/characters/heather/side.svg"
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Normal",
  5898. height: math.unit(9.5, "feet"),
  5899. default: true
  5900. }
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5905. {
  5906. side: {
  5907. height: math.unit(6.5, "feet"),
  5908. weight: math.unit(400, "lbs"),
  5909. name: "Side",
  5910. image: {
  5911. source: "./media/characters/lukas/side.svg",
  5912. extra: 7.25 / 6.5
  5913. }
  5914. },
  5915. },
  5916. [
  5917. {
  5918. name: "Normal",
  5919. height: math.unit(6.5, "feet"),
  5920. default: true
  5921. }
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5926. {
  5927. side: {
  5928. height: math.unit(5, "feet"),
  5929. weight: math.unit(3000, "lbs"),
  5930. name: "Side",
  5931. image: {
  5932. source: "./media/characters/louise/side.svg"
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Normal",
  5939. height: math.unit(5, "feet"),
  5940. default: true
  5941. }
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5946. {
  5947. side: {
  5948. height: math.unit(6, "feet"),
  5949. weight: math.unit(150, "lbs"),
  5950. name: "Side",
  5951. image: {
  5952. source: "./media/characters/ramona/side.svg",
  5953. extra: 871/854,
  5954. bottom: 41/912
  5955. }
  5956. },
  5957. },
  5958. [
  5959. {
  5960. name: "Normal",
  5961. height: math.unit(6 + 4/12, "feet")
  5962. },
  5963. {
  5964. name: "Minimacro",
  5965. height: math.unit(5.3, "meters"),
  5966. default: true
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(20, "stories")
  5971. },
  5972. {
  5973. name: "Macro+",
  5974. height: math.unit(50, "stories")
  5975. },
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5980. {
  5981. standing: {
  5982. height: math.unit(5.75, "feet"),
  5983. weight: math.unit(160, "lbs"),
  5984. name: "Standing",
  5985. image: {
  5986. source: "./media/characters/deerpuff/standing.svg",
  5987. extra: 682 / 624
  5988. }
  5989. },
  5990. sitting: {
  5991. height: math.unit(5.75 / 1.79, "feet"),
  5992. weight: math.unit(160, "lbs"),
  5993. name: "Sitting",
  5994. image: {
  5995. source: "./media/characters/deerpuff/sitting.svg",
  5996. bottom: 44 / 400,
  5997. extra: 1
  5998. }
  5999. },
  6000. taurLaying: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(400, "lbs"),
  6003. name: "Taur (Laying)",
  6004. image: {
  6005. source: "./media/characters/deerpuff/taur-laying.svg"
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Puffball",
  6012. height: math.unit(6, "inches")
  6013. },
  6014. {
  6015. name: "Normalpuff",
  6016. height: math.unit(5.75, "feet")
  6017. },
  6018. {
  6019. name: "Macropuff",
  6020. height: math.unit(1500, "feet"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Megapuff",
  6025. height: math.unit(500, "miles")
  6026. },
  6027. {
  6028. name: "Gigapuff",
  6029. height: math.unit(250000, "miles")
  6030. },
  6031. {
  6032. name: "Omegapuff",
  6033. height: math.unit(1000, "lightyears")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6039. {
  6040. stomping: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(170, "lbs"),
  6043. name: "Stomping",
  6044. image: {
  6045. source: "./media/characters/vivian/stomping.svg"
  6046. }
  6047. },
  6048. sitting: {
  6049. height: math.unit(6 / 1.75, "feet"),
  6050. weight: math.unit(170, "lbs"),
  6051. name: "Sitting",
  6052. image: {
  6053. source: "./media/characters/vivian/sitting.svg",
  6054. bottom: 1 / 6.4,
  6055. extra: 1,
  6056. }
  6057. },
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(7, "feet"),
  6063. default: true
  6064. },
  6065. {
  6066. name: "Macro",
  6067. height: math.unit(10, "stories")
  6068. },
  6069. {
  6070. name: "Macro+",
  6071. height: math.unit(30, "stories")
  6072. },
  6073. {
  6074. name: "Megamacro",
  6075. height: math.unit(10, "miles")
  6076. },
  6077. {
  6078. name: "Megamacro+",
  6079. height: math.unit(2750000, "meters")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(160, "lbs"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/prince/front.svg",
  6092. extra: 3400 / 3000
  6093. }
  6094. },
  6095. jumping: {
  6096. height: math.unit(6, "feet"),
  6097. weight: math.unit(160, "lbs"),
  6098. name: "Jumping",
  6099. image: {
  6100. source: "./media/characters/prince/jump.svg",
  6101. extra: 2555 / 2134
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(7.75, "feet"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Not cute",
  6113. height: math.unit(17, "feet")
  6114. },
  6115. {
  6116. name: "I said NOT",
  6117. height: math.unit(91, "feet")
  6118. },
  6119. {
  6120. name: "Please stop",
  6121. height: math.unit(560, "feet")
  6122. },
  6123. {
  6124. name: "What have you done",
  6125. height: math.unit(2200, "feet")
  6126. },
  6127. {
  6128. name: "Deer God",
  6129. height: math.unit(3.6, "miles")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6135. {
  6136. standing: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(300, "lbs"),
  6139. name: "Standing",
  6140. image: {
  6141. source: "./media/characters/psymon/standing.svg",
  6142. extra: 1888 / 1810,
  6143. bottom: 0.05
  6144. }
  6145. },
  6146. slithering: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(300, "lbs"),
  6149. name: "Slithering",
  6150. image: {
  6151. source: "./media/characters/psymon/slithering.svg",
  6152. extra: 1330 / 1224
  6153. }
  6154. },
  6155. slitheringAlt: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(300, "lbs"),
  6158. name: "Slithering (Alt)",
  6159. image: {
  6160. source: "./media/characters/psymon/slithering-alt.svg",
  6161. extra: 1330 / 1224
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Normal",
  6168. height: math.unit(11.25, "feet"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Large",
  6173. height: math.unit(27, "feet")
  6174. },
  6175. {
  6176. name: "Giant",
  6177. height: math.unit(87, "feet")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(365, "feet")
  6182. },
  6183. {
  6184. name: "Megamacro",
  6185. height: math.unit(3, "miles")
  6186. },
  6187. {
  6188. name: "World Serpent",
  6189. height: math.unit(8000, "miles")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(6, "feet"),
  6198. weight: math.unit(180, "lbs"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/daimos/front.svg",
  6202. extra: 4160 / 3897,
  6203. bottom: 0.021
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(8, "feet"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Big Dog",
  6215. height: math.unit(22, "feet")
  6216. },
  6217. {
  6218. name: "Macro",
  6219. height: math.unit(127, "feet")
  6220. },
  6221. {
  6222. name: "Megamacro",
  6223. height: math.unit(3600, "feet")
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6229. {
  6230. side: {
  6231. height: math.unit(6, "feet"),
  6232. weight: math.unit(180, "lbs"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/blake/side.svg",
  6236. extra: 1212 / 1120,
  6237. bottom: 0.05
  6238. }
  6239. },
  6240. crouched: {
  6241. height: math.unit(6 * 0.57, "feet"),
  6242. weight: math.unit(180, "lbs"),
  6243. name: "Crouched",
  6244. image: {
  6245. source: "./media/characters/blake/crouched.svg",
  6246. extra: 840 / 587,
  6247. bottom: 0.04
  6248. }
  6249. },
  6250. bent: {
  6251. height: math.unit(6 * 0.75, "feet"),
  6252. weight: math.unit(180, "lbs"),
  6253. name: "Bent",
  6254. image: {
  6255. source: "./media/characters/blake/bent.svg",
  6256. extra: 592 / 544,
  6257. bottom: 0.035
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(8 + 1 / 6, "feet"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Big Backside",
  6269. height: math.unit(37, "feet")
  6270. },
  6271. {
  6272. name: "Subway Shredder",
  6273. height: math.unit(72, "feet")
  6274. },
  6275. {
  6276. name: "City Carver",
  6277. height: math.unit(1675, "feet")
  6278. },
  6279. {
  6280. name: "Tectonic Tweaker",
  6281. height: math.unit(2300, "miles")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(180, "lbs"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/guisetto/front.svg",
  6294. extra: 856 / 817,
  6295. bottom: 0.06
  6296. }
  6297. },
  6298. airborne: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(180, "lbs"),
  6301. name: "Airborne",
  6302. image: {
  6303. source: "./media/characters/guisetto/airborne.svg",
  6304. extra: 584 / 525
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(10 + 11 / 12, "feet"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Large",
  6316. height: math.unit(35, "feet")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(475, "feet")
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(180, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/luxor/front.svg",
  6333. extra: 2940 / 2152
  6334. }
  6335. },
  6336. back: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(180, "lbs"),
  6339. name: "Back",
  6340. image: {
  6341. source: "./media/characters/luxor/back.svg",
  6342. extra: 1083 / 960
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(5 + 5 / 6, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Lamp",
  6354. height: math.unit(50, "feet")
  6355. },
  6356. {
  6357. name: "Lämp",
  6358. height: math.unit(300, "feet")
  6359. },
  6360. {
  6361. name: "The sun is a lamp",
  6362. height: math.unit(250000, "miles")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6368. {
  6369. front: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(50, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/huoyan/front.svg"
  6375. }
  6376. },
  6377. side: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(180, "lbs"),
  6380. name: "Side",
  6381. image: {
  6382. source: "./media/characters/huoyan/side.svg"
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Chef",
  6389. height: math.unit(9, "feet")
  6390. },
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(65, "feet"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Macro",
  6398. height: math.unit(780, "feet")
  6399. },
  6400. {
  6401. name: "Flaming Mountain",
  6402. height: math.unit(4.8, "miles")
  6403. },
  6404. {
  6405. name: "Celestial",
  6406. height: math.unit(765000, "miles")
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(5 + 3 / 4, "feet"),
  6415. weight: math.unit(120, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/tails/front.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(5 + 3 / 4, "feet"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(4, "feet"),
  6435. weight: math.unit(50, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/rainy/front.svg"
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(800, "feet"),
  6446. default: true
  6447. }
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(150, "lbs"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/rainier/front.svg"
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(2, "mm"),
  6466. default: true
  6467. }
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(8 + 4/12, "feet"),
  6475. weight: math.unit(450, "kilograms"),
  6476. volume: math.unit(5, "cups"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/andy-renard/front.svg",
  6480. extra: 1839/1726,
  6481. bottom: 134/1973
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(8 + 4/12, "feet"),
  6486. weight: math.unit(450, "kilograms"),
  6487. volume: math.unit(5, "cups"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/andy-renard/back.svg",
  6491. extra: 1838/1710,
  6492. bottom: 105/1943
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Tall",
  6499. height: math.unit(8 + 4/12, "feet")
  6500. },
  6501. {
  6502. name: "Mini Macro",
  6503. height: math.unit(15, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Macro",
  6508. height: math.unit(100, "feet")
  6509. },
  6510. {
  6511. name: "Mega Macro",
  6512. height: math.unit(1000, "feet")
  6513. },
  6514. {
  6515. name: "Giga Macro",
  6516. height: math.unit(10, "miles")
  6517. },
  6518. {
  6519. name: "God Macro",
  6520. height: math.unit(1, "multiverse")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(6, "feet"),
  6529. weight: math.unit(210, "lbs"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/cimmaron/front-sfw.svg",
  6533. extra: 701 / 676,
  6534. bottom: 0.046
  6535. }
  6536. },
  6537. back: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(210, "lbs"),
  6540. name: "Back",
  6541. image: {
  6542. source: "./media/characters/cimmaron/back-sfw.svg",
  6543. extra: 701 / 676,
  6544. bottom: 0.046
  6545. }
  6546. },
  6547. frontNsfw: {
  6548. height: math.unit(6, "feet"),
  6549. weight: math.unit(210, "lbs"),
  6550. name: "Front (NSFW)",
  6551. image: {
  6552. source: "./media/characters/cimmaron/front-nsfw.svg",
  6553. extra: 701 / 676,
  6554. bottom: 0.046
  6555. }
  6556. },
  6557. backNsfw: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(210, "lbs"),
  6560. name: "Back (NSFW)",
  6561. image: {
  6562. source: "./media/characters/cimmaron/back-nsfw.svg",
  6563. extra: 701 / 676,
  6564. bottom: 0.046
  6565. }
  6566. },
  6567. dick: {
  6568. height: math.unit(1.714, "feet"),
  6569. name: "Dick",
  6570. image: {
  6571. source: "./media/characters/cimmaron/dick.svg"
  6572. }
  6573. },
  6574. },
  6575. [
  6576. {
  6577. name: "Normal",
  6578. height: math.unit(6, "feet"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Macro Mayor",
  6583. height: math.unit(350, "meters")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(200, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/akari/front.svg",
  6596. extra: 962 / 901,
  6597. bottom: 0.04
  6598. }
  6599. }
  6600. },
  6601. [
  6602. {
  6603. name: "Micro",
  6604. height: math.unit(5, "inches"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(7, "feet")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(140, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/cynosura/front.svg",
  6622. extra: 437/410,
  6623. bottom: 9/446
  6624. }
  6625. },
  6626. back: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(140, "lbs"),
  6629. name: "Back",
  6630. image: {
  6631. source: "./media/characters/cynosura/back.svg",
  6632. extra: 1304/1160,
  6633. bottom: 71/1375
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Micro",
  6640. height: math.unit(4, "inches")
  6641. },
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(5.75, "feet"),
  6645. default: true
  6646. },
  6647. {
  6648. name: "Tall",
  6649. height: math.unit(10, "feet")
  6650. },
  6651. {
  6652. name: "Big",
  6653. height: math.unit(20, "feet")
  6654. },
  6655. {
  6656. name: "Macro",
  6657. height: math.unit(50, "feet")
  6658. },
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(13 + 2/12, "feet"),
  6666. weight: math.unit(800, "kg"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/gin/front.svg",
  6670. extra: 1312/1191,
  6671. bottom: 45/1357
  6672. }
  6673. },
  6674. mouth: {
  6675. height: math.unit(2.39 * 1.8, "feet"),
  6676. name: "Mouth",
  6677. image: {
  6678. source: "./media/characters/gin/mouth.svg"
  6679. }
  6680. },
  6681. hand: {
  6682. height: math.unit(1.57 * 2.19, "feet"),
  6683. name: "Hand",
  6684. image: {
  6685. source: "./media/characters/gin/hand.svg"
  6686. }
  6687. },
  6688. foot: {
  6689. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6690. name: "Foot",
  6691. image: {
  6692. source: "./media/characters/gin/foot.svg"
  6693. }
  6694. },
  6695. sole: {
  6696. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6697. name: "Sole",
  6698. image: {
  6699. source: "./media/characters/gin/sole.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Very Small",
  6706. height: math.unit(13 + 2 / 12, "feet")
  6707. },
  6708. {
  6709. name: "Micro",
  6710. height: math.unit(600, "miles")
  6711. },
  6712. {
  6713. name: "Regular",
  6714. height: math.unit(20, "earths"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(2.2, "solarradii")
  6720. },
  6721. {
  6722. name: "Teramacro",
  6723. height: math.unit(1.2, "galaxies")
  6724. },
  6725. {
  6726. name: "Omegamacro",
  6727. height: math.unit(200, "universes")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(6 + 1 / 6, "feet"),
  6736. weight: math.unit(178, "lbs"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/guy/front.svg"
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(6 + 1 / 6, "feet"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Large",
  6751. height: math.unit(25 + 7 / 12, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(60 + 9 / 12, "feet")
  6756. },
  6757. {
  6758. name: "Macro+",
  6759. height: math.unit(246, "feet")
  6760. },
  6761. {
  6762. name: "Macro++",
  6763. height: math.unit(878, "feet")
  6764. }
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(9, "feet"),
  6772. weight: math.unit(800, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/tiberius/front.svg",
  6776. extra: 2295 / 2071
  6777. }
  6778. },
  6779. back: {
  6780. height: math.unit(9, "feet"),
  6781. weight: math.unit(800, "lbs"),
  6782. name: "Back",
  6783. image: {
  6784. source: "./media/characters/tiberius/back.svg",
  6785. extra: 2373 / 2160
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(9, "feet"),
  6793. default: true
  6794. }
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6799. {
  6800. front: {
  6801. height: math.unit(6, "feet"),
  6802. weight: math.unit(600, "lbs"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/surgo/front.svg",
  6806. extra: 3591 / 2227
  6807. }
  6808. },
  6809. back: {
  6810. height: math.unit(6, "feet"),
  6811. weight: math.unit(600, "lbs"),
  6812. name: "Back",
  6813. image: {
  6814. source: "./media/characters/surgo/back.svg",
  6815. extra: 3557 / 2228
  6816. }
  6817. },
  6818. laying: {
  6819. height: math.unit(6 * 0.85, "feet"),
  6820. weight: math.unit(600, "lbs"),
  6821. name: "Laying",
  6822. image: {
  6823. source: "./media/characters/surgo/laying.svg"
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(6, "feet"),
  6831. default: true
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6837. {
  6838. side: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(150, "lbs"),
  6841. name: "Side",
  6842. image: {
  6843. source: "./media/characters/cibus/side.svg",
  6844. extra: 800 / 400
  6845. }
  6846. },
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(6, "feet"),
  6852. default: true
  6853. }
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(240, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/nibbles/front.svg"
  6865. }
  6866. },
  6867. side: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(240, "lbs"),
  6870. name: "Side",
  6871. image: {
  6872. source: "./media/characters/nibbles/side.svg"
  6873. }
  6874. },
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(9, "feet"),
  6880. default: true
  6881. }
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6886. {
  6887. side: {
  6888. height: math.unit(5 + 1 / 6, "feet"),
  6889. weight: math.unit(130, "lbs"),
  6890. name: "Side",
  6891. image: {
  6892. source: "./media/characters/rikky/side.svg",
  6893. extra: 851 / 801
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(5 + 1 / 6, "feet")
  6901. },
  6902. {
  6903. name: "Macro",
  6904. height: math.unit(152, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Megamacro",
  6909. height: math.unit(7, "miles")
  6910. }
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6915. {
  6916. side: {
  6917. height: math.unit(370, "cm"),
  6918. weight: math.unit(350, "lbs"),
  6919. name: "Side",
  6920. image: {
  6921. source: "./media/characters/malfressa/side.svg"
  6922. }
  6923. },
  6924. walking: {
  6925. height: math.unit(370, "cm"),
  6926. weight: math.unit(350, "lbs"),
  6927. name: "Walking",
  6928. image: {
  6929. source: "./media/characters/malfressa/walking.svg"
  6930. }
  6931. },
  6932. feral: {
  6933. height: math.unit(2500, "cm"),
  6934. weight: math.unit(100000, "lbs"),
  6935. name: "Feral",
  6936. image: {
  6937. source: "./media/characters/malfressa/feral.svg",
  6938. extra: 2108 / 837,
  6939. bottom: 0.02
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(370, "cm")
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(300, "meters"),
  6951. default: true
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(60, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/jaro/front.svg",
  6964. extra: 845/817,
  6965. bottom: 45/890
  6966. }
  6967. },
  6968. back: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(60, "kg"),
  6971. name: "Back",
  6972. image: {
  6973. source: "./media/characters/jaro/back.svg",
  6974. extra: 847/817,
  6975. bottom: 34/881
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Micro",
  6982. height: math.unit(7, "inches")
  6983. },
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(5.5, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Minimacro",
  6991. height: math.unit(20, "feet")
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(200, "meters")
  6996. }
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(195, "lb"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/rogue/front.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Macro",
  7014. height: math.unit(90, "feet"),
  7015. default: true
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7021. {
  7022. standing: {
  7023. height: math.unit(5 + 8 / 12, "feet"),
  7024. weight: math.unit(140, "lb"),
  7025. name: "Standing",
  7026. image: {
  7027. source: "./media/characters/piper/standing.svg",
  7028. extra: 1440/1284,
  7029. bottom: 66/1506
  7030. }
  7031. },
  7032. running: {
  7033. height: math.unit(5 + 8 / 12, "feet"),
  7034. weight: math.unit(140, "lb"),
  7035. name: "Running",
  7036. image: {
  7037. source: "./media/characters/piper/running.svg",
  7038. extra: 3948/3655,
  7039. bottom: 0/3948
  7040. }
  7041. },
  7042. sole: {
  7043. height: math.unit(0.81, "feet"),
  7044. weight: math.unit(2, "kg"),
  7045. name: "Sole",
  7046. image: {
  7047. source: "./media/characters/piper/sole.svg"
  7048. }
  7049. },
  7050. nipple: {
  7051. height: math.unit(0.25, "feet"),
  7052. weight: math.unit(1.5, "lb"),
  7053. name: "Nipple",
  7054. image: {
  7055. source: "./media/characters/piper/nipple.svg"
  7056. }
  7057. },
  7058. head: {
  7059. height: math.unit(1.1, "feet"),
  7060. name: "Head",
  7061. image: {
  7062. source: "./media/characters/piper/head.svg"
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Micro",
  7069. height: math.unit(2, "inches")
  7070. },
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(5 + 8 / 12, "feet")
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(250, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Megamacro",
  7082. height: math.unit(7, "miles")
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(220, "lb"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/gemini/front.svg"
  7095. }
  7096. },
  7097. back: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(220, "lb"),
  7100. name: "Back",
  7101. image: {
  7102. source: "./media/characters/gemini/back.svg"
  7103. }
  7104. },
  7105. kneeling: {
  7106. height: math.unit(6 / 1.5, "feet"),
  7107. weight: math.unit(220, "lb"),
  7108. name: "Kneeling",
  7109. image: {
  7110. source: "./media/characters/gemini/kneeling.svg",
  7111. bottom: 0.02
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(300, "meters"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Megamacro",
  7123. height: math.unit(6900, "meters")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7129. {
  7130. anthro: {
  7131. height: math.unit(2.35, "meters"),
  7132. weight: math.unit(73, "kg"),
  7133. name: "Anthro",
  7134. image: {
  7135. source: "./media/characters/alicia/anthro.svg",
  7136. extra: 2571 / 2385,
  7137. bottom: 75 / 2648
  7138. }
  7139. },
  7140. paw: {
  7141. height: math.unit(1.32, "feet"),
  7142. name: "Paw",
  7143. image: {
  7144. source: "./media/characters/alicia/paw.svg"
  7145. }
  7146. },
  7147. feral: {
  7148. height: math.unit(1.69, "meters"),
  7149. weight: math.unit(73, "kg"),
  7150. name: "Feral",
  7151. image: {
  7152. source: "./media/characters/alicia/feral.svg",
  7153. extra: 2123 / 1715,
  7154. bottom: 222 / 2349
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(2.35, "meters")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(60, "meters"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Megamacro",
  7170. height: math.unit(10000, "kilometers")
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(7, "feet"),
  7179. weight: math.unit(250, "lbs"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/archy/front.svg"
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Micro",
  7189. height: math.unit(1, "inch")
  7190. },
  7191. {
  7192. name: "Shorty",
  7193. height: math.unit(5, "feet")
  7194. },
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(7, "feet")
  7198. },
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(600, "meters"),
  7202. default: true
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(1, "mile")
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(1.65, "meters"),
  7215. weight: math.unit(74, "kg"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/berri/front.svg",
  7219. extra: 857 / 837,
  7220. bottom: 18 / 877
  7221. }
  7222. },
  7223. bum: {
  7224. height: math.unit(1.46, "feet"),
  7225. name: "Bum",
  7226. image: {
  7227. source: "./media/characters/berri/bum.svg"
  7228. }
  7229. },
  7230. mouth: {
  7231. height: math.unit(0.44, "feet"),
  7232. name: "Mouth",
  7233. image: {
  7234. source: "./media/characters/berri/mouth.svg"
  7235. }
  7236. },
  7237. paw: {
  7238. height: math.unit(0.826, "feet"),
  7239. name: "Paw",
  7240. image: {
  7241. source: "./media/characters/berri/paw.svg"
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(1.65, "meters")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(60, "m"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(9.213, "km")
  7258. },
  7259. {
  7260. name: "Planet Eater",
  7261. height: math.unit(489, "megameters")
  7262. },
  7263. {
  7264. name: "Teramacro",
  7265. height: math.unit(2471635000000, "meters")
  7266. },
  7267. {
  7268. name: "Examacro",
  7269. height: math.unit(8.0624e+26, "meters")
  7270. }
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(1.72, "meters"),
  7278. weight: math.unit(68, "kg"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/lexi/front.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Very Smol",
  7288. height: math.unit(10, "mm")
  7289. },
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(6.8, "cm"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(1.72, "m")
  7298. }
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7303. {
  7304. front: {
  7305. height: math.unit(1.69, "meters"),
  7306. weight: math.unit(68, "kg"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/martin/front.svg",
  7310. extra: 596 / 581
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(6.85, "cm"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(1.69, "m")
  7323. }
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(1.69, "meters"),
  7331. weight: math.unit(68, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/juno/front.svg"
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Micro",
  7341. height: math.unit(7, "cm")
  7342. },
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(1.89, "m")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(353, "meters"),
  7350. default: true
  7351. }
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(1.93, "meters"),
  7359. weight: math.unit(83, "kg"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/samantha/front.svg"
  7363. }
  7364. },
  7365. frontClothed: {
  7366. height: math.unit(1.93, "meters"),
  7367. weight: math.unit(83, "kg"),
  7368. name: "Front (Clothed)",
  7369. image: {
  7370. source: "./media/characters/samantha/front-clothed.svg"
  7371. }
  7372. },
  7373. back: {
  7374. height: math.unit(1.93, "meters"),
  7375. weight: math.unit(83, "kg"),
  7376. name: "Back",
  7377. image: {
  7378. source: "./media/characters/samantha/back.svg"
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(1.93, "m")
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(74, "meters"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro+",
  7394. height: math.unit(223, "meters"),
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(8381, "meters"),
  7399. },
  7400. {
  7401. name: "Megamacro+",
  7402. height: math.unit(12000, "kilometers")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(1.92, "meters"),
  7411. weight: math.unit(80, "kg"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/dr-clay/front.svg"
  7415. }
  7416. },
  7417. frontClothed: {
  7418. height: math.unit(1.92, "meters"),
  7419. weight: math.unit(80, "kg"),
  7420. name: "Front (Clothed)",
  7421. image: {
  7422. source: "./media/characters/dr-clay/front-clothed.svg"
  7423. }
  7424. }
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(1.92, "m")
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(214, "meters"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Macro+",
  7438. height: math.unit(12.237, "meters"),
  7439. },
  7440. {
  7441. name: "Megamacro",
  7442. height: math.unit(557, "megameters"),
  7443. },
  7444. {
  7445. name: "Unimaginable",
  7446. height: math.unit(120e9, "lightyears")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(2, "meters"),
  7455. weight: math.unit(80, "kg"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7459. }
  7460. }
  7461. },
  7462. [
  7463. {
  7464. name: "Teramacro",
  7465. height: math.unit(500000, "lightyears"),
  7466. default: true
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7472. {
  7473. crux: {
  7474. height: math.unit(2, "meters"),
  7475. weight: math.unit(150, "kg"),
  7476. name: "Crux",
  7477. image: {
  7478. source: "./media/characters/vemus/crux.svg",
  7479. extra: 1074/936,
  7480. bottom: 23/1097
  7481. }
  7482. },
  7483. skunkTanuki: {
  7484. height: math.unit(2, "meters"),
  7485. weight: math.unit(150, "kg"),
  7486. name: "Skunk-Tanuki",
  7487. image: {
  7488. source: "./media/characters/vemus/skunk-tanuki.svg",
  7489. extra: 926/893,
  7490. bottom: 20/946
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(4, "meters"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Big",
  7502. height: math.unit(8, "meters")
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(100, "meters")
  7507. },
  7508. {
  7509. name: "Macro+",
  7510. height: math.unit(1500, "meters")
  7511. },
  7512. {
  7513. name: "Stellar",
  7514. height: math.unit(14e8, "meters")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(2, "meters"),
  7523. weight: math.unit(70, "kg"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/beherit/front.svg",
  7527. extra: 1234/1109,
  7528. bottom: 55/1289
  7529. }
  7530. }
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(6, "feet")
  7536. },
  7537. {
  7538. name: "Lorg",
  7539. height: math.unit(25, "feet"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Lorger",
  7544. height: math.unit(75, "feet")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(200, "meters")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(2, "meters"),
  7557. weight: math.unit(150, "kg"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/everett/front.svg",
  7561. extra: 1017/866,
  7562. bottom: 86/1103
  7563. }
  7564. },
  7565. paw: {
  7566. height: math.unit(2 / 3.6, "meters"),
  7567. name: "Paw",
  7568. image: {
  7569. source: "./media/characters/everett/paw.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(15, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Lorg",
  7581. height: math.unit(70, "feet"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Lorger",
  7586. height: math.unit(250, "feet")
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(500, "meters")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(2, "meters"),
  7599. weight: math.unit(86, "kg"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/rose/front.svg",
  7603. extra: 1785/1636,
  7604. bottom: 30/1815
  7605. },
  7606. form: "liom",
  7607. default: true
  7608. },
  7609. frontSporty: {
  7610. height: math.unit(2, "meters"),
  7611. weight: math.unit(86, "kg"),
  7612. name: "Front (Sporty)",
  7613. image: {
  7614. source: "./media/characters/rose/front-sporty.svg",
  7615. extra: 350/335,
  7616. bottom: 10/360
  7617. },
  7618. form: "liom"
  7619. },
  7620. frontAlt: {
  7621. height: math.unit(1.6, "meters"),
  7622. weight: math.unit(86, "kg"),
  7623. name: "Front (Alt)",
  7624. image: {
  7625. source: "./media/characters/rose/front-alt.svg",
  7626. extra: 299/283,
  7627. bottom: 3/302
  7628. },
  7629. form: "liom"
  7630. },
  7631. plush: {
  7632. height: math.unit(2, "meters"),
  7633. weight: math.unit(86/3, "kg"),
  7634. name: "Plush",
  7635. image: {
  7636. source: "./media/characters/rose/plush.svg",
  7637. extra: 361/337,
  7638. bottom: 11/372
  7639. },
  7640. form: "plush",
  7641. default: true
  7642. },
  7643. faeStanding: {
  7644. height: math.unit(10, "cm"),
  7645. weight: math.unit(10, "grams"),
  7646. name: "Standing",
  7647. image: {
  7648. source: "./media/characters/rose/fae-standing.svg",
  7649. extra: 1189/1060,
  7650. bottom: 27/1216
  7651. },
  7652. form: "fae",
  7653. default: true
  7654. },
  7655. faeSitting: {
  7656. height: math.unit(5, "cm"),
  7657. weight: math.unit(10, "grams"),
  7658. name: "Sitting",
  7659. image: {
  7660. source: "./media/characters/rose/fae-sitting.svg",
  7661. extra: 737/577,
  7662. bottom: 356/1093
  7663. },
  7664. form: "fae"
  7665. },
  7666. faePaw: {
  7667. height: math.unit(1.35, "cm"),
  7668. name: "Paw",
  7669. image: {
  7670. source: "./media/characters/rose/fae-paw.svg"
  7671. },
  7672. form: "fae"
  7673. },
  7674. },
  7675. [
  7676. {
  7677. name: "True Micro",
  7678. height: math.unit(9, "cm"),
  7679. form: "liom"
  7680. },
  7681. {
  7682. name: "Micro",
  7683. height: math.unit(16, "cm"),
  7684. form: "liom"
  7685. },
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(1.85, "meters"),
  7689. default: true,
  7690. form: "liom"
  7691. },
  7692. {
  7693. name: "Mini-Macro",
  7694. height: math.unit(5, "meters"),
  7695. form: "liom"
  7696. },
  7697. {
  7698. name: "Macro",
  7699. height: math.unit(15, "meters"),
  7700. form: "liom"
  7701. },
  7702. {
  7703. name: "True Macro",
  7704. height: math.unit(40, "meters"),
  7705. form: "liom"
  7706. },
  7707. {
  7708. name: "City Scale",
  7709. height: math.unit(1, "km"),
  7710. form: "liom"
  7711. },
  7712. {
  7713. name: "Plushie",
  7714. height: math.unit(9, "cm"),
  7715. form: "plush",
  7716. default: true
  7717. },
  7718. {
  7719. name: "Fae",
  7720. height: math.unit(10, "cm"),
  7721. form: "fae",
  7722. default: true
  7723. },
  7724. ],
  7725. {
  7726. "liom": {
  7727. name: "Liom"
  7728. },
  7729. "plush": {
  7730. name: "Plush"
  7731. },
  7732. "fae": {
  7733. name: "Fae Fox",
  7734. default: true
  7735. }
  7736. }
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(2, "meters"),
  7743. weight: math.unit(350, "lbs"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/regal/front.svg"
  7747. }
  7748. },
  7749. back: {
  7750. height: math.unit(2, "meters"),
  7751. weight: math.unit(350, "lbs"),
  7752. name: "Back",
  7753. image: {
  7754. source: "./media/characters/regal/back.svg"
  7755. }
  7756. },
  7757. },
  7758. [
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(350, "feet"),
  7762. default: true
  7763. }
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(4 + 11 / 12, "feet"),
  7771. weight: math.unit(100, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/opal/front.svg"
  7775. }
  7776. },
  7777. frontAlt: {
  7778. height: math.unit(4 + 11 / 12, "feet"),
  7779. weight: math.unit(100, "lbs"),
  7780. name: "Front (Alt)",
  7781. image: {
  7782. source: "./media/characters/opal/front-alt.svg"
  7783. }
  7784. },
  7785. },
  7786. [
  7787. {
  7788. name: "Small",
  7789. height: math.unit(4 + 11 / 12, "feet")
  7790. },
  7791. {
  7792. name: "Normal",
  7793. height: math.unit(20, "feet"),
  7794. default: true
  7795. },
  7796. {
  7797. name: "Macro",
  7798. height: math.unit(120, "feet")
  7799. },
  7800. {
  7801. name: "Megamacro",
  7802. height: math.unit(80, "miles")
  7803. },
  7804. {
  7805. name: "True Size",
  7806. height: math.unit(100000, "lightyears")
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(6, "feet"),
  7815. weight: math.unit(200, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/vector-wuff/front.svg"
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(2.8, "meters")
  7826. },
  7827. {
  7828. name: "Macro",
  7829. height: math.unit(450, "meters"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Megamacro",
  7834. height: math.unit(15, "kilometers")
  7835. }
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(256, "lbs"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/dannik/front.svg"
  7847. }
  7848. }
  7849. },
  7850. [
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(69.57, "meters"),
  7854. default: true
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(120, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/azura-saharah/front.svg"
  7867. }
  7868. },
  7869. back: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(120, "lbs"),
  7872. name: "Back",
  7873. image: {
  7874. source: "./media/characters/azura-saharah/back.svg"
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(100, "feet"),
  7882. default: true
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7888. {
  7889. side: {
  7890. height: math.unit(5 + 4 / 12, "feet"),
  7891. weight: math.unit(163, "lbs"),
  7892. name: "Side",
  7893. image: {
  7894. source: "./media/characters/kennedy/side.svg"
  7895. }
  7896. }
  7897. },
  7898. [
  7899. {
  7900. name: "Standard Doggo",
  7901. height: math.unit(5 + 4 / 12, "feet")
  7902. },
  7903. {
  7904. name: "Big Doggo",
  7905. height: math.unit(25 + 3 / 12, "feet"),
  7906. default: true
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(5 + 5/12, "feet"),
  7915. weight: math.unit(100, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/odios-de-lunar/front.svg",
  7919. extra: 1468/1323,
  7920. bottom: 22/1490
  7921. }
  7922. }
  7923. },
  7924. [
  7925. {
  7926. name: "Micro",
  7927. height: math.unit(3, "inches")
  7928. },
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(5.5, "feet"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(100, "feet")
  7937. },
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7942. {
  7943. back: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(220, "lbs"),
  7946. name: "Back",
  7947. image: {
  7948. source: "./media/characters/mandake/back.svg"
  7949. }
  7950. }
  7951. },
  7952. [
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(7, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(78, "feet")
  7961. },
  7962. {
  7963. name: "Macro+",
  7964. height: math.unit(300, "meters")
  7965. },
  7966. {
  7967. name: "Macro++",
  7968. height: math.unit(2400, "feet")
  7969. },
  7970. {
  7971. name: "Megamacro",
  7972. height: math.unit(5167, "meters")
  7973. },
  7974. {
  7975. name: "Gigamacro",
  7976. height: math.unit(41769, "miles")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(120, "lbs"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/yozey/front.svg"
  7989. }
  7990. },
  7991. frontAlt: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(120, "lbs"),
  7994. name: "Front (Alt)",
  7995. image: {
  7996. source: "./media/characters/yozey/front-alt.svg"
  7997. }
  7998. },
  7999. side: {
  8000. height: math.unit(6, "feet"),
  8001. weight: math.unit(120, "lbs"),
  8002. name: "Side",
  8003. image: {
  8004. source: "./media/characters/yozey/side.svg"
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(3, "inches"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(6, "feet")
  8017. }
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(6, "feet"),
  8025. weight: math.unit(103, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/valeska-voss/front.svg"
  8029. }
  8030. }
  8031. },
  8032. [
  8033. {
  8034. name: "Mini-Sized Sub",
  8035. height: math.unit(3.1, "inches")
  8036. },
  8037. {
  8038. name: "Mid-Sized Sub",
  8039. height: math.unit(6.2, "inches")
  8040. },
  8041. {
  8042. name: "Full-Sized Sub",
  8043. height: math.unit(9.3, "inches")
  8044. },
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(5 + 2 / 12, "foot"),
  8048. default: true
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(160, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/gene-zeta/front.svg",
  8061. extra: 3006 / 2826,
  8062. bottom: 182 / 3188
  8063. }
  8064. }
  8065. },
  8066. [
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(6, "inches")
  8070. },
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(5 + 11 / 12, "foot"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(140, "feet")
  8079. },
  8080. {
  8081. name: "Supercharged",
  8082. height: math.unit(2500, "feet")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(350, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/razinox/front.svg",
  8095. extra: 1686 / 1548,
  8096. bottom: 28.2 / 1868
  8097. }
  8098. },
  8099. back: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(350, "lbs"),
  8102. name: "Back",
  8103. image: {
  8104. source: "./media/characters/razinox/back.svg",
  8105. extra: 1660 / 1590,
  8106. bottom: 15 / 1665
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(10 + 8 / 12, "foot")
  8114. },
  8115. {
  8116. name: "Minimacro",
  8117. height: math.unit(15, "foot")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(60, "foot"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(5, "miles")
  8127. },
  8128. {
  8129. name: "Gigamacro",
  8130. height: math.unit(6000, "miles")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(6, "feet"),
  8139. weight: math.unit(150, "lbs"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/cobalt/front.svg"
  8143. }
  8144. }
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(8 + 1 / 12, "foot")
  8150. },
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(111, "foot"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Supracosmic",
  8158. height: math.unit(1e42, "feet")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8164. {
  8165. front: {
  8166. height: math.unit(5, "inches"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/amanda/front.svg",
  8170. extra: 926/791,
  8171. bottom: 38/964
  8172. }
  8173. },
  8174. back: {
  8175. height: math.unit(5, "inches"),
  8176. name: "Back",
  8177. image: {
  8178. source: "./media/characters/amanda/back.svg",
  8179. extra: 909/805,
  8180. bottom: 43/952
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Micro",
  8187. height: math.unit(5, "inches"),
  8188. default: true
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(2.75, "meters"),
  8197. weight: math.unit(1200, "lb"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/teal/front.svg",
  8201. extra: 2463 / 2320,
  8202. bottom: 166 / 2629
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(2.75, "meters"),
  8207. weight: math.unit(1200, "lb"),
  8208. name: "Back",
  8209. image: {
  8210. source: "./media/characters/teal/back.svg",
  8211. extra: 2580 / 2489,
  8212. bottom: 151 / 2731
  8213. }
  8214. },
  8215. sitting: {
  8216. height: math.unit(1.9, "meters"),
  8217. weight: math.unit(1200, "lb"),
  8218. name: "Sitting",
  8219. image: {
  8220. source: "./media/characters/teal/sitting.svg",
  8221. extra: 623 / 590,
  8222. bottom: 121 / 744
  8223. }
  8224. },
  8225. standing: {
  8226. height: math.unit(2.75, "meters"),
  8227. weight: math.unit(1200, "lb"),
  8228. name: "Standing",
  8229. image: {
  8230. source: "./media/characters/teal/standing.svg",
  8231. extra: 923 / 893,
  8232. bottom: 60 / 983
  8233. }
  8234. },
  8235. stretching: {
  8236. height: math.unit(3.65, "meters"),
  8237. weight: math.unit(1200, "lb"),
  8238. name: "Stretching",
  8239. image: {
  8240. source: "./media/characters/teal/stretching.svg",
  8241. extra: 1276 / 1244,
  8242. bottom: 0 / 1276
  8243. }
  8244. },
  8245. legged: {
  8246. height: math.unit(1.3, "meters"),
  8247. weight: math.unit(100, "lb"),
  8248. name: "Legged",
  8249. image: {
  8250. source: "./media/characters/teal/legged.svg",
  8251. extra: 462 / 437,
  8252. bottom: 24 / 486
  8253. }
  8254. },
  8255. naga: {
  8256. height: math.unit(5.4, "meters"),
  8257. weight: math.unit(4000, "lb"),
  8258. name: "Naga",
  8259. image: {
  8260. source: "./media/characters/teal/naga.svg",
  8261. extra: 1902 / 1858,
  8262. bottom: 0 / 1902
  8263. }
  8264. },
  8265. hand: {
  8266. height: math.unit(0.52, "meters"),
  8267. name: "Hand",
  8268. image: {
  8269. source: "./media/characters/teal/hand.svg"
  8270. }
  8271. },
  8272. maw: {
  8273. height: math.unit(0.43, "meters"),
  8274. name: "Maw",
  8275. image: {
  8276. source: "./media/characters/teal/maw.svg"
  8277. }
  8278. },
  8279. slit: {
  8280. height: math.unit(0.25, "meters"),
  8281. name: "Slit",
  8282. image: {
  8283. source: "./media/characters/teal/slit.svg"
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(2.75, "meters"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(300, "feet")
  8296. },
  8297. {
  8298. name: "Macro+",
  8299. height: math.unit(2000, "feet")
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8305. {
  8306. frontCat: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(180, "lbs"),
  8309. name: "Front (Cat)",
  8310. image: {
  8311. source: "./media/characters/ravin-amulet/front-cat.svg"
  8312. }
  8313. },
  8314. frontCatAlt: {
  8315. height: math.unit(6, "feet"),
  8316. weight: math.unit(180, "lbs"),
  8317. name: "Front (Alt, Cat)",
  8318. image: {
  8319. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8320. }
  8321. },
  8322. frontWerewolf: {
  8323. height: math.unit(6 * 1.2, "feet"),
  8324. weight: math.unit(225, "lbs"),
  8325. name: "Front (Werewolf)",
  8326. image: {
  8327. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8328. }
  8329. },
  8330. backWerewolf: {
  8331. height: math.unit(6 * 1.2, "feet"),
  8332. weight: math.unit(225, "lbs"),
  8333. name: "Back (Werewolf)",
  8334. image: {
  8335. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Nano",
  8342. height: math.unit(1, "micrometer")
  8343. },
  8344. {
  8345. name: "Micro",
  8346. height: math.unit(1, "inch")
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(6, "feet"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(60, "feet")
  8356. }
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(165, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/fluoresce/front.svg"
  8368. }
  8369. }
  8370. },
  8371. [
  8372. {
  8373. name: "Micro",
  8374. height: math.unit(6, "cm")
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(5 + 7 / 12, "feet"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(56, "feet")
  8384. },
  8385. {
  8386. name: "Megamacro",
  8387. height: math.unit(1.9, "miles")
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(9 + 6 / 12, "feet"),
  8396. weight: math.unit(523, "lbs"),
  8397. name: "Side",
  8398. image: {
  8399. source: "./media/characters/aurora/side.svg",
  8400. extra: 474/393,
  8401. bottom: 5/479
  8402. }
  8403. }
  8404. },
  8405. [
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(9 + 6 / 12, "feet")
  8409. },
  8410. {
  8411. name: "Macro",
  8412. height: math.unit(96, "feet"),
  8413. default: true
  8414. },
  8415. {
  8416. name: "Macro+",
  8417. height: math.unit(243, "feet")
  8418. },
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8423. {
  8424. front: {
  8425. height: math.unit(194, "cm"),
  8426. weight: math.unit(90, "kg"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/ranek/front.svg",
  8430. extra: 1862/1791,
  8431. bottom: 80/1942
  8432. }
  8433. },
  8434. back: {
  8435. height: math.unit(194, "cm"),
  8436. weight: math.unit(90, "kg"),
  8437. name: "Back",
  8438. image: {
  8439. source: "./media/characters/ranek/back.svg",
  8440. extra: 1853/1787,
  8441. bottom: 74/1927
  8442. }
  8443. },
  8444. feral: {
  8445. height: math.unit(30, "cm"),
  8446. weight: math.unit(1.6, "lbs"),
  8447. name: "Feral",
  8448. image: {
  8449. source: "./media/characters/ranek/feral.svg",
  8450. extra: 990/631,
  8451. bottom: 29/1019
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(194, "cm"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(100, "meters")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(5 + 6 / 12, "feet"),
  8472. weight: math.unit(153, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/andrew-cooper/front.svg"
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Nano",
  8482. height: math.unit(1, "mm")
  8483. },
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(2, "inches")
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5 + 6 / 12, "feet"),
  8491. default: true
  8492. }
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(6, "feet"),
  8500. weight: math.unit(180, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/akane-sato/front.svg",
  8504. extra: 1219 / 1140
  8505. }
  8506. },
  8507. back: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(180, "lbs"),
  8510. name: "Back",
  8511. image: {
  8512. source: "./media/characters/akane-sato/back.svg",
  8513. extra: 1219 / 1170
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(2.5, "meters")
  8521. },
  8522. {
  8523. name: "Macro",
  8524. height: math.unit(250, "meters"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Megamacro",
  8529. height: math.unit(25, "km")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(65, "kg"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/rook/front.svg",
  8542. extra: 960 / 950
  8543. }
  8544. }
  8545. },
  8546. [
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(8.8, "feet")
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(88, "feet"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Megamacro",
  8558. height: math.unit(8, "miles")
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(12 + 2 / 12, "feet"),
  8567. weight: math.unit(808, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/prodigy/front.svg"
  8571. }
  8572. }
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(12 + 2 / 12, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(143, "feet")
  8583. },
  8584. {
  8585. name: "Macro+",
  8586. height: math.unit(400, "feet")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(225, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/daniel/front.svg"
  8599. }
  8600. },
  8601. leaning: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(225, "lbs"),
  8604. name: "Leaning",
  8605. image: {
  8606. source: "./media/characters/daniel/leaning.svg"
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Macro",
  8613. height: math.unit(1000, "feet"),
  8614. default: true
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(6, "feet"),
  8623. weight: math.unit(88, "lbs"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/chiros/front.svg",
  8627. extra: 306 / 226
  8628. }
  8629. },
  8630. side: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(88, "lbs"),
  8633. name: "Side",
  8634. image: {
  8635. source: "./media/characters/chiros/side.svg",
  8636. extra: 306 / 226
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(6, "cm"),
  8644. default: true
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8650. {
  8651. front: {
  8652. height: math.unit(6, "feet"),
  8653. weight: math.unit(100, "lbs"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/selka/front.svg",
  8657. extra: 947 / 887
  8658. }
  8659. }
  8660. },
  8661. [
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(5, "cm"),
  8665. default: true
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(8 + 3 / 12, "feet"),
  8674. weight: math.unit(424, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/verin/front.svg",
  8678. extra: 1845 / 1550
  8679. }
  8680. },
  8681. frontArmored: {
  8682. height: math.unit(8 + 3 / 12, "feet"),
  8683. weight: math.unit(424, "lbs"),
  8684. name: "Front (Armored)",
  8685. image: {
  8686. source: "./media/characters/verin/front-armor.svg",
  8687. extra: 1845 / 1550,
  8688. bottom: 0.01
  8689. }
  8690. },
  8691. back: {
  8692. height: math.unit(8 + 3 / 12, "feet"),
  8693. weight: math.unit(424, "lbs"),
  8694. name: "Back",
  8695. image: {
  8696. source: "./media/characters/verin/back.svg",
  8697. bottom: 0.1,
  8698. extra: 1
  8699. }
  8700. },
  8701. foot: {
  8702. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8703. name: "Foot",
  8704. image: {
  8705. source: "./media/characters/verin/foot.svg"
  8706. }
  8707. },
  8708. },
  8709. [
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(8 + 3 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Minimacro",
  8716. height: math.unit(21, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(626, "feet")
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(2.718, "meters"),
  8730. weight: math.unit(150, "lbs"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/sovrim-terraquian/front.svg",
  8734. extra: 1752/1689,
  8735. bottom: 36/1788
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(2.718, "meters"),
  8740. weight: math.unit(150, "lbs"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/sovrim-terraquian/back.svg",
  8744. extra: 1698/1657,
  8745. bottom: 58/1756
  8746. }
  8747. },
  8748. tongue: {
  8749. height: math.unit(2.865, "feet"),
  8750. name: "Tongue",
  8751. image: {
  8752. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8753. }
  8754. },
  8755. hand: {
  8756. height: math.unit(1.61, "feet"),
  8757. name: "Hand",
  8758. image: {
  8759. source: "./media/characters/sovrim-terraquian/hand.svg"
  8760. }
  8761. },
  8762. foot: {
  8763. height: math.unit(1.05, "feet"),
  8764. name: "Foot",
  8765. image: {
  8766. source: "./media/characters/sovrim-terraquian/foot.svg"
  8767. }
  8768. },
  8769. footAlt: {
  8770. height: math.unit(0.88, "feet"),
  8771. name: "Foot (Alt)",
  8772. image: {
  8773. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Micro",
  8780. height: math.unit(2, "inches")
  8781. },
  8782. {
  8783. name: "Small",
  8784. height: math.unit(1, "meter")
  8785. },
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(Math.E, "meters"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(20, "meters")
  8794. },
  8795. {
  8796. name: "Macro+",
  8797. height: math.unit(400, "meters")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(7, "feet"),
  8806. weight: math.unit(489, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/reece-silvermane/front.svg",
  8810. bottom: 0.02,
  8811. extra: 1
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(1.5, "miles"),
  8819. default: true
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(78, "kg"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/kane/front.svg",
  8832. extra: 978 / 899
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(2.1, "m"),
  8840. },
  8841. {
  8842. name: "Macro",
  8843. height: math.unit(1, "km"),
  8844. default: true
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(200, "kg"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/tegon/front.svg",
  8857. bottom: 0.01,
  8858. extra: 1
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(1, "inch")
  8866. },
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(6 + 3 / 12, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(300, "feet")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(69, "miles")
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8884. {
  8885. side: {
  8886. height: math.unit(6, "feet"),
  8887. weight: math.unit(2304, "lbs"),
  8888. name: "Side",
  8889. image: {
  8890. source: "./media/characters/arcturax/side.svg",
  8891. extra: 790 / 376,
  8892. bottom: 0.01
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(2, "inch")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(6, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(39, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(7, "miles")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(50, "lbs"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/sentri/front.svg",
  8925. extra: 1750 / 1570,
  8926. bottom: 0.025
  8927. }
  8928. },
  8929. frontAlt: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(50, "lbs"),
  8932. name: "Front (Alt)",
  8933. image: {
  8934. source: "./media/characters/sentri/front-alt.svg",
  8935. extra: 1750 / 1570,
  8936. bottom: 0.025
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(15, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(2500, "feet")
  8949. }
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(5 + 8 / 12, "feet"),
  8957. weight: math.unit(130, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/corvin/front.svg",
  8961. extra: 1803 / 1629
  8962. }
  8963. },
  8964. frontShirt: {
  8965. height: math.unit(5 + 8 / 12, "feet"),
  8966. weight: math.unit(130, "lbs"),
  8967. name: "Front (Shirt)",
  8968. image: {
  8969. source: "./media/characters/corvin/front-shirt.svg",
  8970. extra: 1803 / 1629
  8971. }
  8972. },
  8973. frontPoncho: {
  8974. height: math.unit(5 + 8 / 12, "feet"),
  8975. weight: math.unit(130, "lbs"),
  8976. name: "Front (Poncho)",
  8977. image: {
  8978. source: "./media/characters/corvin/front-poncho.svg",
  8979. extra: 1803 / 1629
  8980. }
  8981. },
  8982. side: {
  8983. height: math.unit(5 + 8 / 12, "feet"),
  8984. weight: math.unit(130, "lbs"),
  8985. name: "Side",
  8986. image: {
  8987. source: "./media/characters/corvin/side.svg",
  8988. extra: 1012 / 945
  8989. }
  8990. },
  8991. back: {
  8992. height: math.unit(5 + 8 / 12, "feet"),
  8993. weight: math.unit(130, "lbs"),
  8994. name: "Back",
  8995. image: {
  8996. source: "./media/characters/corvin/back.svg",
  8997. extra: 1803 / 1629
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Micro",
  9004. height: math.unit(3, "inches")
  9005. },
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(5 + 8 / 12, "feet")
  9009. },
  9010. {
  9011. name: "Macro",
  9012. height: math.unit(300, "feet"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(500, "miles")
  9018. }
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(6, "feet"),
  9026. weight: math.unit(135, "lbs"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/q/front.svg",
  9030. extra: 854 / 752,
  9031. bottom: 0.005
  9032. }
  9033. },
  9034. back: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(130, "lbs"),
  9037. name: "Back",
  9038. image: {
  9039. source: "./media/characters/q/back.svg",
  9040. extra: 854 / 752
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Macro",
  9047. height: math.unit(90, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Extra Macro",
  9052. height: math.unit(300, "feet"),
  9053. },
  9054. {
  9055. name: "BIG WALF",
  9056. height: math.unit(750, "feet"),
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(3, "feet"),
  9065. weight: math.unit(28, "lbs"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/citrine/front.svg"
  9069. }
  9070. }
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(3, "feet"),
  9076. default: true
  9077. }
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9082. {
  9083. front: {
  9084. height: math.unit(14, "feet"),
  9085. weight: math.unit(1450, "kg"),
  9086. preyCapacity: math.unit(15, "people"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/aura-starwind/front.svg",
  9090. extra: 1440/1327,
  9091. bottom: 11/1451
  9092. }
  9093. },
  9094. side: {
  9095. height: math.unit(14, "feet"),
  9096. weight: math.unit(1450, "kg"),
  9097. preyCapacity: math.unit(15, "people"),
  9098. name: "Side",
  9099. image: {
  9100. source: "./media/characters/aura-starwind/side.svg",
  9101. extra: 1654 / 1497
  9102. }
  9103. },
  9104. taur: {
  9105. height: math.unit(18, "feet"),
  9106. weight: math.unit(5500, "kg"),
  9107. preyCapacity: math.unit(50, "people"),
  9108. name: "Taur",
  9109. image: {
  9110. source: "./media/characters/aura-starwind/taur.svg",
  9111. extra: 1760 / 1650
  9112. }
  9113. },
  9114. feral: {
  9115. height: math.unit(46, "feet"),
  9116. weight: math.unit(25000, "kg"),
  9117. preyCapacity: math.unit(120, "people"),
  9118. name: "Feral",
  9119. image: {
  9120. source: "./media/characters/aura-starwind/feral.svg"
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(14, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Macro",
  9132. height: math.unit(50, "meters")
  9133. },
  9134. {
  9135. name: "Megamacro",
  9136. height: math.unit(5000, "meters")
  9137. },
  9138. {
  9139. name: "Gigamacro",
  9140. height: math.unit(100000, "kilometers")
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(2 + 7 / 12, "feet"),
  9149. weight: math.unit(32, "lbs"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/rivet/front.svg",
  9153. extra: 1716 / 1658,
  9154. bottom: 0.03
  9155. }
  9156. },
  9157. foot: {
  9158. height: math.unit(0.551, "feet"),
  9159. name: "Rivet's Foot",
  9160. image: {
  9161. source: "./media/characters/rivet/foot.svg"
  9162. },
  9163. rename: true
  9164. }
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(1.5, "inches"),
  9170. },
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(2 + 7 / 12, "feet"),
  9174. default: true
  9175. },
  9176. {
  9177. name: "Macro",
  9178. height: math.unit(85, "feet")
  9179. },
  9180. {
  9181. name: "Megamacro",
  9182. height: math.unit(2.2, "km")
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(5 + 9 / 12, "feet"),
  9191. weight: math.unit(150, "lbs"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/coffee/front.svg",
  9195. extra: 946/880,
  9196. bottom: 66/1012
  9197. }
  9198. },
  9199. foot: {
  9200. height: math.unit(1.29, "feet"),
  9201. name: "Foot",
  9202. image: {
  9203. source: "./media/characters/coffee/foot.svg"
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Micro",
  9210. height: math.unit(2, "inches"),
  9211. },
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(5 + 9 / 12, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(800, "feet")
  9220. },
  9221. {
  9222. name: "Megamacro",
  9223. height: math.unit(25, "miles")
  9224. }
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(200, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/chari-gal/front.svg",
  9236. extra: 1568 / 1385,
  9237. bottom: 0.047
  9238. }
  9239. },
  9240. gigantamax: {
  9241. height: math.unit(6 * 16, "feet"),
  9242. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9243. name: "Gigantamax",
  9244. image: {
  9245. source: "./media/characters/chari-gal/gigantamax.svg",
  9246. extra: 1124 / 888,
  9247. bottom: 0.03
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(5 + 7 / 12, "feet")
  9255. },
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(200, "feet"),
  9259. default: true
  9260. }
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(150, "lbs"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/nova/front.svg",
  9272. extra: 5000 / 4722,
  9273. bottom: 0.02
  9274. }
  9275. }
  9276. },
  9277. [
  9278. {
  9279. name: "Micro-",
  9280. height: math.unit(0.8, "inches")
  9281. },
  9282. {
  9283. name: "Micro",
  9284. height: math.unit(2, "inches"),
  9285. default: true
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9291. {
  9292. koboldFront: {
  9293. height: math.unit(3 + 1 / 12, "feet"),
  9294. weight: math.unit(21.7, "lbs"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/argent/kobold-front.svg",
  9298. extra: 1471 / 1331,
  9299. bottom: 100.8 / 1575.5
  9300. },
  9301. form: "kobold",
  9302. default: true
  9303. },
  9304. dragonFront: {
  9305. height: math.unit(75, "inches"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/argent/dragon-front.svg",
  9309. extra: 1389/1248,
  9310. bottom: 54/1443
  9311. },
  9312. form: "dragon",
  9313. },
  9314. dragonBack: {
  9315. height: math.unit(75, "inches"),
  9316. name: "Back",
  9317. image: {
  9318. source: "./media/characters/argent/dragon-back.svg",
  9319. extra: 1399/1271,
  9320. bottom: 23/1422
  9321. },
  9322. form: "dragon",
  9323. },
  9324. dragonDressed: {
  9325. height: math.unit(75, "inches"),
  9326. name: "Dressed",
  9327. image: {
  9328. source: "./media/characters/argent/dragon-dressed.svg",
  9329. extra: 1350/1215,
  9330. bottom: 26/1376
  9331. },
  9332. form: "dragon"
  9333. },
  9334. dragonHead: {
  9335. height: math.unit(23.5, "inches"),
  9336. name: "Head",
  9337. image: {
  9338. source: "./media/characters/argent/dragon-head.svg"
  9339. },
  9340. form: "dragon",
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(2, "inches"),
  9347. form: "kobold",
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(3 + 1 / 12, "feet"),
  9352. form: "kobold",
  9353. default: true
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(120, "feet"),
  9358. form: "kobold",
  9359. },
  9360. {
  9361. name: "Speck",
  9362. height: math.unit(1, "mm"),
  9363. form: "dragon",
  9364. },
  9365. {
  9366. name: "Tiny",
  9367. height: math.unit(1, "cm"),
  9368. form: "dragon",
  9369. },
  9370. {
  9371. name: "Micro",
  9372. height: math.unit(5, "cm"),
  9373. form: "dragon",
  9374. },
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(75, "inches"),
  9378. form: "dragon",
  9379. default: true
  9380. },
  9381. {
  9382. name: "Extra Tall",
  9383. height: math.unit(9, "feet"),
  9384. form: "dragon",
  9385. },
  9386. {
  9387. name: "Inconvenient",
  9388. height: math.unit(5, "meters"),
  9389. form: "dragon",
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(70, "meters"),
  9394. form: "dragon",
  9395. },
  9396. {
  9397. name: "Macro+",
  9398. height: math.unit(250, "meters"),
  9399. form: "dragon",
  9400. },
  9401. {
  9402. name: "Megamacro",
  9403. height: math.unit(20, "km"),
  9404. form: "dragon",
  9405. },
  9406. {
  9407. name: "Mountainous",
  9408. height: math.unit(100, "km"),
  9409. form: "dragon",
  9410. },
  9411. {
  9412. name: "Continental",
  9413. height: math.unit(2, "megameters"),
  9414. form: "dragon",
  9415. },
  9416. {
  9417. name: "Too Big",
  9418. height: math.unit(900, "megameters"),
  9419. form: "dragon",
  9420. },
  9421. ],
  9422. {
  9423. "kobold": {
  9424. name: "Kobold",
  9425. default: true
  9426. },
  9427. "dragon": {
  9428. name: "Dragon",
  9429. },
  9430. }
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9434. {
  9435. lamp: {
  9436. height: math.unit(7 * 1559 / 989, "feet"),
  9437. name: "Magic Lamp",
  9438. image: {
  9439. source: "./media/characters/mira-al-cul/lamp.svg",
  9440. extra: 1617 / 1559
  9441. }
  9442. },
  9443. front: {
  9444. height: math.unit(7, "feet"),
  9445. name: "Front",
  9446. image: {
  9447. source: "./media/characters/mira-al-cul/front.svg",
  9448. extra: 1044 / 990
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Heavily Restricted",
  9455. height: math.unit(7 * 1559 / 989, "feet")
  9456. },
  9457. {
  9458. name: "Freshly Freed",
  9459. height: math.unit(50 * 1559 / 989, "feet")
  9460. },
  9461. {
  9462. name: "World Encompassing",
  9463. height: math.unit(10000 * 1559 / 989, "miles")
  9464. },
  9465. {
  9466. name: "Galactic",
  9467. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9468. },
  9469. {
  9470. name: "Palmed Universe",
  9471. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "Multiversal Matriarch",
  9476. height: math.unit(8.87e10, "yottameters")
  9477. },
  9478. {
  9479. name: "Void Mother",
  9480. height: math.unit(3.14e110, "yottaparsecs")
  9481. },
  9482. {
  9483. name: "Toying with Transcendence",
  9484. height: math.unit(1e307, "meters")
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9490. {
  9491. front: {
  9492. height: math.unit(17 + 1 / 12, "feet"),
  9493. weight: math.unit(476.2 * 5, "lbs"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/kuro-shi-uchū/front.svg",
  9497. extra: 2329 / 1835,
  9498. bottom: 0.02
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Micro",
  9505. height: math.unit(2, "inches")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(12, "meters")
  9510. },
  9511. {
  9512. name: "Planetary",
  9513. height: math.unit(0.00929, "AU"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Universal",
  9518. height: math.unit(20, "gigaparsecs")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(5 + 2 / 12, "feet"),
  9527. weight: math.unit(120, "lbs"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/katherine/front.svg",
  9531. extra: 2075 / 1969
  9532. }
  9533. },
  9534. dress: {
  9535. height: math.unit(5 + 2 / 12, "feet"),
  9536. weight: math.unit(120, "lbs"),
  9537. name: "Dress",
  9538. image: {
  9539. source: "./media/characters/katherine/dress.svg",
  9540. extra: 2258 / 2064
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(1, "inches"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(5 + 2 / 12, "feet")
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(100, "meters")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(80, "miles")
  9561. },
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9566. {
  9567. front: {
  9568. height: math.unit(7 + 8 / 12, "feet"),
  9569. weight: math.unit(250, "lbs"),
  9570. name: "Front",
  9571. image: {
  9572. source: "./media/characters/yevis/front.svg",
  9573. extra: 1938 / 1755
  9574. }
  9575. }
  9576. },
  9577. [
  9578. {
  9579. name: "Mortal",
  9580. height: math.unit(7 + 8 / 12, "feet")
  9581. },
  9582. {
  9583. name: "Battle",
  9584. height: math.unit(25 + 11 / 12, "feet")
  9585. },
  9586. {
  9587. name: "Wrath",
  9588. height: math.unit(1654 + 11 / 12, "feet")
  9589. },
  9590. {
  9591. name: "Planet Destroyer",
  9592. height: math.unit(12000, "miles")
  9593. },
  9594. {
  9595. name: "Galaxy Conqueror",
  9596. height: math.unit(1.45, "zettameters"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Universal War",
  9601. height: math.unit(184, "gigaparsecs")
  9602. },
  9603. {
  9604. name: "Eternity War",
  9605. height: math.unit(1.98e55, "yottaparsecs")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(5 + 8 / 12, "feet"),
  9614. weight: math.unit(63, "kg"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/xavier/front.svg",
  9618. extra: 944 / 883
  9619. }
  9620. },
  9621. frontStretch: {
  9622. height: math.unit(5 + 8 / 12, "feet"),
  9623. weight: math.unit(63, "kg"),
  9624. name: "Stretching",
  9625. image: {
  9626. source: "./media/characters/xavier/front-stretch.svg",
  9627. extra: 962 / 820
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5 + 8 / 12, "feet")
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(100, "meters"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "McLargeHuge",
  9643. height: math.unit(10, "miles")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(5 + 5 / 12, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/joshii/front.svg",
  9656. extra: 765 / 653,
  9657. bottom: 51 / 816
  9658. }
  9659. },
  9660. foot: {
  9661. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9662. name: "Foot",
  9663. image: {
  9664. source: "./media/characters/joshii/foot.svg"
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(2, "inches")
  9672. },
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(5 + 5 / 12, "feet")
  9676. },
  9677. {
  9678. name: "Macro",
  9679. height: math.unit(785, "feet"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Megamacro",
  9684. height: math.unit(24.5, "miles")
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9690. {
  9691. front: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/goddess-elizabeth/front.svg",
  9697. extra: 1800 / 1525,
  9698. bottom: 0.005
  9699. }
  9700. },
  9701. foot: {
  9702. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9703. name: "Foot",
  9704. image: {
  9705. source: "./media/characters/goddess-elizabeth/foot.svg"
  9706. }
  9707. },
  9708. mouth: {
  9709. height: math.unit(6, "feet"),
  9710. name: "Mouth",
  9711. image: {
  9712. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Micro",
  9719. height: math.unit(12, "feet")
  9720. },
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(80, "miles"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Macro",
  9728. height: math.unit(15000, "parsecs")
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9734. {
  9735. front: {
  9736. height: math.unit(5 + 9 / 12, "feet"),
  9737. weight: math.unit(144, "lb"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/kara/front.svg"
  9741. }
  9742. },
  9743. feet: {
  9744. height: math.unit(6 / 6.765, "feet"),
  9745. name: "Kara's Feet",
  9746. rename: true,
  9747. image: {
  9748. source: "./media/characters/kara/feet.svg"
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(5 + 9 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(174, "feet"),
  9760. default: true
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(18, "feet"),
  9769. weight: math.unit(4050, "lb"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/tyrone/front.svg",
  9773. extra: 2405 / 2270,
  9774. bottom: 182 / 2587
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(18, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(300, "feet")
  9787. },
  9788. {
  9789. name: "Megamacro",
  9790. height: math.unit(15, "km")
  9791. },
  9792. {
  9793. name: "Gigamacro",
  9794. height: math.unit(500, "km")
  9795. },
  9796. {
  9797. name: "Teramacro",
  9798. height: math.unit(0.5, "gigameters")
  9799. },
  9800. {
  9801. name: "Omnimacro",
  9802. height: math.unit(1e252, "yottauniverse")
  9803. },
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9808. {
  9809. front: {
  9810. height: math.unit(7 + 8 / 12, "feet"),
  9811. weight: math.unit(120, "lb"),
  9812. name: "Front",
  9813. image: {
  9814. source: "./media/characters/danny/front.svg",
  9815. extra: 1490 / 1350
  9816. }
  9817. },
  9818. back: {
  9819. height: math.unit(7 + 8 / 12, "feet"),
  9820. weight: math.unit(120, "lb"),
  9821. name: "Back",
  9822. image: {
  9823. source: "./media/characters/danny/back.svg",
  9824. extra: 1490 / 1350
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(7 + 8 / 12, "feet"),
  9832. default: true
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(3.5, "inches"),
  9841. weight: math.unit(19, "grams"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/mallow/front.svg",
  9845. extra: 471 / 431
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(3.5, "inches"),
  9850. weight: math.unit(19, "grams"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/mallow/back.svg",
  9854. extra: 471 / 431
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(3.5, "inches"),
  9862. default: true
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(9, "feet"),
  9871. weight: math.unit(230, "kg"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/starry-aqua/front.svg"
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(9, "feet"),
  9879. weight: math.unit(230, "kg"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/starry-aqua/back.svg"
  9883. }
  9884. },
  9885. hand: {
  9886. height: math.unit(9 * 0.1168, "feet"),
  9887. name: "Hand",
  9888. image: {
  9889. source: "./media/characters/starry-aqua/hand.svg"
  9890. }
  9891. },
  9892. foot: {
  9893. height: math.unit(9 * 0.18, "feet"),
  9894. name: "Foot",
  9895. image: {
  9896. source: "./media/characters/starry-aqua/foot.svg"
  9897. }
  9898. }
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(3, "inches")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(9, "feet")
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(300, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(3200, "feet")
  9917. }
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(15, "feet"),
  9925. weight: math.unit(5026, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/luka-towers/front.svg",
  9929. extra: 1269/1133,
  9930. bottom: 51/1320
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(15, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Minimacro",
  9942. height: math.unit(25, "feet")
  9943. },
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(320, "feet")
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(35000, "feet")
  9951. },
  9952. {
  9953. name: "Gigamacro",
  9954. height: math.unit(4000, "miles")
  9955. },
  9956. {
  9957. name: "Teramacro",
  9958. height: math.unit(15000, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/natalie-nightring/front.svg",
  9971. extra: 1,
  9972. bottom: 0.06
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Uh Oh",
  9979. height: math.unit(0.1, "mm")
  9980. },
  9981. {
  9982. name: "Small",
  9983. height: math.unit(3, "inches")
  9984. },
  9985. {
  9986. name: "Human Scale",
  9987. height: math.unit(6, "feet")
  9988. },
  9989. {
  9990. name: "Librarian",
  9991. height: math.unit(50, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Immense",
  9996. height: math.unit(200, "miles")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(6, "feet"),
  10005. weight: math.unit(180, "lbs"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/danni-rosie/front.svg",
  10009. extra: 1260 / 1128,
  10010. bottom: 0.022
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(2, "inches"),
  10018. default: true
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(5 + 9 / 12, "feet"),
  10027. weight: math.unit(220, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/samantha-kruse/front.svg",
  10031. extra: (985 / 935),
  10032. bottom: 0.03
  10033. }
  10034. },
  10035. frontUndressed: {
  10036. height: math.unit(5 + 9 / 12, "feet"),
  10037. weight: math.unit(220, "lb"),
  10038. name: "Front (Undressed)",
  10039. image: {
  10040. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10041. extra: (973 / 923),
  10042. bottom: 0.025
  10043. }
  10044. },
  10045. fat: {
  10046. height: math.unit(5 + 9 / 12, "feet"),
  10047. weight: math.unit(900, "lb"),
  10048. name: "Front (Fat)",
  10049. image: {
  10050. source: "./media/characters/samantha-kruse/fat.svg",
  10051. extra: 2688 / 2561
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(5 + 9 / 12, "feet"),
  10059. default: true
  10060. }
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10065. {
  10066. back: {
  10067. height: math.unit(5 + 4 / 12, "feet"),
  10068. weight: math.unit(4963, "lb"),
  10069. name: "Back",
  10070. image: {
  10071. source: "./media/characters/amelia-rosie/back.svg",
  10072. extra: 1113 / 963,
  10073. bottom: 0.01
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Level 0",
  10080. height: math.unit(5 + 4 / 12, "feet")
  10081. },
  10082. {
  10083. name: "Level 1",
  10084. height: math.unit(164597, "feet"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Level 2",
  10089. height: math.unit(956243, "miles")
  10090. },
  10091. {
  10092. name: "Level 3",
  10093. height: math.unit(29421709423, "miles")
  10094. },
  10095. {
  10096. name: "Level 4",
  10097. height: math.unit(154, "lightyears")
  10098. },
  10099. {
  10100. name: "Level 5",
  10101. height: math.unit(4738272, "lightyears")
  10102. },
  10103. {
  10104. name: "Level 6",
  10105. height: math.unit(145787152896, "lightyears")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(5 + 11 / 12, "feet"),
  10114. weight: math.unit(65, "kg"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/rook-kitara/front.svg",
  10118. extra: 1347 / 1274,
  10119. bottom: 0.005
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Totally Unfair",
  10126. height: math.unit(1.8, "mm")
  10127. },
  10128. {
  10129. name: "Lap Rookie",
  10130. height: math.unit(1.4, "feet")
  10131. },
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(5 + 11 / 12, "feet"),
  10135. default: true
  10136. },
  10137. {
  10138. name: "How Did This Happen",
  10139. height: math.unit(80, "miles")
  10140. }
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(7, "feet"),
  10148. weight: math.unit(300, "lb"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/pisces/front.svg",
  10152. extra: 2255 / 2115,
  10153. bottom: 0.03
  10154. }
  10155. },
  10156. back: {
  10157. height: math.unit(7, "feet"),
  10158. weight: math.unit(300, "lb"),
  10159. name: "Back",
  10160. image: {
  10161. source: "./media/characters/pisces/back.svg",
  10162. extra: 2146 / 2055,
  10163. bottom: 0.04
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(7, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Swimming Pool",
  10175. height: math.unit(12.2, "meters")
  10176. },
  10177. {
  10178. name: "Olympic Swimming Pool",
  10179. height: math.unit(56.3, "meters")
  10180. },
  10181. {
  10182. name: "Lake Superior",
  10183. height: math.unit(93900, "meters")
  10184. },
  10185. {
  10186. name: "Mediterranean Sea",
  10187. height: math.unit(644457, "meters")
  10188. },
  10189. {
  10190. name: "World's Oceans",
  10191. height: math.unit(4567491, "meters")
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(2.3, "meters"),
  10200. weight: math.unit(120, "kg"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/zelas/front.svg"
  10204. }
  10205. },
  10206. side: {
  10207. height: math.unit(2.3, "meters"),
  10208. weight: math.unit(120, "kg"),
  10209. name: "Side",
  10210. image: {
  10211. source: "./media/characters/zelas/side.svg"
  10212. }
  10213. },
  10214. back: {
  10215. height: math.unit(2.3, "meters"),
  10216. weight: math.unit(120, "kg"),
  10217. name: "Back",
  10218. image: {
  10219. source: "./media/characters/zelas/back.svg"
  10220. }
  10221. },
  10222. foot: {
  10223. height: math.unit(1.116, "feet"),
  10224. name: "Foot",
  10225. image: {
  10226. source: "./media/characters/zelas/foot.svg"
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(2.3, "meters")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(30, "meters"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(1, "inch"),
  10247. weight: math.unit(0.21, "grams"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/talbot/front.svg",
  10251. extra: 594 / 544
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(1, "inch"),
  10259. default: true
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10265. {
  10266. front: {
  10267. height: math.unit(3 + 3 / 12, "feet"),
  10268. weight: math.unit(51.8, "lb"),
  10269. name: "Front",
  10270. image: {
  10271. source: "./media/characters/fliss/front.svg",
  10272. extra: 840 / 640
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Teeny Tiny",
  10279. height: math.unit(1, "mm")
  10280. },
  10281. {
  10282. name: "Small",
  10283. height: math.unit(1, "inch"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Standard Sylveon",
  10288. height: math.unit(3 + 3 / 12, "feet")
  10289. },
  10290. {
  10291. name: "Large Nuisance",
  10292. height: math.unit(33, "feet")
  10293. },
  10294. {
  10295. name: "City Filler",
  10296. height: math.unit(3000, "feet")
  10297. },
  10298. {
  10299. name: "New Horizon",
  10300. height: math.unit(6000, "miles")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(5, "cm"),
  10309. weight: math.unit(1.94, "g"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/fleta/front.svg",
  10313. extra: 835 / 803
  10314. }
  10315. },
  10316. back: {
  10317. height: math.unit(5, "cm"),
  10318. weight: math.unit(1.94, "g"),
  10319. name: "Back",
  10320. image: {
  10321. source: "./media/characters/fleta/back.svg",
  10322. extra: 835 / 803
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(5, "cm"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(225, "lb"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/dominic/front.svg",
  10343. extra: 1770 / 1620,
  10344. bottom: 0.025
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(225, "lb"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/dominic/back.svg",
  10353. extra: 1745 / 1620,
  10354. bottom: 0.065
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Nano",
  10361. height: math.unit(0.1, "mm")
  10362. },
  10363. {
  10364. name: "Micro-",
  10365. height: math.unit(1, "mm")
  10366. },
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(4, "inches")
  10370. },
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(6 + 4 / 12, "feet"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(115, "feet")
  10379. },
  10380. {
  10381. name: "Macro+",
  10382. height: math.unit(955, "feet")
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(8990, "feet")
  10387. },
  10388. {
  10389. name: "Gigmacro",
  10390. height: math.unit(9310, "miles")
  10391. },
  10392. {
  10393. name: "Teramacro",
  10394. height: math.unit(1567005010, "miles")
  10395. },
  10396. {
  10397. name: "Examacro",
  10398. height: math.unit(1425, "parsecs")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(400, "feet"),
  10407. weight: math.unit(44444444, "lb"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/major-colonel/front.svg"
  10411. }
  10412. },
  10413. back: {
  10414. height: math.unit(400, "feet"),
  10415. weight: math.unit(44444444, "lb"),
  10416. name: "Back",
  10417. image: {
  10418. source: "./media/characters/major-colonel/back.svg"
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(400, "feet"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10432. {
  10433. catFront: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(120, "lb"),
  10436. name: "Front (Cat Side)",
  10437. image: {
  10438. source: "./media/characters/axel-lycan/cat-front.svg",
  10439. extra: 430 / 402,
  10440. bottom: 43 / 472.35
  10441. }
  10442. },
  10443. catBack: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(120, "lb"),
  10446. name: "Back (Cat Side)",
  10447. image: {
  10448. source: "./media/characters/axel-lycan/cat-back.svg",
  10449. extra: 447 / 419,
  10450. bottom: 23.3 / 469
  10451. }
  10452. },
  10453. wolfFront: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(120, "lb"),
  10456. name: "Front (Wolf Side)",
  10457. image: {
  10458. source: "./media/characters/axel-lycan/wolf-front.svg",
  10459. extra: 485 / 456,
  10460. bottom: 19 / 504
  10461. }
  10462. },
  10463. wolfBack: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(120, "lb"),
  10466. name: "Back (Wolf Side)",
  10467. image: {
  10468. source: "./media/characters/axel-lycan/wolf-back.svg",
  10469. extra: 475 / 438,
  10470. bottom: 39.2 / 514
  10471. }
  10472. },
  10473. },
  10474. [
  10475. {
  10476. name: "Macro",
  10477. height: math.unit(1, "km"),
  10478. default: true
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10484. {
  10485. front: {
  10486. height: math.unit(5 + 9 / 12, "feet"),
  10487. weight: math.unit(175, "lb"),
  10488. name: "Front",
  10489. image: {
  10490. source: "./media/characters/vanrel-hyena/front.svg",
  10491. extra: 1086 / 1010,
  10492. bottom: 0.04
  10493. }
  10494. },
  10495. },
  10496. [
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(5 + 9 / 12, "feet"),
  10500. default: true
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(103, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/abbott-absol/front.svg",
  10513. extra: 2010 / 1842
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Megamicro",
  10520. height: math.unit(0.1, "mm")
  10521. },
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(1, "inch")
  10525. },
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(6, "feet"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(6, "feet"),
  10538. weight: math.unit(264, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/hector/front.svg",
  10542. extra: 2280 / 2130,
  10543. bottom: 0.07
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(12.25, "foot"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Macro",
  10555. height: math.unit(160, "feet")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/sal/front.svg",
  10568. extra: 1846 / 1699,
  10569. bottom: 0.04
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Megamacro",
  10576. height: math.unit(10, "miles"),
  10577. default: true
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10583. {
  10584. front: {
  10585. height: math.unit(3, "meters"),
  10586. weight: math.unit(450, "kg"),
  10587. name: "front",
  10588. image: {
  10589. source: "./media/characters/ranger/front.svg",
  10590. extra: 2401 / 2243,
  10591. bottom: 0.05
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(3, "meters"),
  10599. default: true
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(14, "feet"),
  10608. weight: math.unit(800, "kg"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/theresa/front.svg",
  10612. extra: 3575 / 3346,
  10613. bottom: 0.03
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(14, "feet"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10627. {
  10628. front: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(3, "kg"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/ine/front.svg",
  10634. extra: 678 / 539,
  10635. bottom: 0.023
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(2.265, "feet"),
  10643. default: true
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(5, "feet"),
  10652. weight: math.unit(30, "kg"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/vial/front.svg",
  10656. extra: 1365 / 1277,
  10657. bottom: 0.04
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(5, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10671. {
  10672. side: {
  10673. height: math.unit(3.4, "meters"),
  10674. weight: math.unit(1000, "lb"),
  10675. name: "Side",
  10676. image: {
  10677. source: "./media/characters/rovoska/side.svg",
  10678. extra: 4403 / 1515
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(3.4, "meters"),
  10686. default: true
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(8, "feet"),
  10695. weight: math.unit(315, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/gunner-rotthbauer/front.svg"
  10699. }
  10700. },
  10701. back: {
  10702. height: math.unit(8, "feet"),
  10703. weight: math.unit(315, "lb"),
  10704. name: "Back",
  10705. image: {
  10706. source: "./media/characters/gunner-rotthbauer/back.svg"
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(3.5, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(8, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(250, "feet")
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(1, "AU")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(5 + 5 / 12, "feet"),
  10735. weight: math.unit(140, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/allatia/front.svg",
  10739. extra: 1227 / 1180,
  10740. bottom: 0.027
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(5 + 5 / 12, "feet")
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(250, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(8, "miles")
  10757. }
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(120, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/tene/front.svg",
  10769. extra: 814/750,
  10770. bottom: 36/850
  10771. }
  10772. },
  10773. stomping: {
  10774. height: math.unit(2.025, "meters"),
  10775. weight: math.unit(120, "lb"),
  10776. name: "Stomping",
  10777. image: {
  10778. source: "./media/characters/tene/stomping.svg",
  10779. extra: 885/821,
  10780. bottom: 15/900
  10781. }
  10782. },
  10783. sitting: {
  10784. height: math.unit(1, "meter"),
  10785. weight: math.unit(120, "lb"),
  10786. name: "Sitting",
  10787. image: {
  10788. source: "./media/characters/tene/sitting.svg",
  10789. extra: 396/366,
  10790. bottom: 79/475
  10791. }
  10792. },
  10793. smiling: {
  10794. height: math.unit(1.2, "feet"),
  10795. name: "Smiling",
  10796. image: {
  10797. source: "./media/characters/tene/smiling.svg",
  10798. extra: 1364/1071,
  10799. bottom: 0/1364
  10800. }
  10801. },
  10802. smug: {
  10803. height: math.unit(1.3, "feet"),
  10804. name: "Smug",
  10805. image: {
  10806. source: "./media/characters/tene/smug.svg",
  10807. extra: 1323/1082,
  10808. bottom: 0/1323
  10809. }
  10810. },
  10811. feral: {
  10812. height: math.unit(3.9, "feet"),
  10813. weight: math.unit(250, "lb"),
  10814. name: "Feral",
  10815. image: {
  10816. source: "./media/characters/tene/feral.svg",
  10817. extra: 717 / 458,
  10818. bottom: 0.179
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(6, "feet")
  10826. },
  10827. {
  10828. name: "Macro",
  10829. height: math.unit(300, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(5, "miles")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10840. {
  10841. side: {
  10842. height: math.unit(6, "feet"),
  10843. name: "Side",
  10844. image: {
  10845. source: "./media/characters/evander/side.svg",
  10846. extra: 877 / 477
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(0.83, "meters"),
  10854. default: true
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(12, "feet"),
  10863. weight: math.unit(1000, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10867. extra: 1762 / 1611
  10868. }
  10869. },
  10870. back: {
  10871. height: math.unit(12, "feet"),
  10872. weight: math.unit(1000, "lb"),
  10873. name: "Back",
  10874. image: {
  10875. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10876. extra: 1762 / 1611
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(12, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Kaiju",
  10888. height: math.unit(150, "feet")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/zero-alurus/front.svg"
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(150, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/zero-alurus/back.svg"
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(5 + 10 / 12, "feet")
  10916. },
  10917. {
  10918. name: "Macro",
  10919. height: math.unit(60, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Macro+",
  10924. height: math.unit(450, "feet")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(6, "feet"),
  10933. weight: math.unit(200, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/mega-shi/front.svg",
  10937. extra: 1279 / 1250,
  10938. bottom: 0.02
  10939. }
  10940. },
  10941. back: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(200, "lb"),
  10944. name: "Back",
  10945. image: {
  10946. source: "./media/characters/mega-shi/back.svg",
  10947. extra: 1279 / 1250,
  10948. bottom: 0.02
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Micro",
  10955. height: math.unit(16 + 6 / 12, "feet")
  10956. },
  10957. {
  10958. name: "Third Dimension",
  10959. height: math.unit(40, "meters")
  10960. },
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(660, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Megamacro",
  10968. height: math.unit(10, "miles")
  10969. },
  10970. {
  10971. name: "Planetary Launch",
  10972. height: math.unit(500, "miles")
  10973. },
  10974. {
  10975. name: "Interstellar",
  10976. height: math.unit(1e9, "miles")
  10977. },
  10978. {
  10979. name: "Leaving the Universe",
  10980. height: math.unit(1, "gigaparsec")
  10981. },
  10982. {
  10983. name: "Travelling Universes",
  10984. height: math.unit(30e15, "parsecs")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(5 + 4/12, "feet"),
  10993. weight: math.unit(120, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/odyssey/front.svg",
  10997. extra: 1747/1571,
  10998. bottom: 47/1794
  10999. }
  11000. },
  11001. side: {
  11002. height: math.unit(5.1, "feet"),
  11003. weight: math.unit(120, "lb"),
  11004. name: "Side",
  11005. image: {
  11006. source: "./media/characters/odyssey/side.svg",
  11007. extra: 1847/1619,
  11008. bottom: 47/1894
  11009. }
  11010. },
  11011. lounging: {
  11012. height: math.unit(1.464, "feet"),
  11013. weight: math.unit(120, "lb"),
  11014. name: "Lounging",
  11015. image: {
  11016. source: "./media/characters/odyssey/lounging.svg",
  11017. extra: 1235/837,
  11018. bottom: 551/1786
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(5 + 4 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(1, "km")
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(3000, "km")
  11034. },
  11035. {
  11036. name: "Gigamacro",
  11037. height: math.unit(1, "AU"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Omniversal",
  11042. height: math.unit(100e14, "lightyears")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(300, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/mekuto/front.svg",
  11055. extra: 921 / 832,
  11056. bottom: 0.03
  11057. }
  11058. },
  11059. hand: {
  11060. height: math.unit(6 / 10.24, "feet"),
  11061. name: "Hand",
  11062. image: {
  11063. source: "./media/characters/mekuto/hand.svg"
  11064. }
  11065. },
  11066. foot: {
  11067. height: math.unit(6 / 5.05, "feet"),
  11068. name: "Foot",
  11069. image: {
  11070. source: "./media/characters/mekuto/foot.svg"
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Minimicro",
  11077. height: math.unit(0.2, "inches")
  11078. },
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(1.5, "inches")
  11082. },
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(5 + 11 / 12, "feet"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Minimacro",
  11090. height: math.unit(17 + 9 / 12, "feet")
  11091. },
  11092. {
  11093. name: "Macro",
  11094. height: math.unit(177.5, "feet")
  11095. },
  11096. {
  11097. name: "Megamacro",
  11098. height: math.unit(152, "miles")
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6.5, "inches"),
  11107. weight: math.unit(13, "oz"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/dafydd-tomos/front.svg",
  11111. extra: 2990 / 2603,
  11112. bottom: 0.03
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Micro",
  11119. height: math.unit(6.5, "inches"),
  11120. default: true
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/splinter/front.svg",
  11133. extra: 2990 / 2882,
  11134. bottom: 0.04
  11135. }
  11136. },
  11137. back: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Back",
  11141. image: {
  11142. source: "./media/characters/splinter/back.svg",
  11143. extra: 2990 / 2882,
  11144. bottom: 0.04
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(6, "feet")
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(230, "meters"),
  11156. default: true
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(4 + 10 / 12, "feet"),
  11165. weight: math.unit(480, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/snow-gabumon/front.svg",
  11169. extra: 1140 / 963,
  11170. bottom: 0.058
  11171. }
  11172. },
  11173. back: {
  11174. height: math.unit(4 + 10 / 12, "feet"),
  11175. weight: math.unit(480, "lb"),
  11176. name: "Back",
  11177. image: {
  11178. source: "./media/characters/snow-gabumon/back.svg",
  11179. extra: 1115 / 962,
  11180. bottom: 0.041
  11181. }
  11182. },
  11183. frontUndresed: {
  11184. height: math.unit(4 + 10 / 12, "feet"),
  11185. weight: math.unit(480, "lb"),
  11186. name: "Front (Undressed)",
  11187. image: {
  11188. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11189. extra: 1061 / 960,
  11190. bottom: 0.045
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Micro",
  11197. height: math.unit(1, "inch")
  11198. },
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(4 + 10 / 12, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(200, "feet")
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(120, "miles")
  11211. },
  11212. {
  11213. name: "Gigamacro",
  11214. height: math.unit(9800, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(1.7, "meters"),
  11223. weight: math.unit(140, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/moody/front.svg",
  11227. extra: 3226 / 3007,
  11228. bottom: 0.087
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Micro",
  11235. height: math.unit(1, "mm")
  11236. },
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(1.7, "meters"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(80, "meters")
  11245. },
  11246. {
  11247. name: "Macro+",
  11248. height: math.unit(500, "meters")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/zyas/front.svg",
  11261. extra: 1180 / 1120,
  11262. bottom: 0.045
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(10, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(500, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(5, "miles")
  11279. },
  11280. {
  11281. name: "Teramacro",
  11282. height: math.unit(150000, "miles")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/cuon/front.svg",
  11295. extra: 1390 / 1320,
  11296. bottom: 0.008
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(3, "inches")
  11304. },
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(18 + 9 / 12, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(360, "feet")
  11313. },
  11314. {
  11315. name: "Megamacro",
  11316. height: math.unit(360, "miles")
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(2.4, "meters"),
  11325. weight: math.unit(70, "kg"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/nyanuxk/front.svg",
  11329. extra: 1172 / 1084,
  11330. bottom: 0.065
  11331. }
  11332. },
  11333. side: {
  11334. height: math.unit(2.4, "meters"),
  11335. weight: math.unit(70, "kg"),
  11336. name: "Side",
  11337. image: {
  11338. source: "./media/characters/nyanuxk/side.svg",
  11339. extra: 1190 / 1132,
  11340. bottom: 0.007
  11341. }
  11342. },
  11343. back: {
  11344. height: math.unit(2.4, "meters"),
  11345. weight: math.unit(70, "kg"),
  11346. name: "Back",
  11347. image: {
  11348. source: "./media/characters/nyanuxk/back.svg",
  11349. extra: 1200 / 1141,
  11350. bottom: 0.015
  11351. }
  11352. },
  11353. foot: {
  11354. height: math.unit(0.52, "meters"),
  11355. name: "Foot",
  11356. image: {
  11357. source: "./media/characters/nyanuxk/foot.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Micro",
  11364. height: math.unit(2, "cm")
  11365. },
  11366. {
  11367. name: "Normal",
  11368. height: math.unit(2.4, "meters"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Smaller Macro",
  11373. height: math.unit(120, "meters")
  11374. },
  11375. {
  11376. name: "Bigger Macro",
  11377. height: math.unit(1.2, "km")
  11378. },
  11379. {
  11380. name: "Megamacro",
  11381. height: math.unit(15, "kilometers")
  11382. },
  11383. {
  11384. name: "Gigamacro",
  11385. height: math.unit(2000, "km")
  11386. },
  11387. {
  11388. name: "Teramacro",
  11389. height: math.unit(500000, "km")
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11395. {
  11396. side: {
  11397. height: math.unit(6, "feet"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/ailbhe/side.svg",
  11401. extra: 757 / 464,
  11402. bottom: 0.041
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(1.07, "meters"),
  11410. default: true
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(120, "kg"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/zevulfius/front.svg",
  11423. extra: 965 / 903
  11424. }
  11425. },
  11426. side: {
  11427. height: math.unit(6, "feet"),
  11428. weight: math.unit(120, "kg"),
  11429. name: "Side",
  11430. image: {
  11431. source: "./media/characters/zevulfius/side.svg",
  11432. extra: 939 / 900
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(120, "kg"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/zevulfius/back.svg",
  11441. extra: 918 / 854,
  11442. bottom: 0.005
  11443. }
  11444. },
  11445. foot: {
  11446. height: math.unit(6 / 3.72, "feet"),
  11447. name: "Foot",
  11448. image: {
  11449. source: "./media/characters/zevulfius/foot.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(750, "meters")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(20, "km"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Gigamacro",
  11465. height: math.unit(2000, "km")
  11466. },
  11467. {
  11468. name: "Teramacro",
  11469. height: math.unit(250000, "km")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(100, "feet"),
  11478. weight: math.unit(350, "kg"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/rikes/front.svg",
  11482. extra: 1565 / 1483,
  11483. bottom: 0.017
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(100, "feet"),
  11491. default: true
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(8, "feet"),
  11500. weight: math.unit(356, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/adam-silver-mane/front.svg",
  11504. extra: 1036/937,
  11505. bottom: 63/1099
  11506. }
  11507. },
  11508. side: {
  11509. height: math.unit(8, "feet"),
  11510. weight: math.unit(356, "lb"),
  11511. name: "Side",
  11512. image: {
  11513. source: "./media/characters/adam-silver-mane/side.svg",
  11514. extra: 997/901,
  11515. bottom: 59/1056
  11516. }
  11517. },
  11518. frontNsfw: {
  11519. height: math.unit(8, "feet"),
  11520. weight: math.unit(356, "lb"),
  11521. name: "Front (NSFW)",
  11522. image: {
  11523. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11524. extra: 1036/937,
  11525. bottom: 63/1099
  11526. }
  11527. },
  11528. sideNsfw: {
  11529. height: math.unit(8, "feet"),
  11530. weight: math.unit(356, "lb"),
  11531. name: "Side (NSFW)",
  11532. image: {
  11533. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11534. extra: 997/901,
  11535. bottom: 59/1056
  11536. }
  11537. },
  11538. dick: {
  11539. height: math.unit(2.1, "feet"),
  11540. name: "Dick",
  11541. image: {
  11542. source: "./media/characters/adam-silver-mane/dick.svg"
  11543. }
  11544. },
  11545. taur: {
  11546. height: math.unit(16, "feet"),
  11547. weight: math.unit(1500, "kg"),
  11548. name: "Taur",
  11549. image: {
  11550. source: "./media/characters/adam-silver-mane/taur.svg",
  11551. extra: 1713 / 1571,
  11552. bottom: 0.01
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(8, "feet")
  11560. },
  11561. {
  11562. name: "Minimacro",
  11563. height: math.unit(80, "feet")
  11564. },
  11565. {
  11566. name: "MDA",
  11567. height: math.unit(80, "meters")
  11568. },
  11569. {
  11570. name: "Macro",
  11571. height: math.unit(800, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(8000, "feet")
  11577. },
  11578. {
  11579. name: "Gigamacro",
  11580. height: math.unit(800, "miles")
  11581. },
  11582. {
  11583. name: "Teramacro",
  11584. height: math.unit(80000, "miles")
  11585. },
  11586. {
  11587. name: "Celestial",
  11588. height: math.unit(8e6, "miles")
  11589. },
  11590. {
  11591. name: "Star Dragon",
  11592. height: math.unit(800000, "parsecs")
  11593. },
  11594. {
  11595. name: "Godly",
  11596. height: math.unit(800, "teraparsecs")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(150, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/ky'owin/front.svg",
  11609. extra: 3888 / 3068,
  11610. bottom: 0.015
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(6 + 8 / 12, "feet")
  11618. },
  11619. {
  11620. name: "Large",
  11621. height: math.unit(68, "feet")
  11622. },
  11623. {
  11624. name: "Macro",
  11625. height: math.unit(132, "feet")
  11626. },
  11627. {
  11628. name: "Macro+",
  11629. height: math.unit(340, "feet")
  11630. },
  11631. {
  11632. name: "Macro++",
  11633. height: math.unit(680, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(1, "mile")
  11639. },
  11640. {
  11641. name: "Megamacro+",
  11642. height: math.unit(10, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(4, "feet"),
  11651. weight: math.unit(50, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/mal/front.svg",
  11655. extra: 785 / 724,
  11656. bottom: 0.07
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(4, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(4, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(200, "feet")
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(150, "lb"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/jordan-deware/front.svg",
  11685. extra: 1191 / 1012
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Nano",
  11692. height: math.unit(0.01, "mm")
  11693. },
  11694. {
  11695. name: "Minimicro",
  11696. height: math.unit(1, "mm")
  11697. },
  11698. {
  11699. name: "Micro",
  11700. height: math.unit(0.5, "inches")
  11701. },
  11702. {
  11703. name: "Normal",
  11704. height: math.unit(4, "feet"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Minimacro",
  11709. height: math.unit(40, "meters")
  11710. },
  11711. {
  11712. name: "Small Macro",
  11713. height: math.unit(400, "meters")
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(4, "miles")
  11718. },
  11719. {
  11720. name: "Megamacro",
  11721. height: math.unit(40, "miles")
  11722. },
  11723. {
  11724. name: "Megamacro+",
  11725. height: math.unit(400, "miles")
  11726. },
  11727. {
  11728. name: "Gigamacro",
  11729. height: math.unit(400000, "miles")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11735. {
  11736. side: {
  11737. height: math.unit(6, "feet"),
  11738. weight: math.unit(150, "lb"),
  11739. name: "Side",
  11740. image: {
  11741. source: "./media/characters/kimiko/side.svg",
  11742. extra: 600 / 358
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(15, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Macro",
  11754. height: math.unit(220, "feet")
  11755. },
  11756. {
  11757. name: "Macro+",
  11758. height: math.unit(1450, "feet")
  11759. },
  11760. {
  11761. name: "Megamacro",
  11762. height: math.unit(11500, "feet")
  11763. },
  11764. {
  11765. name: "Gigamacro",
  11766. height: math.unit(9500, "miles")
  11767. },
  11768. {
  11769. name: "Teramacro",
  11770. height: math.unit(2208005005, "miles")
  11771. },
  11772. {
  11773. name: "Examacro",
  11774. height: math.unit(2750, "parsecs")
  11775. },
  11776. {
  11777. name: "Zettamacro",
  11778. height: math.unit(101500, "parsecs")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11784. {
  11785. front: {
  11786. height: math.unit(6, "feet"),
  11787. weight: math.unit(70, "kg"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/andrew-sleepy/front.svg"
  11791. }
  11792. },
  11793. side: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(70, "kg"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/andrew-sleepy/side.svg"
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Micro",
  11805. height: math.unit(1, "mm"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/judio/front.svg",
  11819. extra: 1258 / 1110
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(5 + 6 / 12, "feet")
  11827. },
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(1000, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(10, "miles")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11841. {
  11842. frontDressed: {
  11843. height: math.unit(6, "feet"),
  11844. weight: math.unit(68, "kg"),
  11845. name: "Front (Dressed)",
  11846. image: {
  11847. source: "./media/characters/nomaxice/front-dressed.svg",
  11848. extra: 1137/824,
  11849. bottom: 74/1211
  11850. }
  11851. },
  11852. frontShorts: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(68, "kg"),
  11855. name: "Front (Shorts)",
  11856. image: {
  11857. source: "./media/characters/nomaxice/front-shorts.svg",
  11858. extra: 1137/824,
  11859. bottom: 74/1211
  11860. }
  11861. },
  11862. back: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(68, "kg"),
  11865. name: "Back",
  11866. image: {
  11867. source: "./media/characters/nomaxice/back.svg",
  11868. extra: 822/786,
  11869. bottom: 39/861
  11870. }
  11871. },
  11872. hand: {
  11873. height: math.unit(0.565, "feet"),
  11874. name: "Hand",
  11875. image: {
  11876. source: "./media/characters/nomaxice/hand.svg"
  11877. }
  11878. },
  11879. foot: {
  11880. height: math.unit(1, "feet"),
  11881. name: "Foot",
  11882. image: {
  11883. source: "./media/characters/nomaxice/foot.svg"
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Micro",
  11890. height: math.unit(8, "cm")
  11891. },
  11892. {
  11893. name: "Norm",
  11894. height: math.unit(1.82, "m")
  11895. },
  11896. {
  11897. name: "Norm+",
  11898. height: math.unit(8.8, "feet"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Big",
  11903. height: math.unit(8, "meters")
  11904. },
  11905. {
  11906. name: "Macro",
  11907. height: math.unit(18, "meters")
  11908. },
  11909. {
  11910. name: "Macro+",
  11911. height: math.unit(88, "meters")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(12, "feet"),
  11920. weight: math.unit(1.5, "tons"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/dydros/front.svg",
  11924. extra: 863 / 800,
  11925. bottom: 0.015
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(12, "feet"),
  11930. weight: math.unit(1.5, "tons"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/dydros/back.svg",
  11934. extra: 900 / 843,
  11935. bottom: 0.005
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(12, "feet"),
  11943. default: true
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(100, "kg"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/riggi/front.svg",
  11956. extra: 5787 / 5303
  11957. }
  11958. },
  11959. hyper: {
  11960. height: math.unit(6 * 5 / 3, "feet"),
  11961. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11962. name: "Hyper",
  11963. image: {
  11964. source: "./media/characters/riggi/hyper.svg",
  11965. extra: 3595 / 3485
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Small Macro",
  11972. height: math.unit(50, "feet")
  11973. },
  11974. {
  11975. name: "Default",
  11976. height: math.unit(200, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Loom",
  11981. height: math.unit(10000, "feet")
  11982. },
  11983. {
  11984. name: "Cruising Altitude",
  11985. height: math.unit(30000, "feet")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(100, "miles")
  11990. },
  11991. {
  11992. name: "Continent Sized",
  11993. height: math.unit(2800, "miles")
  11994. },
  11995. {
  11996. name: "Earth Sized",
  11997. height: math.unit(8000, "miles")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(250, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/alexi/front.svg",
  12010. extra: 3483 / 3291,
  12011. bottom: 0.04
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(250, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/alexi/back.svg",
  12020. extra: 3533 / 3356,
  12021. bottom: 0.021
  12022. }
  12023. },
  12024. frontTransforming: {
  12025. height: math.unit(8.58, "feet"),
  12026. weight: math.unit(1300, "lb"),
  12027. name: "Transforming",
  12028. image: {
  12029. source: "./media/characters/alexi/front-transforming.svg",
  12030. extra: 437 / 409,
  12031. bottom: 19 / 458.66
  12032. }
  12033. },
  12034. frontTransformed: {
  12035. height: math.unit(12.5, "feet"),
  12036. weight: math.unit(4000, "lb"),
  12037. name: "Transformed",
  12038. image: {
  12039. source: "./media/characters/alexi/front-transformed.svg",
  12040. extra: 639 / 614,
  12041. bottom: 30.55 / 671
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(14, "feet"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Minimacro",
  12053. height: math.unit(30, "meters")
  12054. },
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(500, "meters")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(9000, "km")
  12062. },
  12063. {
  12064. name: "Teramacro",
  12065. height: math.unit(384000, "km")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(6, "feet"),
  12074. weight: math.unit(150, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/kayroo/front.svg",
  12078. extra: 1153 / 1038,
  12079. bottom: 0.06
  12080. }
  12081. },
  12082. foot: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(150, "lb"),
  12085. name: "Foot",
  12086. image: {
  12087. source: "./media/characters/kayroo/foot.svg"
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(8, "feet"),
  12095. default: true
  12096. },
  12097. {
  12098. name: "Minimacro",
  12099. height: math.unit(250, "feet")
  12100. },
  12101. {
  12102. name: "Macro",
  12103. height: math.unit(2800, "feet")
  12104. },
  12105. {
  12106. name: "Megamacro",
  12107. height: math.unit(5200, "feet")
  12108. },
  12109. {
  12110. name: "Gigamacro",
  12111. height: math.unit(27000, "feet")
  12112. },
  12113. {
  12114. name: "Omega",
  12115. height: math.unit(45000, "feet")
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(18, "feet"),
  12124. weight: math.unit(5800, "lb"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/rhys/front.svg",
  12128. extra: 3386 / 3090,
  12129. bottom: 0.07
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(18, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Working Size",
  12141. height: math.unit(200, "feet")
  12142. },
  12143. {
  12144. name: "Demolition Size",
  12145. height: math.unit(2000, "feet")
  12146. },
  12147. {
  12148. name: "Maximum Licensed Size",
  12149. height: math.unit(5, "miles")
  12150. },
  12151. {
  12152. name: "Maximum Observed Size",
  12153. height: math.unit(10, "yottameters")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(250, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/toto/front.svg",
  12166. extra: 527 / 479,
  12167. bottom: 0.05
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Micro",
  12174. height: math.unit(3, "feet")
  12175. },
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(10, "feet")
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(150, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(1200, "feet")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "King", species: ["lion"], tags: ["anthro"] },
  12193. {
  12194. back: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/king/back.svg"
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Micro",
  12206. height: math.unit(2, "inches")
  12207. },
  12208. {
  12209. name: "Normal",
  12210. height: math.unit(8, "feet")
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(200, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Megamacro",
  12219. height: math.unit(50, "miles")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(11, "feet"),
  12228. weight: math.unit(1400, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/cordite/front.svg",
  12232. extra: 1919/1827,
  12233. bottom: 40/1959
  12234. }
  12235. },
  12236. side: {
  12237. height: math.unit(11, "feet"),
  12238. weight: math.unit(1400, "lb"),
  12239. name: "Side",
  12240. image: {
  12241. source: "./media/characters/cordite/side.svg",
  12242. extra: 1908/1793,
  12243. bottom: 38/1946
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(11, "feet"),
  12248. weight: math.unit(1400, "lb"),
  12249. name: "Back",
  12250. image: {
  12251. source: "./media/characters/cordite/back.svg",
  12252. extra: 1938/1837,
  12253. bottom: 10/1948
  12254. }
  12255. },
  12256. feral: {
  12257. height: math.unit(2, "feet"),
  12258. weight: math.unit(90, "lb"),
  12259. name: "Feral",
  12260. image: {
  12261. source: "./media/characters/cordite/feral.svg",
  12262. extra: 1260 / 755,
  12263. bottom: 0.05
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(11, "feet"),
  12271. default: true
  12272. },
  12273. ]
  12274. ))
  12275. characterMakers.push(() => makeCharacter(
  12276. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12277. {
  12278. front: {
  12279. height: math.unit(6, "feet"),
  12280. weight: math.unit(150, "lb"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/pianostrong/front.svg",
  12284. extra: 6577 / 6254,
  12285. bottom: 0.02
  12286. }
  12287. },
  12288. side: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(150, "lb"),
  12291. name: "Side",
  12292. image: {
  12293. source: "./media/characters/pianostrong/side.svg",
  12294. extra: 6106 / 5730
  12295. }
  12296. },
  12297. back: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Back",
  12301. image: {
  12302. source: "./media/characters/pianostrong/back.svg",
  12303. extra: 6085 / 5733,
  12304. bottom: 0.01
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(100, "feet")
  12312. },
  12313. {
  12314. name: "Macro+",
  12315. height: math.unit(300, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Macro++",
  12320. height: math.unit(1000, "feet")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(6, "feet"),
  12329. weight: math.unit(150, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/kona/front.svg",
  12333. extra: 2960 / 2629,
  12334. bottom: 0.005
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(11 + 8 / 12, "feet")
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(850, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Macro+",
  12350. height: math.unit(1.5, "km"),
  12351. default: true
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(80, "miles")
  12356. },
  12357. {
  12358. name: "Gigamacro",
  12359. height: math.unit(3500, "miles")
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12365. {
  12366. side: {
  12367. height: math.unit(1.9, "meters"),
  12368. weight: math.unit(326, "kg"),
  12369. name: "Side",
  12370. image: {
  12371. source: "./media/characters/levi/side.svg",
  12372. extra: 1704 / 1334,
  12373. bottom: 0.02
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(1.9, "meters"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Macro",
  12385. height: math.unit(20, "meters")
  12386. },
  12387. {
  12388. name: "Macro+",
  12389. height: math.unit(200, "meters")
  12390. },
  12391. {
  12392. name: "Megamacro",
  12393. height: math.unit(2, "km")
  12394. },
  12395. {
  12396. name: "Megamacro+",
  12397. height: math.unit(20, "km")
  12398. },
  12399. {
  12400. name: "Gigamacro",
  12401. height: math.unit(2500, "km")
  12402. },
  12403. {
  12404. name: "Gigamacro+",
  12405. height: math.unit(120000, "km")
  12406. },
  12407. {
  12408. name: "Teramacro",
  12409. height: math.unit(7.77e6, "km")
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12415. {
  12416. front: {
  12417. height: math.unit(6 + 4/12, "feet"),
  12418. weight: math.unit(190, "lb"),
  12419. name: "Front",
  12420. image: {
  12421. source: "./media/characters/bmc/front.svg",
  12422. extra: 1626/1472,
  12423. bottom: 79/1705
  12424. }
  12425. },
  12426. back: {
  12427. height: math.unit(6 + 4/12, "feet"),
  12428. weight: math.unit(190, "lb"),
  12429. name: "Back",
  12430. image: {
  12431. source: "./media/characters/bmc/back.svg",
  12432. extra: 1640/1479,
  12433. bottom: 45/1685
  12434. }
  12435. },
  12436. frontArmor: {
  12437. height: math.unit(6 + 4/12, "feet"),
  12438. weight: math.unit(190, "lb"),
  12439. name: "Front-armor",
  12440. image: {
  12441. source: "./media/characters/bmc/front-armor.svg",
  12442. extra: 1538/1468,
  12443. bottom: 79/1617
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Human-sized",
  12450. height: math.unit(6 + 4 / 12, "feet")
  12451. },
  12452. {
  12453. name: "Interactive Size",
  12454. height: math.unit(25, "feet")
  12455. },
  12456. {
  12457. name: "Small",
  12458. height: math.unit(250, "feet")
  12459. },
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(1250, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Good Day",
  12467. height: math.unit(88, "miles")
  12468. },
  12469. {
  12470. name: "Largest Measured Size",
  12471. height: math.unit(105.960, "galaxies")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(20, "feet"),
  12480. weight: math.unit(2016, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/sven-the-kaiju/front.svg",
  12484. extra: 1277/1250,
  12485. bottom: 35/1312
  12486. }
  12487. },
  12488. mouth: {
  12489. height: math.unit(1.85, "feet"),
  12490. name: "Mouth",
  12491. image: {
  12492. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Fairy",
  12499. height: math.unit(6, "inches")
  12500. },
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(20, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Rampage",
  12508. height: math.unit(200, "feet")
  12509. },
  12510. {
  12511. name: "Archfey Forest Guardian",
  12512. height: math.unit(1, "mile")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(4, "meters"),
  12521. weight: math.unit(2, "tons"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/marik/front.svg",
  12525. extra: 1057 / 1003,
  12526. bottom: 0.08
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(4, "meters"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Macro",
  12538. height: math.unit(20, "meters")
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(50, "km")
  12543. },
  12544. {
  12545. name: "Gigamacro",
  12546. height: math.unit(100, "km")
  12547. },
  12548. {
  12549. name: "Alpha Macro",
  12550. height: math.unit(7.88e7, "yottameters")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(110, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/mel/front.svg",
  12563. extra: 736 / 617,
  12564. bottom: 0.017
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Pico",
  12571. height: math.unit(3, "pm")
  12572. },
  12573. {
  12574. name: "Nano",
  12575. height: math.unit(3, "nm")
  12576. },
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(0.3, "mm"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Micro+",
  12584. height: math.unit(3, "mm")
  12585. },
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(5 + 10.5 / 12, "feet")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12594. {
  12595. kaiju: {
  12596. height: math.unit(1.75, "meters"),
  12597. weight: math.unit(55, "kg"),
  12598. name: "Kaiju",
  12599. image: {
  12600. source: "./media/characters/lykonous/kaiju.svg",
  12601. extra: 1055 / 946,
  12602. bottom: 0.135
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(2.5, "meters"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Kaiju Dragon",
  12614. height: math.unit(60, "meters")
  12615. },
  12616. {
  12617. name: "Mega Kaiju",
  12618. height: math.unit(120, "km")
  12619. },
  12620. {
  12621. name: "Giga Kaiju",
  12622. height: math.unit(200, "megameters")
  12623. },
  12624. {
  12625. name: "Terra Kaiju",
  12626. height: math.unit(400, "gigameters")
  12627. },
  12628. {
  12629. name: "Kaiju Dragon God",
  12630. height: math.unit(13000, "exaparsecs")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/blü/front.svg",
  12643. extra: 1883 / 1564,
  12644. bottom: 0.031
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Normal",
  12651. height: math.unit(13, "feet"),
  12652. default: true
  12653. },
  12654. {
  12655. name: "Big Boi",
  12656. height: math.unit(150, "meters")
  12657. },
  12658. {
  12659. name: "Mini Stomper",
  12660. height: math.unit(300, "meters")
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(1000, "meters")
  12665. },
  12666. {
  12667. name: "Megamacro",
  12668. height: math.unit(11000, "meters")
  12669. },
  12670. {
  12671. name: "Gigamacro",
  12672. height: math.unit(11000, "km")
  12673. },
  12674. {
  12675. name: "Teramacro",
  12676. height: math.unit(420000, "km")
  12677. },
  12678. {
  12679. name: "Examacro",
  12680. height: math.unit(120, "parsecs")
  12681. },
  12682. {
  12683. name: "God Tho",
  12684. height: math.unit(98000000000, "parsecs")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12690. {
  12691. taurFront: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(200, "lb"),
  12694. name: "Taur (Front)",
  12695. image: {
  12696. source: "./media/characters/scales/taur-front.svg",
  12697. extra: 1,
  12698. bottom: 0.05
  12699. }
  12700. },
  12701. taurBack: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(200, "lb"),
  12704. name: "Taur (Back)",
  12705. image: {
  12706. source: "./media/characters/scales/taur-back.svg",
  12707. extra: 1,
  12708. bottom: 0.08
  12709. }
  12710. },
  12711. anthro: {
  12712. height: math.unit(6 * 7 / 12, "feet"),
  12713. weight: math.unit(100, "lb"),
  12714. name: "Anthro",
  12715. image: {
  12716. source: "./media/characters/scales/anthro.svg",
  12717. extra: 1,
  12718. bottom: 0.06
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(12, "feet"),
  12726. default: true
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(150, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/koragos/front.svg",
  12739. extra: 841 / 794,
  12740. bottom: 0.035
  12741. }
  12742. },
  12743. back: {
  12744. height: math.unit(6, "feet"),
  12745. weight: math.unit(150, "lb"),
  12746. name: "Back",
  12747. image: {
  12748. source: "./media/characters/koragos/back.svg",
  12749. extra: 841 / 810,
  12750. bottom: 0.022
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Normal",
  12757. height: math.unit(6 + 11 / 12, "feet"),
  12758. default: true
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(490, "feet")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(10, "miles")
  12767. },
  12768. {
  12769. name: "Gigamacro",
  12770. height: math.unit(50, "miles")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(250, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/xylrem/front.svg",
  12783. extra: 3323 / 3050,
  12784. bottom: 0.065
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Micro",
  12791. height: math.unit(4, "feet")
  12792. },
  12793. {
  12794. name: "Normal",
  12795. height: math.unit(16, "feet"),
  12796. default: true
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(2720, "feet")
  12801. },
  12802. {
  12803. name: "Megamacro",
  12804. height: math.unit(25000, "miles")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(8, "feet"),
  12813. weight: math.unit(250, "kg"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/ikideru/front.svg",
  12817. extra: 930 / 870,
  12818. bottom: 0.087
  12819. }
  12820. },
  12821. back: {
  12822. height: math.unit(8, "feet"),
  12823. weight: math.unit(250, "kg"),
  12824. name: "Back",
  12825. image: {
  12826. source: "./media/characters/ikideru/back.svg",
  12827. extra: 919 / 852,
  12828. bottom: 0.055
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Rare",
  12835. height: math.unit(8, "feet"),
  12836. default: true
  12837. },
  12838. {
  12839. name: "Playful Loom",
  12840. height: math.unit(80, "feet")
  12841. },
  12842. {
  12843. name: "City Leaner",
  12844. height: math.unit(230, "feet")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(2500, "feet")
  12849. },
  12850. {
  12851. name: "Gigamacro",
  12852. height: math.unit(26400, "feet")
  12853. },
  12854. {
  12855. name: "Tectonic Shifter",
  12856. height: math.unit(1.7, "megameters")
  12857. },
  12858. {
  12859. name: "Planet Carer",
  12860. height: math.unit(21, "megameters")
  12861. },
  12862. {
  12863. name: "God",
  12864. height: math.unit(11157.22, "parsecs")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(120, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/neo/front.svg"
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Micro",
  12883. height: math.unit(2, "inches"),
  12884. default: true
  12885. },
  12886. {
  12887. name: "Human Size",
  12888. height: math.unit(5 + 8 / 12, "feet")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(13 + 10 / 12, "feet"),
  12897. weight: math.unit(5320, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/chauncey-chantz/front.svg",
  12901. extra: 1587 / 1435,
  12902. bottom: 0.02
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(13 + 10 / 12, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(45, "feet")
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(250, "miles")
  12919. },
  12920. {
  12921. name: "Planetary",
  12922. height: math.unit(10000, "miles")
  12923. },
  12924. {
  12925. name: "Galactic",
  12926. height: math.unit(40000, "parsecs")
  12927. },
  12928. {
  12929. name: "Universal",
  12930. height: math.unit(1, "yottameter")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/epifox/front.svg",
  12943. extra: 1,
  12944. bottom: 0.075
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Micro",
  12951. height: math.unit(6, "inches")
  12952. },
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(12, "feet"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Macro",
  12960. height: math.unit(3810, "feet")
  12961. },
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(500, "miles")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(1.8796, "m"),
  12973. weight: math.unit(230, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/colin-t/front.svg",
  12977. extra: 1272 / 1193,
  12978. bottom: 0.07
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Micro",
  12985. height: math.unit(0.571, "meters")
  12986. },
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(1.8796, "meters"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Tall",
  12994. height: math.unit(4, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(67.241, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(371.856, "meters")
  13003. },
  13004. {
  13005. name: "Planetary",
  13006. height: math.unit(12631.5689, "km")
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(1.85, "meters"),
  13015. weight: math.unit(80, "kg"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/matvei/front.svg",
  13019. extra: 614 / 594,
  13020. bottom: 0.01
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(1.85, "meters"),
  13028. default: true
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(5 + 9 / 12, "feet"),
  13037. weight: math.unit(70, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/quincy/front.svg",
  13041. extra: 3041 / 2751
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(5 + 9 / 12, "feet"),
  13046. weight: math.unit(70, "lb"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/quincy/back.svg",
  13050. extra: 3041 / 2751
  13051. }
  13052. },
  13053. flying: {
  13054. height: math.unit(5 + 4 / 12, "feet"),
  13055. weight: math.unit(70, "lb"),
  13056. name: "Flying",
  13057. image: {
  13058. source: "./media/characters/quincy/flying.svg",
  13059. extra: 1044 / 930
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(3, "cm")
  13067. },
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(5 + 9 / 12, "feet")
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(200, "meters"),
  13075. default: true
  13076. },
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(1000, "meters")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(3 + 11/12, "feet"),
  13088. weight: math.unit(50, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/vanrel/front.svg",
  13092. extra: 1104/949,
  13093. bottom: 52/1156
  13094. }
  13095. },
  13096. back: {
  13097. height: math.unit(3 + 11/12, "feet"),
  13098. weight: math.unit(50, "lb"),
  13099. name: "Back",
  13100. image: {
  13101. source: "./media/characters/vanrel/back.svg",
  13102. extra: 1119/976,
  13103. bottom: 37/1156
  13104. }
  13105. },
  13106. tome: {
  13107. height: math.unit(1.35, "feet"),
  13108. weight: math.unit(10, "lb"),
  13109. name: "Vanrel's Tome",
  13110. rename: true,
  13111. image: {
  13112. source: "./media/characters/vanrel/tome.svg"
  13113. }
  13114. },
  13115. beans: {
  13116. height: math.unit(0.89, "feet"),
  13117. name: "Beans",
  13118. image: {
  13119. source: "./media/characters/vanrel/beans.svg"
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(3 + 11/12, "feet"),
  13127. default: true
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(7 + 5 / 12, "feet"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/kuiper-vanrel/front.svg",
  13139. extra: 1219/1169,
  13140. bottom: 69/1288
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(7 + 5 / 12, "feet"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/kuiper-vanrel/back.svg",
  13148. extra: 1236/1193,
  13149. bottom: 27/1263
  13150. }
  13151. },
  13152. foot: {
  13153. height: math.unit(0.55, "meters"),
  13154. name: "Foot",
  13155. image: {
  13156. source: "./media/characters/kuiper-vanrel/foot.svg",
  13157. }
  13158. },
  13159. battle: {
  13160. height: math.unit(6.824, "feet"),
  13161. name: "Battle",
  13162. image: {
  13163. source: "./media/characters/kuiper-vanrel/battle.svg",
  13164. extra: 1466 / 1327,
  13165. bottom: 29 / 1492.5
  13166. }
  13167. },
  13168. meerkui: {
  13169. height: math.unit(18, "inches"),
  13170. name: "Meerkui",
  13171. image: {
  13172. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13173. extra: 1354/1289,
  13174. bottom: 69/1423
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(7 + 5 / 12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(8 + 5 / 12, "feet"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/keset-vanrel/front.svg",
  13194. extra: 1231/1148,
  13195. bottom: 82/1313
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(8 + 5 / 12, "feet"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/keset-vanrel/back.svg",
  13203. extra: 1240/1174,
  13204. bottom: 33/1273
  13205. }
  13206. },
  13207. hand: {
  13208. height: math.unit(0.6, "meters"),
  13209. name: "Hand",
  13210. image: {
  13211. source: "./media/characters/keset-vanrel/hand.svg"
  13212. }
  13213. },
  13214. foot: {
  13215. height: math.unit(0.94978, "meters"),
  13216. name: "Foot",
  13217. image: {
  13218. source: "./media/characters/keset-vanrel/foot.svg"
  13219. }
  13220. },
  13221. battle: {
  13222. height: math.unit(7.408, "feet"),
  13223. name: "Battle",
  13224. image: {
  13225. source: "./media/characters/keset-vanrel/battle.svg",
  13226. extra: 1890 / 1386,
  13227. bottom: 73.28 / 1970
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Normal",
  13234. height: math.unit(8 + 5 / 12, "feet"),
  13235. default: true
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/neos/front.svg",
  13248. extra: 1696 / 992,
  13249. bottom: 0.14
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(54, "cm"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(100, "m")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(10, "km")
  13266. },
  13267. {
  13268. name: "Megamacro+",
  13269. height: math.unit(100, "km")
  13270. },
  13271. {
  13272. name: "Gigamacro",
  13273. height: math.unit(100, "Mm")
  13274. },
  13275. {
  13276. name: "Teramacro",
  13277. height: math.unit(100, "Gm")
  13278. },
  13279. {
  13280. name: "Examacro",
  13281. height: math.unit(100, "Em")
  13282. },
  13283. {
  13284. name: "Godly",
  13285. height: math.unit(10000, "Ym")
  13286. },
  13287. {
  13288. name: "Beyond Godly",
  13289. height: math.unit(25, "multiverses")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13295. {
  13296. feminine: {
  13297. height: math.unit(5, "feet"),
  13298. weight: math.unit(100, "lb"),
  13299. name: "Feminine",
  13300. image: {
  13301. source: "./media/characters/sammy-mouse/feminine.svg",
  13302. extra: 2526 / 2425,
  13303. bottom: 0.123
  13304. }
  13305. },
  13306. masculine: {
  13307. height: math.unit(5, "feet"),
  13308. weight: math.unit(100, "lb"),
  13309. name: "Masculine",
  13310. image: {
  13311. source: "./media/characters/sammy-mouse/masculine.svg",
  13312. extra: 2526 / 2425,
  13313. bottom: 0.123
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(5, "inches")
  13321. },
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(5, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(60, "feet")
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(4, "feet"),
  13338. weight: math.unit(50, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/kole/front.svg",
  13342. extra: 1423 / 1303,
  13343. bottom: 0.025
  13344. }
  13345. },
  13346. back: {
  13347. height: math.unit(4, "feet"),
  13348. weight: math.unit(50, "lb"),
  13349. name: "Back",
  13350. image: {
  13351. source: "./media/characters/kole/back.svg",
  13352. extra: 1426 / 1280,
  13353. bottom: 0.02
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(4, "feet"),
  13361. default: true
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(2.5, "feet"),
  13370. weight: math.unit(32, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/rufran/front.svg",
  13374. extra: 1313/885,
  13375. bottom: 94/1407
  13376. }
  13377. },
  13378. side: {
  13379. height: math.unit(2.5, "feet"),
  13380. weight: math.unit(32, "lb"),
  13381. name: "Side",
  13382. image: {
  13383. source: "./media/characters/rufran/side.svg",
  13384. extra: 1109/852,
  13385. bottom: 118/1227
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(2.5, "feet"),
  13390. weight: math.unit(32, "lb"),
  13391. name: "Back",
  13392. image: {
  13393. source: "./media/characters/rufran/back.svg",
  13394. extra: 1280/878,
  13395. bottom: 131/1411
  13396. }
  13397. },
  13398. mouth: {
  13399. height: math.unit(1.13, "feet"),
  13400. name: "Mouth",
  13401. image: {
  13402. source: "./media/characters/rufran/mouth.svg"
  13403. }
  13404. },
  13405. foot: {
  13406. height: math.unit(1.33, "feet"),
  13407. name: "Foot",
  13408. image: {
  13409. source: "./media/characters/rufran/foot.svg"
  13410. }
  13411. },
  13412. koboldFront: {
  13413. height: math.unit(2 + 6 / 12, "feet"),
  13414. weight: math.unit(20, "lb"),
  13415. name: "Front (Kobold)",
  13416. image: {
  13417. source: "./media/characters/rufran/kobold-front.svg",
  13418. extra: 2041 / 1839,
  13419. bottom: 0.055
  13420. }
  13421. },
  13422. koboldBack: {
  13423. height: math.unit(2 + 6 / 12, "feet"),
  13424. weight: math.unit(20, "lb"),
  13425. name: "Back (Kobold)",
  13426. image: {
  13427. source: "./media/characters/rufran/kobold-back.svg",
  13428. extra: 2054 / 1839,
  13429. bottom: 0.01
  13430. }
  13431. },
  13432. koboldHand: {
  13433. height: math.unit(0.2166, "meters"),
  13434. name: "Hand (Kobold)",
  13435. image: {
  13436. source: "./media/characters/rufran/kobold-hand.svg"
  13437. }
  13438. },
  13439. koboldFoot: {
  13440. height: math.unit(0.185, "meters"),
  13441. name: "Foot (Kobold)",
  13442. image: {
  13443. source: "./media/characters/rufran/kobold-foot.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(1, "inch")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(2 + 6 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Big",
  13459. height: math.unit(60, "feet")
  13460. },
  13461. {
  13462. name: "Macro",
  13463. height: math.unit(325, "feet")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(0.3, "meters"),
  13472. weight: math.unit(3.5, "kg"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/chip/front.svg",
  13476. extra: 748 / 674
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Micro",
  13483. height: math.unit(1, "inch"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13490. {
  13491. side: {
  13492. height: math.unit(2.3, "meters"),
  13493. weight: math.unit(3500, "lb"),
  13494. name: "Side",
  13495. image: {
  13496. source: "./media/characters/torvid/side.svg",
  13497. extra: 1972 / 722,
  13498. bottom: 0.035
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(2.3, "meters"),
  13506. default: true
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(2, "meters"),
  13515. weight: math.unit(150.5, "kg"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/susan/front.svg",
  13519. extra: 693 / 635,
  13520. bottom: 0.05
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Megamacro",
  13527. height: math.unit(505, "miles"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/raindrops/front.svg",
  13541. extra: 2655 / 2461,
  13542. bottom: 49 / 2705
  13543. }
  13544. },
  13545. back: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Back",
  13549. image: {
  13550. source: "./media/characters/raindrops/back.svg",
  13551. extra: 2574 / 2400,
  13552. bottom: 65 / 2634
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(6, "inches")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(6 + 2 / 12, "feet")
  13564. },
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(131, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(15, "miles")
  13573. },
  13574. {
  13575. name: "Gigamacro",
  13576. height: math.unit(4000, "miles")
  13577. },
  13578. {
  13579. name: "Teramacro",
  13580. height: math.unit(315000, "miles")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(2.794, "meters"),
  13589. weight: math.unit(325, "kg"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/tezwa/front.svg",
  13593. extra: 2083 / 1906,
  13594. bottom: 0.031
  13595. }
  13596. },
  13597. foot: {
  13598. height: math.unit(0.687, "meters"),
  13599. name: "Foot",
  13600. image: {
  13601. source: "./media/characters/tezwa/foot.svg"
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Normal",
  13608. height: math.unit(9 + 2 / 12, "feet"),
  13609. default: true
  13610. },
  13611. ]
  13612. ))
  13613. characterMakers.push(() => makeCharacter(
  13614. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13615. {
  13616. front: {
  13617. height: math.unit(58, "feet"),
  13618. weight: math.unit(89000, "lb"),
  13619. name: "Front",
  13620. image: {
  13621. source: "./media/characters/typhus/front.svg",
  13622. extra: 816 / 800,
  13623. bottom: 0.065
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Macro",
  13630. height: math.unit(58, "feet"),
  13631. default: true
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(12, "feet"),
  13640. weight: math.unit(6, "tonnes"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/lyra-von-wulf/front.svg",
  13644. extra: 1,
  13645. bottom: 0.10
  13646. }
  13647. },
  13648. frontMecha: {
  13649. height: math.unit(12, "feet"),
  13650. weight: math.unit(12, "tonnes"),
  13651. name: "Front (Mecha)",
  13652. image: {
  13653. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13654. extra: 1,
  13655. bottom: 0.042
  13656. }
  13657. },
  13658. maw: {
  13659. height: math.unit(2.2, "feet"),
  13660. name: "Maw",
  13661. image: {
  13662. source: "./media/characters/lyra-von-wulf/maw.svg"
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(12, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Classic",
  13674. height: math.unit(50, "feet")
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(500, "feet")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(1, "mile")
  13683. },
  13684. {
  13685. name: "Gigamacro",
  13686. height: math.unit(400, "miles")
  13687. },
  13688. {
  13689. name: "Teramacro",
  13690. height: math.unit(22000, "miles")
  13691. },
  13692. {
  13693. name: "Solarmacro",
  13694. height: math.unit(8600000, "miles")
  13695. },
  13696. {
  13697. name: "Galactic",
  13698. height: math.unit(1057000, "lightyears")
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(6 + 10 / 12, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/dixon/front.svg",
  13711. extra: 3361 / 3209,
  13712. bottom: 0.01
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(6 + 10 / 12, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Big",
  13724. height: math.unit(12, "meters")
  13725. },
  13726. {
  13727. name: "Macro",
  13728. height: math.unit(500, "meters")
  13729. },
  13730. {
  13731. name: "Megamacro",
  13732. height: math.unit(2, "km")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(185, "cm"),
  13741. weight: math.unit(68, "kg"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/kauko/front.svg",
  13745. extra: 1455 / 1421,
  13746. bottom: 0.03
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(185, "cm"),
  13751. weight: math.unit(68, "kg"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/kauko/back.svg",
  13755. extra: 1455 / 1421,
  13756. bottom: 0.004
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Normal",
  13763. height: math.unit(185, "cm"),
  13764. default: true
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(150, "kg"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/varg/front.svg",
  13777. extra: 1108 / 1018,
  13778. bottom: 0.0375
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(5, "meters")
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(200, "meters")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(20, "kilometers")
  13794. },
  13795. {
  13796. name: "True Size",
  13797. height: math.unit(211, "km"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Gigamacro",
  13802. height: math.unit(1000, "km")
  13803. },
  13804. {
  13805. name: "Gigamacro+",
  13806. height: math.unit(8000, "km")
  13807. },
  13808. {
  13809. name: "Teramacro",
  13810. height: math.unit(1000000, "km")
  13811. },
  13812. ]
  13813. ))
  13814. characterMakers.push(() => makeCharacter(
  13815. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13816. {
  13817. front: {
  13818. height: math.unit(7 + 7 / 12, "feet"),
  13819. weight: math.unit(267, "lb"),
  13820. name: "Front",
  13821. image: {
  13822. source: "./media/characters/dayza/front.svg",
  13823. extra: 1262 / 1200,
  13824. bottom: 0.035
  13825. }
  13826. },
  13827. side: {
  13828. height: math.unit(7 + 7 / 12, "feet"),
  13829. weight: math.unit(267, "lb"),
  13830. name: "Side",
  13831. image: {
  13832. source: "./media/characters/dayza/side.svg",
  13833. extra: 1295 / 1245,
  13834. bottom: 0.05
  13835. }
  13836. },
  13837. back: {
  13838. height: math.unit(7 + 7 / 12, "feet"),
  13839. weight: math.unit(267, "lb"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/dayza/back.svg",
  13843. extra: 1241 / 1170
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(7 + 7 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(155, "feet")
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13861. {
  13862. front: {
  13863. height: math.unit(6 + 5 / 12, "feet"),
  13864. weight: math.unit(160, "lb"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/xanthos/front.svg",
  13868. extra: 1,
  13869. bottom: 0.04
  13870. }
  13871. },
  13872. back: {
  13873. height: math.unit(6 + 5 / 12, "feet"),
  13874. weight: math.unit(160, "lb"),
  13875. name: "Back",
  13876. image: {
  13877. source: "./media/characters/xanthos/back.svg",
  13878. extra: 1,
  13879. bottom: 0.03
  13880. }
  13881. },
  13882. hand: {
  13883. height: math.unit(0.928, "feet"),
  13884. name: "Hand",
  13885. image: {
  13886. source: "./media/characters/xanthos/hand.svg"
  13887. }
  13888. },
  13889. foot: {
  13890. height: math.unit(1.286, "feet"),
  13891. name: "Foot",
  13892. image: {
  13893. source: "./media/characters/xanthos/foot.svg"
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(6 + 5 / 12, "feet"),
  13901. default: true
  13902. },
  13903. {
  13904. name: "Normal+",
  13905. height: math.unit(6, "meters")
  13906. },
  13907. {
  13908. name: "Macro",
  13909. height: math.unit(40, "feet")
  13910. },
  13911. {
  13912. name: "Macro+",
  13913. height: math.unit(200, "meters")
  13914. },
  13915. {
  13916. name: "Megamacro",
  13917. height: math.unit(20, "km")
  13918. },
  13919. {
  13920. name: "Megamacro+",
  13921. height: math.unit(100, "km")
  13922. },
  13923. {
  13924. name: "Gigamacro",
  13925. height: math.unit(200, "megameters")
  13926. },
  13927. {
  13928. name: "Gigamacro+",
  13929. height: math.unit(1.5, "gigameters")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(6 + 3 / 12, "feet"),
  13938. weight: math.unit(215, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/grynn/front.svg",
  13942. extra: 4627 / 4209,
  13943. bottom: 0.047
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Micro",
  13950. height: math.unit(6, "inches")
  13951. },
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(6 + 3 / 12, "feet"),
  13955. default: true
  13956. },
  13957. {
  13958. name: "Big",
  13959. height: math.unit(104, "feet")
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(944, "feet")
  13964. },
  13965. {
  13966. name: "Macro+",
  13967. height: math.unit(9480, "feet")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(78752, "feet")
  13972. },
  13973. {
  13974. name: "Megamacro+",
  13975. height: math.unit(630128, "feet")
  13976. },
  13977. {
  13978. name: "Megamacro++",
  13979. height: math.unit(3150695, "feet")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(7 + 5 / 12, "feet"),
  13988. weight: math.unit(450, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/mocha-aura/front.svg",
  13992. extra: 1907 / 1817,
  13993. bottom: 0.04
  13994. }
  13995. },
  13996. back: {
  13997. height: math.unit(7 + 5 / 12, "feet"),
  13998. weight: math.unit(450, "lb"),
  13999. name: "Back",
  14000. image: {
  14001. source: "./media/characters/mocha-aura/back.svg",
  14002. extra: 1900 / 1825,
  14003. bottom: 0.045
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Nano",
  14010. height: math.unit(1, "nm")
  14011. },
  14012. {
  14013. name: "Megamicro",
  14014. height: math.unit(1, "mm")
  14015. },
  14016. {
  14017. name: "Micro",
  14018. height: math.unit(3, "inches")
  14019. },
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(7 + 5 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(30, "feet")
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(3500, "feet")
  14032. },
  14033. {
  14034. name: "Teramacro",
  14035. height: math.unit(500000, "miles")
  14036. },
  14037. {
  14038. name: "Petamacro",
  14039. height: math.unit(50000000000000000, "parsecs")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/ilisha-devya/front.svg",
  14052. extra: 1053/1049,
  14053. bottom: 270/1323
  14054. }
  14055. },
  14056. back: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Back",
  14060. image: {
  14061. source: "./media/characters/ilisha-devya/back.svg",
  14062. extra: 1131/1128,
  14063. bottom: 39/1170
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(500, "feet"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Megamacro",
  14075. height: math.unit(10, "miles")
  14076. },
  14077. {
  14078. name: "Gigamacro",
  14079. height: math.unit(100000, "miles")
  14080. },
  14081. {
  14082. name: "Examacro",
  14083. height: math.unit(1e9, "lightyears")
  14084. },
  14085. {
  14086. name: "Omniversal",
  14087. height: math.unit(1e33, "lightyears")
  14088. },
  14089. {
  14090. name: "Beyond Infinite",
  14091. height: math.unit(1e100, "lightyears")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14097. {
  14098. Side: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Side",
  14102. image: {
  14103. source: "./media/characters/mira/side.svg",
  14104. extra: 900 / 799,
  14105. bottom: 0.02
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Human Size",
  14112. height: math.unit(6, "feet")
  14113. },
  14114. {
  14115. name: "Macro",
  14116. height: math.unit(100, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(10, "miles")
  14122. },
  14123. {
  14124. name: "Gigamacro",
  14125. height: math.unit(25000, "miles")
  14126. },
  14127. {
  14128. name: "Teramacro",
  14129. height: math.unit(300, "AU")
  14130. },
  14131. {
  14132. name: "Full Size",
  14133. height: math.unit(4.5e10, "lightyears")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(150, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/holly/front.svg",
  14146. extra: 639 / 606
  14147. }
  14148. },
  14149. back: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(150, "lb"),
  14152. name: "Back",
  14153. image: {
  14154. source: "./media/characters/holly/back.svg",
  14155. extra: 623 / 598
  14156. }
  14157. },
  14158. frontWorking: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front (Working)",
  14162. image: {
  14163. source: "./media/characters/holly/front-working.svg",
  14164. extra: 607 / 577,
  14165. bottom: 0.048
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(12 + 3 / 12, "feet"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/porter/front.svg",
  14186. extra: 1,
  14187. bottom: 0.01
  14188. }
  14189. },
  14190. frontRobes: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(150, "lb"),
  14193. name: "Front (Robes)",
  14194. image: {
  14195. source: "./media/characters/porter/front-robes.svg",
  14196. extra: 1.01,
  14197. bottom: 0.01
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(11 + 9 / 12, "feet"),
  14205. default: true
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14211. {
  14212. legendary: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(150, "lb"),
  14215. name: "Legendary",
  14216. image: {
  14217. source: "./media/characters/lucy/legendary.svg",
  14218. extra: 1355 / 1100,
  14219. bottom: 0.045
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Legendary",
  14226. height: math.unit(86882 * 2, "miles"),
  14227. default: true
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(6, "feet"),
  14236. weight: math.unit(150, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/drusilla/front.svg",
  14240. extra: 678 / 635,
  14241. bottom: 0.03
  14242. }
  14243. },
  14244. back: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Back",
  14248. image: {
  14249. source: "./media/characters/drusilla/back.svg",
  14250. extra: 678 / 635,
  14251. bottom: 0.005
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Macro",
  14258. height: math.unit(100, "feet")
  14259. },
  14260. {
  14261. name: "Canon Height",
  14262. height: math.unit(2000, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(180, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/renard-thatch/front.svg",
  14276. extra: 2411 / 2275,
  14277. bottom: 0.01
  14278. }
  14279. },
  14280. frontPosing: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(180, "lb"),
  14283. name: "Front (Posing)",
  14284. image: {
  14285. source: "./media/characters/renard-thatch/front-posing.svg",
  14286. extra: 2381 / 2261,
  14287. bottom: 0.01
  14288. }
  14289. },
  14290. back: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(180, "lb"),
  14293. name: "Back",
  14294. image: {
  14295. source: "./media/characters/renard-thatch/back.svg",
  14296. extra: 2428 / 2288
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Micro",
  14303. height: math.unit(3, "inches")
  14304. },
  14305. {
  14306. name: "Default",
  14307. height: math.unit(6, "feet"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Macro",
  14312. height: math.unit(75, "feet")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(1450, "feet"),
  14321. weight: math.unit(1.21e6, "tons"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/sekvra/front.svg",
  14325. extra: 1193/1190,
  14326. bottom: 78/1271
  14327. }
  14328. },
  14329. side: {
  14330. height: math.unit(1450, "feet"),
  14331. weight: math.unit(1.21e6, "tons"),
  14332. name: "Side",
  14333. image: {
  14334. source: "./media/characters/sekvra/side.svg",
  14335. extra: 1193/1190,
  14336. bottom: 52/1245
  14337. }
  14338. },
  14339. back: {
  14340. height: math.unit(1450, "feet"),
  14341. weight: math.unit(1.21e6, "tons"),
  14342. name: "Back",
  14343. image: {
  14344. source: "./media/characters/sekvra/back.svg",
  14345. extra: 1219/1216,
  14346. bottom: 21/1240
  14347. }
  14348. },
  14349. frontClothed: {
  14350. height: math.unit(1450, "feet"),
  14351. weight: math.unit(1.21e6, "tons"),
  14352. name: "Front (Clothed)",
  14353. image: {
  14354. source: "./media/characters/sekvra/front-clothed.svg",
  14355. extra: 1192/1189,
  14356. bottom: 79/1271
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(1450, "feet"),
  14364. default: true
  14365. },
  14366. {
  14367. name: "Megamacro",
  14368. height: math.unit(15000, "feet")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(150, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/carmine/front.svg",
  14381. extra: 1,
  14382. bottom: 0.035
  14383. }
  14384. },
  14385. frontArmor: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(150, "lb"),
  14388. name: "Front (Armor)",
  14389. image: {
  14390. source: "./media/characters/carmine/front-armor.svg",
  14391. extra: 1,
  14392. bottom: 0.035
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Large",
  14399. height: math.unit(1, "mile")
  14400. },
  14401. {
  14402. name: "Huge",
  14403. height: math.unit(40, "miles"),
  14404. default: true
  14405. },
  14406. {
  14407. name: "Colossal",
  14408. height: math.unit(2500, "miles")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/elyssia/front.svg",
  14421. extra: 2201 / 2035,
  14422. bottom: 0.05
  14423. }
  14424. },
  14425. frontClothed: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(150, "lb"),
  14428. name: "Front (Clothed)",
  14429. image: {
  14430. source: "./media/characters/elyssia/front-clothed.svg",
  14431. extra: 2201 / 2035,
  14432. bottom: 0.05
  14433. }
  14434. },
  14435. back: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(150, "lb"),
  14438. name: "Back",
  14439. image: {
  14440. source: "./media/characters/elyssia/back.svg",
  14441. extra: 2201 / 2035,
  14442. bottom: 0.013
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Smaller",
  14449. height: math.unit(150, "feet")
  14450. },
  14451. {
  14452. name: "Standard",
  14453. height: math.unit(1400, "feet"),
  14454. default: true
  14455. },
  14456. {
  14457. name: "Distracted",
  14458. height: math.unit(15000, "feet")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(7 + 4/12, "feet"),
  14467. weight: math.unit(690, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/geno-maxwell/front.svg",
  14471. extra: 984/856,
  14472. bottom: 87/1071
  14473. }
  14474. },
  14475. back: {
  14476. height: math.unit(7 + 4/12, "feet"),
  14477. weight: math.unit(690, "lb"),
  14478. name: "Back",
  14479. image: {
  14480. source: "./media/characters/geno-maxwell/back.svg",
  14481. extra: 981/854,
  14482. bottom: 57/1038
  14483. }
  14484. },
  14485. frontCostume: {
  14486. height: math.unit(7 + 4/12, "feet"),
  14487. weight: math.unit(690, "lb"),
  14488. name: "Front (Costume)",
  14489. image: {
  14490. source: "./media/characters/geno-maxwell/front-costume.svg",
  14491. extra: 984/856,
  14492. bottom: 87/1071
  14493. }
  14494. },
  14495. backcostume: {
  14496. height: math.unit(7 + 4/12, "feet"),
  14497. weight: math.unit(690, "lb"),
  14498. name: "Back (Costume)",
  14499. image: {
  14500. source: "./media/characters/geno-maxwell/back-costume.svg",
  14501. extra: 981/854,
  14502. bottom: 57/1038
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(3, "inches")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(7 + 4 / 12, "feet"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(220, "feet")
  14519. },
  14520. {
  14521. name: "Megamacro",
  14522. height: math.unit(11, "miles")
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(7 + 4/12, "feet"),
  14531. weight: math.unit(750, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/regena-maxwell/front.svg",
  14535. extra: 984/856,
  14536. bottom: 87/1071
  14537. }
  14538. },
  14539. back: {
  14540. height: math.unit(7 + 4/12, "feet"),
  14541. weight: math.unit(750, "lb"),
  14542. name: "Back",
  14543. image: {
  14544. source: "./media/characters/regena-maxwell/back.svg",
  14545. extra: 981/854,
  14546. bottom: 57/1038
  14547. }
  14548. },
  14549. frontCostume: {
  14550. height: math.unit(7 + 4/12, "feet"),
  14551. weight: math.unit(750, "lb"),
  14552. name: "Front (Costume)",
  14553. image: {
  14554. source: "./media/characters/regena-maxwell/front-costume.svg",
  14555. extra: 984/856,
  14556. bottom: 87/1071
  14557. }
  14558. },
  14559. backcostume: {
  14560. height: math.unit(7 + 4/12, "feet"),
  14561. weight: math.unit(750, "lb"),
  14562. name: "Back (Costume)",
  14563. image: {
  14564. source: "./media/characters/regena-maxwell/back-costume.svg",
  14565. extra: 981/854,
  14566. bottom: 57/1038
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(7 + 4 / 12, "feet"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(220, "feet")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(11, "miles")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(150, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14595. extra: 860 / 690,
  14596. bottom: 0.03
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(1.7, "meters"),
  14604. default: true
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/quilly/front.svg",
  14617. extra: 890 / 776
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Gigamacro",
  14624. height: math.unit(404090, "miles"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(7 + 8 / 12, "feet"),
  14634. weight: math.unit(350, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/tempest/front.svg",
  14638. extra: 1175 / 1086,
  14639. bottom: 0.02
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(7 + 8 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14653. {
  14654. side: {
  14655. height: math.unit(4 + 5 / 12, "feet"),
  14656. weight: math.unit(80, "lb"),
  14657. name: "Side",
  14658. image: {
  14659. source: "./media/characters/rodger/side.svg",
  14660. extra: 1235 / 1118
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Micro",
  14667. height: math.unit(1, "inch")
  14668. },
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(4 + 5 / 12, "feet"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Macro",
  14676. height: math.unit(120, "feet")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/danyel/front.svg",
  14689. extra: 1185 / 1123,
  14690. bottom: 0.05
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Shrunken",
  14697. height: math.unit(0.5, "mm")
  14698. },
  14699. {
  14700. name: "Micro",
  14701. height: math.unit(1, "mm"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Upsized",
  14706. height: math.unit(5 + 5 / 12, "feet")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5 + 6 / 12, "feet"),
  14715. weight: math.unit(200, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/vivian-bijoux/front.svg",
  14719. extra: 1217/1209,
  14720. bottom: 76/1293
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5 + 6 / 12, "feet"),
  14725. weight: math.unit(200, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/vivian-bijoux/back.svg",
  14729. extra: 1214/1208,
  14730. bottom: 51/1265
  14731. }
  14732. },
  14733. dressed: {
  14734. height: math.unit(5 + 6 / 12, "feet"),
  14735. weight: math.unit(200, "lb"),
  14736. name: "Dressed",
  14737. image: {
  14738. source: "./media/characters/vivian-bijoux/dressed.svg",
  14739. extra: 1217/1209,
  14740. bottom: 76/1293
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(5 + 6 / 12, "feet"),
  14748. default: true
  14749. },
  14750. {
  14751. name: "Bad Dream",
  14752. height: math.unit(500, "feet")
  14753. },
  14754. {
  14755. name: "Nightmare",
  14756. height: math.unit(500, "miles")
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(6 + 1 / 12, "feet"),
  14765. weight: math.unit(260, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/zeta/front.svg",
  14769. extra: 1968 / 1889,
  14770. bottom: 0.06
  14771. }
  14772. },
  14773. back: {
  14774. height: math.unit(6 + 1 / 12, "feet"),
  14775. weight: math.unit(260, "lb"),
  14776. name: "Back",
  14777. image: {
  14778. source: "./media/characters/zeta/back.svg",
  14779. extra: 1944 / 1858,
  14780. bottom: 0.03
  14781. }
  14782. },
  14783. hand: {
  14784. height: math.unit(1.112, "feet"),
  14785. name: "Hand",
  14786. image: {
  14787. source: "./media/characters/zeta/hand.svg"
  14788. }
  14789. },
  14790. foot: {
  14791. height: math.unit(1.48, "feet"),
  14792. name: "Foot",
  14793. image: {
  14794. source: "./media/characters/zeta/foot.svg"
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Micro",
  14801. height: math.unit(6, "inches")
  14802. },
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(6 + 1 / 12, "feet"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Macro",
  14810. height: math.unit(20, "feet")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/jamie-larsen/front.svg",
  14823. extra: 962 / 933,
  14824. bottom: 0.02
  14825. }
  14826. },
  14827. back: {
  14828. height: math.unit(6, "feet"),
  14829. weight: math.unit(150, "lb"),
  14830. name: "Back",
  14831. image: {
  14832. source: "./media/characters/jamie-larsen/back.svg",
  14833. extra: 997 / 946
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(28 + 7 / 12, "feet"),
  14841. default: true
  14842. },
  14843. {
  14844. name: "Macro+",
  14845. height: math.unit(180, "feet")
  14846. },
  14847. {
  14848. name: "Megamacro",
  14849. height: math.unit(10, "miles")
  14850. },
  14851. {
  14852. name: "Gigamacro",
  14853. height: math.unit(200000, "miles")
  14854. },
  14855. ]
  14856. ))
  14857. characterMakers.push(() => makeCharacter(
  14858. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14859. {
  14860. front: {
  14861. height: math.unit(6, "feet"),
  14862. weight: math.unit(120, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/vance/front.svg",
  14866. extra: 1980 / 1890,
  14867. bottom: 0.09
  14868. }
  14869. },
  14870. back: {
  14871. height: math.unit(6, "feet"),
  14872. weight: math.unit(120, "lb"),
  14873. name: "Back",
  14874. image: {
  14875. source: "./media/characters/vance/back.svg",
  14876. extra: 2081 / 1994,
  14877. bottom: 0.014
  14878. }
  14879. },
  14880. hand: {
  14881. height: math.unit(0.88, "feet"),
  14882. name: "Hand",
  14883. image: {
  14884. source: "./media/characters/vance/hand.svg"
  14885. }
  14886. },
  14887. foot: {
  14888. height: math.unit(0.64, "feet"),
  14889. name: "Foot",
  14890. image: {
  14891. source: "./media/characters/vance/foot.svg"
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Small",
  14898. height: math.unit(90, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(100, "meters")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(15, "miles")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(180, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/xochitl/front.svg",
  14920. extra: 2297 / 2261,
  14921. bottom: 0.065
  14922. }
  14923. },
  14924. back: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(180, "lb"),
  14927. name: "Back",
  14928. image: {
  14929. source: "./media/characters/xochitl/back.svg",
  14930. extra: 2386 / 2354,
  14931. bottom: 0.01
  14932. }
  14933. },
  14934. foot: {
  14935. height: math.unit(6 / 5 * 1.15, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Foot",
  14938. image: {
  14939. source: "./media/characters/xochitl/foot.svg"
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(80, "feet")
  14947. },
  14948. {
  14949. name: "Macro+",
  14950. height: math.unit(400, "feet"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Gigamacro",
  14955. height: math.unit(80000, "miles")
  14956. },
  14957. {
  14958. name: "Gigamacro+",
  14959. height: math.unit(400000, "miles")
  14960. },
  14961. {
  14962. name: "Teramacro",
  14963. height: math.unit(300, "AU")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/vincent/front.svg",
  14976. extra: 1130 / 1080,
  14977. bottom: 0.055
  14978. }
  14979. },
  14980. beak: {
  14981. height: math.unit(6 * 0.1, "feet"),
  14982. name: "Beak",
  14983. image: {
  14984. source: "./media/characters/vincent/beak.svg"
  14985. }
  14986. },
  14987. hand: {
  14988. height: math.unit(6 * 0.85, "feet"),
  14989. weight: math.unit(150, "lb"),
  14990. name: "Hand",
  14991. image: {
  14992. source: "./media/characters/vincent/hand.svg"
  14993. }
  14994. },
  14995. foot: {
  14996. height: math.unit(6 * 0.19, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Foot",
  14999. image: {
  15000. source: "./media/characters/vincent/foot.svg"
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Base",
  15007. height: math.unit(6 + 5 / 12, "feet"),
  15008. default: true
  15009. },
  15010. {
  15011. name: "Macro",
  15012. height: math.unit(300, "feet")
  15013. },
  15014. {
  15015. name: "Megamacro",
  15016. height: math.unit(2, "miles")
  15017. },
  15018. {
  15019. name: "Gigamacro",
  15020. height: math.unit(1000, "miles")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(2, "meters"),
  15029. weight: math.unit(500, "kg"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/coatl/front.svg",
  15033. extra: 3948 / 3500,
  15034. bottom: 0.082
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(4, "meters")
  15042. },
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(100, "meters"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro+",
  15050. height: math.unit(300, "meters")
  15051. },
  15052. {
  15053. name: "Megamacro",
  15054. height: math.unit(3, "gigameters")
  15055. },
  15056. {
  15057. name: "Megamacro+",
  15058. height: math.unit(300, "terameters")
  15059. },
  15060. {
  15061. name: "Megamacro++",
  15062. height: math.unit(3, "lightyears")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(50, "kg"),
  15072. name: "front",
  15073. image: {
  15074. source: "./media/characters/shiroryu/front.svg",
  15075. extra: 1990 / 1935
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Mortal Mingling",
  15082. height: math.unit(3, "meters")
  15083. },
  15084. {
  15085. name: "Kaiju-ish",
  15086. height: math.unit(250, "meters")
  15087. },
  15088. {
  15089. name: "Somewhat Godly",
  15090. height: math.unit(400, "km"),
  15091. default: true
  15092. },
  15093. {
  15094. name: "Planetary",
  15095. height: math.unit(300, "megameters")
  15096. },
  15097. {
  15098. name: "Galaxy-dwarfing",
  15099. height: math.unit(450, "kiloparsecs")
  15100. },
  15101. {
  15102. name: "Universe Eater",
  15103. height: math.unit(150, "gigaparsecs")
  15104. },
  15105. {
  15106. name: "Almost Immeasurable",
  15107. height: math.unit(1.3e266, "yottaparsecs")
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Umeko", species: ["eastern-dragon"], 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/umeko/front.svg",
  15120. extra: 1,
  15121. bottom: 0.019
  15122. }
  15123. },
  15124. frontArmored: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Front (Armored)",
  15128. image: {
  15129. source: "./media/characters/umeko/front-armored.svg",
  15130. extra: 1,
  15131. bottom: 0.021
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(220, "feet"),
  15139. default: true
  15140. },
  15141. {
  15142. name: "Guardian Dragon",
  15143. height: math.unit(50, "miles")
  15144. },
  15145. {
  15146. name: "Cosmic",
  15147. height: math.unit(800000, "miles")
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(6, "feet"),
  15156. weight: math.unit(150, "lb"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/cassidy/front.svg",
  15160. extra: 810/808,
  15161. bottom: 41/851
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Canon Height",
  15168. height: math.unit(120, "feet"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Macro+",
  15173. height: math.unit(400, "feet")
  15174. },
  15175. {
  15176. name: "Macro++",
  15177. height: math.unit(4000, "feet")
  15178. },
  15179. {
  15180. name: "Megamacro",
  15181. height: math.unit(3, "miles")
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(150, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/isaac/front.svg",
  15194. extra: 896 / 815,
  15195. bottom: 0.11
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Human Size",
  15202. height: math.unit(8, "feet"),
  15203. default: true
  15204. },
  15205. {
  15206. name: "Macro",
  15207. height: math.unit(400, "feet")
  15208. },
  15209. {
  15210. name: "Megamacro",
  15211. height: math.unit(50, "miles")
  15212. },
  15213. {
  15214. name: "Canon Height",
  15215. height: math.unit(200, "AU")
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(72, "kg"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/sleekit/front.svg",
  15228. extra: 4693 / 4487,
  15229. bottom: 0.012
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Minimum Height",
  15236. height: math.unit(10, "meters")
  15237. },
  15238. {
  15239. name: "Smaller",
  15240. height: math.unit(25, "meters")
  15241. },
  15242. {
  15243. name: "Larger",
  15244. height: math.unit(38, "meters"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Maximum height",
  15249. height: math.unit(100, "meters")
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(6, "feet"),
  15258. weight: math.unit(150, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/nillia/front.svg",
  15262. extra: 2195 / 2037,
  15263. bottom: 0.005
  15264. }
  15265. },
  15266. back: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(150, "lb"),
  15269. name: "Back",
  15270. image: {
  15271. source: "./media/characters/nillia/back.svg",
  15272. extra: 2195 / 2037,
  15273. bottom: 0.005
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Canon Height",
  15280. height: math.unit(489, "feet"),
  15281. default: true
  15282. }
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/mesmyriza/front.svg",
  15294. extra: 2067 / 1784,
  15295. bottom: 0.035
  15296. }
  15297. },
  15298. foot: {
  15299. height: math.unit(6 / (250 / 35), "feet"),
  15300. name: "Foot",
  15301. image: {
  15302. source: "./media/characters/mesmyriza/foot.svg"
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(457, "meters"),
  15310. default: true
  15311. },
  15312. {
  15313. name: "Megamacro",
  15314. height: math.unit(8, "megameters")
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(250, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/saudade/front.svg",
  15327. extra: 1172 / 1139,
  15328. bottom: 0.035
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Micro",
  15335. height: math.unit(3, "inches")
  15336. },
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(6, "feet"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(50, "feet")
  15345. },
  15346. {
  15347. name: "Megamacro",
  15348. height: math.unit(2800, "feet")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(5 + 4 / 12, "feet"),
  15357. weight: math.unit(100, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/keireer/front.svg",
  15361. extra: 716 / 666,
  15362. bottom: 0.05
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(5 + 4 / 12, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(5.5, "feet"),
  15379. weight: math.unit(90, "kg"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/mirja/front.svg",
  15383. extra: 1452/1262,
  15384. bottom: 67/1519
  15385. }
  15386. },
  15387. frontDressed: {
  15388. height: math.unit(5.5, "feet"),
  15389. weight: math.unit(90, "lb"),
  15390. name: "Front (Dressed)",
  15391. image: {
  15392. source: "./media/characters/mirja/dressed.svg",
  15393. extra: 1452/1262,
  15394. bottom: 67/1519
  15395. }
  15396. },
  15397. back: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(90, "lb"),
  15400. name: "Back",
  15401. image: {
  15402. source: "./media/characters/mirja/back.svg",
  15403. extra: 1892/1795,
  15404. bottom: 48/1940
  15405. }
  15406. },
  15407. maw: {
  15408. height: math.unit(1.312, "feet"),
  15409. name: "Maw",
  15410. image: {
  15411. source: "./media/characters/mirja/maw.svg"
  15412. }
  15413. },
  15414. paw: {
  15415. height: math.unit(1.15, "feet"),
  15416. name: "Paw",
  15417. image: {
  15418. source: "./media/characters/mirja/paw.svg"
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "\"Incognito\"",
  15425. height: math.unit(3, "meters")
  15426. },
  15427. {
  15428. name: "Strolling Size",
  15429. height: math.unit(15, "km")
  15430. },
  15431. {
  15432. name: "Larger Strolling Size",
  15433. height: math.unit(400, "km")
  15434. },
  15435. {
  15436. name: "Preferred Size",
  15437. height: math.unit(5000, "km"),
  15438. default: true
  15439. },
  15440. {
  15441. name: "True Size",
  15442. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(15, "feet"),
  15451. weight: math.unit(880, "kg"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/nightraver/front.svg",
  15455. extra: 2444 / 2160,
  15456. bottom: 0.027
  15457. }
  15458. },
  15459. back: {
  15460. height: math.unit(15, "feet"),
  15461. weight: math.unit(880, "kg"),
  15462. name: "Back",
  15463. image: {
  15464. source: "./media/characters/nightraver/back.svg",
  15465. extra: 2309 / 2180,
  15466. bottom: 0.005
  15467. }
  15468. },
  15469. sole: {
  15470. height: math.unit(2.878, "feet"),
  15471. name: "Sole",
  15472. image: {
  15473. source: "./media/characters/nightraver/sole.svg"
  15474. }
  15475. },
  15476. foot: {
  15477. height: math.unit(2.285, "feet"),
  15478. name: "Foot",
  15479. image: {
  15480. source: "./media/characters/nightraver/foot.svg"
  15481. }
  15482. },
  15483. maw: {
  15484. height: math.unit(2.67, "feet"),
  15485. name: "Maw",
  15486. image: {
  15487. source: "./media/characters/nightraver/maw.svg"
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Micro",
  15494. height: math.unit(1, "cm")
  15495. },
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(15, "feet"),
  15499. default: true
  15500. },
  15501. {
  15502. name: "Macro",
  15503. height: math.unit(300, "feet")
  15504. },
  15505. {
  15506. name: "Megamacro",
  15507. height: math.unit(300, "miles")
  15508. },
  15509. {
  15510. name: "Gigamacro",
  15511. height: math.unit(10000, "miles")
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15517. {
  15518. side: {
  15519. height: math.unit(2, "inches"),
  15520. weight: math.unit(5, "grams"),
  15521. name: "Side",
  15522. image: {
  15523. source: "./media/characters/arc/side.svg"
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Micro",
  15530. height: math.unit(2, "inches"),
  15531. default: true
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(1.1938, "meters"),
  15540. weight: math.unit(54, "kg"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/nebula-shahar/front.svg",
  15544. extra: 1642 / 1436,
  15545. bottom: 0.06
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Megamicro",
  15552. height: math.unit(0.3, "mm")
  15553. },
  15554. {
  15555. name: "Micro",
  15556. height: math.unit(3, "cm")
  15557. },
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(138, "cm"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Macro",
  15565. height: math.unit(30, "m")
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(5.24, "feet"),
  15574. weight: math.unit(150, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/shayla/front.svg",
  15578. extra: 1512 / 1414,
  15579. bottom: 0.01
  15580. }
  15581. },
  15582. back: {
  15583. height: math.unit(5.24, "feet"),
  15584. weight: math.unit(150, "lb"),
  15585. name: "Back",
  15586. image: {
  15587. source: "./media/characters/shayla/back.svg",
  15588. extra: 1512 / 1414
  15589. }
  15590. },
  15591. hand: {
  15592. height: math.unit(0.7781496062992126, "feet"),
  15593. name: "Hand",
  15594. image: {
  15595. source: "./media/characters/shayla/hand.svg"
  15596. }
  15597. },
  15598. foot: {
  15599. height: math.unit(1.4206036745406823, "feet"),
  15600. name: "Foot",
  15601. image: {
  15602. source: "./media/characters/shayla/foot.svg"
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Micro",
  15609. height: math.unit(0.32, "feet")
  15610. },
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(5.24, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(492.12, "feet")
  15619. },
  15620. {
  15621. name: "Megamacro",
  15622. height: math.unit(186.41, "miles")
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(2.2, "m"),
  15631. weight: math.unit(120, "kg"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/pia-jr/front.svg",
  15635. extra: 1000 / 970,
  15636. bottom: 0.035
  15637. }
  15638. },
  15639. hand: {
  15640. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15641. name: "Hand",
  15642. image: {
  15643. source: "./media/characters/pia-jr/hand.svg"
  15644. }
  15645. },
  15646. paw: {
  15647. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15648. name: "Paw",
  15649. image: {
  15650. source: "./media/characters/pia-jr/paw.svg"
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Micro",
  15657. height: math.unit(1.2, "cm")
  15658. },
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(2.2, "m"),
  15662. default: true
  15663. },
  15664. {
  15665. name: "Macro",
  15666. height: math.unit(180, "m")
  15667. },
  15668. {
  15669. name: "Megamacro",
  15670. height: math.unit(420, "km")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(2, "m"),
  15679. weight: math.unit(115, "kg"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/pia-sr/front.svg",
  15683. extra: 760 / 730,
  15684. bottom: 0.015
  15685. }
  15686. },
  15687. back: {
  15688. height: math.unit(2, "m"),
  15689. weight: math.unit(115, "kg"),
  15690. name: "Back",
  15691. image: {
  15692. source: "./media/characters/pia-sr/back.svg",
  15693. extra: 760 / 730,
  15694. bottom: 0.01
  15695. }
  15696. },
  15697. hand: {
  15698. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15699. name: "Hand",
  15700. image: {
  15701. source: "./media/characters/pia-sr/hand.svg"
  15702. }
  15703. },
  15704. foot: {
  15705. height: math.unit(1.83, "feet"),
  15706. name: "Foot",
  15707. image: {
  15708. source: "./media/characters/pia-sr/foot.svg"
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Micro",
  15715. height: math.unit(88, "mm")
  15716. },
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(2, "m"),
  15720. default: true
  15721. },
  15722. {
  15723. name: "Macro",
  15724. height: math.unit(200, "m")
  15725. },
  15726. {
  15727. name: "Megamacro",
  15728. height: math.unit(420, "km")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(8 + 2 / 12, "feet"),
  15737. weight: math.unit(300, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/kibibyte/front.svg",
  15741. extra: 2221 / 2098,
  15742. bottom: 0.04
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(8 + 2 / 12, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Socialable Macro",
  15754. height: math.unit(50, "feet")
  15755. },
  15756. {
  15757. name: "Macro",
  15758. height: math.unit(300, "feet")
  15759. },
  15760. {
  15761. name: "Megamacro",
  15762. height: math.unit(500, "miles")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/felix/front.svg",
  15775. extra: 762 / 722,
  15776. bottom: 0.02
  15777. }
  15778. },
  15779. frontClothed: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Front (Clothed)",
  15783. image: {
  15784. source: "./media/characters/felix/front-clothed.svg",
  15785. extra: 762 / 722,
  15786. bottom: 0.02
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6 + 8 / 12, "feet"),
  15794. default: true
  15795. },
  15796. {
  15797. name: "Macro",
  15798. height: math.unit(2600, "feet")
  15799. },
  15800. {
  15801. name: "Megamacro",
  15802. height: math.unit(450, "miles")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(6 + 1 / 12, "feet"),
  15811. weight: math.unit(250, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/tobo/front.svg",
  15815. extra: 608 / 586,
  15816. bottom: 0.023
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(6 + 1 / 12, "feet"),
  15821. weight: math.unit(250, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/tobo/back.svg",
  15825. extra: 608 / 586
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Nano",
  15832. height: math.unit(2, "nm")
  15833. },
  15834. {
  15835. name: "Megamicro",
  15836. height: math.unit(0.1, "mm")
  15837. },
  15838. {
  15839. name: "Micro",
  15840. height: math.unit(1, "inch"),
  15841. default: true
  15842. },
  15843. {
  15844. name: "Human-sized",
  15845. height: math.unit(6 + 1 / 12, "feet")
  15846. },
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(250, "feet")
  15850. },
  15851. {
  15852. name: "Megamacro",
  15853. height: math.unit(75, "miles")
  15854. },
  15855. {
  15856. name: "Texas-sized",
  15857. height: math.unit(750, "miles")
  15858. },
  15859. {
  15860. name: "Teramacro",
  15861. height: math.unit(50000, "miles")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(269, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/danny-kapowsky/front.svg",
  15874. extra: 766 / 736,
  15875. bottom: 0.044
  15876. }
  15877. },
  15878. back: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(269, "lb"),
  15881. name: "Back",
  15882. image: {
  15883. source: "./media/characters/danny-kapowsky/back.svg",
  15884. extra: 797 / 760,
  15885. bottom: 0.025
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Macro",
  15892. height: math.unit(150, "feet"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Macro+",
  15897. height: math.unit(200, "feet")
  15898. },
  15899. {
  15900. name: "Macro++",
  15901. height: math.unit(300, "feet")
  15902. },
  15903. {
  15904. name: "Macro+++",
  15905. height: math.unit(400, "feet")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15911. {
  15912. side: {
  15913. height: math.unit(6, "feet"),
  15914. weight: math.unit(170, "lb"),
  15915. name: "Side",
  15916. image: {
  15917. source: "./media/characters/finn/side.svg",
  15918. extra: 1953 / 1807,
  15919. bottom: 0.057
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Megamacro",
  15926. height: math.unit(14445, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(5 + 6 / 12, "feet"),
  15936. weight: math.unit(125, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/roy/front.svg",
  15940. extra: 1,
  15941. bottom: 0.11
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Micro",
  15948. height: math.unit(3, "inches"),
  15949. default: true
  15950. },
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(5 + 6 / 12, "feet")
  15954. },
  15955. {
  15956. name: "Lesser Macro",
  15957. height: math.unit(60, "feet")
  15958. },
  15959. {
  15960. name: "Greater Macro",
  15961. height: math.unit(120, "feet")
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(6, "feet"),
  15970. weight: math.unit(100, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/aevsivs/front.svg",
  15974. extra: 1,
  15975. bottom: 0.03
  15976. }
  15977. },
  15978. back: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(100, "lb"),
  15981. name: "Back",
  15982. image: {
  15983. source: "./media/characters/aevsivs/back.svg"
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Micro",
  15990. height: math.unit(2, "inches"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(5, "feet")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(5 + 7 / 12, "feet"),
  16004. weight: math.unit(159, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/hildegard/front.svg",
  16008. extra: 289 / 269,
  16009. bottom: 7.63 / 297.8
  16010. }
  16011. },
  16012. back: {
  16013. height: math.unit(5 + 7 / 12, "feet"),
  16014. weight: math.unit(159, "lb"),
  16015. name: "Back",
  16016. image: {
  16017. source: "./media/characters/hildegard/back.svg",
  16018. extra: 280 / 260,
  16019. bottom: 2.3 / 282
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5 + 7 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16033. {
  16034. bernard: {
  16035. height: math.unit(2 + 7 / 12, "feet"),
  16036. weight: math.unit(66, "lb"),
  16037. name: "Bernard",
  16038. rename: true,
  16039. image: {
  16040. source: "./media/characters/bernard-wilder/bernard.svg",
  16041. extra: 192 / 128,
  16042. bottom: 0.05
  16043. }
  16044. },
  16045. wilder: {
  16046. height: math.unit(5 + 8 / 12, "feet"),
  16047. weight: math.unit(143, "lb"),
  16048. name: "Wilder",
  16049. rename: true,
  16050. image: {
  16051. source: "./media/characters/bernard-wilder/wilder.svg",
  16052. extra: 361 / 312,
  16053. bottom: 0.02
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(2 + 7 / 12, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16067. {
  16068. anthro: {
  16069. height: math.unit(6 + 1 / 12, "feet"),
  16070. weight: math.unit(155, "lb"),
  16071. name: "Anthro",
  16072. image: {
  16073. source: "./media/characters/hearth/anthro.svg",
  16074. extra: 1178/1136,
  16075. bottom: 28/1206
  16076. }
  16077. },
  16078. feral: {
  16079. height: math.unit(3.78, "feet"),
  16080. weight: math.unit(35, "kg"),
  16081. name: "Feral",
  16082. image: {
  16083. source: "./media/characters/hearth/feral.svg",
  16084. extra: 153 / 135,
  16085. bottom: 0.03
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6 + 1 / 12, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(182, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/ingrid/front.svg",
  16106. extra: 294 / 268,
  16107. bottom: 0.027
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16121. {
  16122. eevee: {
  16123. height: math.unit(2 + 10 / 12, "feet"),
  16124. weight: math.unit(86, "lb"),
  16125. name: "Malgam",
  16126. image: {
  16127. source: "./media/characters/malgam/eevee.svg",
  16128. extra: 952/784,
  16129. bottom: 38/990
  16130. }
  16131. },
  16132. sylveon: {
  16133. height: math.unit(4, "feet"),
  16134. weight: math.unit(101, "lb"),
  16135. name: "Future Malgam",
  16136. rename: true,
  16137. image: {
  16138. source: "./media/characters/malgam/sylveon.svg",
  16139. extra: 371 / 325,
  16140. bottom: 0.015
  16141. }
  16142. },
  16143. gigantamax: {
  16144. height: math.unit(50, "feet"),
  16145. name: "Gigantamax Malgam",
  16146. rename: true,
  16147. image: {
  16148. source: "./media/characters/malgam/gigantamax.svg"
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(2 + 10 / 12, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(5 + 11 / 12, "feet"),
  16165. weight: math.unit(188, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/fleur/front.svg",
  16169. extra: 309 / 283,
  16170. bottom: 0.007
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5 + 11 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(5 + 4 / 12, "feet"),
  16187. weight: math.unit(122, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/jude/front.svg",
  16191. extra: 288 / 273,
  16192. bottom: 0.03
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(5 + 4 / 12, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(5 + 11 / 12, "feet"),
  16209. weight: math.unit(190, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/seara/front.svg",
  16213. extra: 1,
  16214. bottom: 0.05
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(5 + 11 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(16 + 5 / 12, "feet"),
  16231. weight: math.unit(524, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/caspian-lugia/front.svg",
  16235. extra: 1,
  16236. bottom: 0.04
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(16 + 5 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(5 + 7 / 12, "feet"),
  16253. weight: math.unit(170, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/mika/front.svg",
  16257. extra: 1,
  16258. bottom: 0.016
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(5 + 7 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6 + 2 / 12, "feet"),
  16275. weight: math.unit(268, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/sol/front.svg",
  16279. extra: 247 / 231,
  16280. bottom: 0.05
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(6 + 2 / 12, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16294. {
  16295. buizel: {
  16296. height: math.unit(2 + 5 / 12, "feet"),
  16297. weight: math.unit(87, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/umiko/buizel.svg",
  16301. extra: 172 / 157,
  16302. bottom: 0.01
  16303. },
  16304. form: "buizel",
  16305. default: true
  16306. },
  16307. floatzel: {
  16308. height: math.unit(5 + 9 / 12, "feet"),
  16309. weight: math.unit(250, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/umiko/floatzel.svg",
  16313. extra: 1076/1006,
  16314. bottom: 15/1091
  16315. },
  16316. form: "floatzel",
  16317. default: true
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(2 + 5 / 12, "feet"),
  16324. form: "buizel",
  16325. default: true
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(5 + 9 / 12, "feet"),
  16330. form: "floatzel",
  16331. default: true
  16332. },
  16333. ],
  16334. {
  16335. "buizel": {
  16336. name: "Buizel"
  16337. },
  16338. "floatzel": {
  16339. name: "Floatzel",
  16340. default: true
  16341. }
  16342. }
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6 + 2 / 12, "feet"),
  16349. weight: math.unit(146, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/iliac/front.svg",
  16353. extra: 389 / 365,
  16354. bottom: 0.035
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(6 + 2 / 12, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16368. {
  16369. front: {
  16370. height: math.unit(6, "feet"),
  16371. weight: math.unit(170, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/topaz/front.svg",
  16375. extra: 317 / 303,
  16376. bottom: 0.055
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(6, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(5 + 11 / 12, "feet"),
  16393. weight: math.unit(144, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/gabriel/front.svg",
  16397. extra: 285 / 262,
  16398. bottom: 0.004
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(5 + 11 / 12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16412. {
  16413. side: {
  16414. height: math.unit(6 + 5 / 12, "feet"),
  16415. weight: math.unit(300, "lb"),
  16416. name: "Side",
  16417. image: {
  16418. source: "./media/characters/tempest-suicune/side.svg",
  16419. extra: 195 / 154,
  16420. bottom: 0.04
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(6 + 5 / 12, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(7 + 2 / 12, "feet"),
  16437. weight: math.unit(322, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/vulcan/front.svg",
  16441. extra: 154 / 147,
  16442. bottom: 0.04
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(7 + 2 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(5 + 10 / 12, "feet"),
  16459. weight: math.unit(264, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/gault/front.svg",
  16463. extra: 161 / 140,
  16464. bottom: 0.028
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(5 + 10 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(6, "feet"),
  16481. weight: math.unit(150, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/shard/front.svg",
  16485. extra: 273 / 238,
  16486. bottom: 0.02
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(3 + 6 / 12, "feet"),
  16494. default: true
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(5 + 11 / 12, "feet"),
  16503. weight: math.unit(146, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/ashe/front.svg",
  16507. extra: 400 / 373,
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(5 + 11 / 12, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(5 + 5 / 12, "feet"),
  16525. weight: math.unit(135, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/beatrix/front.svg",
  16529. extra: 392 / 379,
  16530. bottom: 0.01
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(6, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(6 + 2/12, "feet"),
  16547. weight: math.unit(135, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/ignatius/front.svg",
  16551. extra: 1380/1259,
  16552. bottom: 27/1407
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(6 + 2/12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(6 + 2 / 12, "feet"),
  16569. weight: math.unit(138, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/mei-li/front.svg",
  16573. extra: 237 / 229,
  16574. bottom: 0.03
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6 + 2 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(2 + 4 / 12, "feet"),
  16591. weight: math.unit(62, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/puru/front.svg",
  16595. extra: 206 / 149,
  16596. bottom: 0.06
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(2 + 4 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16610. {
  16611. anthro: {
  16612. height: math.unit(5 + 8/12, "feet"),
  16613. weight: math.unit(200, "lb"),
  16614. energyNeed: math.unit(2000, "kcal"),
  16615. name: "Anthro",
  16616. image: {
  16617. source: "./media/characters/kee/anthro.svg",
  16618. extra: 3251/3184,
  16619. bottom: 250/3501
  16620. }
  16621. },
  16622. taur: {
  16623. height: math.unit(11, "feet"),
  16624. weight: math.unit(500, "lb"),
  16625. energyNeed: math.unit(5000, "kcal"),
  16626. name: "Taur",
  16627. image: {
  16628. source: "./media/characters/kee/taur.svg",
  16629. extra: 1362/1320,
  16630. bottom: 83/1445
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(5 + 8/12, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(35, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16648. {
  16649. anthro: {
  16650. height: math.unit(7, "feet"),
  16651. weight: math.unit(190, "lb"),
  16652. name: "Anthro",
  16653. image: {
  16654. source: "./media/characters/cobalt-dracha/anthro.svg",
  16655. extra: 231 / 225,
  16656. bottom: 0.04
  16657. }
  16658. },
  16659. feral: {
  16660. height: math.unit(9 + 7 / 12, "feet"),
  16661. weight: math.unit(294, "lb"),
  16662. name: "Feral",
  16663. image: {
  16664. source: "./media/characters/cobalt-dracha/feral.svg",
  16665. extra: 692 / 633,
  16666. bottom: 0.05
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(7, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16680. {
  16681. fallen: {
  16682. height: math.unit(11 + 8 / 12, "feet"),
  16683. weight: math.unit(485, "lb"),
  16684. name: "Java (Fallen)",
  16685. rename: true,
  16686. image: {
  16687. source: "./media/characters/java/fallen.svg",
  16688. extra: 226 / 208,
  16689. bottom: 0.005
  16690. }
  16691. },
  16692. godkin: {
  16693. height: math.unit(10 + 6 / 12, "feet"),
  16694. weight: math.unit(328, "lb"),
  16695. name: "Java (Godkin)",
  16696. rename: true,
  16697. image: {
  16698. source: "./media/characters/java/godkin.svg",
  16699. extra: 1104/1068,
  16700. bottom: 36/1140
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(11 + 8 / 12, "feet"),
  16708. default: true
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(5 + 9 / 12, "feet"),
  16717. weight: math.unit(170, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/purna/front.svg",
  16721. extra: 239 / 229,
  16722. bottom: 0.01
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(5 + 9 / 12, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(5 + 9 / 12, "feet"),
  16739. weight: math.unit(142, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/kuva/front.svg",
  16743. extra: 281 / 271,
  16744. bottom: 0.006
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(5 + 9 / 12, "feet"),
  16752. default: true
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16758. {
  16759. anthro: {
  16760. height: math.unit(9 + 2 / 12, "feet"),
  16761. weight: math.unit(270, "lb"),
  16762. name: "Anthro",
  16763. image: {
  16764. source: "./media/characters/embra/anthro.svg",
  16765. extra: 200 / 187,
  16766. bottom: 0.02
  16767. }
  16768. },
  16769. feral: {
  16770. height: math.unit(18 + 8 / 12, "feet"),
  16771. weight: math.unit(576, "lb"),
  16772. name: "Feral",
  16773. image: {
  16774. source: "./media/characters/embra/feral.svg",
  16775. extra: 152 / 137,
  16776. bottom: 0.037
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(9 + 2 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16790. {
  16791. anthro: {
  16792. height: math.unit(10 + 9 / 12, "feet"),
  16793. weight: math.unit(224, "lb"),
  16794. name: "Anthro",
  16795. image: {
  16796. source: "./media/characters/grottos/anthro.svg",
  16797. extra: 350 / 332,
  16798. bottom: 0.045
  16799. }
  16800. },
  16801. feral: {
  16802. height: math.unit(20 + 7 / 12, "feet"),
  16803. weight: math.unit(629, "lb"),
  16804. name: "Feral",
  16805. image: {
  16806. source: "./media/characters/grottos/feral.svg",
  16807. extra: 207 / 190,
  16808. bottom: 0.05
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(10 + 9 / 12, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16822. {
  16823. anthro: {
  16824. height: math.unit(9 + 6 / 12, "feet"),
  16825. weight: math.unit(298, "lb"),
  16826. name: "Anthro",
  16827. image: {
  16828. source: "./media/characters/frifna/anthro.svg",
  16829. extra: 282 / 269,
  16830. bottom: 0.015
  16831. }
  16832. },
  16833. feral: {
  16834. height: math.unit(16 + 2 / 12, "feet"),
  16835. weight: math.unit(624, "lb"),
  16836. name: "Feral",
  16837. image: {
  16838. source: "./media/characters/frifna/feral.svg"
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(9 + 6 / 12, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(6 + 2 / 12, "feet"),
  16855. weight: math.unit(168, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/elise/front.svg",
  16859. extra: 276 / 271
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6 + 2 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(5 + 10 / 12, "feet"),
  16876. weight: math.unit(210, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/glade/front.svg",
  16880. extra: 258 / 247,
  16881. bottom: 0.008
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(5 + 10 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(5 + 10 / 12, "feet"),
  16898. weight: math.unit(129, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/rina/front.svg",
  16902. extra: 266 / 255,
  16903. bottom: 0.005
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(5 + 10 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(6 + 1 / 12, "feet"),
  16920. weight: math.unit(192, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/veronica/front.svg",
  16924. extra: 319 / 309,
  16925. bottom: 0.005
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(6 + 1 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(9 + 3 / 12, "feet"),
  16942. weight: math.unit(1100, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/braxton/front.svg",
  16946. extra: 1057 / 984,
  16947. bottom: 0.05
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(9 + 3 / 12, "feet")
  16955. },
  16956. {
  16957. name: "Giant",
  16958. height: math.unit(300, "feet"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(700, "feet")
  16964. },
  16965. {
  16966. name: "Megamacro",
  16967. height: math.unit(6000, "feet")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6 + 7 / 12, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/blue-feyonics/front.svg",
  16980. extra: 1403 / 1306,
  16981. bottom: 0.047
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(6 + 7 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(1.8, "meters"),
  16998. weight: math.unit(60, "kg"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/maxwell/front.svg",
  17002. extra: 2060 / 1873
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Micro",
  17009. height: math.unit(1, "mm")
  17010. },
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(1.8, "meter"),
  17014. default: true
  17015. },
  17016. {
  17017. name: "Macro",
  17018. height: math.unit(30, "meters")
  17019. },
  17020. {
  17021. name: "Megamacro",
  17022. height: math.unit(10, "km")
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/jack/front.svg",
  17035. extra: 1754 / 1640,
  17036. bottom: 0.01
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(80000, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Max size",
  17048. height: math.unit(10, "lightyears")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17054. {
  17055. urban: {
  17056. height: math.unit(5, "feet"),
  17057. weight: math.unit(240, "lb"),
  17058. name: "Urban",
  17059. image: {
  17060. source: "./media/characters/cafat/urban.svg",
  17061. extra: 1223/1126,
  17062. bottom: 205/1428
  17063. }
  17064. },
  17065. summer: {
  17066. height: math.unit(5, "feet"),
  17067. weight: math.unit(240, "lb"),
  17068. name: "Summer",
  17069. image: {
  17070. source: "./media/characters/cafat/summer.svg",
  17071. extra: 1223/1126,
  17072. bottom: 205/1428
  17073. }
  17074. },
  17075. winter: {
  17076. height: math.unit(5, "feet"),
  17077. weight: math.unit(240, "lb"),
  17078. name: "Winter",
  17079. image: {
  17080. source: "./media/characters/cafat/winter.svg",
  17081. extra: 1223/1126,
  17082. bottom: 205/1428
  17083. }
  17084. },
  17085. lingerie: {
  17086. height: math.unit(5, "feet"),
  17087. weight: math.unit(240, "lb"),
  17088. name: "Lingerie",
  17089. image: {
  17090. source: "./media/characters/cafat/lingerie.svg",
  17091. extra: 1223/1126,
  17092. bottom: 205/1428
  17093. }
  17094. },
  17095. upright: {
  17096. height: math.unit(6.3, "feet"),
  17097. weight: math.unit(240, "lb"),
  17098. name: "Upright",
  17099. image: {
  17100. source: "./media/characters/cafat/upright.svg",
  17101. bottom: 0.01
  17102. }
  17103. },
  17104. uprightFull: {
  17105. height: math.unit(6.3, "feet"),
  17106. weight: math.unit(240, "lb"),
  17107. name: "Upright (Full)",
  17108. image: {
  17109. source: "./media/characters/cafat/upright-full.svg",
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Small",
  17117. height: math.unit(5, "feet"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Large",
  17122. height: math.unit(13, "feet")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/verin-raharra/front.svg",
  17135. extra: 5019 / 4835,
  17136. bottom: 0.023
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(7 + 5 / 12, "feet"),
  17144. default: true
  17145. },
  17146. {
  17147. name: "Upsized",
  17148. height: math.unit(20, "feet")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(7, "feet"),
  17157. weight: math.unit(230, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/nakata/front.svg",
  17161. extra: 1.005,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(7, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Big",
  17174. height: math.unit(14, "feet")
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(400, "feet")
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(4.91, "feet"),
  17187. weight: math.unit(100, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/lily/front.svg",
  17191. extra: 1585 / 1415,
  17192. bottom: 0.02
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(4.91, "feet"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17206. {
  17207. laying: {
  17208. height: math.unit(4 + 4 / 12, "feet"),
  17209. weight: math.unit(600, "lb"),
  17210. name: "Laying",
  17211. image: {
  17212. source: "./media/characters/sheila/laying.svg",
  17213. extra: 1333 / 1265,
  17214. bottom: 0.16
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(4 + 4 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(190, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/sax/front.svg",
  17235. extra: 1187 / 973,
  17236. bottom: 0.042
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Micro",
  17243. height: math.unit(4, "inches"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(6, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/pandora/front.svg",
  17257. extra: 2720 / 2556,
  17258. bottom: 0.015
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(6, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/pandora/back.svg",
  17267. extra: 2720 / 2556,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. beans: {
  17272. height: math.unit(6 / 8, "feet"),
  17273. name: "Beans",
  17274. image: {
  17275. source: "./media/characters/pandora/beans.svg"
  17276. }
  17277. },
  17278. collar: {
  17279. height: math.unit(0.31, "feet"),
  17280. name: "Collar",
  17281. image: {
  17282. source: "./media/characters/pandora/collar.svg"
  17283. }
  17284. },
  17285. skirt: {
  17286. height: math.unit(6, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Skirt",
  17289. image: {
  17290. source: "./media/characters/pandora/skirt.svg",
  17291. extra: 1622 / 1525,
  17292. bottom: 0.015
  17293. }
  17294. },
  17295. hoodie: {
  17296. height: math.unit(6, "feet"),
  17297. weight: math.unit(150, "lb"),
  17298. name: "Hoodie",
  17299. image: {
  17300. source: "./media/characters/pandora/hoodie.svg",
  17301. extra: 1622 / 1525,
  17302. bottom: 0.015
  17303. }
  17304. },
  17305. casual: {
  17306. height: math.unit(6, "feet"),
  17307. weight: math.unit(150, "lb"),
  17308. name: "Casual",
  17309. image: {
  17310. source: "./media/characters/pandora/casual.svg",
  17311. extra: 1622 / 1525,
  17312. bottom: 0.015
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(6, "feet")
  17320. },
  17321. {
  17322. name: "Big Steppy",
  17323. height: math.unit(1, "km"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Galactic Steppy",
  17328. height: math.unit(2, "gigameters")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17334. {
  17335. side: {
  17336. height: math.unit(10, "feet"),
  17337. weight: math.unit(800, "kg"),
  17338. name: "Side",
  17339. image: {
  17340. source: "./media/characters/venio-darcony/side.svg",
  17341. extra: 1373 / 1003,
  17342. bottom: 0.037
  17343. }
  17344. },
  17345. front: {
  17346. height: math.unit(19, "feet"),
  17347. weight: math.unit(800, "kg"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/venio-darcony/front.svg"
  17351. }
  17352. },
  17353. back: {
  17354. height: math.unit(19, "feet"),
  17355. weight: math.unit(800, "kg"),
  17356. name: "Back",
  17357. image: {
  17358. source: "./media/characters/venio-darcony/back.svg"
  17359. }
  17360. },
  17361. sideNsfw: {
  17362. height: math.unit(10, "feet"),
  17363. weight: math.unit(800, "kg"),
  17364. name: "Side (NSFW)",
  17365. image: {
  17366. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17367. extra: 1373 / 1003,
  17368. bottom: 0.037
  17369. }
  17370. },
  17371. frontNsfw: {
  17372. height: math.unit(19, "feet"),
  17373. weight: math.unit(800, "kg"),
  17374. name: "Front (NSFW)",
  17375. image: {
  17376. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17377. }
  17378. },
  17379. backNsfw: {
  17380. height: math.unit(19, "feet"),
  17381. weight: math.unit(800, "kg"),
  17382. name: "Back (NSFW)",
  17383. image: {
  17384. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17385. }
  17386. },
  17387. sideArmored: {
  17388. height: math.unit(10, "feet"),
  17389. weight: math.unit(800, "kg"),
  17390. name: "Side (Armored)",
  17391. image: {
  17392. source: "./media/characters/venio-darcony/side-armored.svg",
  17393. extra: 1373 / 1003,
  17394. bottom: 0.037
  17395. }
  17396. },
  17397. frontArmored: {
  17398. height: math.unit(19, "feet"),
  17399. weight: math.unit(900, "kg"),
  17400. name: "Front (Armored)",
  17401. image: {
  17402. source: "./media/characters/venio-darcony/front-armored.svg"
  17403. }
  17404. },
  17405. backArmored: {
  17406. height: math.unit(19, "feet"),
  17407. weight: math.unit(900, "kg"),
  17408. name: "Back (Armored)",
  17409. image: {
  17410. source: "./media/characters/venio-darcony/back-armored.svg"
  17411. }
  17412. },
  17413. sword: {
  17414. height: math.unit(10, "feet"),
  17415. weight: math.unit(50, "lb"),
  17416. name: "Sword",
  17417. image: {
  17418. source: "./media/characters/venio-darcony/sword.svg"
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(10, "feet")
  17426. },
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(130, "feet"),
  17430. default: true
  17431. },
  17432. {
  17433. name: "Macro+",
  17434. height: math.unit(240, "feet")
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/veski/front.svg",
  17447. extra: 1299 / 1225,
  17448. bottom: 0.04
  17449. }
  17450. },
  17451. back: {
  17452. height: math.unit(6, "feet"),
  17453. weight: math.unit(150, "lb"),
  17454. name: "Back",
  17455. image: {
  17456. source: "./media/characters/veski/back.svg",
  17457. extra: 1299 / 1225,
  17458. bottom: 0.008
  17459. }
  17460. },
  17461. maw: {
  17462. height: math.unit(1.5 * 1.21, "feet"),
  17463. name: "Maw",
  17464. image: {
  17465. source: "./media/characters/veski/maw.svg"
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Macro",
  17472. height: math.unit(2, "km"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(5 + 7 / 12, "feet"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/isabelle/front.svg",
  17485. extra: 2130 / 1976,
  17486. bottom: 0.05
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Supermicro",
  17493. height: math.unit(10, "micrometers")
  17494. },
  17495. {
  17496. name: "Micro",
  17497. height: math.unit(1, "inch")
  17498. },
  17499. {
  17500. name: "Tiny",
  17501. height: math.unit(5, "inches")
  17502. },
  17503. {
  17504. name: "Standard",
  17505. height: math.unit(5 + 7 / 12, "inches")
  17506. },
  17507. {
  17508. name: "Macro",
  17509. height: math.unit(80, "meters"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Megamacro",
  17514. height: math.unit(250, "meters")
  17515. },
  17516. {
  17517. name: "Gigamacro",
  17518. height: math.unit(5, "km")
  17519. },
  17520. {
  17521. name: "Cosmic",
  17522. height: math.unit(2.5e6, "miles")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6, "feet"),
  17531. weight: math.unit(150, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/hanzo/front.svg",
  17535. extra: 374 / 344,
  17536. bottom: 0.02
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(8, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(7, "feet"),
  17553. weight: math.unit(130, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/anna/front.svg",
  17557. extra: 169 / 145,
  17558. bottom: 0.06
  17559. }
  17560. },
  17561. full: {
  17562. height: math.unit(4.96, "feet"),
  17563. weight: math.unit(220, "lb"),
  17564. name: "Full",
  17565. image: {
  17566. source: "./media/characters/anna/full.svg",
  17567. extra: 138 / 114,
  17568. bottom: 0.15
  17569. }
  17570. },
  17571. tongue: {
  17572. height: math.unit(2.53, "feet"),
  17573. name: "Tongue",
  17574. image: {
  17575. source: "./media/characters/anna/tongue.svg"
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(7, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(7, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/ian-corvid/front.svg",
  17596. extra: 150 / 142,
  17597. bottom: 0.02
  17598. }
  17599. },
  17600. back: {
  17601. height: math.unit(7, "feet"),
  17602. weight: math.unit(150, "lb"),
  17603. name: "Back",
  17604. image: {
  17605. source: "./media/characters/ian-corvid/back.svg",
  17606. extra: 150 / 143,
  17607. bottom: 0.01
  17608. }
  17609. },
  17610. stomping: {
  17611. height: math.unit(7, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Stomping",
  17614. image: {
  17615. source: "./media/characters/ian-corvid/stomping.svg",
  17616. extra: 76 / 72
  17617. }
  17618. },
  17619. sitting: {
  17620. height: math.unit(7 / 1.8, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Sitting",
  17623. image: {
  17624. source: "./media/characters/ian-corvid/sitting.svg",
  17625. extra: 1400 / 1269,
  17626. bottom: 0.15
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Tiny Microw",
  17633. height: math.unit(1, "inch")
  17634. },
  17635. {
  17636. name: "Microw",
  17637. height: math.unit(6, "inches")
  17638. },
  17639. {
  17640. name: "Crow",
  17641. height: math.unit(7 + 1 / 12, "feet"),
  17642. default: true
  17643. },
  17644. {
  17645. name: "Macrow",
  17646. height: math.unit(176, "feet")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(5 + 7 / 12, "feet"),
  17655. weight: math.unit(147, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/natalie-kellon/front.svg",
  17659. extra: 1214 / 1141,
  17660. bottom: 0.02
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Micro",
  17667. height: math.unit(1 / 16, "inch")
  17668. },
  17669. {
  17670. name: "Tiny",
  17671. height: math.unit(4, "inches")
  17672. },
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 7 / 12, "feet"),
  17676. default: true
  17677. },
  17678. {
  17679. name: "Amazon",
  17680. height: math.unit(12, "feet")
  17681. },
  17682. {
  17683. name: "Giantess",
  17684. height: math.unit(160, "meters")
  17685. },
  17686. {
  17687. name: "Titaness",
  17688. height: math.unit(800, "meters")
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(6, "feet"),
  17697. weight: math.unit(150, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/alluria/front.svg",
  17701. extra: 806 / 738,
  17702. bottom: 0.01
  17703. }
  17704. },
  17705. side: {
  17706. height: math.unit(6, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Side",
  17709. image: {
  17710. source: "./media/characters/alluria/side.svg",
  17711. extra: 800 / 750,
  17712. }
  17713. },
  17714. back: {
  17715. height: math.unit(6, "feet"),
  17716. weight: math.unit(150, "lb"),
  17717. name: "Back",
  17718. image: {
  17719. source: "./media/characters/alluria/back.svg",
  17720. extra: 806 / 738,
  17721. }
  17722. },
  17723. frontMaid: {
  17724. height: math.unit(6, "feet"),
  17725. weight: math.unit(150, "lb"),
  17726. name: "Front (Maid)",
  17727. image: {
  17728. source: "./media/characters/alluria/front-maid.svg",
  17729. extra: 806 / 738,
  17730. bottom: 0.01
  17731. }
  17732. },
  17733. sideMaid: {
  17734. height: math.unit(6, "feet"),
  17735. weight: math.unit(150, "lb"),
  17736. name: "Side (Maid)",
  17737. image: {
  17738. source: "./media/characters/alluria/side-maid.svg",
  17739. extra: 800 / 750,
  17740. bottom: 0.005
  17741. }
  17742. },
  17743. backMaid: {
  17744. height: math.unit(6, "feet"),
  17745. weight: math.unit(150, "lb"),
  17746. name: "Back (Maid)",
  17747. image: {
  17748. source: "./media/characters/alluria/back-maid.svg",
  17749. extra: 806 / 738,
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(6, "inches"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/kyle/front.svg",
  17770. extra: 1069 / 962,
  17771. bottom: 77.228 / 1727.45
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Macro",
  17778. height: math.unit(150, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(6, "feet"),
  17788. weight: math.unit(300, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/duncan/front.svg",
  17792. extra: 1650 / 1482,
  17793. bottom: 0.05
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(100, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(5 + 4 / 12, "feet"),
  17810. weight: math.unit(220, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/memory/front.svg",
  17814. extra: 3641 / 3545,
  17815. bottom: 0.03
  17816. }
  17817. },
  17818. back: {
  17819. height: math.unit(5 + 4 / 12, "feet"),
  17820. weight: math.unit(220, "lb"),
  17821. name: "Back",
  17822. image: {
  17823. source: "./media/characters/memory/back.svg",
  17824. extra: 3641 / 3545,
  17825. bottom: 0.025
  17826. }
  17827. },
  17828. frontSkirt: {
  17829. height: math.unit(5 + 4 / 12, "feet"),
  17830. weight: math.unit(220, "lb"),
  17831. name: "Front (Skirt)",
  17832. image: {
  17833. source: "./media/characters/memory/front-skirt.svg",
  17834. extra: 3641 / 3545,
  17835. bottom: 0.03
  17836. }
  17837. },
  17838. frontDress: {
  17839. height: math.unit(5 + 4 / 12, "feet"),
  17840. weight: math.unit(220, "lb"),
  17841. name: "Front (Dress)",
  17842. image: {
  17843. source: "./media/characters/memory/front-dress.svg",
  17844. extra: 3641 / 3545,
  17845. bottom: 0.03
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Micro",
  17852. height: math.unit(6, "inches"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(5 + 4 / 12, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(4 + 11 / 12, "feet"),
  17866. weight: math.unit(100, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/luno/front.svg",
  17870. extra: 1535 / 1487,
  17871. bottom: 0.03
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Micro",
  17878. height: math.unit(3, "inches")
  17879. },
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(4 + 11 / 12, "feet"),
  17883. default: true
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(300, "feet")
  17888. },
  17889. {
  17890. name: "Megamacro",
  17891. height: math.unit(700, "miles")
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(6 + 2 / 12, "feet"),
  17900. weight: math.unit(170, "lb"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/jamesy/front.svg",
  17904. extra: 440 / 382,
  17905. bottom: 0.005
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Micro",
  17912. height: math.unit(3, "inches")
  17913. },
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(6 + 2 / 12, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Macro",
  17921. height: math.unit(300, "feet")
  17922. },
  17923. {
  17924. name: "Megamacro",
  17925. height: math.unit(700, "miles")
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(160, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/mark/front.svg",
  17938. extra: 3300 / 3100,
  17939. bottom: 136.42 / 3440.47
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(120, "meters")
  17947. },
  17948. {
  17949. name: "Bigger Macro",
  17950. height: math.unit(350, "meters")
  17951. },
  17952. {
  17953. name: "Megamacro",
  17954. height: math.unit(8, "km"),
  17955. default: true
  17956. },
  17957. {
  17958. name: "Continental",
  17959. height: math.unit(4550, "km")
  17960. },
  17961. {
  17962. name: "Planetary",
  17963. height: math.unit(65000, "km")
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(400, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/mac/front.svg",
  17976. extra: 1048 / 987.7,
  17977. bottom: 60 / 1107.6,
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(500, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(5 + 2 / 12, "feet"),
  17994. weight: math.unit(190, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/bari/front.svg",
  17998. extra: 3156 / 2880,
  17999. bottom: 0.03
  18000. }
  18001. },
  18002. back: {
  18003. height: math.unit(5 + 2 / 12, "feet"),
  18004. weight: math.unit(190, "lb"),
  18005. name: "Back",
  18006. image: {
  18007. source: "./media/characters/bari/back.svg",
  18008. extra: 3260 / 2834,
  18009. bottom: 0.025
  18010. }
  18011. },
  18012. frontPlush: {
  18013. height: math.unit(5 + 2 / 12, "feet"),
  18014. weight: math.unit(190, "lb"),
  18015. name: "Front (Plush)",
  18016. image: {
  18017. source: "./media/characters/bari/front-plush.svg",
  18018. extra: 1112 / 1061,
  18019. bottom: 0.002
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Micro",
  18026. height: math.unit(3, "inches")
  18027. },
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Macro",
  18035. height: math.unit(20, "feet")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6 + 1 / 12, "feet"),
  18044. weight: math.unit(275, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/hunter-misha-raven/front.svg"
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Mortal",
  18054. height: math.unit(6 + 1 / 12, "feet")
  18055. },
  18056. {
  18057. name: "Divine",
  18058. height: math.unit(1.12134e34, "parsecs"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6 + 3 / 12, "feet"),
  18068. weight: math.unit(220, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/max-calore/front.svg",
  18072. extra: 1700 / 1648,
  18073. bottom: 0.01
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(6 + 3 / 12, "feet"),
  18078. weight: math.unit(220, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/max-calore/back.svg",
  18082. extra: 1700 / 1648,
  18083. bottom: 0.01
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(6 + 3 / 12, "feet"),
  18091. default: true
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18097. {
  18098. side: {
  18099. height: math.unit(2 + 8 / 12, "feet"),
  18100. weight: math.unit(99, "lb"),
  18101. name: "Side",
  18102. image: {
  18103. source: "./media/characters/aspen/side.svg",
  18104. extra: 152 / 138,
  18105. bottom: 0.032
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(2 + 8 / 12, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18119. {
  18120. side: {
  18121. height: math.unit(3 + 2 / 12, "feet"),
  18122. weight: math.unit(224, "lb"),
  18123. name: "Side",
  18124. image: {
  18125. source: "./media/characters/sheila-feral-wolf/side.svg",
  18126. extra: 179 / 166,
  18127. bottom: 0.03
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(3 + 2 / 12, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18141. {
  18142. side: {
  18143. height: math.unit(1 + 9 / 12, "feet"),
  18144. weight: math.unit(38, "lb"),
  18145. name: "Side",
  18146. image: {
  18147. source: "./media/characters/michelle/side.svg",
  18148. extra: 147 / 136.7,
  18149. bottom: 0.03
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(1 + 9 / 12, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(1.54, "feet"),
  18166. weight: math.unit(50, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/nino/front.svg"
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(1.54, "feet"),
  18177. default: true
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(1.49, "feet"),
  18186. weight: math.unit(45, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/viola/front.svg"
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(1.49, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(6 + 5 / 12, "feet"),
  18206. weight: math.unit(580, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/atlas/front.svg",
  18210. extra: 298.5 / 290,
  18211. bottom: 0.015
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(6 + 5 / 12, "feet"),
  18219. default: true
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18225. {
  18226. side: {
  18227. height: math.unit(15.6, "inches"),
  18228. weight: math.unit(10, "lb"),
  18229. name: "Side",
  18230. image: {
  18231. source: "./media/characters/davy/side.svg",
  18232. extra: 200 / 170,
  18233. bottom: 0.01
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(15.6, "inches"),
  18241. default: true
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18247. {
  18248. side: {
  18249. height: math.unit(4 + 8 / 12, "feet"),
  18250. weight: math.unit(166, "lb"),
  18251. name: "Side",
  18252. image: {
  18253. source: "./media/characters/fiona/side.svg",
  18254. extra: 232 / 220,
  18255. bottom: 0.03
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(4 + 8 / 12, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18269. {
  18270. front: {
  18271. height: math.unit(26, "inches"),
  18272. weight: math.unit(35, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/lyla/front.svg",
  18276. bottom: 0.1
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(3, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18290. {
  18291. side: {
  18292. height: math.unit(1.8, "feet"),
  18293. weight: math.unit(44, "lb"),
  18294. name: "Side",
  18295. image: {
  18296. source: "./media/characters/perseus/side.svg",
  18297. bottom: 0.21
  18298. }
  18299. },
  18300. },
  18301. [
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(1.8, "feet"),
  18305. default: true
  18306. },
  18307. ]
  18308. ))
  18309. characterMakers.push(() => makeCharacter(
  18310. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18311. {
  18312. side: {
  18313. height: math.unit(4 + 2 / 12, "feet"),
  18314. weight: math.unit(20, "lb"),
  18315. name: "Side",
  18316. image: {
  18317. source: "./media/characters/remus/side.svg"
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Normal",
  18324. height: math.unit(4 + 2 / 12, "feet"),
  18325. default: true
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(4 + 11 / 12, "feet"),
  18334. weight: math.unit(114, "lb"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/raf/front.svg",
  18338. extra: 1504/1339,
  18339. bottom: 26/1530
  18340. }
  18341. },
  18342. side: {
  18343. height: math.unit(4 + 11 / 12, "feet"),
  18344. weight: math.unit(114, "lb"),
  18345. name: "Side",
  18346. image: {
  18347. source: "./media/characters/raf/side.svg",
  18348. extra: 1466/1316,
  18349. bottom: 29/1495
  18350. }
  18351. },
  18352. paw: {
  18353. height: math.unit(1.45, "feet"),
  18354. name: "Paw",
  18355. image: {
  18356. source: "./media/characters/raf/paw.svg"
  18357. },
  18358. extraAttributes: {
  18359. "toeSize": {
  18360. name: "Toe Size",
  18361. power: 2,
  18362. type: "area",
  18363. base: math.unit(0.004, "m^2")
  18364. },
  18365. "padSize": {
  18366. name: "Pad Size",
  18367. power: 2,
  18368. type: "area",
  18369. base: math.unit(0.04, "m^2")
  18370. },
  18371. "footSize": {
  18372. name: "Foot Size",
  18373. power: 2,
  18374. type: "area",
  18375. base: math.unit(0.08, "m^2")
  18376. },
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(2, "inches")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(4 + 11 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(70, "feet")
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18398. {
  18399. front: {
  18400. height: math.unit(1.5, "meters"),
  18401. weight: math.unit(68, "kg"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/liam-einarr/front.svg",
  18405. extra: 2822 / 2666
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(1.5, "meters"),
  18410. weight: math.unit(68, "kg"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/liam-einarr/back.svg",
  18414. extra: 2822 / 2666,
  18415. bottom: 0.015
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(1.5, "meters"),
  18423. default: true
  18424. },
  18425. {
  18426. name: "Macro",
  18427. height: math.unit(150, "meters")
  18428. },
  18429. {
  18430. name: "Megamacro",
  18431. height: math.unit(35, "km")
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(75, "kg"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/linda/front.svg",
  18444. extra: 930 / 874,
  18445. bottom: 0.004
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(6, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(6 + 8 / 12, "feet"),
  18462. weight: math.unit(220, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/caylex/front.svg",
  18466. extra: 821 / 772,
  18467. bottom: 0.07
  18468. }
  18469. },
  18470. back: {
  18471. height: math.unit(6 + 8 / 12, "feet"),
  18472. weight: math.unit(220, "lb"),
  18473. name: "Back",
  18474. image: {
  18475. source: "./media/characters/caylex/back.svg",
  18476. extra: 821 / 772,
  18477. bottom: 0.022
  18478. }
  18479. },
  18480. hand: {
  18481. height: math.unit(1.25, "feet"),
  18482. name: "Hand",
  18483. image: {
  18484. source: "./media/characters/caylex/hand.svg"
  18485. }
  18486. },
  18487. foot: {
  18488. height: math.unit(1.6, "feet"),
  18489. name: "Foot",
  18490. image: {
  18491. source: "./media/characters/caylex/foot.svg"
  18492. }
  18493. },
  18494. armored: {
  18495. height: math.unit(6 + 8 / 12, "feet"),
  18496. weight: math.unit(250, "lb"),
  18497. name: "Armored",
  18498. image: {
  18499. source: "./media/characters/caylex/armored.svg",
  18500. extra: 1420 / 1310,
  18501. bottom: 0.045
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(6 + 8 / 12, "feet"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Normal+",
  18513. height: math.unit(12, "feet")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(7 + 6 / 12, "feet"),
  18522. weight: math.unit(288, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/alana/front.svg",
  18526. extra: 679 / 653,
  18527. bottom: 22.5 / 701
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(7 + 6 / 12, "feet")
  18535. },
  18536. {
  18537. name: "Large",
  18538. height: math.unit(50, "feet")
  18539. },
  18540. {
  18541. name: "Macro",
  18542. height: math.unit(100, "feet"),
  18543. default: true
  18544. },
  18545. {
  18546. name: "Macro+",
  18547. height: math.unit(200, "feet")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6 + 1 / 12, "feet"),
  18556. weight: math.unit(210, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/hasani/front.svg",
  18560. extra: 244 / 232,
  18561. bottom: 0.01
  18562. }
  18563. },
  18564. back: {
  18565. height: math.unit(6 + 1 / 12, "feet"),
  18566. weight: math.unit(210, "lb"),
  18567. name: "Back",
  18568. image: {
  18569. source: "./media/characters/hasani/back.svg",
  18570. extra: 244 / 232,
  18571. bottom: 0.01
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(6 + 1 / 12, "feet")
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(175, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(1.82, "meters"),
  18592. weight: math.unit(140, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/nita/front.svg",
  18596. extra: 2473 / 2363,
  18597. bottom: 0.01
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(1.82, "m")
  18605. },
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(300, "m")
  18609. },
  18610. {
  18611. name: "Mistake Canon",
  18612. height: math.unit(0.5, "miles"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Big Mistake",
  18617. height: math.unit(13, "miles")
  18618. },
  18619. {
  18620. name: "Playing God",
  18621. height: math.unit(2450, "miles")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(4, "feet"),
  18630. weight: math.unit(120, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/shiriko/front.svg",
  18634. extra: 970/934,
  18635. bottom: 5/975
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(4, "feet"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(6, "feet"),
  18652. name: "front",
  18653. image: {
  18654. source: "./media/characters/deja/front.svg",
  18655. extra: 926 / 840,
  18656. bottom: 0.07
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Planck Length",
  18663. height: math.unit(1.6e-35, "meters")
  18664. },
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(30.48, "meters"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Universal",
  18672. height: math.unit(8.8e26, "meters")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18678. {
  18679. side: {
  18680. height: math.unit(8, "feet"),
  18681. weight: math.unit(6300, "lb"),
  18682. name: "Side",
  18683. image: {
  18684. source: "./media/characters/anima/side.svg",
  18685. bottom: 0.035
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(8, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(8, "feet"),
  18702. weight: math.unit(350, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/bianca/front.svg",
  18706. extra: 234 / 225,
  18707. bottom: 0.03
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(8, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(11 + 5/12, "feet"),
  18724. weight: math.unit(1200, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/adinia/front.svg",
  18728. extra: 1767/1641,
  18729. bottom: 44/1811
  18730. },
  18731. extraAttributes: {
  18732. "energyIntake": {
  18733. name: "Energy Intake",
  18734. power: 3,
  18735. type: "energy",
  18736. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18737. },
  18738. }
  18739. },
  18740. back: {
  18741. height: math.unit(11 + 5/12, "feet"),
  18742. weight: math.unit(1200, "lb"),
  18743. name: "Back",
  18744. image: {
  18745. source: "./media/characters/adinia/back.svg",
  18746. extra: 1834/1684,
  18747. bottom: 14/1848
  18748. },
  18749. extraAttributes: {
  18750. "energyIntake": {
  18751. name: "Energy Intake",
  18752. power: 3,
  18753. type: "energy",
  18754. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18755. },
  18756. }
  18757. },
  18758. maw: {
  18759. height: math.unit(3.79, "feet"),
  18760. name: "Maw",
  18761. image: {
  18762. source: "./media/characters/adinia/maw.svg"
  18763. }
  18764. },
  18765. rump: {
  18766. height: math.unit(4.6, "feet"),
  18767. name: "Rump",
  18768. image: {
  18769. source: "./media/characters/adinia/rump.svg"
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(11 + 5 / 12, "feet"),
  18777. default: true
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(3, "meters"),
  18786. weight: math.unit(200, "kg"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/lykasa/front.svg",
  18790. extra: 1076 / 976,
  18791. bottom: 0.06
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(3, "meters")
  18799. },
  18800. {
  18801. name: "Kaiju",
  18802. height: math.unit(120, "meters"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Mega Kaiju",
  18807. height: math.unit(240, "km")
  18808. },
  18809. {
  18810. name: "Giga Kaiju",
  18811. height: math.unit(400, "megameters")
  18812. },
  18813. {
  18814. name: "Tera Kaiju",
  18815. height: math.unit(800, "gigameters")
  18816. },
  18817. {
  18818. name: "Kaiju Dragon Goddess",
  18819. height: math.unit(26, "zettaparsecs")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18825. {
  18826. side: {
  18827. height: math.unit(283 / 124 * 6, "feet"),
  18828. weight: math.unit(35000, "lb"),
  18829. name: "Side",
  18830. image: {
  18831. source: "./media/characters/malfaren/side.svg",
  18832. extra: 1310/529,
  18833. bottom: 24/1334
  18834. }
  18835. },
  18836. front: {
  18837. height: math.unit(22.36, "feet"),
  18838. weight: math.unit(35000, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/malfaren/front.svg",
  18842. extra: 1237/1115,
  18843. bottom: 32/1269
  18844. }
  18845. },
  18846. maw: {
  18847. height: math.unit(6.9, "feet"),
  18848. name: "Maw",
  18849. image: {
  18850. source: "./media/characters/malfaren/maw.svg"
  18851. }
  18852. },
  18853. dick: {
  18854. height: math.unit(6.19, "feet"),
  18855. name: "Dick",
  18856. image: {
  18857. source: "./media/characters/malfaren/dick.svg"
  18858. }
  18859. },
  18860. eye: {
  18861. height: math.unit(0.69, "feet"),
  18862. name: "Eye",
  18863. image: {
  18864. source: "./media/characters/malfaren/eye.svg"
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Big",
  18871. height: math.unit(283 / 162 * 6, "feet"),
  18872. },
  18873. {
  18874. name: "Bigger",
  18875. height: math.unit(283 / 124 * 6, "feet")
  18876. },
  18877. {
  18878. name: "Massive",
  18879. height: math.unit(283 / 92 * 6, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "👀💦",
  18884. height: math.unit(283 / 73 * 6, "feet"),
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(1.7, "m"),
  18893. weight: math.unit(70, "kg"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/kernel/front.svg",
  18897. extra: 222 / 210,
  18898. bottom: 0.007
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Nano",
  18905. height: math.unit(17, "micrometers")
  18906. },
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(1.7, "mm")
  18910. },
  18911. {
  18912. name: "Small",
  18913. height: math.unit(1.7, "cm")
  18914. },
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(1.7, "m"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(1.75, "meters"),
  18927. weight: math.unit(65, "kg"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/jayne-folest/front.svg",
  18931. extra: 2115 / 2007,
  18932. bottom: 0.02
  18933. }
  18934. },
  18935. back: {
  18936. height: math.unit(1.75, "meters"),
  18937. weight: math.unit(65, "kg"),
  18938. name: "Back",
  18939. image: {
  18940. source: "./media/characters/jayne-folest/back.svg",
  18941. extra: 2115 / 2007,
  18942. bottom: 0.005
  18943. }
  18944. },
  18945. frontClothed: {
  18946. height: math.unit(1.75, "meters"),
  18947. weight: math.unit(65, "kg"),
  18948. name: "Front (Clothed)",
  18949. image: {
  18950. source: "./media/characters/jayne-folest/front-clothed.svg",
  18951. extra: 2115 / 2007,
  18952. bottom: 0.035
  18953. }
  18954. },
  18955. hand: {
  18956. height: math.unit(1 / 1.260, "feet"),
  18957. name: "Hand",
  18958. image: {
  18959. source: "./media/characters/jayne-folest/hand.svg"
  18960. }
  18961. },
  18962. foot: {
  18963. height: math.unit(1 / 0.918, "feet"),
  18964. name: "Foot",
  18965. image: {
  18966. source: "./media/characters/jayne-folest/foot.svg"
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Micro",
  18973. height: math.unit(4, "cm")
  18974. },
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(1.75, "meters")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(47.5, "meters"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(180, "cm"),
  18991. weight: math.unit(70, "kg"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/algier/front.svg",
  18995. extra: 596 / 572,
  18996. bottom: 0.04
  18997. }
  18998. },
  18999. back: {
  19000. height: math.unit(180, "cm"),
  19001. weight: math.unit(70, "kg"),
  19002. name: "Back",
  19003. image: {
  19004. source: "./media/characters/algier/back.svg",
  19005. extra: 596 / 572,
  19006. bottom: 0.025
  19007. }
  19008. },
  19009. frontdressed: {
  19010. height: math.unit(180, "cm"),
  19011. weight: math.unit(150, "kg"),
  19012. name: "Front-dressed",
  19013. image: {
  19014. source: "./media/characters/algier/front-dressed.svg",
  19015. extra: 596 / 572,
  19016. bottom: 0.038
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(5, "cm")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(180, "cm"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(64, "m")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19038. {
  19039. upright: {
  19040. height: math.unit(7, "feet"),
  19041. weight: math.unit(300, "lb"),
  19042. name: "Upright",
  19043. image: {
  19044. source: "./media/characters/pretzel/upright.svg",
  19045. extra: 534 / 522,
  19046. bottom: 0.065
  19047. }
  19048. },
  19049. sprawling: {
  19050. height: math.unit(3.75, "feet"),
  19051. weight: math.unit(300, "lb"),
  19052. name: "Sprawling",
  19053. image: {
  19054. source: "./media/characters/pretzel/sprawling.svg",
  19055. extra: 314 / 281,
  19056. bottom: 0.1
  19057. }
  19058. },
  19059. tongue: {
  19060. height: math.unit(2, "feet"),
  19061. name: "Tongue",
  19062. image: {
  19063. source: "./media/characters/pretzel/tongue.svg"
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(7, "feet"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Oversized",
  19075. height: math.unit(15, "feet")
  19076. },
  19077. {
  19078. name: "Huge",
  19079. height: math.unit(30, "feet")
  19080. },
  19081. {
  19082. name: "Macro",
  19083. height: math.unit(250, "feet")
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19089. {
  19090. sideFront: {
  19091. height: math.unit(5 + 2 / 12, "feet"),
  19092. weight: math.unit(120, "lb"),
  19093. name: "Front Side",
  19094. image: {
  19095. source: "./media/characters/roxi/side-front.svg",
  19096. extra: 2924 / 2717,
  19097. bottom: 0.08
  19098. }
  19099. },
  19100. sideBack: {
  19101. height: math.unit(5 + 2 / 12, "feet"),
  19102. weight: math.unit(120, "lb"),
  19103. name: "Back Side",
  19104. image: {
  19105. source: "./media/characters/roxi/side-back.svg",
  19106. extra: 2904 / 2693,
  19107. bottom: 0.06
  19108. }
  19109. },
  19110. front: {
  19111. height: math.unit(5 + 2 / 12, "feet"),
  19112. weight: math.unit(120, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/roxi/front.svg",
  19116. extra: 2028 / 1907,
  19117. bottom: 0.01
  19118. }
  19119. },
  19120. frontAlt: {
  19121. height: math.unit(5 + 2 / 12, "feet"),
  19122. weight: math.unit(120, "lb"),
  19123. name: "Front (Alt)",
  19124. image: {
  19125. source: "./media/characters/roxi/front-alt.svg",
  19126. extra: 1828 / 1798,
  19127. bottom: 0.01
  19128. }
  19129. },
  19130. sitting: {
  19131. height: math.unit(2.8, "feet"),
  19132. weight: math.unit(120, "lb"),
  19133. name: "Sitting",
  19134. image: {
  19135. source: "./media/characters/roxi/sitting.svg",
  19136. extra: 2660 / 2462,
  19137. bottom: 0.1
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(5 + 2 / 12, "feet"),
  19145. default: true
  19146. },
  19147. ]
  19148. ))
  19149. characterMakers.push(() => makeCharacter(
  19150. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19151. {
  19152. side: {
  19153. height: math.unit(55, "feet"),
  19154. weight: math.unit(153, "tons"),
  19155. name: "Side",
  19156. image: {
  19157. source: "./media/characters/shadow/side.svg",
  19158. extra: 701 / 628,
  19159. bottom: 0.02
  19160. }
  19161. },
  19162. flying: {
  19163. height: math.unit(145, "feet"),
  19164. weight: math.unit(153, "tons"),
  19165. name: "Flying",
  19166. image: {
  19167. source: "./media/characters/shadow/flying.svg"
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(55, "feet"),
  19175. default: true
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(6, "feet"),
  19184. weight: math.unit(200, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/marcie/front.svg",
  19188. extra: 960 / 876,
  19189. bottom: 58 / 1017.87
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Macro",
  19196. height: math.unit(1, "mile"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(7, "feet"),
  19206. weight: math.unit(200, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/kachina/front.svg",
  19210. extra: 1290.68 / 1119,
  19211. bottom: 36.5 / 1327.18
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(7, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19225. {
  19226. looking: {
  19227. height: math.unit(2, "meters"),
  19228. weight: math.unit(300, "kg"),
  19229. name: "Looking",
  19230. image: {
  19231. source: "./media/characters/kash/looking.svg",
  19232. extra: 474 / 344,
  19233. bottom: 0.03
  19234. }
  19235. },
  19236. side: {
  19237. height: math.unit(2, "meters"),
  19238. weight: math.unit(300, "kg"),
  19239. name: "Side",
  19240. image: {
  19241. source: "./media/characters/kash/side.svg",
  19242. extra: 302 / 251,
  19243. bottom: 0.03
  19244. }
  19245. },
  19246. front: {
  19247. height: math.unit(2, "meters"),
  19248. weight: math.unit(300, "kg"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/kash/front.svg",
  19252. extra: 495 / 360,
  19253. bottom: 0.015
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(2, "meters"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Big",
  19265. height: math.unit(3, "meters")
  19266. },
  19267. {
  19268. name: "Large",
  19269. height: math.unit(5, "meters")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19275. {
  19276. feeding: {
  19277. height: math.unit(6.7, "feet"),
  19278. weight: math.unit(350, "lb"),
  19279. name: "Feeding",
  19280. image: {
  19281. source: "./media/characters/lalim/feeding.svg",
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(6.7, "feet"),
  19289. default: true
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19295. {
  19296. front: {
  19297. height: math.unit(9.5, "feet"),
  19298. weight: math.unit(600, "lb"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/de'vout/front.svg",
  19302. extra: 1443 / 1328,
  19303. bottom: 0.025
  19304. }
  19305. },
  19306. back: {
  19307. height: math.unit(9.5, "feet"),
  19308. weight: math.unit(600, "lb"),
  19309. name: "Back",
  19310. image: {
  19311. source: "./media/characters/de'vout/back.svg",
  19312. extra: 1443 / 1328
  19313. }
  19314. },
  19315. frontDressed: {
  19316. height: math.unit(9.5, "feet"),
  19317. weight: math.unit(600, "lb"),
  19318. name: "Front (Dressed",
  19319. image: {
  19320. source: "./media/characters/de'vout/front-dressed.svg",
  19321. extra: 1443 / 1328,
  19322. bottom: 0.025
  19323. }
  19324. },
  19325. backDressed: {
  19326. height: math.unit(9.5, "feet"),
  19327. weight: math.unit(600, "lb"),
  19328. name: "Back (Dressed",
  19329. image: {
  19330. source: "./media/characters/de'vout/back-dressed.svg",
  19331. extra: 1443 / 1328
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(9.5, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(8, "feet"),
  19348. weight: math.unit(225, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/talana/front.svg",
  19352. extra: 1410 / 1300,
  19353. bottom: 0.015
  19354. }
  19355. },
  19356. frontDressed: {
  19357. height: math.unit(8, "feet"),
  19358. weight: math.unit(225, "lb"),
  19359. name: "Front (Dressed",
  19360. image: {
  19361. source: "./media/characters/talana/front-dressed.svg",
  19362. extra: 1410 / 1300,
  19363. bottom: 0.015
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(8, "feet"),
  19371. default: true
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19377. {
  19378. side: {
  19379. height: math.unit(7.2, "feet"),
  19380. weight: math.unit(150, "lb"),
  19381. name: "Side",
  19382. image: {
  19383. source: "./media/characters/xeauvok/side.svg",
  19384. extra: 1975 / 1523,
  19385. bottom: 0.07
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(7.2, "feet"),
  19393. default: true
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19399. {
  19400. side: {
  19401. height: math.unit(4, "meters"),
  19402. weight: math.unit(2200, "kg"),
  19403. name: "Side",
  19404. image: {
  19405. source: "./media/characters/zara/side.svg",
  19406. extra: 765/744,
  19407. bottom: 156/921
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(4, "meters"),
  19415. default: true
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19421. {
  19422. side: {
  19423. height: math.unit(6, "feet"),
  19424. weight: math.unit(150, "lb"),
  19425. name: "Side",
  19426. image: {
  19427. source: "./media/characters/richard-dragon/side.svg",
  19428. extra: 845 / 340,
  19429. bottom: 0.017
  19430. }
  19431. },
  19432. maw: {
  19433. height: math.unit(2.97, "feet"),
  19434. name: "Maw",
  19435. image: {
  19436. source: "./media/characters/richard-dragon/maw.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(4, "feet"),
  19448. weight: math.unit(100, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/richard-smeargle/front.svg",
  19452. extra: 2952 / 2820,
  19453. bottom: 0.028
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(4, "feet"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Dynamax",
  19465. height: math.unit(20, "meters")
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(6, "feet"),
  19474. weight: math.unit(110, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/klay/front.svg",
  19478. extra: 962 / 883,
  19479. bottom: 0.04
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(6, "feet"),
  19484. weight: math.unit(110, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/klay/back.svg",
  19488. extra: 962 / 883
  19489. }
  19490. },
  19491. beans: {
  19492. height: math.unit(1.15, "feet"),
  19493. name: "Beans",
  19494. image: {
  19495. source: "./media/characters/klay/beans.svg"
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Micro",
  19502. height: math.unit(6, "inches")
  19503. },
  19504. {
  19505. name: "Mini",
  19506. height: math.unit(3, "feet")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(6, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Big",
  19515. height: math.unit(25, "feet")
  19516. },
  19517. {
  19518. name: "Macro",
  19519. height: math.unit(100, "feet")
  19520. },
  19521. {
  19522. name: "Megamacro",
  19523. height: math.unit(400, "feet")
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(6, "feet"),
  19532. weight: math.unit(160, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/marcus/front.svg",
  19536. extra: 734 / 676,
  19537. bottom: 0.03
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Little",
  19544. height: math.unit(6, "feet")
  19545. },
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(110, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(250, "feet")
  19554. },
  19555. {
  19556. name: "Megamacro",
  19557. height: math.unit(1000, "feet")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(7, "feet"),
  19566. weight: math.unit(275, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/claude-delroute/front.svg",
  19570. extra: 902/827,
  19571. bottom: 26/928
  19572. }
  19573. },
  19574. side: {
  19575. height: math.unit(7, "feet"),
  19576. weight: math.unit(275, "lb"),
  19577. name: "Side",
  19578. image: {
  19579. source: "./media/characters/claude-delroute/side.svg",
  19580. extra: 908/853,
  19581. bottom: 16/924
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(7, "feet"),
  19586. weight: math.unit(275, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/claude-delroute/back.svg",
  19590. extra: 911/829,
  19591. bottom: 18/929
  19592. }
  19593. },
  19594. maw: {
  19595. height: math.unit(0.6407, "meters"),
  19596. name: "Maw",
  19597. image: {
  19598. source: "./media/characters/claude-delroute/maw.svg"
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(7, "feet"),
  19606. default: true
  19607. },
  19608. {
  19609. name: "Lorge",
  19610. height: math.unit(20, "feet")
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(8 + 4 / 12, "feet"),
  19619. weight: math.unit(600, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/dragonien/front.svg",
  19623. extra: 100 / 94,
  19624. bottom: 3.3 / 103.3445
  19625. }
  19626. },
  19627. back: {
  19628. height: math.unit(8 + 4 / 12, "feet"),
  19629. weight: math.unit(600, "lb"),
  19630. name: "Back",
  19631. image: {
  19632. source: "./media/characters/dragonien/back.svg",
  19633. extra: 776 / 746,
  19634. bottom: 6.4 / 782.0616
  19635. }
  19636. },
  19637. foot: {
  19638. height: math.unit(1.54, "feet"),
  19639. name: "Foot",
  19640. image: {
  19641. source: "./media/characters/dragonien/foot.svg",
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(8 + 4 / 12, "feet"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Macro",
  19653. height: math.unit(200, "feet")
  19654. },
  19655. {
  19656. name: "Megamacro",
  19657. height: math.unit(1, "mile")
  19658. },
  19659. {
  19660. name: "Gigamacro",
  19661. height: math.unit(1000, "miles")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(5 + 2 / 12, "feet"),
  19670. weight: math.unit(110, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/desta/front.svg",
  19674. extra: 767 / 726,
  19675. bottom: 11.7 / 779
  19676. }
  19677. },
  19678. back: {
  19679. height: math.unit(5 + 2 / 12, "feet"),
  19680. weight: math.unit(110, "lb"),
  19681. name: "Back",
  19682. image: {
  19683. source: "./media/characters/desta/back.svg",
  19684. extra: 777 / 728,
  19685. bottom: 6 / 784
  19686. }
  19687. },
  19688. frontAlt: {
  19689. height: math.unit(5 + 2 / 12, "feet"),
  19690. weight: math.unit(110, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/desta/front-alt.svg",
  19694. extra: 1482 / 1417
  19695. }
  19696. },
  19697. side: {
  19698. height: math.unit(5 + 2 / 12, "feet"),
  19699. weight: math.unit(110, "lb"),
  19700. name: "Side",
  19701. image: {
  19702. source: "./media/characters/desta/side.svg",
  19703. extra: 2579 / 2491,
  19704. bottom: 0.053
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Micro",
  19711. height: math.unit(6, "inches")
  19712. },
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(5 + 2 / 12, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(62, "feet")
  19721. },
  19722. {
  19723. name: "Megamacro",
  19724. height: math.unit(1800, "feet")
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(10, "feet"),
  19733. weight: math.unit(700, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/storm-alystar/front.svg",
  19737. extra: 2112 / 1898,
  19738. bottom: 0.034
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Micro",
  19745. height: math.unit(3.5, "inches")
  19746. },
  19747. {
  19748. name: "Normal",
  19749. height: math.unit(10, "feet"),
  19750. default: true
  19751. },
  19752. {
  19753. name: "Macro",
  19754. height: math.unit(400, "feet")
  19755. },
  19756. {
  19757. name: "Deific",
  19758. height: math.unit(60, "miles")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(2.35, "meters"),
  19767. weight: math.unit(119, "kg"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/ilia/front.svg",
  19771. extra: 1285 / 1255,
  19772. bottom: 0.06
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(2.35, "meters")
  19780. },
  19781. {
  19782. name: "Macro",
  19783. height: math.unit(140, "meters"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Megamacro",
  19788. height: math.unit(100, "miles")
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(6 + 5 / 12, "feet"),
  19797. weight: math.unit(190, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/kingdead/front.svg",
  19801. extra: 1228 / 1177
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Micro",
  19808. height: math.unit(7, "inches")
  19809. },
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(6 + 5 / 12, "feet")
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(150, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Megamacro",
  19821. height: math.unit(200, "miles")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(8, "feet"),
  19830. weight: math.unit(600, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/kyrehx/front.svg",
  19834. extra: 1195 / 1095,
  19835. bottom: 0.034
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Micro",
  19842. height: math.unit(2, "inches")
  19843. },
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(8, "feet"),
  19847. default: true
  19848. },
  19849. {
  19850. name: "Macro",
  19851. height: math.unit(255, "feet")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19860. weight: math.unit(184, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/xang/front.svg",
  19864. extra: 845 / 755
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Macro",
  19876. height: math.unit(0.935 * 146, "feet")
  19877. },
  19878. {
  19879. name: "Megamacro",
  19880. height: math.unit(0.935 * 3, "miles")
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19886. {
  19887. frontDressed: {
  19888. height: math.unit(5 + 7 / 12, "feet"),
  19889. weight: math.unit(140, "lb"),
  19890. name: "Front (Dressed)",
  19891. image: {
  19892. source: "./media/characters/doc-weardno/front-dressed.svg",
  19893. extra: 263 / 234
  19894. }
  19895. },
  19896. backDressed: {
  19897. height: math.unit(5 + 7 / 12, "feet"),
  19898. weight: math.unit(140, "lb"),
  19899. name: "Back (Dressed)",
  19900. image: {
  19901. source: "./media/characters/doc-weardno/back-dressed.svg",
  19902. extra: 266 / 238
  19903. }
  19904. },
  19905. front: {
  19906. height: math.unit(5 + 7 / 12, "feet"),
  19907. weight: math.unit(140, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/doc-weardno/front.svg",
  19911. extra: 254 / 233
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(3, "inches")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 7 / 12, "feet"),
  19923. default: true
  19924. },
  19925. {
  19926. name: "Macro",
  19927. height: math.unit(25, "feet")
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(2, "miles")
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(6 + 2 / 12, "feet"),
  19940. weight: math.unit(153, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/seth-whilst/front.svg",
  19944. bottom: 0.07
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Micro",
  19951. height: math.unit(5, "inches")
  19952. },
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(6 + 2 / 12, "feet"),
  19956. default: true
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(3, "inches"),
  19965. weight: math.unit(8, "grams"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/pocket-jabari/front.svg",
  19969. extra: 1024 / 974,
  19970. bottom: 0.039
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Minimicro",
  19977. height: math.unit(8, "mm")
  19978. },
  19979. {
  19980. name: "Micro",
  19981. height: math.unit(3, "inches"),
  19982. default: true
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(3, "feet")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19992. {
  19993. frontDressed: {
  19994. height: math.unit(15, "feet"),
  19995. weight: math.unit(3280, "lb"),
  19996. name: "Front (Dressed)",
  19997. image: {
  19998. source: "./media/characters/sapphy/front-dressed.svg",
  19999. extra: 1951/1654,
  20000. bottom: 194/2145
  20001. },
  20002. form: "anthro",
  20003. default: true
  20004. },
  20005. backDressed: {
  20006. height: math.unit(15, "feet"),
  20007. weight: math.unit(3280, "lb"),
  20008. name: "Back (Dressed)",
  20009. image: {
  20010. source: "./media/characters/sapphy/back-dressed.svg",
  20011. extra: 2058/1918,
  20012. bottom: 125/2183
  20013. },
  20014. form: "anthro"
  20015. },
  20016. frontNude: {
  20017. height: math.unit(15, "feet"),
  20018. weight: math.unit(3280, "lb"),
  20019. name: "Front (Nude)",
  20020. image: {
  20021. source: "./media/characters/sapphy/front-nude.svg",
  20022. extra: 1951/1654,
  20023. bottom: 194/2145
  20024. },
  20025. form: "anthro"
  20026. },
  20027. backNude: {
  20028. height: math.unit(15, "feet"),
  20029. weight: math.unit(3280, "lb"),
  20030. name: "Back (Nude)",
  20031. image: {
  20032. source: "./media/characters/sapphy/back-nude.svg",
  20033. extra: 2058/1918,
  20034. bottom: 125/2183
  20035. },
  20036. form: "anthro"
  20037. },
  20038. full: {
  20039. height: math.unit(15, "feet"),
  20040. weight: math.unit(3280, "lb"),
  20041. name: "Full",
  20042. image: {
  20043. source: "./media/characters/sapphy/full.svg",
  20044. extra: 1396/1317,
  20045. bottom: 44/1440
  20046. },
  20047. form: "anthro"
  20048. },
  20049. dick: {
  20050. height: math.unit(3.8, "feet"),
  20051. name: "Dick",
  20052. image: {
  20053. source: "./media/characters/sapphy/dick.svg"
  20054. },
  20055. form: "anthro"
  20056. },
  20057. feral: {
  20058. height: math.unit(35, "feet"),
  20059. weight: math.unit(160, "tons"),
  20060. name: "Feral",
  20061. image: {
  20062. source: "./media/characters/sapphy/feral.svg",
  20063. extra: 1050/573,
  20064. bottom: 60/1110
  20065. },
  20066. form: "feral",
  20067. default: true
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(15, "feet"),
  20074. form: "anthro"
  20075. },
  20076. {
  20077. name: "Casual Macro",
  20078. height: math.unit(120, "feet"),
  20079. form: "anthro"
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(2150, "feet"),
  20084. default: true,
  20085. form: "anthro"
  20086. },
  20087. {
  20088. name: "Megamacro",
  20089. height: math.unit(8, "miles"),
  20090. form: "anthro"
  20091. },
  20092. {
  20093. name: "Galaxy Mom",
  20094. height: math.unit(6, "megalightyears"),
  20095. form: "anthro"
  20096. },
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(35, "feet"),
  20100. form: "feral",
  20101. default: true
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(300, "feet"),
  20106. form: "feral"
  20107. },
  20108. {
  20109. name: "Galaxy Mom",
  20110. height: math.unit(10, "megalightyears"),
  20111. form: "feral"
  20112. },
  20113. ],
  20114. {
  20115. "anthro": {
  20116. name: "Anthro",
  20117. default: true
  20118. },
  20119. "feral": {
  20120. name: "Feral"
  20121. }
  20122. }
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20126. {
  20127. hyenaFront: {
  20128. height: math.unit(6, "feet"),
  20129. weight: math.unit(190, "lb"),
  20130. name: "Front",
  20131. image: {
  20132. source: "./media/characters/kiro/hyena-front.svg",
  20133. extra: 927/839,
  20134. bottom: 91/1018
  20135. },
  20136. form: "hyena",
  20137. default: true
  20138. },
  20139. front: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(170, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/kiro/front.svg",
  20145. extra: 1064 / 1012,
  20146. bottom: 0.052
  20147. },
  20148. form: "folf",
  20149. default: true
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Micro",
  20155. height: math.unit(6, "inches"),
  20156. form: "folf"
  20157. },
  20158. {
  20159. name: "Normal",
  20160. height: math.unit(6, "feet"),
  20161. form: "folf",
  20162. default: true
  20163. },
  20164. {
  20165. name: "Macro",
  20166. height: math.unit(72, "feet"),
  20167. form: "folf"
  20168. },
  20169. {
  20170. name: "Micro",
  20171. height: math.unit(6, "inches"),
  20172. form: "hyena"
  20173. },
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(6, "feet"),
  20177. form: "hyena",
  20178. default: true
  20179. },
  20180. {
  20181. name: "Macro",
  20182. height: math.unit(72, "feet"),
  20183. form: "hyena"
  20184. },
  20185. ],
  20186. {
  20187. "hyena": {
  20188. name: "Hyena",
  20189. default: true
  20190. },
  20191. "folf": {
  20192. name: "Folf",
  20193. },
  20194. }
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(5 + 9 / 12, "feet"),
  20201. weight: math.unit(175, "lb"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/irishfox/front.svg",
  20205. extra: 1912 / 1680,
  20206. bottom: 0.02
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Nano",
  20213. height: math.unit(1, "mm")
  20214. },
  20215. {
  20216. name: "Micro",
  20217. height: math.unit(2, "inches")
  20218. },
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 9 / 12, "feet"),
  20222. default: true
  20223. },
  20224. {
  20225. name: "Macro",
  20226. height: math.unit(45, "feet")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(6 + 1 / 12, "feet"),
  20235. weight: math.unit(75, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/aronai-sieyes/front.svg",
  20239. extra: 1532/1450,
  20240. bottom: 42/1574
  20241. }
  20242. },
  20243. side: {
  20244. height: math.unit(6 + 1 / 12, "feet"),
  20245. weight: math.unit(75, "lb"),
  20246. name: "Side",
  20247. image: {
  20248. source: "./media/characters/aronai-sieyes/side.svg",
  20249. extra: 1422/1365,
  20250. bottom: 148/1570
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(6 + 1 / 12, "feet"),
  20255. weight: math.unit(75, "lb"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/aronai-sieyes/back.svg",
  20259. extra: 1526/1464,
  20260. bottom: 51/1577
  20261. }
  20262. },
  20263. dressed: {
  20264. height: math.unit(6 + 1 / 12, "feet"),
  20265. weight: math.unit(75, "lb"),
  20266. name: "Dressed",
  20267. image: {
  20268. source: "./media/characters/aronai-sieyes/dressed.svg",
  20269. extra: 1559/1483,
  20270. bottom: 39/1598
  20271. }
  20272. },
  20273. slit: {
  20274. height: math.unit(1.3, "feet"),
  20275. name: "Slit",
  20276. image: {
  20277. source: "./media/characters/aronai-sieyes/slit.svg"
  20278. }
  20279. },
  20280. slitSpread: {
  20281. height: math.unit(0.9, "feet"),
  20282. name: "Slit (Spread)",
  20283. image: {
  20284. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20285. }
  20286. },
  20287. rump: {
  20288. height: math.unit(1.3, "feet"),
  20289. name: "Rump",
  20290. image: {
  20291. source: "./media/characters/aronai-sieyes/rump.svg"
  20292. }
  20293. },
  20294. maw: {
  20295. height: math.unit(1.25, "feet"),
  20296. name: "Maw",
  20297. image: {
  20298. source: "./media/characters/aronai-sieyes/maw.svg"
  20299. }
  20300. },
  20301. feral: {
  20302. height: math.unit(18, "feet"),
  20303. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20304. name: "Feral",
  20305. image: {
  20306. source: "./media/characters/aronai-sieyes/feral.svg",
  20307. extra: 1530 / 1240,
  20308. bottom: 0.035
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Micro",
  20315. height: math.unit(2, "inches")
  20316. },
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(6 + 1 / 12, "feet"),
  20320. default: true
  20321. }
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(12, "feet"),
  20329. weight: math.unit(410, "kg"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/xuna/front.svg",
  20333. extra: 2184 / 1980
  20334. }
  20335. },
  20336. side: {
  20337. height: math.unit(12, "feet"),
  20338. weight: math.unit(410, "kg"),
  20339. name: "Side",
  20340. image: {
  20341. source: "./media/characters/xuna/side.svg",
  20342. extra: 2184 / 1980
  20343. }
  20344. },
  20345. back: {
  20346. height: math.unit(12, "feet"),
  20347. weight: math.unit(410, "kg"),
  20348. name: "Back",
  20349. image: {
  20350. source: "./media/characters/xuna/back.svg",
  20351. extra: 2184 / 1980
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Nano glow",
  20358. height: math.unit(10, "nm")
  20359. },
  20360. {
  20361. name: "Micro floof",
  20362. height: math.unit(0.3, "m")
  20363. },
  20364. {
  20365. name: "Huggable softy boi",
  20366. height: math.unit(3.6576, "m"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Admirable floof",
  20371. height: math.unit(80, "meters")
  20372. },
  20373. {
  20374. name: "Gentle macro",
  20375. height: math.unit(300, "meters")
  20376. },
  20377. {
  20378. name: "Very careful floof",
  20379. height: math.unit(3200, "meters")
  20380. },
  20381. {
  20382. name: "The mega floof",
  20383. height: math.unit(36000, "meters")
  20384. },
  20385. {
  20386. name: "Giga-fur-Wicker",
  20387. height: math.unit(4800000, "meters")
  20388. },
  20389. {
  20390. name: "Licky world",
  20391. height: math.unit(20000000, "meters")
  20392. },
  20393. {
  20394. name: "Floofy cyan sun",
  20395. height: math.unit(1500000000, "meters")
  20396. },
  20397. {
  20398. name: "Milky Wicker",
  20399. height: math.unit(1000000000000000000000, "meters")
  20400. },
  20401. {
  20402. name: "The observing Wicker",
  20403. height: math.unit(999999999999999999999999999, "meters")
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20409. {
  20410. front: {
  20411. height: math.unit(5 + 9 / 12, "feet"),
  20412. weight: math.unit(150, "lb"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/arokha-sieyes/front.svg",
  20416. extra: 1425 / 1284,
  20417. bottom: 0.05
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(5 + 9 / 12, "feet")
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(30, "meters"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(6, "feet"),
  20438. weight: math.unit(180, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/arokh-sieyes/front.svg",
  20442. extra: 1830 / 1769,
  20443. bottom: 0.01
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(6, "feet")
  20451. },
  20452. {
  20453. name: "Macro",
  20454. height: math.unit(30, "meters"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20461. {
  20462. side: {
  20463. height: math.unit(13 + 1 / 12, "feet"),
  20464. weight: math.unit(8.5, "tonnes"),
  20465. preyCapacity: math.unit(36, "people"),
  20466. name: "Side",
  20467. image: {
  20468. source: "./media/characters/goldeneye/side.svg",
  20469. extra: 1139/741,
  20470. bottom: 98/1237
  20471. }
  20472. },
  20473. front: {
  20474. height: math.unit(5.1, "feet"),
  20475. weight: math.unit(8.5, "tonnes"),
  20476. preyCapacity: math.unit(36, "people"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/goldeneye/front.svg",
  20480. extra: 635/365,
  20481. bottom: 598/1233
  20482. }
  20483. },
  20484. maw: {
  20485. height: math.unit(6.6, "feet"),
  20486. name: "Maw",
  20487. image: {
  20488. source: "./media/characters/goldeneye/maw.svg"
  20489. }
  20490. },
  20491. headFront: {
  20492. height: math.unit(8, "feet"),
  20493. name: "Head (Front)",
  20494. image: {
  20495. source: "./media/characters/goldeneye/head-front.svg"
  20496. }
  20497. },
  20498. headSide: {
  20499. height: math.unit(6, "feet"),
  20500. name: "Head (Side)",
  20501. image: {
  20502. source: "./media/characters/goldeneye/head-side.svg"
  20503. }
  20504. },
  20505. headBack: {
  20506. height: math.unit(8, "feet"),
  20507. name: "Head (Back)",
  20508. image: {
  20509. source: "./media/characters/goldeneye/head-back.svg"
  20510. }
  20511. },
  20512. paw: {
  20513. height: math.unit(3.4, "feet"),
  20514. name: "Paw",
  20515. image: {
  20516. source: "./media/characters/goldeneye/paw.svg"
  20517. }
  20518. },
  20519. toering: {
  20520. height: math.unit(0.45, "feet"),
  20521. name: "Toering",
  20522. image: {
  20523. source: "./media/characters/goldeneye/toering.svg"
  20524. }
  20525. },
  20526. eyes: {
  20527. height: math.unit(0.5, "feet"),
  20528. name: "Eyes",
  20529. image: {
  20530. source: "./media/characters/goldeneye/eyes.svg"
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(13 + 1 / 12, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20544. {
  20545. front: {
  20546. height: math.unit(6 + 1 / 12, "feet"),
  20547. weight: math.unit(210, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/leonardo-lycheborne/front.svg",
  20551. extra: 776/723,
  20552. bottom: 34/810
  20553. }
  20554. },
  20555. side: {
  20556. height: math.unit(6 + 1 / 12, "feet"),
  20557. weight: math.unit(210, "lb"),
  20558. name: "Side",
  20559. image: {
  20560. source: "./media/characters/leonardo-lycheborne/side.svg",
  20561. extra: 780/728,
  20562. bottom: 12/792
  20563. }
  20564. },
  20565. back: {
  20566. height: math.unit(6 + 1 / 12, "feet"),
  20567. weight: math.unit(210, "lb"),
  20568. name: "Back",
  20569. image: {
  20570. source: "./media/characters/leonardo-lycheborne/back.svg",
  20571. extra: 775/721,
  20572. bottom: 17/792
  20573. }
  20574. },
  20575. hand: {
  20576. height: math.unit(1.08, "feet"),
  20577. name: "Hand",
  20578. image: {
  20579. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20580. }
  20581. },
  20582. foot: {
  20583. height: math.unit(1.32, "feet"),
  20584. name: "Foot",
  20585. image: {
  20586. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20587. }
  20588. },
  20589. maw: {
  20590. height: math.unit(1, "feet"),
  20591. name: "Maw",
  20592. image: {
  20593. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20594. }
  20595. },
  20596. were: {
  20597. height: math.unit(20, "feet"),
  20598. weight: math.unit(7800, "lb"),
  20599. name: "Were",
  20600. image: {
  20601. source: "./media/characters/leonardo-lycheborne/were.svg",
  20602. extra: 1224/1165,
  20603. bottom: 72/1296
  20604. }
  20605. },
  20606. feral: {
  20607. height: math.unit(7.5, "feet"),
  20608. weight: math.unit(600, "lb"),
  20609. name: "Feral",
  20610. image: {
  20611. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20612. extra: 797/702,
  20613. bottom: 139/936
  20614. }
  20615. },
  20616. taur: {
  20617. height: math.unit(11, "feet"),
  20618. weight: math.unit(3300, "lb"),
  20619. name: "Taur",
  20620. image: {
  20621. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20622. extra: 1271/1197,
  20623. bottom: 47/1318
  20624. }
  20625. },
  20626. barghest: {
  20627. height: math.unit(11, "feet"),
  20628. weight: math.unit(1300, "lb"),
  20629. name: "Barghest",
  20630. image: {
  20631. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20632. extra: 1291/1204,
  20633. bottom: 37/1328
  20634. }
  20635. },
  20636. dick: {
  20637. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20638. name: "Dick",
  20639. image: {
  20640. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20641. }
  20642. },
  20643. dickWere: {
  20644. height: math.unit((20) / 3.8, "feet"),
  20645. name: "Dick (Were)",
  20646. image: {
  20647. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(6 + 1 / 12, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(10, "feet"),
  20664. weight: math.unit(350, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/jet/front.svg",
  20668. extra: 2050 / 1980,
  20669. bottom: 0.013
  20670. }
  20671. },
  20672. back: {
  20673. height: math.unit(10, "feet"),
  20674. weight: math.unit(350, "lb"),
  20675. name: "Back",
  20676. image: {
  20677. source: "./media/characters/jet/back.svg",
  20678. extra: 2050 / 1980,
  20679. bottom: 0.013
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Micro",
  20686. height: math.unit(6, "inches")
  20687. },
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(10, "feet"),
  20691. default: true
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(100, "feet")
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(15, "feet"),
  20704. weight: math.unit(2800, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/tanarath/front.svg",
  20708. extra: 2392 / 2220,
  20709. bottom: 0.03
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(15, "feet"),
  20714. weight: math.unit(2800, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/tanarath/back.svg",
  20718. extra: 2392 / 2220,
  20719. bottom: 0.03
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(15, "feet"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(7 + 1 / 12, "feet"),
  20736. weight: math.unit(175, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/patty-cattybatty/front.svg",
  20740. extra: 908 / 874,
  20741. bottom: 0.025
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Micro",
  20748. height: math.unit(1, "inch")
  20749. },
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(7 + 1 / 12, "feet")
  20753. },
  20754. {
  20755. name: "Mini Macro",
  20756. height: math.unit(155, "feet")
  20757. },
  20758. {
  20759. name: "Macro",
  20760. height: math.unit(1077, "feet")
  20761. },
  20762. {
  20763. name: "Mega Macro",
  20764. height: math.unit(47650, "feet"),
  20765. default: true
  20766. },
  20767. {
  20768. name: "Giga Macro",
  20769. height: math.unit(440, "miles")
  20770. },
  20771. {
  20772. name: "Tera Macro",
  20773. height: math.unit(8700, "miles")
  20774. },
  20775. {
  20776. name: "Planetary Macro",
  20777. height: math.unit(32700, "miles")
  20778. },
  20779. {
  20780. name: "Solar Macro",
  20781. height: math.unit(550000, "miles")
  20782. },
  20783. {
  20784. name: "Celestial Macro",
  20785. height: math.unit(2.5, "AU")
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(4 + 5 / 12, "feet"),
  20794. weight: math.unit(90, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/cappu/front.svg",
  20798. extra: 1247 / 1152,
  20799. bottom: 0.012
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(4 + 5 / 12, "feet"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20813. {
  20814. frontDressed: {
  20815. height: math.unit(70, "cm"),
  20816. weight: math.unit(6, "kg"),
  20817. name: "Front (Dressed)",
  20818. image: {
  20819. source: "./media/characters/sebi/front-dressed.svg",
  20820. extra: 713.5 / 686.5,
  20821. bottom: 0.003
  20822. }
  20823. },
  20824. front: {
  20825. height: math.unit(70, "cm"),
  20826. weight: math.unit(5, "kg"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/sebi/front.svg",
  20830. extra: 713.5 / 686.5,
  20831. bottom: 0.003
  20832. }
  20833. }
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(70, "cm"),
  20839. default: true
  20840. },
  20841. {
  20842. name: "Macro",
  20843. height: math.unit(8, "meters")
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(6, "feet"),
  20852. weight: math.unit(150, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/typhek/front.svg",
  20856. extra: 1948 / 1929,
  20857. bottom: 0.025
  20858. }
  20859. },
  20860. side: {
  20861. height: math.unit(6, "feet"),
  20862. weight: math.unit(150, "lb"),
  20863. name: "Side",
  20864. image: {
  20865. source: "./media/characters/typhek/side.svg",
  20866. extra: 2034 / 2010,
  20867. bottom: 0.003
  20868. }
  20869. },
  20870. back: {
  20871. height: math.unit(6, "feet"),
  20872. weight: math.unit(150, "lb"),
  20873. name: "Back",
  20874. image: {
  20875. source: "./media/characters/typhek/back.svg",
  20876. extra: 2005 / 1978,
  20877. bottom: 0.004
  20878. }
  20879. },
  20880. palm: {
  20881. height: math.unit(1.2, "feet"),
  20882. name: "Palm",
  20883. image: {
  20884. source: "./media/characters/typhek/palm.svg"
  20885. }
  20886. },
  20887. fist: {
  20888. height: math.unit(1.1, "feet"),
  20889. name: "Fist",
  20890. image: {
  20891. source: "./media/characters/typhek/fist.svg"
  20892. }
  20893. },
  20894. foot: {
  20895. height: math.unit(1.57, "feet"),
  20896. name: "Foot",
  20897. image: {
  20898. source: "./media/characters/typhek/foot.svg"
  20899. }
  20900. },
  20901. sole: {
  20902. height: math.unit(2.05, "feet"),
  20903. name: "Sole",
  20904. image: {
  20905. source: "./media/characters/typhek/sole.svg"
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Macro",
  20912. height: math.unit(40, "stories"),
  20913. default: true
  20914. },
  20915. {
  20916. name: "Megamacro",
  20917. height: math.unit(1, "mile")
  20918. },
  20919. {
  20920. name: "Gigamacro",
  20921. height: math.unit(4000, "solarradii")
  20922. },
  20923. {
  20924. name: "Universal",
  20925. height: math.unit(1.1, "universes")
  20926. }
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20931. {
  20932. side: {
  20933. height: math.unit(5 + 7 / 12, "feet"),
  20934. weight: math.unit(150, "lb"),
  20935. name: "Side",
  20936. image: {
  20937. source: "./media/characters/kassy/side.svg",
  20938. extra: 1280 / 1225,
  20939. bottom: 0.002
  20940. }
  20941. },
  20942. front: {
  20943. height: math.unit(5 + 7 / 12, "feet"),
  20944. weight: math.unit(150, "lb"),
  20945. name: "Front",
  20946. image: {
  20947. source: "./media/characters/kassy/front.svg",
  20948. extra: 1280 / 1225,
  20949. bottom: 0.025
  20950. }
  20951. },
  20952. back: {
  20953. height: math.unit(5 + 7 / 12, "feet"),
  20954. weight: math.unit(150, "lb"),
  20955. name: "Back",
  20956. image: {
  20957. source: "./media/characters/kassy/back.svg",
  20958. extra: 1280 / 1225,
  20959. bottom: 0.002
  20960. }
  20961. },
  20962. foot: {
  20963. height: math.unit(1.266, "feet"),
  20964. name: "Foot",
  20965. image: {
  20966. source: "./media/characters/kassy/foot.svg"
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(5 + 7 / 12, "feet")
  20974. },
  20975. {
  20976. name: "Macro",
  20977. height: math.unit(137, "feet"),
  20978. default: true
  20979. },
  20980. {
  20981. name: "Megamacro",
  20982. height: math.unit(1, "mile")
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(6 + 1 / 12, "feet"),
  20991. weight: math.unit(200, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/neil/front.svg",
  20995. extra: 1326 / 1250,
  20996. bottom: 0.023
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(6 + 1 / 12, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(200, "feet")
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(5 + 9 / 12, "feet"),
  21017. weight: math.unit(190, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/atticus/front.svg",
  21021. extra: 2934 / 2785,
  21022. bottom: 0.025
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 9 / 12, "feet"),
  21030. default: true
  21031. },
  21032. {
  21033. name: "Macro",
  21034. height: math.unit(180, "feet")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21040. {
  21041. side: {
  21042. height: math.unit(9, "feet"),
  21043. weight: math.unit(650, "lb"),
  21044. name: "Side",
  21045. image: {
  21046. source: "./media/characters/milo/side.svg",
  21047. extra: 2644 / 2310,
  21048. bottom: 0.032
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(9, "feet"),
  21056. default: true
  21057. },
  21058. {
  21059. name: "Macro",
  21060. height: math.unit(300, "feet")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21066. {
  21067. side: {
  21068. height: math.unit(8, "meters"),
  21069. weight: math.unit(90000, "kg"),
  21070. name: "Side",
  21071. image: {
  21072. source: "./media/characters/ijzer/side.svg",
  21073. extra: 2756 / 1600,
  21074. bottom: 0.01
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Small",
  21081. height: math.unit(3, "meters")
  21082. },
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(8, "meters"),
  21086. default: true
  21087. },
  21088. {
  21089. name: "Normal+",
  21090. height: math.unit(10, "meters")
  21091. },
  21092. {
  21093. name: "Bigger",
  21094. height: math.unit(24, "meters")
  21095. },
  21096. {
  21097. name: "Huge",
  21098. height: math.unit(80, "meters")
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(6 + 2 / 12, "feet"),
  21107. weight: math.unit(153, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/luca-cervicum/front.svg",
  21111. extra: 370 / 327,
  21112. bottom: 0.015
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(6 + 2 / 12, "feet"),
  21117. weight: math.unit(153, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/luca-cervicum/back.svg",
  21121. extra: 367 / 333,
  21122. bottom: 0.005
  21123. }
  21124. },
  21125. frontGear: {
  21126. height: math.unit(6 + 2 / 12, "feet"),
  21127. weight: math.unit(173, "lb"),
  21128. name: "Front (Gear)",
  21129. image: {
  21130. source: "./media/characters/luca-cervicum/front-gear.svg",
  21131. extra: 377 / 333,
  21132. bottom: 0.006
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(6 + 2 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(6 + 1 / 12, "feet"),
  21149. weight: math.unit(304, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/oliver/front.svg",
  21153. extra: 157 / 143,
  21154. bottom: 0.08
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(6 + 1 / 12, "feet"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21168. {
  21169. front: {
  21170. height: math.unit(5 + 7 / 12, "feet"),
  21171. weight: math.unit(140, "lb"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/shane/front.svg",
  21175. extra: 304 / 289,
  21176. bottom: 0.005
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(5 + 7 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(5 + 9 / 12, "feet"),
  21193. weight: math.unit(178, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/shin/front.svg",
  21197. extra: 159 / 151,
  21198. bottom: 0.015
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(5 + 9 / 12, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(5 + 10 / 12, "feet"),
  21215. weight: math.unit(168, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/xerxes/front.svg",
  21219. extra: 282 / 260,
  21220. bottom: 0.045
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(5 + 10 / 12, "feet"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(6 + 7 / 12, "feet"),
  21237. weight: math.unit(208, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/chaska/front.svg",
  21241. extra: 332 / 319,
  21242. bottom: 0.015
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(6 + 7 / 12, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(5 + 8 / 12, "feet"),
  21259. weight: math.unit(208, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/enuk/front.svg",
  21263. extra: 437 / 406,
  21264. bottom: 0.02
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(5 + 8 / 12, "feet"),
  21272. default: true
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21278. {
  21279. front: {
  21280. height: math.unit(5 + 10 / 12, "feet"),
  21281. weight: math.unit(252, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/bruun/front.svg",
  21285. extra: 197 / 187,
  21286. bottom: 0.012
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(5 + 10 / 12, "feet"),
  21294. default: true
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21300. {
  21301. front: {
  21302. height: math.unit(6 + 10 / 12, "feet"),
  21303. weight: math.unit(255, "lb"),
  21304. name: "Front",
  21305. image: {
  21306. source: "./media/characters/alexeev/front.svg",
  21307. extra: 213 / 200,
  21308. bottom: 0.05
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(6 + 10 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(2 + 8 / 12, "feet"),
  21325. weight: math.unit(22, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/evelyn/front.svg",
  21329. extra: 208 / 180
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(2 + 8 / 12, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(5 + 9 / 12, "feet"),
  21346. weight: math.unit(139, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/inca/front.svg",
  21350. extra: 294 / 291,
  21351. bottom: 0.03
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(5 + 9 / 12, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(6 + 3 / 12, "feet"),
  21368. weight: math.unit(185, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/mera/front.svg",
  21372. extra: 291 / 277,
  21373. bottom: 0.03
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(6 + 3 / 12, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21387. {
  21388. front: {
  21389. height: math.unit(6 + 7 / 12, "feet"),
  21390. weight: math.unit(160, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/ceres/front.svg",
  21394. extra: 1023 / 950,
  21395. bottom: 0.027
  21396. }
  21397. },
  21398. back: {
  21399. height: math.unit(6 + 7 / 12, "feet"),
  21400. weight: math.unit(160, "lb"),
  21401. name: "Back",
  21402. image: {
  21403. source: "./media/characters/ceres/back.svg",
  21404. extra: 1023 / 950
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(6 + 7 / 12, "feet"),
  21412. default: true
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21418. {
  21419. front: {
  21420. height: math.unit(5 + 10 / 12, "feet"),
  21421. weight: math.unit(150, "lb"),
  21422. name: "Front",
  21423. image: {
  21424. source: "./media/characters/kris/front.svg",
  21425. extra: 885 / 803,
  21426. bottom: 0.03
  21427. }
  21428. },
  21429. },
  21430. [
  21431. {
  21432. name: "Normal",
  21433. height: math.unit(5 + 10 / 12, "feet"),
  21434. default: true
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(7, "feet"),
  21443. weight: math.unit(120, "kg"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/taluthus/front.svg",
  21447. extra: 903 / 833,
  21448. bottom: 0.015
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(7, "feet"),
  21456. default: true
  21457. },
  21458. {
  21459. name: "Macro",
  21460. height: math.unit(300, "feet")
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(5 + 9 / 12, "feet"),
  21469. weight: math.unit(145, "lb"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/dawn/front.svg",
  21473. extra: 2094 / 2016,
  21474. bottom: 0.025
  21475. }
  21476. },
  21477. back: {
  21478. height: math.unit(5 + 9 / 12, "feet"),
  21479. weight: math.unit(160, "lb"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/dawn/back.svg",
  21483. extra: 2112 / 2080,
  21484. bottom: 0.005
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(6 + 7 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21498. {
  21499. anthro: {
  21500. height: math.unit(8 + 3 / 12, "feet"),
  21501. weight: math.unit(450, "lb"),
  21502. name: "Anthro",
  21503. image: {
  21504. source: "./media/characters/arador/anthro.svg",
  21505. extra: 1835 / 1718,
  21506. bottom: 0.025
  21507. }
  21508. },
  21509. feral: {
  21510. height: math.unit(4, "feet"),
  21511. weight: math.unit(200, "lb"),
  21512. name: "Feral",
  21513. image: {
  21514. source: "./media/characters/arador/feral.svg",
  21515. extra: 1683 / 1514,
  21516. bottom: 0.07
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(8 + 3 / 12, "feet")
  21524. },
  21525. {
  21526. name: "Macro",
  21527. height: math.unit(82.5, "feet"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(5 + 10 / 12, "feet"),
  21537. weight: math.unit(125, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/dharsi/front.svg",
  21541. extra: 716 / 630,
  21542. bottom: 0.035
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Nano",
  21549. height: math.unit(100, "nm")
  21550. },
  21551. {
  21552. name: "Micro",
  21553. height: math.unit(2, "inches")
  21554. },
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(5 + 10 / 12, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(1000, "feet")
  21563. },
  21564. {
  21565. name: "Megamacro",
  21566. height: math.unit(10, "miles")
  21567. },
  21568. {
  21569. name: "Gigamacro",
  21570. height: math.unit(3000, "miles")
  21571. },
  21572. {
  21573. name: "Teramacro",
  21574. height: math.unit(500000, "miles")
  21575. },
  21576. {
  21577. name: "Teramacro+",
  21578. height: math.unit(30, "galaxies")
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(6, "feet"),
  21587. weight: math.unit(150, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/deathy/front.svg",
  21591. extra: 1552 / 1463,
  21592. bottom: 0.025
  21593. }
  21594. },
  21595. side: {
  21596. height: math.unit(6, "feet"),
  21597. weight: math.unit(150, "lb"),
  21598. name: "Side",
  21599. image: {
  21600. source: "./media/characters/deathy/side.svg",
  21601. extra: 1604 / 1455,
  21602. bottom: 0.025
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(6, "feet"),
  21607. weight: math.unit(150, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/deathy/back.svg",
  21611. extra: 1580 / 1463,
  21612. bottom: 0.005
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Micro",
  21619. height: math.unit(5, "millimeters")
  21620. },
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(6 + 5 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21630. {
  21631. front: {
  21632. height: math.unit(16, "feet"),
  21633. weight: math.unit(4000, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/juniper/front.svg",
  21637. bottom: 0.04
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(16, "feet"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(6, "feet"),
  21654. weight: math.unit(150, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/hipster/front.svg",
  21658. extra: 1312 / 1209,
  21659. bottom: 0.025
  21660. }
  21661. },
  21662. back: {
  21663. height: math.unit(6, "feet"),
  21664. weight: math.unit(150, "lb"),
  21665. name: "Back",
  21666. image: {
  21667. source: "./media/characters/hipster/back.svg",
  21668. extra: 1281 / 1196,
  21669. bottom: 0.01
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Micro",
  21676. height: math.unit(1, "mm")
  21677. },
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(4, "inches"),
  21681. default: true
  21682. },
  21683. {
  21684. name: "Macro",
  21685. height: math.unit(500, "feet")
  21686. },
  21687. {
  21688. name: "Megamacro",
  21689. height: math.unit(1000, "miles")
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(6, "feet"),
  21698. weight: math.unit(150, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/tendirmuldr/front.svg",
  21702. extra: 1878 / 1772,
  21703. bottom: 0.015
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Megamacro",
  21710. height: math.unit(1500, "miles"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21717. {
  21718. front: {
  21719. height: math.unit(14, "feet"),
  21720. weight: math.unit(12000, "lb"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/mort/front.svg",
  21724. extra: 365 / 318,
  21725. bottom: 0.01
  21726. }
  21727. },
  21728. side: {
  21729. height: math.unit(14, "feet"),
  21730. weight: math.unit(12000, "lb"),
  21731. name: "Side",
  21732. image: {
  21733. source: "./media/characters/mort/side.svg",
  21734. extra: 365 / 318,
  21735. bottom: 0.052
  21736. },
  21737. default: true
  21738. },
  21739. back: {
  21740. height: math.unit(14, "feet"),
  21741. weight: math.unit(12000, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/mort/back.svg",
  21745. extra: 371 / 332,
  21746. bottom: 0.18
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(14, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21760. {
  21761. front: {
  21762. height: math.unit(8, "feet"),
  21763. weight: math.unit(1, "ton"),
  21764. name: "Front",
  21765. image: {
  21766. source: "./media/characters/lycoa/front.svg",
  21767. extra: 1836/1728,
  21768. bottom: 81/1917
  21769. }
  21770. },
  21771. back: {
  21772. height: math.unit(8, "feet"),
  21773. weight: math.unit(1, "ton"),
  21774. name: "Back",
  21775. image: {
  21776. source: "./media/characters/lycoa/back.svg",
  21777. extra: 1785/1720,
  21778. bottom: 91/1876
  21779. }
  21780. },
  21781. head: {
  21782. height: math.unit(1.6243, "feet"),
  21783. name: "Head",
  21784. image: {
  21785. source: "./media/characters/lycoa/head.svg",
  21786. extra: 1011/782,
  21787. bottom: 0/1011
  21788. }
  21789. },
  21790. tailmaw: {
  21791. height: math.unit(1.9, "feet"),
  21792. name: "Tailmaw",
  21793. image: {
  21794. source: "./media/characters/lycoa/tailmaw.svg"
  21795. }
  21796. },
  21797. tentacles: {
  21798. height: math.unit(2.1, "feet"),
  21799. name: "Tentacles",
  21800. image: {
  21801. source: "./media/characters/lycoa/tentacles.svg"
  21802. }
  21803. },
  21804. dick: {
  21805. height: math.unit(1.73, "feet"),
  21806. name: "Dick",
  21807. image: {
  21808. source: "./media/characters/lycoa/dick.svg"
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(8, "feet"),
  21816. default: true
  21817. },
  21818. {
  21819. name: "Macro",
  21820. height: math.unit(30, "feet")
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21826. {
  21827. front: {
  21828. height: math.unit(4 + 2 / 12, "feet"),
  21829. weight: math.unit(70, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/naldara/front.svg",
  21833. extra: 1664/1387,
  21834. bottom: 81/1745
  21835. },
  21836. form: "anthro",
  21837. default: true
  21838. },
  21839. naga: {
  21840. height: math.unit(20, "feet"),
  21841. weight: math.unit(15000, "kg"),
  21842. name: "Front",
  21843. image: {
  21844. source: "./media/characters/naldara/naga.svg",
  21845. extra: 1590/1396,
  21846. bottom: 285/1875
  21847. },
  21848. form: "naga",
  21849. default: true
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(4 + 2 / 12, "feet"),
  21856. form: "anthro",
  21857. default: true
  21858. },
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(20, "feet"),
  21862. form: "naga",
  21863. default: true
  21864. },
  21865. ],
  21866. {
  21867. "anthro": {
  21868. name: "Anthro",
  21869. default: true
  21870. },
  21871. "naga": {
  21872. name: "Naga"
  21873. }
  21874. }
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(13 + 7 / 12, "feet"),
  21881. weight: math.unit(1500, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/briar/front.svg",
  21885. extra: 1223/1157,
  21886. bottom: 123/1346
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(13 + 7 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21900. {
  21901. side: {
  21902. height: math.unit(16, "feet"),
  21903. weight: math.unit(500, "lb"),
  21904. name: "Side",
  21905. image: {
  21906. source: "./media/characters/vanguard/side.svg",
  21907. extra: 1022/914,
  21908. bottom: 30/1052
  21909. }
  21910. },
  21911. sideAlt: {
  21912. height: math.unit(10, "feet"),
  21913. weight: math.unit(500, "lb"),
  21914. name: "Side (Alt)",
  21915. image: {
  21916. source: "./media/characters/vanguard/side-alt.svg",
  21917. extra: 502 / 425,
  21918. bottom: 0.087
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(17.71, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(7.5, "feet"),
  21935. weight: math.unit(2, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/artemis/work-safe-front.svg",
  21939. extra: 1192 / 1075,
  21940. bottom: 0.07
  21941. },
  21942. form: "work-safe",
  21943. default: true
  21944. },
  21945. frontNsfw: {
  21946. height: math.unit(7.5, "feet"),
  21947. weight: math.unit(2, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/artemis/calibrating-front.svg",
  21951. extra: 1192 / 1075,
  21952. bottom: 0.07
  21953. },
  21954. form: "calibrating",
  21955. default: true
  21956. },
  21957. frontNsfwer: {
  21958. height: math.unit(7.5, "feet"),
  21959. weight: math.unit(2, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/artemis/oversize-load-front.svg",
  21963. extra: 1192 / 1075,
  21964. bottom: 0.07
  21965. },
  21966. form: "oversize-load",
  21967. default: true
  21968. },
  21969. side: {
  21970. height: math.unit(7.5, "feet"),
  21971. weight: math.unit(2, "lb"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/artemis/work-safe-side.svg",
  21975. extra: 1192 / 1075,
  21976. bottom: 0.07
  21977. },
  21978. form: "work-safe"
  21979. },
  21980. sideNsfw: {
  21981. height: math.unit(7.5, "feet"),
  21982. weight: math.unit(2, "lb"),
  21983. name: "Side",
  21984. image: {
  21985. source: "./media/characters/artemis/calibrating-side.svg",
  21986. extra: 1192 / 1075,
  21987. bottom: 0.07
  21988. },
  21989. form: "calibrating"
  21990. },
  21991. sideNsfwer: {
  21992. height: math.unit(7.5, "feet"),
  21993. weight: math.unit(2, "lb"),
  21994. name: "Side",
  21995. image: {
  21996. source: "./media/characters/artemis/oversize-load-side.svg",
  21997. extra: 1192 / 1075,
  21998. bottom: 0.07
  21999. },
  22000. form: "oversize-load"
  22001. },
  22002. maw: {
  22003. height: math.unit(1.1, "feet"),
  22004. name: "Maw",
  22005. image: {
  22006. source: "./media/characters/artemis/maw.svg"
  22007. },
  22008. form: "work-safe"
  22009. },
  22010. stomach: {
  22011. height: math.unit(0.95, "feet"),
  22012. name: "Stomach",
  22013. image: {
  22014. source: "./media/characters/artemis/stomach.svg"
  22015. },
  22016. form: "work-safe"
  22017. },
  22018. dickCanine: {
  22019. height: math.unit(1, "feet"),
  22020. name: "Dick (Canine)",
  22021. image: {
  22022. source: "./media/characters/artemis/dick-canine.svg"
  22023. },
  22024. form: "calibrating"
  22025. },
  22026. dickEquine: {
  22027. height: math.unit(0.85, "feet"),
  22028. name: "Dick (Equine)",
  22029. image: {
  22030. source: "./media/characters/artemis/dick-equine.svg"
  22031. },
  22032. form: "calibrating"
  22033. },
  22034. dickExotic: {
  22035. height: math.unit(0.85, "feet"),
  22036. name: "Dick (Exotic)",
  22037. image: {
  22038. source: "./media/characters/artemis/dick-exotic.svg"
  22039. },
  22040. form: "calibrating"
  22041. },
  22042. dickCanineBigger: {
  22043. height: math.unit(1 * 1.33, "feet"),
  22044. name: "Dick (Canine)",
  22045. image: {
  22046. source: "./media/characters/artemis/dick-canine.svg"
  22047. },
  22048. form: "oversize-load"
  22049. },
  22050. dickEquineBigger: {
  22051. height: math.unit(0.85 * 1.33, "feet"),
  22052. name: "Dick (Equine)",
  22053. image: {
  22054. source: "./media/characters/artemis/dick-equine.svg"
  22055. },
  22056. form: "oversize-load"
  22057. },
  22058. dickExoticBigger: {
  22059. height: math.unit(0.85 * 1.33, "feet"),
  22060. name: "Dick (Exotic)",
  22061. image: {
  22062. source: "./media/characters/artemis/dick-exotic.svg"
  22063. },
  22064. form: "oversize-load"
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(7.5, "feet"),
  22071. form: "work-safe",
  22072. default: true
  22073. },
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(7.5, "feet"),
  22077. form: "calibrating",
  22078. default: true
  22079. },
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(7.5, "feet"),
  22083. form: "oversize-load",
  22084. default: true
  22085. },
  22086. {
  22087. name: "Enlarged",
  22088. height: math.unit(12, "feet"),
  22089. form: "work-safe",
  22090. },
  22091. {
  22092. name: "Enlarged",
  22093. height: math.unit(12, "feet"),
  22094. form: "calibrating",
  22095. },
  22096. {
  22097. name: "Enlarged",
  22098. height: math.unit(12, "feet"),
  22099. form: "oversize-load",
  22100. },
  22101. ],
  22102. {
  22103. "work-safe": {
  22104. name: "Work-Safe",
  22105. default: true
  22106. },
  22107. "calibrating": {
  22108. name: "Calibrating"
  22109. },
  22110. "oversize-load": {
  22111. name: "Oversize Load"
  22112. }
  22113. }
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(5 + 3 / 12, "feet"),
  22120. weight: math.unit(160, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/kira/front.svg",
  22124. extra: 906 / 786,
  22125. bottom: 0.01
  22126. }
  22127. },
  22128. back: {
  22129. height: math.unit(5 + 3 / 12, "feet"),
  22130. weight: math.unit(160, "lb"),
  22131. name: "Back",
  22132. image: {
  22133. source: "./media/characters/kira/back.svg",
  22134. extra: 882 / 757,
  22135. bottom: 0.005
  22136. }
  22137. },
  22138. frontDressed: {
  22139. height: math.unit(5 + 3 / 12, "feet"),
  22140. weight: math.unit(160, "lb"),
  22141. name: "Front (Dressed)",
  22142. image: {
  22143. source: "./media/characters/kira/front-dressed.svg",
  22144. extra: 906 / 786,
  22145. bottom: 0.01
  22146. }
  22147. },
  22148. beans: {
  22149. height: math.unit(0.92, "feet"),
  22150. name: "Beans",
  22151. image: {
  22152. source: "./media/characters/kira/beans.svg"
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(5 + 3 / 12, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22166. {
  22167. front: {
  22168. height: math.unit(5 + 4 / 12, "feet"),
  22169. weight: math.unit(145, "lb"),
  22170. name: "Front",
  22171. image: {
  22172. source: "./media/characters/scramble/front.svg",
  22173. extra: 763 / 727,
  22174. bottom: 0.05
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(5 + 4 / 12, "feet"),
  22179. weight: math.unit(145, "lb"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/scramble/back.svg",
  22183. extra: 826 / 737,
  22184. bottom: 0.002
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(5 + 4 / 12, "feet"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22198. {
  22199. side: {
  22200. height: math.unit(6 + 2 / 12, "feet"),
  22201. weight: math.unit(190, "lb"),
  22202. name: "Side",
  22203. image: {
  22204. source: "./media/characters/biscuit/side.svg",
  22205. extra: 858 / 791,
  22206. bottom: 0.044
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(6 + 2 / 12, "feet"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(5 + 2 / 12, "feet"),
  22223. weight: math.unit(120, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/poffin/front.svg",
  22227. extra: 786 / 680,
  22228. bottom: 0.005
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(5 + 2 / 12, "feet"),
  22236. default: true
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(6 + 3 / 12, "feet"),
  22245. weight: math.unit(519, "lb"),
  22246. name: "Front",
  22247. image: {
  22248. source: "./media/characters/dhari/front.svg",
  22249. extra: 1048 / 946,
  22250. bottom: 0.015
  22251. }
  22252. },
  22253. back: {
  22254. height: math.unit(6 + 3 / 12, "feet"),
  22255. weight: math.unit(519, "lb"),
  22256. name: "Back",
  22257. image: {
  22258. source: "./media/characters/dhari/back.svg",
  22259. extra: 1048 / 931,
  22260. bottom: 0.005
  22261. }
  22262. },
  22263. frontDressed: {
  22264. height: math.unit(6 + 3 / 12, "feet"),
  22265. weight: math.unit(519, "lb"),
  22266. name: "Front (Dressed)",
  22267. image: {
  22268. source: "./media/characters/dhari/front-dressed.svg",
  22269. extra: 1713 / 1546,
  22270. bottom: 0.02
  22271. }
  22272. },
  22273. backDressed: {
  22274. height: math.unit(6 + 3 / 12, "feet"),
  22275. weight: math.unit(519, "lb"),
  22276. name: "Back (Dressed)",
  22277. image: {
  22278. source: "./media/characters/dhari/back-dressed.svg",
  22279. extra: 1699 / 1537,
  22280. bottom: 0.01
  22281. }
  22282. },
  22283. maw: {
  22284. height: math.unit(0.95, "feet"),
  22285. name: "Maw",
  22286. image: {
  22287. source: "./media/characters/dhari/maw.svg"
  22288. }
  22289. },
  22290. wereFront: {
  22291. height: math.unit(12 + 8 / 12, "feet"),
  22292. weight: math.unit(4000, "lb"),
  22293. name: "Front (Were)",
  22294. image: {
  22295. source: "./media/characters/dhari/were-front.svg",
  22296. extra: 1065 / 969,
  22297. bottom: 0.015
  22298. }
  22299. },
  22300. wereBack: {
  22301. height: math.unit(12 + 8 / 12, "feet"),
  22302. weight: math.unit(4000, "lb"),
  22303. name: "Back (Were)",
  22304. image: {
  22305. source: "./media/characters/dhari/were-back.svg",
  22306. extra: 1065 / 969,
  22307. bottom: 0.012
  22308. }
  22309. },
  22310. wereMaw: {
  22311. height: math.unit(0.625, "meters"),
  22312. name: "Maw (Were)",
  22313. image: {
  22314. source: "./media/characters/dhari/were-maw.svg"
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(6 + 3 / 12, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22328. {
  22329. anthro: {
  22330. height: math.unit(5 + 7 / 12, "feet"),
  22331. weight: math.unit(175, "lb"),
  22332. name: "Anthro",
  22333. image: {
  22334. source: "./media/characters/rena-dyne/anthro.svg",
  22335. extra: 1849 / 1785,
  22336. bottom: 0.005
  22337. }
  22338. },
  22339. taur: {
  22340. height: math.unit(15 + 6 / 12, "feet"),
  22341. weight: math.unit(8000, "lb"),
  22342. name: "Taur",
  22343. image: {
  22344. source: "./media/characters/rena-dyne/taur.svg",
  22345. extra: 2315 / 2234,
  22346. bottom: 0.033
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(5 + 7 / 12, "feet"),
  22354. default: true
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(8, "feet"),
  22363. weight: math.unit(600, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/weremeep/front.svg",
  22367. extra: 970/849,
  22368. bottom: 7/977
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(8, "feet"),
  22376. default: true
  22377. },
  22378. {
  22379. name: "Lorg",
  22380. height: math.unit(12, "feet")
  22381. },
  22382. {
  22383. name: "Oh Lawd She Comin'",
  22384. height: math.unit(20, "feet")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22390. {
  22391. front: {
  22392. height: math.unit(4, "feet"),
  22393. weight: math.unit(90, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/reza/front.svg",
  22397. extra: 1183 / 1111,
  22398. bottom: 0.017
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(4, "feet"),
  22403. weight: math.unit(90, "lb"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/reza/back.svg",
  22407. extra: 1183 / 1111,
  22408. bottom: 0.01
  22409. }
  22410. },
  22411. drake: {
  22412. height: math.unit(30, "feet"),
  22413. weight: math.unit(246960, "lb"),
  22414. name: "Drake",
  22415. image: {
  22416. source: "./media/characters/reza/drake.svg",
  22417. extra: 2350 / 2024,
  22418. bottom: 60.7 / 2403
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(4, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22432. {
  22433. side: {
  22434. height: math.unit(15, "feet"),
  22435. weight: math.unit(14, "tons"),
  22436. name: "Side",
  22437. image: {
  22438. source: "./media/characters/athea/side.svg",
  22439. extra: 960 / 540,
  22440. bottom: 0.003
  22441. }
  22442. },
  22443. sitting: {
  22444. height: math.unit(6 * 2.85, "feet"),
  22445. weight: math.unit(14, "tons"),
  22446. name: "Sitting",
  22447. image: {
  22448. source: "./media/characters/athea/sitting.svg",
  22449. extra: 621 / 581,
  22450. bottom: 0.075
  22451. }
  22452. },
  22453. maw: {
  22454. height: math.unit(7.59498031496063, "feet"),
  22455. name: "Maw",
  22456. image: {
  22457. source: "./media/characters/athea/maw.svg"
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Lap Cat",
  22464. height: math.unit(2.5, "feet")
  22465. },
  22466. {
  22467. name: "Minimacro",
  22468. height: math.unit(15, "feet"),
  22469. default: true
  22470. },
  22471. {
  22472. name: "Macro",
  22473. height: math.unit(120, "feet")
  22474. },
  22475. {
  22476. name: "Macro+",
  22477. height: math.unit(640, "feet")
  22478. },
  22479. {
  22480. name: "Colossus",
  22481. height: math.unit(2.2, "miles")
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(8 + 8 / 12, "feet"),
  22490. weight: math.unit(130, "kg"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/seroko/front.svg",
  22494. extra: 1385 / 1280,
  22495. bottom: 0.025
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(8 + 8 / 12, "feet"),
  22500. weight: math.unit(130, "kg"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/seroko/back.svg",
  22504. extra: 1369 / 1238,
  22505. bottom: 0.018
  22506. }
  22507. },
  22508. frontDressed: {
  22509. height: math.unit(8 + 8 / 12, "feet"),
  22510. weight: math.unit(130, "kg"),
  22511. name: "Front (Dressed)",
  22512. image: {
  22513. source: "./media/characters/seroko/front-dressed.svg",
  22514. extra: 1366 / 1275,
  22515. bottom: 0.03
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(8 + 8 / 12, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(5.5, "feet"),
  22532. weight: math.unit(160, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/quatzi/front.svg",
  22536. extra: 2346 / 2242,
  22537. bottom: 0.015
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(5.5, "feet"),
  22545. default: true
  22546. },
  22547. {
  22548. name: "Big",
  22549. height: math.unit(7.7, "feet")
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(5 + 11 / 12, "feet"),
  22558. weight: math.unit(180, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/sen/front.svg",
  22562. extra: 1321 / 1254,
  22563. bottom: 0.015
  22564. }
  22565. },
  22566. side: {
  22567. height: math.unit(5 + 11 / 12, "feet"),
  22568. weight: math.unit(180, "lb"),
  22569. name: "Side",
  22570. image: {
  22571. source: "./media/characters/sen/side.svg",
  22572. extra: 1321 / 1254,
  22573. bottom: 0.007
  22574. }
  22575. },
  22576. back: {
  22577. height: math.unit(5 + 11 / 12, "feet"),
  22578. weight: math.unit(180, "lb"),
  22579. name: "Back",
  22580. image: {
  22581. source: "./media/characters/sen/back.svg",
  22582. extra: 1321 / 1254
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(5 + 11 / 12, "feet"),
  22590. default: true
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(166.6, "cm"),
  22599. weight: math.unit(66.6, "kg"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/fruity/front.svg",
  22603. extra: 1510 / 1386,
  22604. bottom: 0.04
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(166.6, "cm"),
  22609. weight: math.unit(66.6, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/fruity/back.svg",
  22613. extra: 1563 / 1435,
  22614. bottom: 0.005
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(166.6, "cm"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Demonic",
  22626. height: math.unit(166.6, "feet")
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22632. {
  22633. side: {
  22634. height: math.unit(10, "feet"),
  22635. weight: math.unit(500, "lb"),
  22636. name: "Side",
  22637. image: {
  22638. source: "./media/characters/zost/side.svg",
  22639. extra: 2870/2533,
  22640. bottom: 252/3122
  22641. }
  22642. },
  22643. mawFront: {
  22644. height: math.unit(1.08, "meters"),
  22645. name: "Maw (Front)",
  22646. image: {
  22647. source: "./media/characters/zost/maw-front.svg"
  22648. }
  22649. },
  22650. mawSide: {
  22651. height: math.unit(2.66, "feet"),
  22652. name: "Maw (Side)",
  22653. image: {
  22654. source: "./media/characters/zost/maw-side.svg"
  22655. }
  22656. },
  22657. wingspan: {
  22658. height: math.unit(7.4, "feet"),
  22659. name: "Wingspan",
  22660. image: {
  22661. source: "./media/characters/zost/wingspan.svg"
  22662. }
  22663. },
  22664. },
  22665. [
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(10, "feet"),
  22669. default: true
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(5 + 4 / 12, "feet"),
  22678. weight: math.unit(120, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/luci/front.svg",
  22682. extra: 1985 / 1884,
  22683. bottom: 0.04
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(5 + 4 / 12, "feet"),
  22688. weight: math.unit(120, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/luci/back.svg",
  22692. extra: 1892 / 1791,
  22693. bottom: 0.002
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(5 + 4 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(1500, "feet"),
  22710. weight: math.unit(3.8e6, "tons"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/2th/front.svg",
  22714. extra: 3489 / 3350,
  22715. bottom: 0.1
  22716. }
  22717. },
  22718. foot: {
  22719. height: math.unit(461, "feet"),
  22720. name: "Foot",
  22721. image: {
  22722. source: "./media/characters/2th/foot.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "\"Micro\"",
  22729. height: math.unit(15 + 7 / 12, "feet")
  22730. },
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(1500, "feet"),
  22734. default: true
  22735. },
  22736. {
  22737. name: "Macro",
  22738. height: math.unit(5000, "feet")
  22739. },
  22740. {
  22741. name: "Megamacro",
  22742. height: math.unit(15, "miles")
  22743. },
  22744. {
  22745. name: "Gigamacro",
  22746. height: math.unit(4000, "miles")
  22747. },
  22748. {
  22749. name: "Galactic",
  22750. height: math.unit(50, "AU")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(5 + 6 / 12, "feet"),
  22759. weight: math.unit(220, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/amethyst/front.svg",
  22763. extra: 2078 / 2040,
  22764. bottom: 0.045
  22765. }
  22766. },
  22767. back: {
  22768. height: math.unit(5 + 6 / 12, "feet"),
  22769. weight: math.unit(220, "lb"),
  22770. name: "Back",
  22771. image: {
  22772. source: "./media/characters/amethyst/back.svg",
  22773. extra: 2021 / 1989,
  22774. bottom: 0.02
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(5 + 6 / 12, "feet"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(4 + 11 / 12, "feet"),
  22791. weight: math.unit(120, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/yumi-akiyama/front.svg",
  22795. extra: 1327 / 1235,
  22796. bottom: 0.02
  22797. }
  22798. },
  22799. back: {
  22800. height: math.unit(4 + 11 / 12, "feet"),
  22801. weight: math.unit(120, "lb"),
  22802. name: "Back",
  22803. image: {
  22804. source: "./media/characters/yumi-akiyama/back.svg",
  22805. extra: 1287 / 1245,
  22806. bottom: 0.002
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Galactic",
  22813. height: math.unit(50, "galaxies"),
  22814. default: true
  22815. },
  22816. {
  22817. name: "Universal",
  22818. height: math.unit(100, "universes")
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(8, "feet"),
  22827. weight: math.unit(500, "lb"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/rifter-yrmori/front.svg",
  22831. extra: 1180 / 1125,
  22832. bottom: 0.02
  22833. }
  22834. },
  22835. back: {
  22836. height: math.unit(8, "feet"),
  22837. weight: math.unit(500, "lb"),
  22838. name: "Back",
  22839. image: {
  22840. source: "./media/characters/rifter-yrmori/back.svg",
  22841. extra: 1190 / 1145,
  22842. bottom: 0.001
  22843. }
  22844. },
  22845. wings: {
  22846. height: math.unit(7.75, "feet"),
  22847. weight: math.unit(500, "lb"),
  22848. name: "Wings",
  22849. image: {
  22850. source: "./media/characters/rifter-yrmori/wings.svg",
  22851. extra: 1357 / 1285
  22852. }
  22853. },
  22854. maw: {
  22855. height: math.unit(0.8, "feet"),
  22856. name: "Maw",
  22857. image: {
  22858. source: "./media/characters/rifter-yrmori/maw.svg"
  22859. }
  22860. },
  22861. mawfront: {
  22862. height: math.unit(1.45, "feet"),
  22863. name: "Maw (Front)",
  22864. image: {
  22865. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(8, "feet"),
  22873. default: true
  22874. },
  22875. {
  22876. name: "Macro",
  22877. height: math.unit(42, "meters")
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22883. {
  22884. were: {
  22885. height: math.unit(25 + 6 / 12, "feet"),
  22886. weight: math.unit(10000, "lb"),
  22887. name: "Were",
  22888. image: {
  22889. source: "./media/characters/tahajin/were.svg",
  22890. extra: 801 / 770,
  22891. bottom: 0.042
  22892. }
  22893. },
  22894. aquatic: {
  22895. height: math.unit(6 + 4 / 12, "feet"),
  22896. weight: math.unit(160, "lb"),
  22897. name: "Aquatic",
  22898. image: {
  22899. source: "./media/characters/tahajin/aquatic.svg",
  22900. extra: 572 / 542,
  22901. bottom: 0.04
  22902. }
  22903. },
  22904. chow: {
  22905. height: math.unit(8 + 11 / 12, "feet"),
  22906. weight: math.unit(450, "lb"),
  22907. name: "Chow",
  22908. image: {
  22909. source: "./media/characters/tahajin/chow.svg",
  22910. extra: 660 / 640,
  22911. bottom: 0.015
  22912. }
  22913. },
  22914. demiNaga: {
  22915. height: math.unit(6 + 8 / 12, "feet"),
  22916. weight: math.unit(300, "lb"),
  22917. name: "Demi Naga",
  22918. image: {
  22919. source: "./media/characters/tahajin/demi-naga.svg",
  22920. extra: 643 / 615,
  22921. bottom: 0.1
  22922. }
  22923. },
  22924. data: {
  22925. height: math.unit(5, "inches"),
  22926. weight: math.unit(0.1, "lb"),
  22927. name: "Data",
  22928. image: {
  22929. source: "./media/characters/tahajin/data.svg"
  22930. }
  22931. },
  22932. fluu: {
  22933. height: math.unit(5 + 7 / 12, "feet"),
  22934. weight: math.unit(140, "lb"),
  22935. name: "Fluu",
  22936. image: {
  22937. source: "./media/characters/tahajin/fluu.svg",
  22938. extra: 628 / 592,
  22939. bottom: 0.02
  22940. }
  22941. },
  22942. starWarrior: {
  22943. height: math.unit(4 + 5 / 12, "feet"),
  22944. weight: math.unit(50, "lb"),
  22945. name: "Star Warrior",
  22946. image: {
  22947. source: "./media/characters/tahajin/star-warrior.svg"
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(25 + 6 / 12, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(8, "feet"),
  22964. weight: math.unit(350, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/gabira/front.svg",
  22968. extra: 1261/1154,
  22969. bottom: 51/1312
  22970. }
  22971. },
  22972. back: {
  22973. height: math.unit(8, "feet"),
  22974. weight: math.unit(350, "lb"),
  22975. name: "Back",
  22976. image: {
  22977. source: "./media/characters/gabira/back.svg",
  22978. extra: 1265/1163,
  22979. bottom: 46/1311
  22980. }
  22981. },
  22982. head: {
  22983. height: math.unit(2.85, "feet"),
  22984. name: "Head",
  22985. image: {
  22986. source: "./media/characters/gabira/head.svg"
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(8, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(5 + 3 / 12, "feet"),
  23003. weight: math.unit(137, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/sasha-katraine/front.svg",
  23007. extra: 1745/1694,
  23008. bottom: 37/1782
  23009. }
  23010. },
  23011. back: {
  23012. height: math.unit(5 + 3 / 12, "feet"),
  23013. weight: math.unit(137, "lb"),
  23014. name: "Back",
  23015. image: {
  23016. source: "./media/characters/sasha-katraine/back.svg",
  23017. extra: 1776/1699,
  23018. bottom: 26/1802
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Micro",
  23025. height: math.unit(5, "inches")
  23026. },
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(5 + 3 / 12, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23036. {
  23037. side: {
  23038. height: math.unit(4, "inches"),
  23039. weight: math.unit(200, "grams"),
  23040. name: "Side",
  23041. image: {
  23042. source: "./media/characters/der/side.svg",
  23043. extra: 719 / 400,
  23044. bottom: 30.6 / 749.9187
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Micro",
  23051. height: math.unit(4, "inches"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23058. {
  23059. side: {
  23060. height: math.unit(30, "meters"),
  23061. weight: math.unit(700, "tonnes"),
  23062. name: "Side",
  23063. image: {
  23064. source: "./media/characters/fixerdragon/side.svg",
  23065. extra: (1293.0514 - 116.03) / 1106.86,
  23066. bottom: 116.03 / 1293.0514
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Planck",
  23073. height: math.unit(1.6e-35, "meters")
  23074. },
  23075. {
  23076. name: "Micro",
  23077. height: math.unit(0.4, "meters")
  23078. },
  23079. {
  23080. name: "Normal",
  23081. height: math.unit(30, "meters"),
  23082. default: true
  23083. },
  23084. {
  23085. name: "Megamacro",
  23086. height: math.unit(1.2, "megameters")
  23087. },
  23088. {
  23089. name: "Teramacro",
  23090. height: math.unit(130, "terameters")
  23091. },
  23092. {
  23093. name: "Yottamacro",
  23094. height: math.unit(6200, "yottameters")
  23095. },
  23096. ]
  23097. ));
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(8, "feet"),
  23103. weight: math.unit(250, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/kite/front.svg",
  23107. extra: 2796 / 2659,
  23108. bottom: 0.002
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(8, "feet"),
  23116. default: true
  23117. },
  23118. {
  23119. name: "Macro",
  23120. height: math.unit(360, "feet")
  23121. },
  23122. {
  23123. name: "Megamacro",
  23124. height: math.unit(1500, "feet")
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(5 + 11/12, "feet"),
  23133. weight: math.unit(170, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/poojawa-vynar/front.svg",
  23137. extra: 1735/1585,
  23138. bottom: 96/1831
  23139. }
  23140. },
  23141. back: {
  23142. height: math.unit(5 + 11/12, "feet"),
  23143. weight: math.unit(170, "lb"),
  23144. name: "Back",
  23145. image: {
  23146. source: "./media/characters/poojawa-vynar/back.svg",
  23147. extra: 1749/1607,
  23148. bottom: 28/1777
  23149. }
  23150. },
  23151. male: {
  23152. height: math.unit(5 + 11/12, "feet"),
  23153. weight: math.unit(170, "lb"),
  23154. name: "Male",
  23155. image: {
  23156. source: "./media/characters/poojawa-vynar/male.svg",
  23157. extra: 1855/1713,
  23158. bottom: 63/1918
  23159. }
  23160. },
  23161. taur: {
  23162. height: math.unit(5 + 11/12, "feet"),
  23163. weight: math.unit(170, "lb"),
  23164. name: "Taur",
  23165. image: {
  23166. source: "./media/characters/poojawa-vynar/taur.svg",
  23167. extra: 1151/1059,
  23168. bottom: 356/1507
  23169. }
  23170. },
  23171. frontDressed: {
  23172. height: math.unit(5 + 11/12, "feet"),
  23173. weight: math.unit(170, "lb"),
  23174. name: "Front (Dressed)",
  23175. image: {
  23176. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23177. extra: 1735/1585,
  23178. bottom: 96/1831
  23179. }
  23180. },
  23181. backDressed: {
  23182. height: math.unit(5 + 11/12, "feet"),
  23183. weight: math.unit(170, "lb"),
  23184. name: "Back (Dressed)",
  23185. image: {
  23186. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23187. extra: 1749/1607,
  23188. bottom: 28/1777
  23189. }
  23190. },
  23191. maleDressed: {
  23192. height: math.unit(5 + 11/12, "feet"),
  23193. weight: math.unit(170, "lb"),
  23194. name: "Male (Dressed)",
  23195. image: {
  23196. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23197. extra: 1855/1713,
  23198. bottom: 63/1918
  23199. }
  23200. },
  23201. taurDressed: {
  23202. height: math.unit(5 + 11/12, "feet"),
  23203. weight: math.unit(170, "lb"),
  23204. name: "Taur (Dressed)",
  23205. image: {
  23206. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23207. extra: 1151/1059,
  23208. bottom: 356/1507
  23209. }
  23210. },
  23211. maw: {
  23212. height: math.unit(1.46, "feet"),
  23213. name: "Maw",
  23214. image: {
  23215. source: "./media/characters/poojawa-vynar/maw.svg"
  23216. }
  23217. },
  23218. head: {
  23219. height: math.unit(2.34, "feet"),
  23220. name: "Head",
  23221. image: {
  23222. source: "./media/characters/poojawa-vynar/head.svg"
  23223. }
  23224. },
  23225. paw: {
  23226. height: math.unit(1.61, "feet"),
  23227. name: "Paw",
  23228. image: {
  23229. source: "./media/characters/poojawa-vynar/paw.svg"
  23230. }
  23231. },
  23232. pawToering: {
  23233. height: math.unit(1.72, "feet"),
  23234. name: "Paw (Toering)",
  23235. image: {
  23236. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23237. }
  23238. },
  23239. toering: {
  23240. height: math.unit(2.9, "inches"),
  23241. name: "Toering",
  23242. image: {
  23243. source: "./media/characters/poojawa-vynar/toering.svg"
  23244. }
  23245. },
  23246. shaft: {
  23247. height: math.unit(0.625, "feet"),
  23248. name: "Shaft",
  23249. image: {
  23250. source: "./media/characters/poojawa-vynar/shaft.svg"
  23251. }
  23252. },
  23253. spade: {
  23254. height: math.unit(0.42, "feet"),
  23255. name: "Spade",
  23256. image: {
  23257. source: "./media/characters/poojawa-vynar/spade.svg"
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Shortstack",
  23264. height: math.unit(4, "feet")
  23265. },
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(5 + 11 / 12, "feet"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Tauric",
  23273. height: math.unit(4, "meters")
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23279. {
  23280. front: {
  23281. height: math.unit(293, "meters"),
  23282. weight: math.unit(70400, "tons"),
  23283. name: "Front",
  23284. image: {
  23285. source: "./media/characters/violette/front.svg",
  23286. extra: 1227 / 1180,
  23287. bottom: 0.005
  23288. }
  23289. },
  23290. back: {
  23291. height: math.unit(293, "meters"),
  23292. weight: math.unit(70400, "tons"),
  23293. name: "Back",
  23294. image: {
  23295. source: "./media/characters/violette/back.svg",
  23296. extra: 1227 / 1180,
  23297. bottom: 0.005
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(293, "meters"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(1050, "feet"),
  23314. weight: math.unit(200000, "tons"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/alessandra/front.svg",
  23318. extra: 960 / 912,
  23319. bottom: 0.06
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Macro",
  23326. height: math.unit(1050, "feet")
  23327. },
  23328. {
  23329. name: "Macro+",
  23330. height: math.unit(900, "meters"),
  23331. default: true
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(5, "feet"),
  23340. weight: math.unit(187, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/person/front.svg",
  23344. extra: 3087 / 2945,
  23345. bottom: 91 / 3181
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Micro",
  23352. height: math.unit(3, "inches")
  23353. },
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(5, "feet"),
  23357. default: true
  23358. },
  23359. {
  23360. name: "Macro",
  23361. height: math.unit(90, "feet")
  23362. },
  23363. {
  23364. name: "Max Size",
  23365. height: math.unit(280, "feet")
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(4.5, "meters"),
  23374. weight: math.unit(3200, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/ty/front.svg",
  23378. extra: 1038 / 960,
  23379. bottom: 31.156 / 1068
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(4.5, "meters"),
  23384. weight: math.unit(3200, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/ty/back.svg",
  23388. extra: 1044 / 966,
  23389. bottom: 7.48 / 1049
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(4.5, "meters"),
  23397. default: true
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(5 + 4 / 12, "feet"),
  23406. weight: math.unit(115, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/rocky/front.svg",
  23410. extra: 1012 / 975,
  23411. bottom: 54 / 1066
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(5 + 4 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23425. {
  23426. upright: {
  23427. height: math.unit(6, "meters"),
  23428. weight: math.unit(4000, "kg"),
  23429. name: "Upright",
  23430. image: {
  23431. source: "./media/characters/ruin/upright.svg",
  23432. extra: 668 / 661,
  23433. bottom: 42 / 799.8396
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(6, "meters"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(5, "feet"),
  23450. weight: math.unit(106, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/robin/front.svg",
  23454. extra: 862 / 799,
  23455. bottom: 42.4 / 914.8856
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(5, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23469. {
  23470. side: {
  23471. height: math.unit(3, "feet"),
  23472. weight: math.unit(225, "lb"),
  23473. name: "Side",
  23474. image: {
  23475. source: "./media/characters/saian/side.svg",
  23476. extra: 566 / 356,
  23477. bottom: 79.7 / 643
  23478. }
  23479. },
  23480. maw: {
  23481. height: math.unit(2.85, "feet"),
  23482. name: "Maw",
  23483. image: {
  23484. source: "./media/characters/saian/maw.svg"
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(3, "feet"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23498. {
  23499. side: {
  23500. height: math.unit(8, "feet"),
  23501. weight: math.unit(300, "lb"),
  23502. name: "Side",
  23503. image: {
  23504. source: "./media/characters/equus-silvermane/side.svg",
  23505. extra: 2176 / 2050,
  23506. bottom: 65.7 / 2245
  23507. }
  23508. },
  23509. front: {
  23510. height: math.unit(8, "feet"),
  23511. weight: math.unit(300, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/equus-silvermane/front.svg",
  23515. extra: 4633 / 4400,
  23516. bottom: 71.3 / 4706.915
  23517. }
  23518. },
  23519. sideStepping: {
  23520. height: math.unit(8, "feet"),
  23521. weight: math.unit(300, "lb"),
  23522. name: "Side (Stepping)",
  23523. image: {
  23524. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23525. extra: 1968 / 1860,
  23526. bottom: 16.4 / 1989
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(8, "feet")
  23534. },
  23535. {
  23536. name: "Minimacro",
  23537. height: math.unit(75, "feet"),
  23538. default: true
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(150, "feet")
  23543. },
  23544. {
  23545. name: "Macro+",
  23546. height: math.unit(1000, "feet")
  23547. },
  23548. {
  23549. name: "Megamacro",
  23550. height: math.unit(1, "mile")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23556. {
  23557. side: {
  23558. height: math.unit(20, "feet"),
  23559. weight: math.unit(30000, "kg"),
  23560. name: "Side",
  23561. image: {
  23562. source: "./media/characters/windar/side.svg",
  23563. extra: 1491 / 1248,
  23564. bottom: 82.56 / 1568
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Normal",
  23571. height: math.unit(20, "feet"),
  23572. default: true
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23578. {
  23579. side: {
  23580. height: math.unit(15.66, "feet"),
  23581. weight: math.unit(150, "lb"),
  23582. name: "Side",
  23583. image: {
  23584. source: "./media/characters/melody/side.svg",
  23585. extra: 1097 / 944,
  23586. bottom: 11.8 / 1109
  23587. }
  23588. },
  23589. sideOutfit: {
  23590. height: math.unit(15.66, "feet"),
  23591. weight: math.unit(150, "lb"),
  23592. name: "Side (Outfit)",
  23593. image: {
  23594. source: "./media/characters/melody/side-outfit.svg",
  23595. extra: 1097 / 944,
  23596. bottom: 11.8 / 1109
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(15.66, "feet"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23610. {
  23611. armoredFront: {
  23612. height: math.unit(8, "feet"),
  23613. weight: math.unit(325, "lb"),
  23614. name: "Front",
  23615. image: {
  23616. source: "./media/characters/windera/armored-front.svg",
  23617. extra: 1830/1598,
  23618. bottom: 151/1981
  23619. },
  23620. form: "armored",
  23621. default: true
  23622. },
  23623. macroFront: {
  23624. height: math.unit(70, "feet"),
  23625. weight: math.unit(315453, "lb"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/windera/macro-front.svg",
  23629. extra: 963/883,
  23630. bottom: 23/986
  23631. },
  23632. form: "macro",
  23633. default: true
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Normal",
  23639. height: math.unit(8, "feet"),
  23640. default: true,
  23641. form: "armored"
  23642. },
  23643. {
  23644. name: "Normal",
  23645. height: math.unit(70, "feet"),
  23646. default: true,
  23647. form: "macro"
  23648. },
  23649. ],
  23650. {
  23651. "armored": {
  23652. name: "Armored",
  23653. default: true
  23654. },
  23655. "macro": {
  23656. name: "Macro",
  23657. },
  23658. }
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23662. {
  23663. front: {
  23664. height: math.unit(28.75, "feet"),
  23665. weight: math.unit(2000, "kg"),
  23666. name: "Front",
  23667. image: {
  23668. source: "./media/characters/sonear/front.svg",
  23669. extra: 1041.1 / 964.9,
  23670. bottom: 53.7 / 1096.6
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(28.75, "feet"),
  23678. default: true
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23684. {
  23685. side: {
  23686. height: math.unit(25.5, "feet"),
  23687. weight: math.unit(23000, "kg"),
  23688. name: "Side",
  23689. image: {
  23690. source: "./media/characters/kanara/side.svg"
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(25.5, "feet"),
  23698. default: true
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23704. {
  23705. side: {
  23706. height: math.unit(10, "feet"),
  23707. weight: math.unit(1000, "kg"),
  23708. name: "Side",
  23709. image: {
  23710. source: "./media/characters/ereus/side.svg",
  23711. extra: 1157 / 959,
  23712. bottom: 153 / 1312.5
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(10, "feet"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23726. {
  23727. side: {
  23728. height: math.unit(4.5, "feet"),
  23729. weight: math.unit(500, "lb"),
  23730. name: "Side",
  23731. image: {
  23732. source: "./media/characters/e-ter/side.svg",
  23733. extra: 1550 / 1248,
  23734. bottom: 146 / 1694
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Normal",
  23741. height: math.unit(4.5, "feet"),
  23742. default: true
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23748. {
  23749. side: {
  23750. height: math.unit(9.7, "feet"),
  23751. weight: math.unit(4000, "kg"),
  23752. name: "Side",
  23753. image: {
  23754. source: "./media/characters/yamie/side.svg"
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(9.7, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(50, "feet"),
  23771. weight: math.unit(50000, "kg"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/anders/front.svg",
  23775. extra: 570 / 539,
  23776. bottom: 14.7 / 586.7
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Large",
  23783. height: math.unit(50, "feet")
  23784. },
  23785. {
  23786. name: "Macro",
  23787. height: math.unit(2000, "feet"),
  23788. default: true
  23789. },
  23790. {
  23791. name: "Megamacro",
  23792. height: math.unit(12, "miles")
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23798. {
  23799. front: {
  23800. height: math.unit(7 + 2 / 12, "feet"),
  23801. weight: math.unit(300, "lb"),
  23802. name: "Front",
  23803. image: {
  23804. source: "./media/characters/reban/front.svg",
  23805. extra: 1287/1212,
  23806. bottom: 148/1435
  23807. }
  23808. },
  23809. head: {
  23810. height: math.unit(1.95, "feet"),
  23811. name: "Head",
  23812. image: {
  23813. source: "./media/characters/reban/head.svg"
  23814. }
  23815. },
  23816. maw: {
  23817. height: math.unit(0.95, "feet"),
  23818. name: "Maw",
  23819. image: {
  23820. source: "./media/characters/reban/maw.svg"
  23821. }
  23822. },
  23823. foot: {
  23824. height: math.unit(1.65, "feet"),
  23825. name: "Foot",
  23826. image: {
  23827. source: "./media/characters/reban/foot.svg"
  23828. }
  23829. },
  23830. dick: {
  23831. height: math.unit(7 / 5, "feet"),
  23832. name: "Dick",
  23833. image: {
  23834. source: "./media/characters/reban/dick.svg"
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Natural Height",
  23841. height: math.unit(7 + 2 / 12, "feet")
  23842. },
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(500, "feet"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Canon Height",
  23850. height: math.unit(50, "AU")
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(6, "feet"),
  23859. weight: math.unit(150, "lb"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/terrance-keayes/front.svg",
  23863. extra: 1.005,
  23864. bottom: 151 / 1615
  23865. }
  23866. },
  23867. side: {
  23868. height: math.unit(6, "feet"),
  23869. weight: math.unit(150, "lb"),
  23870. name: "Side",
  23871. image: {
  23872. source: "./media/characters/terrance-keayes/side.svg",
  23873. extra: 1.005,
  23874. bottom: 129.4 / 1544
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(6, "feet"),
  23879. weight: math.unit(150, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/terrance-keayes/back.svg",
  23883. extra: 1.005,
  23884. bottom: 58.4 / 1557.3
  23885. }
  23886. },
  23887. dick: {
  23888. height: math.unit(6 * 0.208, "feet"),
  23889. name: "Dick",
  23890. image: {
  23891. source: "./media/characters/terrance-keayes/dick.svg"
  23892. }
  23893. },
  23894. },
  23895. [
  23896. {
  23897. name: "Canon Height",
  23898. height: math.unit(35, "miles"),
  23899. default: true
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23905. {
  23906. front: {
  23907. height: math.unit(6, "feet"),
  23908. weight: math.unit(150, "lb"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/ofelia/front.svg",
  23912. extra: 1130/1117,
  23913. bottom: 91/1221
  23914. }
  23915. },
  23916. back: {
  23917. height: math.unit(6, "feet"),
  23918. weight: math.unit(150, "lb"),
  23919. name: "Back",
  23920. image: {
  23921. source: "./media/characters/ofelia/back.svg",
  23922. extra: 1172/1159,
  23923. bottom: 28/1200
  23924. }
  23925. },
  23926. maw: {
  23927. height: math.unit(1, "feet"),
  23928. name: "Maw",
  23929. image: {
  23930. source: "./media/characters/ofelia/maw.svg"
  23931. }
  23932. },
  23933. foot: {
  23934. height: math.unit(1.949, "feet"),
  23935. name: "Foot",
  23936. image: {
  23937. source: "./media/characters/ofelia/foot.svg"
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Canon Height",
  23944. height: math.unit(2000, "miles"),
  23945. default: true
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23951. {
  23952. front: {
  23953. height: math.unit(6, "feet"),
  23954. weight: math.unit(150, "lb"),
  23955. name: "Front",
  23956. image: {
  23957. source: "./media/characters/samuel/front.svg",
  23958. extra: 265 / 258,
  23959. bottom: 2 / 266.1566
  23960. }
  23961. },
  23962. },
  23963. [
  23964. {
  23965. name: "Macro",
  23966. height: math.unit(100, "feet"),
  23967. default: true
  23968. },
  23969. {
  23970. name: "Full Size",
  23971. height: math.unit(1000, "miles")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23977. {
  23978. front: {
  23979. height: math.unit(6, "feet"),
  23980. weight: math.unit(300, "lb"),
  23981. name: "Front",
  23982. image: {
  23983. source: "./media/characters/beishir-kiel/front.svg",
  23984. extra: 569 / 547,
  23985. bottom: 41.9 / 609
  23986. }
  23987. },
  23988. maw: {
  23989. height: math.unit(6 * 0.202, "feet"),
  23990. name: "Maw",
  23991. image: {
  23992. source: "./media/characters/beishir-kiel/maw.svg"
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(300, "feet"),
  24000. default: true
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(5 + 7/12, "feet"),
  24009. weight: math.unit(120, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/logan-grey/front.svg",
  24013. extra: 1836/1738,
  24014. bottom: 108/1944
  24015. }
  24016. },
  24017. back: {
  24018. height: math.unit(5 + 7/12, "feet"),
  24019. weight: math.unit(120, "lb"),
  24020. name: "Back",
  24021. image: {
  24022. source: "./media/characters/logan-grey/back.svg",
  24023. extra: 1880/1794,
  24024. bottom: 24/1904
  24025. }
  24026. },
  24027. frontSfw: {
  24028. height: math.unit(5 + 7/12, "feet"),
  24029. weight: math.unit(120, "lb"),
  24030. name: "Front (SFW)",
  24031. image: {
  24032. source: "./media/characters/logan-grey/front-sfw.svg",
  24033. extra: 1836/1738,
  24034. bottom: 108/1944
  24035. }
  24036. },
  24037. backSfw: {
  24038. height: math.unit(5 + 7/12, "feet"),
  24039. weight: math.unit(120, "lb"),
  24040. name: "Back (SFW)",
  24041. image: {
  24042. source: "./media/characters/logan-grey/back-sfw.svg",
  24043. extra: 1880/1794,
  24044. bottom: 24/1904
  24045. }
  24046. },
  24047. hands: {
  24048. height: math.unit(0.84, "feet"),
  24049. name: "Hands",
  24050. image: {
  24051. source: "./media/characters/logan-grey/hands.svg"
  24052. }
  24053. },
  24054. paws: {
  24055. height: math.unit(0.72, "feet"),
  24056. name: "Paws",
  24057. image: {
  24058. source: "./media/characters/logan-grey/paws.svg"
  24059. }
  24060. },
  24061. cock: {
  24062. height: math.unit(1.45, "feet"),
  24063. name: "Cock",
  24064. image: {
  24065. source: "./media/characters/logan-grey/cock.svg"
  24066. }
  24067. },
  24068. cockAlt: {
  24069. height: math.unit(1.437, "feet"),
  24070. name: "Cock (alt)",
  24071. image: {
  24072. source: "./media/characters/logan-grey/cock-alt.svg"
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(5 + 8 / 12, "feet")
  24080. },
  24081. {
  24082. name: "The 500 Foot Femboy",
  24083. height: math.unit(500, "feet"),
  24084. default: true
  24085. },
  24086. {
  24087. name: "Megmacro",
  24088. height: math.unit(20, "miles")
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(8 + 2 / 12, "feet"),
  24097. weight: math.unit(275, "lb"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/draganta/front.svg",
  24101. extra: 1177 / 1135,
  24102. bottom: 33.46 / 1212.1
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(8 + 6 / 12, "feet"),
  24110. default: true
  24111. },
  24112. {
  24113. name: "Macro",
  24114. height: math.unit(150, "feet")
  24115. },
  24116. {
  24117. name: "Megamacro",
  24118. height: math.unit(1000, "miles")
  24119. },
  24120. ]
  24121. ))
  24122. characterMakers.push(() => makeCharacter(
  24123. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24124. {
  24125. front: {
  24126. height: math.unit(1.72, "m"),
  24127. weight: math.unit(80, "lb"),
  24128. name: "Front",
  24129. image: {
  24130. source: "./media/characters/voski/front.svg",
  24131. extra: 2076.22 / 2022.4,
  24132. bottom: 102.7 / 2177.3866
  24133. }
  24134. },
  24135. frontFlaccid: {
  24136. height: math.unit(1.72, "m"),
  24137. weight: math.unit(80, "lb"),
  24138. name: "Front (Flaccid)",
  24139. image: {
  24140. source: "./media/characters/voski/front-flaccid.svg",
  24141. extra: 2076.22 / 2022.4,
  24142. bottom: 102.7 / 2177.3866
  24143. }
  24144. },
  24145. frontErect: {
  24146. height: math.unit(1.72, "m"),
  24147. weight: math.unit(80, "lb"),
  24148. name: "Front (Erect)",
  24149. image: {
  24150. source: "./media/characters/voski/front-erect.svg",
  24151. extra: 2076.22 / 2022.4,
  24152. bottom: 102.7 / 2177.3866
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(1.72, "m"),
  24157. weight: math.unit(80, "lb"),
  24158. name: "Back",
  24159. image: {
  24160. source: "./media/characters/voski/back.svg",
  24161. extra: 2104 / 2051,
  24162. bottom: 10.45 / 2113.63
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(1.72, "m")
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(55, "m"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Macro+",
  24178. height: math.unit(300, "m")
  24179. },
  24180. {
  24181. name: "Macro++",
  24182. height: math.unit(700, "m")
  24183. },
  24184. {
  24185. name: "Macro+++",
  24186. height: math.unit(4500, "m")
  24187. },
  24188. {
  24189. name: "Macro++++",
  24190. height: math.unit(45, "km")
  24191. },
  24192. {
  24193. name: "Macro+++++",
  24194. height: math.unit(1220, "km")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(2.3, "m"),
  24203. weight: math.unit(304, "kg"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/icowom-lee/front.svg",
  24207. extra: 985 / 955,
  24208. bottom: 25.4 / 1012
  24209. }
  24210. },
  24211. fronttentacles: {
  24212. height: math.unit(2.3, "m"),
  24213. weight: math.unit(304, "kg"),
  24214. name: "Front-tentacles",
  24215. image: {
  24216. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24217. extra: 985 / 955,
  24218. bottom: 25.4 / 1012
  24219. }
  24220. },
  24221. back: {
  24222. height: math.unit(2.3, "m"),
  24223. weight: math.unit(304, "kg"),
  24224. name: "Back",
  24225. image: {
  24226. source: "./media/characters/icowom-lee/back.svg",
  24227. extra: 975 / 954,
  24228. bottom: 9.5 / 985
  24229. }
  24230. },
  24231. backtentacles: {
  24232. height: math.unit(2.3, "m"),
  24233. weight: math.unit(304, "kg"),
  24234. name: "Back-tentacles",
  24235. image: {
  24236. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24237. extra: 975 / 954,
  24238. bottom: 9.5 / 985
  24239. }
  24240. },
  24241. frontDressed: {
  24242. height: math.unit(2.3, "m"),
  24243. weight: math.unit(304, "kg"),
  24244. name: "Front (Dressed)",
  24245. image: {
  24246. source: "./media/characters/icowom-lee/front-dressed.svg",
  24247. extra: 3076 / 2933,
  24248. bottom: 51.4 / 3125.1889
  24249. }
  24250. },
  24251. rump: {
  24252. height: math.unit(0.776, "meters"),
  24253. name: "Rump",
  24254. image: {
  24255. source: "./media/characters/icowom-lee/rump.svg"
  24256. }
  24257. },
  24258. genitals: {
  24259. height: math.unit(0.78, "meters"),
  24260. name: "Genitals",
  24261. image: {
  24262. source: "./media/characters/icowom-lee/genitals.svg"
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(2.3, "meters"),
  24270. default: true
  24271. },
  24272. {
  24273. name: "Macro",
  24274. height: math.unit(94, "meters"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(22, "meters"),
  24284. weight: math.unit(21000, "kg"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/shock-diamond/front.svg",
  24288. extra: 2204 / 2053,
  24289. bottom: 65 / 2239.47
  24290. }
  24291. },
  24292. frontNude: {
  24293. height: math.unit(22, "meters"),
  24294. weight: math.unit(21000, "kg"),
  24295. name: "Front (Nude)",
  24296. image: {
  24297. source: "./media/characters/shock-diamond/front-nude.svg",
  24298. extra: 2514 / 2285,
  24299. bottom: 13 / 2527.56
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(3, "meters")
  24307. },
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(22, "meters"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24317. {
  24318. front: {
  24319. height: math.unit(5 + 4/12, "feet"),
  24320. weight: math.unit(125, "lb"),
  24321. name: "Front",
  24322. image: {
  24323. source: "./media/characters/rory/front.svg",
  24324. extra: 1790/1681,
  24325. bottom: 66/1856
  24326. }
  24327. },
  24328. back: {
  24329. height: math.unit(5 + 4/12, "feet"),
  24330. weight: math.unit(125, "lb"),
  24331. name: "Back",
  24332. image: {
  24333. source: "./media/characters/rory/back.svg",
  24334. extra: 1805/1690,
  24335. bottom: 56/1861
  24336. }
  24337. },
  24338. frontDressed: {
  24339. height: math.unit(5 + 4/12, "feet"),
  24340. weight: math.unit(125, "lb"),
  24341. name: "Front (Dressed)",
  24342. image: {
  24343. source: "./media/characters/rory/front-dressed.svg",
  24344. extra: 1790/1681,
  24345. bottom: 66/1856
  24346. }
  24347. },
  24348. backDressed: {
  24349. height: math.unit(5 + 4/12, "feet"),
  24350. weight: math.unit(125, "lb"),
  24351. name: "Back (Dressed)",
  24352. image: {
  24353. source: "./media/characters/rory/back-dressed.svg",
  24354. extra: 1805/1690,
  24355. bottom: 56/1861
  24356. }
  24357. },
  24358. frontNsfw: {
  24359. height: math.unit(5 + 4/12, "feet"),
  24360. weight: math.unit(125, "lb"),
  24361. name: "Front (NSFW)",
  24362. image: {
  24363. source: "./media/characters/rory/front-nsfw.svg",
  24364. extra: 1790/1681,
  24365. bottom: 66/1856
  24366. }
  24367. },
  24368. backNsfw: {
  24369. height: math.unit(5 + 4/12, "feet"),
  24370. weight: math.unit(125, "lb"),
  24371. name: "Back (NSFW)",
  24372. image: {
  24373. source: "./media/characters/rory/back-nsfw.svg",
  24374. extra: 1805/1690,
  24375. bottom: 56/1861
  24376. }
  24377. },
  24378. dick: {
  24379. height: math.unit(0.8, "feet"),
  24380. name: "Dick",
  24381. image: {
  24382. source: "./media/characters/rory/dick.svg"
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Micro",
  24389. height: math.unit(3, "inches")
  24390. },
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(5 + 4/12, "feet"),
  24394. default: true
  24395. },
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(90, "feet")
  24399. },
  24400. {
  24401. name: "Supercharged",
  24402. height: math.unit(270, "feet")
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(5 + 9 / 12, "feet"),
  24411. weight: math.unit(190, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/sprisk/front.svg",
  24415. extra: 1225 / 1180,
  24416. bottom: 42.7 / 1266.4
  24417. }
  24418. },
  24419. frontNsfw: {
  24420. height: math.unit(5 + 9 / 12, "feet"),
  24421. weight: math.unit(190, "lb"),
  24422. name: "Front (NSFW)",
  24423. image: {
  24424. source: "./media/characters/sprisk/front-nsfw.svg",
  24425. extra: 1225 / 1180,
  24426. bottom: 42.7 / 1266.4
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(5 + 9 / 12, "feet"),
  24431. weight: math.unit(190, "lb"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/sprisk/back.svg",
  24435. extra: 1247 / 1200,
  24436. bottom: 5.6 / 1253.04
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Tiny",
  24443. height: math.unit(2, "inches")
  24444. },
  24445. {
  24446. name: "Normal",
  24447. height: math.unit(5 + 9 / 12, "feet"),
  24448. default: true
  24449. },
  24450. {
  24451. name: "Mini Macro",
  24452. height: math.unit(18, "feet")
  24453. },
  24454. {
  24455. name: "Macro",
  24456. height: math.unit(100, "feet")
  24457. },
  24458. {
  24459. name: "MACRO",
  24460. height: math.unit(50, "miles")
  24461. },
  24462. {
  24463. name: "M A C R O",
  24464. height: math.unit(300, "miles")
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24470. {
  24471. side: {
  24472. height: math.unit(15.6, "meters"),
  24473. weight: math.unit(700000, "kg"),
  24474. name: "Side",
  24475. image: {
  24476. source: "./media/characters/bunsen/side.svg",
  24477. extra: 1644 / 358
  24478. }
  24479. },
  24480. foot: {
  24481. height: math.unit(1.611 * 1644 / 358, "meter"),
  24482. name: "Foot",
  24483. image: {
  24484. source: "./media/characters/bunsen/foot.svg"
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Small",
  24491. height: math.unit(10, "feet")
  24492. },
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(15.6, "meters"),
  24496. default: true
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(4 + 11 / 12, "feet"),
  24505. weight: math.unit(140, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/sesh/front.svg",
  24509. extra: 3420 / 3231,
  24510. bottom: 72 / 3949.5
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(4 + 11 / 12, "feet")
  24518. },
  24519. {
  24520. name: "Grown",
  24521. height: math.unit(15, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(1500, "feet")
  24527. },
  24528. {
  24529. name: "Megamacro",
  24530. height: math.unit(30, "miles")
  24531. },
  24532. {
  24533. name: "Continental",
  24534. height: math.unit(3000, "miles")
  24535. },
  24536. {
  24537. name: "Gravity Mass",
  24538. height: math.unit(300000, "miles")
  24539. },
  24540. {
  24541. name: "Planet Buster",
  24542. height: math.unit(30000000, "miles")
  24543. },
  24544. {
  24545. name: "Big",
  24546. height: math.unit(3000000000, "miles")
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(9, "feet"),
  24555. weight: math.unit(350, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/pepper/front.svg",
  24559. extra: 1448 / 1312,
  24560. bottom: 9.4 / 1457.88
  24561. }
  24562. },
  24563. back: {
  24564. height: math.unit(9, "feet"),
  24565. weight: math.unit(350, "lb"),
  24566. name: "Back",
  24567. image: {
  24568. source: "./media/characters/pepper/back.svg",
  24569. extra: 1423 / 1300,
  24570. bottom: 4.6 / 1429
  24571. }
  24572. },
  24573. maw: {
  24574. height: math.unit(0.932, "feet"),
  24575. name: "Maw",
  24576. image: {
  24577. source: "./media/characters/pepper/maw.svg"
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(9, "feet"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(6, "feet"),
  24594. weight: math.unit(150, "lb"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/maelstrom/front.svg",
  24598. extra: 2100 / 1883,
  24599. bottom: 94 / 2196.7
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Less Kaiju",
  24606. height: math.unit(200, "feet")
  24607. },
  24608. {
  24609. name: "Kaiju",
  24610. height: math.unit(400, "feet"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Kaiju-er",
  24615. height: math.unit(600, "feet")
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24621. {
  24622. front: {
  24623. height: math.unit(6 + 5 / 12, "feet"),
  24624. weight: math.unit(180, "lb"),
  24625. name: "Front",
  24626. image: {
  24627. source: "./media/characters/lexir/front.svg",
  24628. extra: 180 / 172,
  24629. bottom: 12 / 192
  24630. }
  24631. },
  24632. back: {
  24633. height: math.unit(6 + 5 / 12, "feet"),
  24634. weight: math.unit(180, "lb"),
  24635. name: "Back",
  24636. image: {
  24637. source: "./media/characters/lexir/back.svg",
  24638. extra: 1273/1201,
  24639. bottom: 39/1312
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Very Smal",
  24646. height: math.unit(1, "nm")
  24647. },
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(6 + 5 / 12, "feet"),
  24651. default: true
  24652. },
  24653. {
  24654. name: "Macro",
  24655. height: math.unit(1, "mile")
  24656. },
  24657. {
  24658. name: "Megamacro",
  24659. height: math.unit(50, "miles")
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(1.5, "meters"),
  24668. weight: math.unit(100, "lb"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/maksio/front.svg",
  24672. extra: 1549 / 1531,
  24673. bottom: 123.7 / 1674.5429
  24674. }
  24675. },
  24676. back: {
  24677. height: math.unit(1.5, "meters"),
  24678. weight: math.unit(100, "lb"),
  24679. name: "Back",
  24680. image: {
  24681. source: "./media/characters/maksio/back.svg",
  24682. extra: 1541 / 1509,
  24683. bottom: 97 / 1639
  24684. }
  24685. },
  24686. hand: {
  24687. height: math.unit(0.621, "feet"),
  24688. name: "Hand",
  24689. image: {
  24690. source: "./media/characters/maksio/hand.svg"
  24691. }
  24692. },
  24693. foot: {
  24694. height: math.unit(1.611, "feet"),
  24695. name: "Foot",
  24696. image: {
  24697. source: "./media/characters/maksio/foot.svg"
  24698. }
  24699. },
  24700. },
  24701. [
  24702. {
  24703. name: "Shrunken",
  24704. height: math.unit(10, "cm")
  24705. },
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(150, "cm"),
  24709. default: true
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24715. {
  24716. front: {
  24717. height: math.unit(100, "feet"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/erza-bear/front.svg",
  24721. extra: 2449 / 2390,
  24722. bottom: 46 / 2494
  24723. }
  24724. },
  24725. back: {
  24726. height: math.unit(100, "feet"),
  24727. name: "Back",
  24728. image: {
  24729. source: "./media/characters/erza-bear/back.svg",
  24730. extra: 2489 / 2430,
  24731. bottom: 85.4 / 2480
  24732. }
  24733. },
  24734. tail: {
  24735. height: math.unit(42, "feet"),
  24736. name: "Tail",
  24737. image: {
  24738. source: "./media/characters/erza-bear/tail.svg"
  24739. }
  24740. },
  24741. tongue: {
  24742. height: math.unit(8, "feet"),
  24743. name: "Tongue",
  24744. image: {
  24745. source: "./media/characters/erza-bear/tongue.svg"
  24746. }
  24747. },
  24748. dick: {
  24749. height: math.unit(10.5, "feet"),
  24750. name: "Dick",
  24751. image: {
  24752. source: "./media/characters/erza-bear/dick.svg"
  24753. }
  24754. },
  24755. dickVertical: {
  24756. height: math.unit(16.9, "feet"),
  24757. name: "Dick (Vertical)",
  24758. image: {
  24759. source: "./media/characters/erza-bear/dick-vertical.svg"
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(100, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(172, "cm"),
  24776. weight: math.unit(73, "kg"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/violet-flor/front.svg",
  24780. extra: 1530 / 1442,
  24781. bottom: 61.9 / 1588.8
  24782. }
  24783. },
  24784. back: {
  24785. height: math.unit(180, "cm"),
  24786. weight: math.unit(73, "kg"),
  24787. name: "Back",
  24788. image: {
  24789. source: "./media/characters/violet-flor/back.svg",
  24790. extra: 1692 / 1630,
  24791. bottom: 20 / 1712
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(172, "cm"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(6, "feet"),
  24808. weight: math.unit(220, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/lynn-rhea/front.svg",
  24812. extra: 310 / 273
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(6, "feet"),
  24817. weight: math.unit(220, "lb"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/lynn-rhea/back.svg",
  24821. extra: 310 / 273
  24822. }
  24823. },
  24824. dicks: {
  24825. height: math.unit(0.9, "feet"),
  24826. name: "Dicks",
  24827. image: {
  24828. source: "./media/characters/lynn-rhea/dicks.svg"
  24829. }
  24830. },
  24831. slit: {
  24832. height: math.unit(0.4, "feet"),
  24833. name: "Slit",
  24834. image: {
  24835. source: "./media/characters/lynn-rhea/slit.svg"
  24836. }
  24837. },
  24838. },
  24839. [
  24840. {
  24841. name: "Micro",
  24842. height: math.unit(1, "inch")
  24843. },
  24844. {
  24845. name: "Macro",
  24846. height: math.unit(60, "feet"),
  24847. default: true
  24848. },
  24849. {
  24850. name: "Megamacro",
  24851. height: math.unit(2, "miles")
  24852. },
  24853. {
  24854. name: "Gigamacro",
  24855. height: math.unit(3, "earths")
  24856. },
  24857. {
  24858. name: "Galactic",
  24859. height: math.unit(0.8, "galaxies")
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24865. {
  24866. front: {
  24867. height: math.unit(1600, "feet"),
  24868. weight: math.unit(85758785169, "kg"),
  24869. name: "Front",
  24870. image: {
  24871. source: "./media/characters/valathos/front.svg",
  24872. extra: 1451 / 1339
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Macro",
  24879. height: math.unit(1600, "feet"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24886. {
  24887. front: {
  24888. height: math.unit(7 + 5 / 12, "feet"),
  24889. weight: math.unit(300, "lb"),
  24890. name: "Front",
  24891. image: {
  24892. source: "./media/characters/azula/front.svg",
  24893. extra: 3208 / 2880,
  24894. bottom: 80.2 / 3277
  24895. }
  24896. },
  24897. back: {
  24898. height: math.unit(7 + 5 / 12, "feet"),
  24899. weight: math.unit(300, "lb"),
  24900. name: "Back",
  24901. image: {
  24902. source: "./media/characters/azula/back.svg",
  24903. extra: 3169 / 2822,
  24904. bottom: 150.6 / 3321
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(7 + 5 / 12, "feet"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Big",
  24916. height: math.unit(20, "feet")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(5 + 1 / 12, "feet"),
  24925. weight: math.unit(110, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/rupert/front.svg",
  24929. extra: 1549 / 1495,
  24930. bottom: 54.2 / 1604.4
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(5 + 1 / 12, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24944. {
  24945. front: {
  24946. height: math.unit(8 + 4 / 12, "feet"),
  24947. weight: math.unit(350, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/sheera-castellar/front.svg",
  24951. extra: 1957 / 1894,
  24952. bottom: 26.97 / 1975.017
  24953. }
  24954. },
  24955. side: {
  24956. height: math.unit(8 + 4 / 12, "feet"),
  24957. weight: math.unit(350, "lb"),
  24958. name: "Side",
  24959. image: {
  24960. source: "./media/characters/sheera-castellar/side.svg",
  24961. extra: 1957 / 1894
  24962. }
  24963. },
  24964. back: {
  24965. height: math.unit(8 + 4 / 12, "feet"),
  24966. weight: math.unit(350, "lb"),
  24967. name: "Back",
  24968. image: {
  24969. source: "./media/characters/sheera-castellar/back.svg",
  24970. extra: 1957 / 1894
  24971. }
  24972. },
  24973. angled: {
  24974. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24975. weight: math.unit(350, "lb"),
  24976. name: "Angled",
  24977. image: {
  24978. source: "./media/characters/sheera-castellar/angled.svg",
  24979. extra: 1807 / 1707,
  24980. bottom: 68 / 1875
  24981. }
  24982. },
  24983. genitals: {
  24984. height: math.unit(2.2, "feet"),
  24985. name: "Genitals",
  24986. image: {
  24987. source: "./media/characters/sheera-castellar/genitals.svg"
  24988. }
  24989. },
  24990. taur: {
  24991. height: math.unit(10 + 6/12, "feet"),
  24992. name: "Taur",
  24993. image: {
  24994. source: "./media/characters/sheera-castellar/taur.svg",
  24995. extra: 2017/1909,
  24996. bottom: 185/2202
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(8 + 4 / 12, "feet")
  25004. },
  25005. {
  25006. name: "Macro",
  25007. height: math.unit(150, "feet"),
  25008. default: true
  25009. },
  25010. {
  25011. name: "Macro+",
  25012. height: math.unit(800, "feet")
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(6, "feet"),
  25021. weight: math.unit(150, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/jaipur/front.svg",
  25025. extra: 3860 / 3731,
  25026. bottom: 287 / 4140
  25027. }
  25028. },
  25029. back: {
  25030. height: math.unit(6, "feet"),
  25031. weight: math.unit(150, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/jaipur/back.svg",
  25035. extra: 1637/1561,
  25036. bottom: 154/1791
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(1.85, "meters"),
  25044. default: true
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(150, "meters")
  25049. },
  25050. {
  25051. name: "Macro+",
  25052. height: math.unit(0.5, "miles")
  25053. },
  25054. {
  25055. name: "Macro++",
  25056. height: math.unit(2.5, "miles")
  25057. },
  25058. {
  25059. name: "Macro+++",
  25060. height: math.unit(12, "miles")
  25061. },
  25062. {
  25063. name: "Macro++++",
  25064. height: math.unit(120, "miles")
  25065. },
  25066. {
  25067. name: "Macro+++++",
  25068. height: math.unit(1200, "miles")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(6, "feet"),
  25077. weight: math.unit(150, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/sheila-wolf/front.svg",
  25081. extra: 1931 / 1808,
  25082. bottom: 29.5 / 1960
  25083. }
  25084. },
  25085. dick: {
  25086. height: math.unit(1.464, "feet"),
  25087. name: "Dick",
  25088. image: {
  25089. source: "./media/characters/sheila-wolf/dick.svg"
  25090. }
  25091. },
  25092. muzzle: {
  25093. height: math.unit(0.513, "feet"),
  25094. name: "Muzzle",
  25095. image: {
  25096. source: "./media/characters/sheila-wolf/muzzle.svg"
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Macro",
  25103. height: math.unit(70, "feet"),
  25104. default: true
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(32, "meters"),
  25113. weight: math.unit(300000, "kg"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/almor/front.svg",
  25117. extra: 1408 / 1322,
  25118. bottom: 94.6 / 1506.5
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(32, "meters"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(7, "feet"),
  25135. weight: math.unit(200, "lb"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/silver/front.svg",
  25139. extra: 472.1 / 450.5,
  25140. bottom: 26.5 / 499.424
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(7, "feet"),
  25148. default: true
  25149. },
  25150. {
  25151. name: "Macro",
  25152. height: math.unit(800, "feet")
  25153. },
  25154. {
  25155. name: "Megamacro",
  25156. height: math.unit(250, "miles")
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(6, "feet"),
  25165. weight: math.unit(150, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/pliskin/front.svg",
  25169. extra: 1469 / 1359,
  25170. bottom: 70 / 1540
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Micro",
  25177. height: math.unit(3, "inches")
  25178. },
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(5 + 11 / 12, "feet"),
  25182. default: true
  25183. },
  25184. {
  25185. name: "Macro",
  25186. height: math.unit(120, "feet")
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(6, "feet"),
  25195. weight: math.unit(150, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/sammy/front.svg",
  25199. extra: 1193 / 1089,
  25200. bottom: 30.5 / 1226
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Macro",
  25207. height: math.unit(1700, "feet"),
  25208. default: true
  25209. },
  25210. {
  25211. name: "Examacro",
  25212. height: math.unit(2.5e9, "lightyears")
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(21, "meters"),
  25221. weight: math.unit(12, "tonnes"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/kuru/front.svg",
  25225. extra: 4301 / 3785,
  25226. bottom: 371.3 / 4691
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(21, "meters"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(23, "meters"),
  25243. weight: math.unit(12.2, "tonnes"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/rakka/front.svg",
  25247. extra: 4670 / 4169,
  25248. bottom: 301 / 4968.7
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(23, "meters"),
  25256. default: true
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(6, "feet"),
  25265. weight: math.unit(150, "lb"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/rhys-feline/front.svg",
  25269. extra: 2488 / 2308,
  25270. bottom: 35.67 / 2519.19
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Really Small",
  25277. height: math.unit(1, "nm")
  25278. },
  25279. {
  25280. name: "Micro",
  25281. height: math.unit(4, "inches")
  25282. },
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(4 + 10 / 12, "feet"),
  25286. default: true
  25287. },
  25288. {
  25289. name: "Macro",
  25290. height: math.unit(100, "feet")
  25291. },
  25292. {
  25293. name: "Megamacto",
  25294. height: math.unit(50, "miles")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25300. {
  25301. side: {
  25302. height: math.unit(30, "feet"),
  25303. weight: math.unit(35000, "kg"),
  25304. name: "Side",
  25305. image: {
  25306. source: "./media/characters/alydar/side.svg",
  25307. extra: 234 / 222,
  25308. bottom: 6.5 / 241
  25309. }
  25310. },
  25311. front: {
  25312. height: math.unit(30, "feet"),
  25313. weight: math.unit(35000, "kg"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/alydar/front.svg",
  25317. extra: 223.37 / 210.2,
  25318. bottom: 22.3 / 246.76
  25319. }
  25320. },
  25321. top: {
  25322. height: math.unit(64.54, "feet"),
  25323. weight: math.unit(35000, "kg"),
  25324. name: "Top",
  25325. image: {
  25326. source: "./media/characters/alydar/top.svg"
  25327. }
  25328. },
  25329. anthro: {
  25330. height: math.unit(30, "feet"),
  25331. weight: math.unit(9000, "kg"),
  25332. name: "Anthro",
  25333. image: {
  25334. source: "./media/characters/alydar/anthro.svg",
  25335. extra: 432 / 421,
  25336. bottom: 7.18 / 440
  25337. }
  25338. },
  25339. maw: {
  25340. height: math.unit(11.693, "feet"),
  25341. name: "Maw",
  25342. image: {
  25343. source: "./media/characters/alydar/maw.svg"
  25344. }
  25345. },
  25346. head: {
  25347. height: math.unit(11.693, "feet"),
  25348. name: "Head",
  25349. image: {
  25350. source: "./media/characters/alydar/head.svg"
  25351. }
  25352. },
  25353. headAlt: {
  25354. height: math.unit(12.861, "feet"),
  25355. name: "Head (Alt)",
  25356. image: {
  25357. source: "./media/characters/alydar/head-alt.svg"
  25358. }
  25359. },
  25360. wing: {
  25361. height: math.unit(20.712, "feet"),
  25362. name: "Wing",
  25363. image: {
  25364. source: "./media/characters/alydar/wing.svg"
  25365. }
  25366. },
  25367. wingFeather: {
  25368. height: math.unit(9.662, "feet"),
  25369. name: "Wing Feather",
  25370. image: {
  25371. source: "./media/characters/alydar/wing-feather.svg"
  25372. }
  25373. },
  25374. countourFeather: {
  25375. height: math.unit(4.154, "feet"),
  25376. name: "Contour Feather",
  25377. image: {
  25378. source: "./media/characters/alydar/contour-feather.svg"
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Diplomatic",
  25385. height: math.unit(13, "feet"),
  25386. default: true
  25387. },
  25388. {
  25389. name: "Small",
  25390. height: math.unit(30, "feet")
  25391. },
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(95, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Large",
  25399. height: math.unit(285, "feet")
  25400. },
  25401. {
  25402. name: "Incomprehensible",
  25403. height: math.unit(450, "megameters")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25409. {
  25410. side: {
  25411. height: math.unit(11, "feet"),
  25412. weight: math.unit(1750, "kg"),
  25413. name: "Side",
  25414. image: {
  25415. source: "./media/characters/selicia/side.svg",
  25416. extra: 440 / 396,
  25417. bottom: 24.8 / 465.979
  25418. }
  25419. },
  25420. maw: {
  25421. height: math.unit(4.665, "feet"),
  25422. name: "Maw",
  25423. image: {
  25424. source: "./media/characters/selicia/maw.svg"
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(11, "feet"),
  25432. default: true
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25438. {
  25439. side: {
  25440. height: math.unit(2 + 6 / 12, "feet"),
  25441. weight: math.unit(30, "lb"),
  25442. name: "Side",
  25443. image: {
  25444. source: "./media/characters/layla/side.svg",
  25445. extra: 244 / 188,
  25446. bottom: 18.2 / 262.1
  25447. }
  25448. },
  25449. back: {
  25450. height: math.unit(2 + 6 / 12, "feet"),
  25451. weight: math.unit(30, "lb"),
  25452. name: "Back",
  25453. image: {
  25454. source: "./media/characters/layla/back.svg",
  25455. extra: 308 / 241.5,
  25456. bottom: 8.9 / 316.8
  25457. }
  25458. },
  25459. cumming: {
  25460. height: math.unit(2 + 6 / 12, "feet"),
  25461. weight: math.unit(30, "lb"),
  25462. name: "Cumming",
  25463. image: {
  25464. source: "./media/characters/layla/cumming.svg",
  25465. extra: 342 / 279,
  25466. bottom: 595 / 938
  25467. }
  25468. },
  25469. dickFlaccid: {
  25470. height: math.unit(2.595, "feet"),
  25471. name: "Flaccid Genitals",
  25472. image: {
  25473. source: "./media/characters/layla/dick-flaccid.svg"
  25474. }
  25475. },
  25476. dickErect: {
  25477. height: math.unit(2.359, "feet"),
  25478. name: "Erect Genitals",
  25479. image: {
  25480. source: "./media/characters/layla/dick-erect.svg"
  25481. }
  25482. },
  25483. dragon: {
  25484. height: math.unit(40, "feet"),
  25485. name: "Dragon",
  25486. image: {
  25487. source: "./media/characters/layla/dragon.svg",
  25488. extra: 610/535,
  25489. bottom: 367/977
  25490. }
  25491. },
  25492. taur: {
  25493. height: math.unit(30, "feet"),
  25494. name: "Taur",
  25495. image: {
  25496. source: "./media/characters/layla/taur.svg",
  25497. extra: 1268/1199,
  25498. bottom: 112/1380
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Micro",
  25505. height: math.unit(1, "inch")
  25506. },
  25507. {
  25508. name: "Small",
  25509. height: math.unit(1, "foot")
  25510. },
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(2 + 6 / 12, "feet"),
  25514. default: true
  25515. },
  25516. {
  25517. name: "Macro",
  25518. height: math.unit(200, "feet")
  25519. },
  25520. {
  25521. name: "Megamacro",
  25522. height: math.unit(1000, "miles")
  25523. },
  25524. {
  25525. name: "Planetary",
  25526. height: math.unit(8000, "miles")
  25527. },
  25528. {
  25529. name: "True Layla",
  25530. height: math.unit(200000 * 7, "multiverses")
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25536. {
  25537. back: {
  25538. height: math.unit(10.5, "feet"),
  25539. weight: math.unit(800, "lb"),
  25540. name: "Back",
  25541. image: {
  25542. source: "./media/characters/knox/back.svg",
  25543. extra: 1486 / 1089,
  25544. bottom: 107 / 1601.4
  25545. }
  25546. },
  25547. side: {
  25548. height: math.unit(10.5, "feet"),
  25549. weight: math.unit(800, "lb"),
  25550. name: "Side",
  25551. image: {
  25552. source: "./media/characters/knox/side.svg",
  25553. extra: 244 / 218,
  25554. bottom: 14 / 260
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Compact",
  25561. height: math.unit(10.5, "feet"),
  25562. default: true
  25563. },
  25564. {
  25565. name: "Dynamax",
  25566. height: math.unit(210, "feet")
  25567. },
  25568. {
  25569. name: "Full Macro",
  25570. height: math.unit(850, "feet")
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(28, "feet"),
  25579. weight: math.unit(10500, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/kayda/front.svg",
  25583. extra: 1536 / 1428,
  25584. bottom: 68.7 / 1603
  25585. }
  25586. },
  25587. back: {
  25588. height: math.unit(28, "feet"),
  25589. weight: math.unit(10500, "lb"),
  25590. name: "Back",
  25591. image: {
  25592. source: "./media/characters/kayda/back.svg",
  25593. extra: 1557 / 1464,
  25594. bottom: 39.5 / 1597.49
  25595. }
  25596. },
  25597. dick: {
  25598. height: math.unit(3.858, "feet"),
  25599. name: "Dick",
  25600. image: {
  25601. source: "./media/characters/kayda/dick.svg"
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Macro",
  25608. height: math.unit(28, "feet"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(10 + 11 / 12, "feet"),
  25618. weight: math.unit(1400, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/brian/front.svg",
  25622. extra: 737 / 692,
  25623. bottom: 55.4 / 785
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(10 + 11 / 12, "feet"),
  25631. default: true
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(5 + 8 / 12, "feet"),
  25640. weight: math.unit(140, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/khemri/front.svg",
  25644. extra: 4780 / 4059,
  25645. bottom: 80.1 / 4859.25
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Micro",
  25652. height: math.unit(6, "inches")
  25653. },
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(5 + 8 / 12, "feet"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25663. {
  25664. front: {
  25665. height: math.unit(13, "feet"),
  25666. weight: math.unit(1700, "lb"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/felix-braveheart/front.svg",
  25670. extra: 1222 / 1157,
  25671. bottom: 53.2 / 1280
  25672. }
  25673. },
  25674. back: {
  25675. height: math.unit(13, "feet"),
  25676. weight: math.unit(1700, "lb"),
  25677. name: "Back",
  25678. image: {
  25679. source: "./media/characters/felix-braveheart/back.svg",
  25680. extra: 1277 / 1203,
  25681. bottom: 50.2 / 1327
  25682. }
  25683. },
  25684. feral: {
  25685. height: math.unit(6, "feet"),
  25686. weight: math.unit(400, "lb"),
  25687. name: "Feral",
  25688. image: {
  25689. source: "./media/characters/felix-braveheart/feral.svg",
  25690. extra: 682 / 625,
  25691. bottom: 6.9 / 688
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(13, "feet"),
  25699. default: true
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25705. {
  25706. side: {
  25707. height: math.unit(5 + 11 / 12, "feet"),
  25708. weight: math.unit(1400, "lb"),
  25709. name: "Side",
  25710. image: {
  25711. source: "./media/characters/shadow-blade/side.svg",
  25712. extra: 1726 / 1267,
  25713. bottom: 58.4 / 1785
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(5 + 11 / 12, "feet"),
  25721. default: true
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25727. {
  25728. front: {
  25729. height: math.unit(1 + 6 / 12, "feet"),
  25730. weight: math.unit(25, "lb"),
  25731. name: "Front",
  25732. image: {
  25733. source: "./media/characters/karla-halldor/front.svg",
  25734. extra: 1459 / 1383,
  25735. bottom: 12 / 1472
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Normal",
  25742. height: math.unit(1 + 6 / 12, "feet"),
  25743. default: true
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(6 + 2 / 12, "feet"),
  25752. weight: math.unit(160, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/ariam/front.svg",
  25756. extra: 1073/976,
  25757. bottom: 52/1125
  25758. }
  25759. },
  25760. back: {
  25761. height: math.unit(6 + 2/12, "feet"),
  25762. weight: math.unit(160, "lb"),
  25763. name: "Back",
  25764. image: {
  25765. source: "./media/characters/ariam/back.svg",
  25766. extra: 1103/1023,
  25767. bottom: 9/1112
  25768. }
  25769. },
  25770. dressed: {
  25771. height: math.unit(6 + 2/12, "feet"),
  25772. weight: math.unit(160, "lb"),
  25773. name: "Dressed",
  25774. image: {
  25775. source: "./media/characters/ariam/dressed.svg",
  25776. extra: 1099/1009,
  25777. bottom: 25/1124
  25778. }
  25779. },
  25780. squatting: {
  25781. height: math.unit(4.1, "feet"),
  25782. weight: math.unit(160, "lb"),
  25783. name: "Squatting",
  25784. image: {
  25785. source: "./media/characters/ariam/squatting.svg",
  25786. extra: 2617 / 2112,
  25787. bottom: 61.2 / 2681,
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(6 + 2 / 12, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Normal+",
  25799. height: math.unit(4, "meters")
  25800. },
  25801. {
  25802. name: "Macro",
  25803. height: math.unit(50, "meters")
  25804. },
  25805. {
  25806. name: "Macro+",
  25807. height: math.unit(100, "meters")
  25808. },
  25809. {
  25810. name: "Megamacro",
  25811. height: math.unit(20, "km")
  25812. },
  25813. {
  25814. name: "Caretaker",
  25815. height: math.unit(444, "megameters")
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25821. {
  25822. front: {
  25823. height: math.unit(1.67, "meters"),
  25824. weight: math.unit(140, "lb"),
  25825. name: "Front",
  25826. image: {
  25827. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25828. extra: 438 / 410,
  25829. bottom: 0.75 / 439
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Shrunken",
  25836. height: math.unit(7.6, "cm")
  25837. },
  25838. {
  25839. name: "Human Scale",
  25840. height: math.unit(1.67, "meters")
  25841. },
  25842. {
  25843. name: "Wolxi Scale",
  25844. height: math.unit(36.7, "meters"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(1.73, "meters"),
  25854. weight: math.unit(240, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/izue-two-mothers/front.svg",
  25858. extra: 469 / 437,
  25859. bottom: 1.24 / 470.6
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Shrunken",
  25866. height: math.unit(7.86, "cm")
  25867. },
  25868. {
  25869. name: "Human Scale",
  25870. height: math.unit(1.73, "meters")
  25871. },
  25872. {
  25873. name: "Wolxi Scale",
  25874. height: math.unit(38, "meters"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25881. {
  25882. front: {
  25883. height: math.unit(1.55, "meters"),
  25884. weight: math.unit(120, "lb"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/teeku-love-shack/front.svg",
  25888. extra: 387 / 362,
  25889. bottom: 1.51 / 388
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Shrunken",
  25896. height: math.unit(7, "cm")
  25897. },
  25898. {
  25899. name: "Human Scale",
  25900. height: math.unit(1.55, "meters")
  25901. },
  25902. {
  25903. name: "Wolxi Scale",
  25904. height: math.unit(34.1, "meters"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25911. {
  25912. front: {
  25913. height: math.unit(1.83, "meters"),
  25914. weight: math.unit(135, "lb"),
  25915. name: "Front",
  25916. image: {
  25917. source: "./media/characters/dejma-the-red/front.svg",
  25918. extra: 480 / 458,
  25919. bottom: 1.8 / 482
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Shrunken",
  25926. height: math.unit(8.3, "cm")
  25927. },
  25928. {
  25929. name: "Human Scale",
  25930. height: math.unit(1.83, "meters")
  25931. },
  25932. {
  25933. name: "Wolxi Scale",
  25934. height: math.unit(40, "meters"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(1.78, "meters"),
  25944. weight: math.unit(65, "kg"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/aki/front.svg",
  25948. extra: 452 / 415
  25949. }
  25950. },
  25951. frontNsfw: {
  25952. height: math.unit(1.78, "meters"),
  25953. weight: math.unit(65, "kg"),
  25954. name: "Front (NSFW)",
  25955. image: {
  25956. source: "./media/characters/aki/front-nsfw.svg",
  25957. extra: 452 / 415
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(1.78, "meters"),
  25962. weight: math.unit(65, "kg"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/aki/back.svg",
  25966. extra: 452 / 415
  25967. }
  25968. },
  25969. rump: {
  25970. height: math.unit(2.05, "feet"),
  25971. name: "Rump",
  25972. image: {
  25973. source: "./media/characters/aki/rump.svg"
  25974. }
  25975. },
  25976. dick: {
  25977. height: math.unit(0.95, "feet"),
  25978. name: "Dick",
  25979. image: {
  25980. source: "./media/characters/aki/dick.svg"
  25981. }
  25982. },
  25983. },
  25984. [
  25985. {
  25986. name: "Micro",
  25987. height: math.unit(15, "cm")
  25988. },
  25989. {
  25990. name: "Normal",
  25991. height: math.unit(178, "cm"),
  25992. default: true
  25993. },
  25994. {
  25995. name: "Macro",
  25996. height: math.unit(214, "m")
  25997. },
  25998. {
  25999. name: "Macro+",
  26000. height: math.unit(534, "m")
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(5 + 5 / 12, "feet"),
  26009. weight: math.unit(120, "lb"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/ari/front.svg",
  26013. extra: 1550/1471,
  26014. bottom: 39/1589
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(5 + 5 / 12, "feet")
  26022. },
  26023. {
  26024. name: "Macro",
  26025. height: math.unit(100, "feet"),
  26026. default: true
  26027. },
  26028. {
  26029. name: "Megamacro",
  26030. height: math.unit(100, "miles")
  26031. },
  26032. {
  26033. name: "Gigamacro",
  26034. height: math.unit(80000, "miles")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26040. {
  26041. side: {
  26042. height: math.unit(9, "feet"),
  26043. weight: math.unit(400, "kg"),
  26044. name: "Side",
  26045. image: {
  26046. source: "./media/characters/bolt/side.svg",
  26047. extra: 1126 / 896,
  26048. bottom: 60 / 1187.3,
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Micro",
  26055. height: math.unit(5, "inches")
  26056. },
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(9, "feet"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(700, "feet")
  26065. },
  26066. {
  26067. name: "Max Size",
  26068. height: math.unit(1.52e22, "yottameters")
  26069. },
  26070. ]
  26071. ))
  26072. characterMakers.push(() => makeCharacter(
  26073. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26074. {
  26075. front: {
  26076. height: math.unit(4.3, "meters"),
  26077. weight: math.unit(3, "tons"),
  26078. name: "Front",
  26079. image: {
  26080. source: "./media/characters/draekon-sylviar/front.svg",
  26081. extra: 2072/1512,
  26082. bottom: 74/2146
  26083. }
  26084. },
  26085. back: {
  26086. height: math.unit(4.3, "meters"),
  26087. weight: math.unit(3, "tons"),
  26088. name: "Back",
  26089. image: {
  26090. source: "./media/characters/draekon-sylviar/back.svg",
  26091. extra: 1639/1483,
  26092. bottom: 41/1680
  26093. }
  26094. },
  26095. feral: {
  26096. height: math.unit(1.15, "meters"),
  26097. weight: math.unit(3, "tons"),
  26098. name: "Feral",
  26099. image: {
  26100. source: "./media/characters/draekon-sylviar/feral.svg",
  26101. extra: 1033/395,
  26102. bottom: 130/1163
  26103. }
  26104. },
  26105. maw: {
  26106. height: math.unit(1.3, "meters"),
  26107. name: "Maw",
  26108. image: {
  26109. source: "./media/characters/draekon-sylviar/maw.svg"
  26110. }
  26111. },
  26112. mawSeparated: {
  26113. height: math.unit(1.53, "meters"),
  26114. name: "Separated Maw",
  26115. image: {
  26116. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26117. }
  26118. },
  26119. tail: {
  26120. height: math.unit(1.15, "meters"),
  26121. name: "Tail",
  26122. image: {
  26123. source: "./media/characters/draekon-sylviar/tail.svg"
  26124. }
  26125. },
  26126. tailDick: {
  26127. height: math.unit(1.15, "meters"),
  26128. name: "Tail (Dick)",
  26129. image: {
  26130. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26131. }
  26132. },
  26133. tailDickSeparated: {
  26134. height: math.unit(1.19, "meters"),
  26135. name: "Tail (Separated Dick)",
  26136. image: {
  26137. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26138. }
  26139. },
  26140. slit: {
  26141. height: math.unit(1, "meters"),
  26142. name: "Slit",
  26143. image: {
  26144. source: "./media/characters/draekon-sylviar/slit.svg"
  26145. }
  26146. },
  26147. dick: {
  26148. height: math.unit(1.15, "meters"),
  26149. name: "Dick",
  26150. image: {
  26151. source: "./media/characters/draekon-sylviar/dick.svg"
  26152. }
  26153. },
  26154. dickSeparated: {
  26155. height: math.unit(1.1, "meters"),
  26156. name: "Separated Dick",
  26157. image: {
  26158. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26159. }
  26160. },
  26161. sheath: {
  26162. height: math.unit(1.15, "meters"),
  26163. name: "Sheath",
  26164. image: {
  26165. source: "./media/characters/draekon-sylviar/sheath.svg"
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Small",
  26172. height: math.unit(4.53 / 2, "meters"),
  26173. default: true
  26174. },
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(4.53, "meters"),
  26178. default: true
  26179. },
  26180. {
  26181. name: "Large",
  26182. height: math.unit(4.53 * 2, "meters"),
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(6 + 2 / 12, "feet"),
  26191. weight: math.unit(180, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/brawler/front.svg",
  26195. extra: 3301 / 3027,
  26196. bottom: 138 / 3439
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(6 + 2 / 12, "feet"),
  26204. default: true
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26210. {
  26211. front: {
  26212. height: math.unit(11, "feet"),
  26213. weight: math.unit(1000, "lb"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/alex/front.svg",
  26217. bottom: 44.5 / 620
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(5, "inches")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(11, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(9.5e9, "feet")
  26234. },
  26235. {
  26236. name: "Max Size",
  26237. height: math.unit(1.4e283, "yottameters")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26243. {
  26244. female: {
  26245. height: math.unit(29.9, "m"),
  26246. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26247. name: "Female",
  26248. image: {
  26249. source: "./media/characters/zenari/female.svg",
  26250. extra: 3281.6 / 3217,
  26251. bottom: 72.2 / 3353
  26252. }
  26253. },
  26254. male: {
  26255. height: math.unit(27.7, "m"),
  26256. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26257. name: "Male",
  26258. image: {
  26259. source: "./media/characters/zenari/male.svg",
  26260. extra: 3008 / 2991,
  26261. bottom: 54.6 / 3069
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Macro",
  26268. height: math.unit(29.7, "meters"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26275. {
  26276. female: {
  26277. height: math.unit(23.8, "m"),
  26278. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26279. name: "Female",
  26280. image: {
  26281. source: "./media/characters/mactarian/female.svg",
  26282. extra: 2662 / 2569,
  26283. bottom: 73 / 2736
  26284. }
  26285. },
  26286. male: {
  26287. height: math.unit(23.8, "m"),
  26288. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26289. name: "Male",
  26290. image: {
  26291. source: "./media/characters/mactarian/male.svg",
  26292. extra: 2673 / 2600,
  26293. bottom: 76 / 2750
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Macro",
  26300. height: math.unit(23.8, "meters"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26307. {
  26308. female: {
  26309. height: math.unit(19.3, "m"),
  26310. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26311. name: "Female",
  26312. image: {
  26313. source: "./media/characters/umok/female.svg",
  26314. extra: 2186 / 2078,
  26315. bottom: 87 / 2277
  26316. }
  26317. },
  26318. male: {
  26319. height: math.unit(19.5, "m"),
  26320. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26321. name: "Male",
  26322. image: {
  26323. source: "./media/characters/umok/male.svg",
  26324. extra: 2233 / 2140,
  26325. bottom: 24.4 / 2258
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Macro",
  26332. height: math.unit(19.3, "meters"),
  26333. default: true
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26339. {
  26340. female: {
  26341. height: math.unit(26.15, "m"),
  26342. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26343. name: "Female",
  26344. image: {
  26345. source: "./media/characters/joraxian/female.svg",
  26346. extra: 2912 / 2824,
  26347. bottom: 36 / 2956
  26348. }
  26349. },
  26350. male: {
  26351. height: math.unit(25.4, "m"),
  26352. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26353. name: "Male",
  26354. image: {
  26355. source: "./media/characters/joraxian/male.svg",
  26356. extra: 2877 / 2721,
  26357. bottom: 82 / 2967
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Macro",
  26364. height: math.unit(26.15, "meters"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26371. {
  26372. female: {
  26373. height: math.unit(21.6, "m"),
  26374. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26375. name: "Female",
  26376. image: {
  26377. source: "./media/characters/sthara/female.svg",
  26378. extra: 2516 / 2347,
  26379. bottom: 21.5 / 2537
  26380. }
  26381. },
  26382. male: {
  26383. height: math.unit(24, "m"),
  26384. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26385. name: "Male",
  26386. image: {
  26387. source: "./media/characters/sthara/male.svg",
  26388. extra: 2732 / 2607,
  26389. bottom: 23 / 2732
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Macro",
  26396. height: math.unit(21.6, "meters"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6 + 4 / 12, "feet"),
  26406. weight: math.unit(175, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/luka-bryzant/front.svg",
  26410. extra: 311 / 289,
  26411. bottom: 4 / 315
  26412. }
  26413. },
  26414. back: {
  26415. height: math.unit(6 + 4 / 12, "feet"),
  26416. weight: math.unit(175, "lb"),
  26417. name: "Back",
  26418. image: {
  26419. source: "./media/characters/luka-bryzant/back.svg",
  26420. extra: 311 / 289,
  26421. bottom: 3.8 / 313.7
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Micro",
  26428. height: math.unit(10, "inches")
  26429. },
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(6 + 4 / 12, "feet"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Large",
  26437. height: math.unit(12, "feet")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(5 + 7 / 12, "feet"),
  26446. weight: math.unit(185, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/aman-aquila/front.svg",
  26450. extra: 1013 / 976,
  26451. bottom: 45.6 / 1057
  26452. }
  26453. },
  26454. side: {
  26455. height: math.unit(5 + 7 / 12, "feet"),
  26456. weight: math.unit(185, "lb"),
  26457. name: "Side",
  26458. image: {
  26459. source: "./media/characters/aman-aquila/side.svg",
  26460. extra: 1054 / 1011,
  26461. bottom: 15 / 1070
  26462. }
  26463. },
  26464. back: {
  26465. height: math.unit(5 + 7 / 12, "feet"),
  26466. weight: math.unit(185, "lb"),
  26467. name: "Back",
  26468. image: {
  26469. source: "./media/characters/aman-aquila/back.svg",
  26470. extra: 1026 / 970,
  26471. bottom: 12 / 1039
  26472. }
  26473. },
  26474. head: {
  26475. height: math.unit(1.211, "feet"),
  26476. name: "Head",
  26477. image: {
  26478. source: "./media/characters/aman-aquila/head.svg",
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Minimicro",
  26485. height: math.unit(0.057, "inches")
  26486. },
  26487. {
  26488. name: "Micro",
  26489. height: math.unit(7, "inches")
  26490. },
  26491. {
  26492. name: "Mini",
  26493. height: math.unit(3 + 7 / 12, "feet")
  26494. },
  26495. {
  26496. name: "Normal",
  26497. height: math.unit(5 + 7 / 12, "feet"),
  26498. default: true
  26499. },
  26500. {
  26501. name: "Macro",
  26502. height: math.unit(157 + 7 / 12, "feet")
  26503. },
  26504. {
  26505. name: "Megamacro",
  26506. height: math.unit(1557 + 7 / 12, "feet")
  26507. },
  26508. {
  26509. name: "Gigamacro",
  26510. height: math.unit(15557 + 7 / 12, "feet")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(3 + 2 / 12, "inches"),
  26519. weight: math.unit(0.3, "ounces"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/hiphae/front.svg",
  26523. extra: 1931 / 1683,
  26524. bottom: 24 / 1955
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(3 + 1 / 2, "inches"),
  26532. default: true
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(5 + 10 / 12, "feet"),
  26541. weight: math.unit(165, "lb"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/nicky/front.svg",
  26545. extra: 3144 / 2886,
  26546. bottom: 45.6 / 3192
  26547. }
  26548. },
  26549. back: {
  26550. height: math.unit(5 + 10 / 12, "feet"),
  26551. weight: math.unit(165, "lb"),
  26552. name: "Back",
  26553. image: {
  26554. source: "./media/characters/nicky/back.svg",
  26555. extra: 3055 / 2804,
  26556. bottom: 28.4 / 3087
  26557. }
  26558. },
  26559. frontclothed: {
  26560. height: math.unit(5 + 10 / 12, "feet"),
  26561. weight: math.unit(165, "lb"),
  26562. name: "Front-clothed",
  26563. image: {
  26564. source: "./media/characters/nicky/front-clothed.svg",
  26565. extra: 3184.9 / 2926.9,
  26566. bottom: 86.5 / 3239.9
  26567. }
  26568. },
  26569. foot: {
  26570. height: math.unit(1.16, "feet"),
  26571. name: "Foot",
  26572. image: {
  26573. source: "./media/characters/nicky/foot.svg"
  26574. }
  26575. },
  26576. feet: {
  26577. height: math.unit(1.34, "feet"),
  26578. name: "Feet",
  26579. image: {
  26580. source: "./media/characters/nicky/feet.svg"
  26581. }
  26582. },
  26583. maw: {
  26584. height: math.unit(0.9, "feet"),
  26585. name: "Maw",
  26586. image: {
  26587. source: "./media/characters/nicky/maw.svg"
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(5 + 10 / 12, "feet"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(60, "feet")
  26600. },
  26601. {
  26602. name: "Megamacro",
  26603. height: math.unit(1, "mile")
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26609. {
  26610. side: {
  26611. height: math.unit(10, "feet"),
  26612. weight: math.unit(600, "lb"),
  26613. name: "Side",
  26614. image: {
  26615. source: "./media/characters/blair/side.svg",
  26616. bottom: 16.6 / 475,
  26617. extra: 458 / 431
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Micro",
  26624. height: math.unit(8, "inches")
  26625. },
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(10, "feet"),
  26629. default: true
  26630. },
  26631. {
  26632. name: "Macro",
  26633. height: math.unit(180, "feet")
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26639. {
  26640. front: {
  26641. height: math.unit(5 + 4 / 12, "feet"),
  26642. weight: math.unit(125, "lb"),
  26643. name: "Front",
  26644. image: {
  26645. source: "./media/characters/fisher/front.svg",
  26646. extra: 444 / 390,
  26647. bottom: 2 / 444.8
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Micro",
  26654. height: math.unit(4, "inches")
  26655. },
  26656. {
  26657. name: "Normal",
  26658. height: math.unit(5 + 4 / 12, "feet"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Macro",
  26663. height: math.unit(100, "feet")
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(6.71, "feet"),
  26672. weight: math.unit(200, "lb"),
  26673. preyCapacity: math.unit(1000000, "people"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/gliss/front.svg",
  26677. extra: 2347 / 2231,
  26678. bottom: 113 / 2462
  26679. }
  26680. },
  26681. hammerspaceSize: {
  26682. height: math.unit(6.71 * 717, "feet"),
  26683. weight: math.unit(200, "lb"),
  26684. preyCapacity: math.unit(1000000, "people"),
  26685. name: "Hammerspace Size",
  26686. image: {
  26687. source: "./media/characters/gliss/front.svg",
  26688. extra: 2347 / 2231,
  26689. bottom: 113 / 2462
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(6.71, "feet"),
  26697. default: true
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26703. {
  26704. side: {
  26705. height: math.unit(1.44, "m"),
  26706. weight: math.unit(80, "kg"),
  26707. name: "Side",
  26708. image: {
  26709. source: "./media/characters/dune-anderson/side.svg",
  26710. bottom: 49 / 1426
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Wolf-sized",
  26717. height: math.unit(1.44, "meters")
  26718. },
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(5.05, "meters"),
  26722. default: true
  26723. },
  26724. {
  26725. name: "Big",
  26726. height: math.unit(14.4, "meters")
  26727. },
  26728. {
  26729. name: "Huge",
  26730. height: math.unit(144, "meters")
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(7, "feet"),
  26739. weight: math.unit(425, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/hind/front.svg",
  26743. extra: 2091 / 1860,
  26744. bottom: 129 / 2220
  26745. }
  26746. },
  26747. back: {
  26748. height: math.unit(7, "feet"),
  26749. weight: math.unit(425, "lb"),
  26750. name: "Back",
  26751. image: {
  26752. source: "./media/characters/hind/back.svg",
  26753. extra: 2091 / 1860,
  26754. bottom: 24.6 / 2309
  26755. }
  26756. },
  26757. tail: {
  26758. height: math.unit(2.8, "feet"),
  26759. name: "Tail",
  26760. image: {
  26761. source: "./media/characters/hind/tail.svg"
  26762. }
  26763. },
  26764. head: {
  26765. height: math.unit(2.55, "feet"),
  26766. name: "Head",
  26767. image: {
  26768. source: "./media/characters/hind/head.svg"
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "XS",
  26775. height: math.unit(0.7, "feet")
  26776. },
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(7, "feet"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "XL",
  26784. height: math.unit(70, "feet")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(2.1, "meters"),
  26793. weight: math.unit(150, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/tharquench-sizestealer/front.svg",
  26797. extra: 1605/1470,
  26798. bottom: 36/1641
  26799. }
  26800. },
  26801. frontAlt: {
  26802. height: math.unit(2.1, "meters"),
  26803. weight: math.unit(150, "lb"),
  26804. name: "Front (Alt)",
  26805. image: {
  26806. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26807. extra: 2318 / 2063,
  26808. bottom: 93.4 / 2410
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Nano",
  26815. height: math.unit(1, "mm")
  26816. },
  26817. {
  26818. name: "Micro",
  26819. height: math.unit(1, "cm")
  26820. },
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(2.1, "meters"),
  26824. default: true
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26830. {
  26831. front: {
  26832. height: math.unit(7 + 5 / 12, "feet"),
  26833. weight: math.unit(357, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/solex-draconov/front.svg",
  26837. extra: 1993 / 1865,
  26838. bottom: 117 / 2111
  26839. }
  26840. },
  26841. },
  26842. [
  26843. {
  26844. name: "Natural Height",
  26845. height: math.unit(7 + 5 / 12, "feet"),
  26846. default: true
  26847. },
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(350, "feet")
  26851. },
  26852. {
  26853. name: "Macro+",
  26854. height: math.unit(1000, "feet")
  26855. },
  26856. {
  26857. name: "Megamacro",
  26858. height: math.unit(20, "km")
  26859. },
  26860. {
  26861. name: "Megamacro+",
  26862. height: math.unit(1000, "km")
  26863. },
  26864. {
  26865. name: "Gigamacro",
  26866. height: math.unit(2.5, "Gm")
  26867. },
  26868. {
  26869. name: "Teramacro",
  26870. height: math.unit(15, "Tm")
  26871. },
  26872. {
  26873. name: "Galactic",
  26874. height: math.unit(30, "Zm")
  26875. },
  26876. {
  26877. name: "Universal",
  26878. height: math.unit(21000, "Ym")
  26879. },
  26880. {
  26881. name: "Omniversal",
  26882. height: math.unit(9.861e50, "Ym")
  26883. },
  26884. {
  26885. name: "Existential",
  26886. height: math.unit(1e300, "meters")
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26892. {
  26893. side: {
  26894. height: math.unit(25, "feet"),
  26895. weight: math.unit(90000, "lb"),
  26896. name: "Side",
  26897. image: {
  26898. source: "./media/characters/mandarax/side.svg",
  26899. extra: 614 / 332,
  26900. bottom: 55 / 630
  26901. }
  26902. },
  26903. lounging: {
  26904. height: math.unit(15.4, "feet"),
  26905. weight: math.unit(90000, "lb"),
  26906. name: "Lounging",
  26907. image: {
  26908. source: "./media/characters/mandarax/lounging.svg",
  26909. extra: 817/609,
  26910. bottom: 685/1502
  26911. }
  26912. },
  26913. head: {
  26914. height: math.unit(11.4, "feet"),
  26915. name: "Head",
  26916. image: {
  26917. source: "./media/characters/mandarax/head.svg"
  26918. }
  26919. },
  26920. belly: {
  26921. height: math.unit(33, "feet"),
  26922. name: "Belly",
  26923. preyCapacity: math.unit(500, "people"),
  26924. image: {
  26925. source: "./media/characters/mandarax/belly.svg"
  26926. }
  26927. },
  26928. dick: {
  26929. height: math.unit(8.46, "feet"),
  26930. name: "Dick",
  26931. image: {
  26932. source: "./media/characters/mandarax/dick.svg"
  26933. }
  26934. },
  26935. top: {
  26936. height: math.unit(28, "meters"),
  26937. name: "Top",
  26938. image: {
  26939. source: "./media/characters/mandarax/top.svg"
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(25, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26953. {
  26954. front: {
  26955. height: math.unit(5, "feet"),
  26956. weight: math.unit(90, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/pixil/front.svg",
  26960. extra: 2000 / 1618,
  26961. bottom: 12.3 / 2011
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(5, "feet"),
  26969. default: true
  26970. },
  26971. {
  26972. name: "Megamacro",
  26973. height: math.unit(10, "miles"),
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(7 + 2 / 12, "feet"),
  26982. weight: math.unit(200, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/angel/front.svg",
  26986. extra: 1830 / 1737,
  26987. bottom: 22.6 / 1854,
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7 + 2 / 12, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Macro",
  26999. height: math.unit(1000, "feet")
  27000. },
  27001. {
  27002. name: "Megamacro",
  27003. height: math.unit(2, "miles")
  27004. },
  27005. {
  27006. name: "Gigamacro",
  27007. height: math.unit(20, "earths")
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27013. {
  27014. front: {
  27015. height: math.unit(5, "feet"),
  27016. weight: math.unit(180, "lb"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/mekana/front.svg",
  27020. extra: 1671 / 1605,
  27021. bottom: 3.5 / 1691
  27022. }
  27023. },
  27024. side: {
  27025. height: math.unit(5, "feet"),
  27026. weight: math.unit(180, "lb"),
  27027. name: "Side",
  27028. image: {
  27029. source: "./media/characters/mekana/side.svg",
  27030. extra: 1671 / 1605,
  27031. bottom: 3.5 / 1691
  27032. }
  27033. },
  27034. back: {
  27035. height: math.unit(5, "feet"),
  27036. weight: math.unit(180, "lb"),
  27037. name: "Back",
  27038. image: {
  27039. source: "./media/characters/mekana/back.svg",
  27040. extra: 1671 / 1605,
  27041. bottom: 3.5 / 1691
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(5, "feet"),
  27049. default: true
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(4 + 6 / 12, "feet"),
  27058. weight: math.unit(80, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/pixie/front.svg",
  27062. extra: 1924 / 1825,
  27063. bottom: 22.4 / 1946
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(4 + 6 / 12, "feet"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Macro",
  27075. height: math.unit(40, "feet")
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(2.1, "meters"),
  27084. weight: math.unit(200, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/the-lascivious/front.svg",
  27088. extra: 1 / 0.893,
  27089. bottom: 3.5 / 573.7
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Human Scale",
  27096. height: math.unit(2.1, "meters")
  27097. },
  27098. {
  27099. name: "Wolxi Scale",
  27100. height: math.unit(46.2, "m"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Boinker of Buildings",
  27105. height: math.unit(10, "km")
  27106. },
  27107. {
  27108. name: "Shagger of Skyscrapers",
  27109. height: math.unit(40, "km")
  27110. },
  27111. {
  27112. name: "Banger of Boroughs",
  27113. height: math.unit(4000, "km")
  27114. },
  27115. {
  27116. name: "Screwer of States",
  27117. height: math.unit(100000, "km")
  27118. },
  27119. {
  27120. name: "Pounder of Planets",
  27121. height: math.unit(2000000, "km")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(6, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/aj/front.svg",
  27134. extra: 2039 / 1562,
  27135. bottom: 40 / 2079
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Normal",
  27142. height: math.unit(11 + 6 / 12, "feet"),
  27143. default: true
  27144. },
  27145. {
  27146. name: "Megamacro",
  27147. height: math.unit(60, "megameters")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27153. {
  27154. side: {
  27155. height: math.unit(31 + 8 / 12, "feet"),
  27156. weight: math.unit(75000, "kg"),
  27157. name: "Side",
  27158. image: {
  27159. source: "./media/characters/koros/side.svg",
  27160. extra: 1442 / 1297,
  27161. bottom: 122.7 / 1562
  27162. }
  27163. },
  27164. dicksKingsCrown: {
  27165. height: math.unit(6, "feet"),
  27166. name: "Dicks (King's Crown)",
  27167. image: {
  27168. source: "./media/characters/koros/dicks-kings-crown.svg"
  27169. }
  27170. },
  27171. dicksTailSet: {
  27172. height: math.unit(3, "feet"),
  27173. name: "Dicks (Tail Set)",
  27174. image: {
  27175. source: "./media/characters/koros/dicks-tail-set.svg"
  27176. }
  27177. },
  27178. dickCumming: {
  27179. height: math.unit(7.98, "feet"),
  27180. name: "Dick (Cumming)",
  27181. image: {
  27182. source: "./media/characters/koros/dick-cumming.svg"
  27183. }
  27184. },
  27185. dicksBack: {
  27186. height: math.unit(5.9, "feet"),
  27187. name: "Dicks (Back)",
  27188. image: {
  27189. source: "./media/characters/koros/dicks-back.svg"
  27190. }
  27191. },
  27192. dicksFront: {
  27193. height: math.unit(3.72, "feet"),
  27194. name: "Dicks (Front)",
  27195. image: {
  27196. source: "./media/characters/koros/dicks-front.svg"
  27197. }
  27198. },
  27199. dicksPeeking: {
  27200. height: math.unit(3.0, "feet"),
  27201. name: "Dicks (Peeking)",
  27202. image: {
  27203. source: "./media/characters/koros/dicks-peeking.svg"
  27204. }
  27205. },
  27206. eye: {
  27207. height: math.unit(1.7, "feet"),
  27208. name: "Eye",
  27209. image: {
  27210. source: "./media/characters/koros/eye.svg"
  27211. }
  27212. },
  27213. headFront: {
  27214. height: math.unit(11.69, "feet"),
  27215. name: "Head (Front)",
  27216. image: {
  27217. source: "./media/characters/koros/head-front.svg"
  27218. }
  27219. },
  27220. headSide: {
  27221. height: math.unit(14, "feet"),
  27222. name: "Head (Side)",
  27223. image: {
  27224. source: "./media/characters/koros/head-side.svg"
  27225. }
  27226. },
  27227. leg: {
  27228. height: math.unit(17, "feet"),
  27229. name: "Leg",
  27230. image: {
  27231. source: "./media/characters/koros/leg.svg"
  27232. }
  27233. },
  27234. mawSide: {
  27235. height: math.unit(12.8, "feet"),
  27236. name: "Maw (Side)",
  27237. image: {
  27238. source: "./media/characters/koros/maw-side.svg"
  27239. }
  27240. },
  27241. mawSpitting: {
  27242. height: math.unit(17, "feet"),
  27243. name: "Maw (Spitting)",
  27244. image: {
  27245. source: "./media/characters/koros/maw-spitting.svg"
  27246. }
  27247. },
  27248. slit: {
  27249. height: math.unit(2.8, "feet"),
  27250. name: "Slit",
  27251. image: {
  27252. source: "./media/characters/koros/slit.svg"
  27253. }
  27254. },
  27255. stomach: {
  27256. height: math.unit(6.8, "feet"),
  27257. preyCapacity: math.unit(20, "people"),
  27258. name: "Stomach",
  27259. image: {
  27260. source: "./media/characters/koros/stomach.svg"
  27261. }
  27262. },
  27263. wingspanBottom: {
  27264. height: math.unit(114, "feet"),
  27265. name: "Wingspan (Bottom)",
  27266. image: {
  27267. source: "./media/characters/koros/wingspan-bottom.svg"
  27268. }
  27269. },
  27270. wingspanTop: {
  27271. height: math.unit(104, "feet"),
  27272. name: "Wingspan (Top)",
  27273. image: {
  27274. source: "./media/characters/koros/wingspan-top.svg"
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(31 + 8 / 12, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(18 + 5 / 12, "feet"),
  27291. weight: math.unit(3750, "kg"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/vexx/front.svg",
  27295. extra: 426 / 396,
  27296. bottom: 31.5 / 458
  27297. }
  27298. },
  27299. maw: {
  27300. height: math.unit(6, "feet"),
  27301. name: "Maw",
  27302. image: {
  27303. source: "./media/characters/vexx/maw.svg"
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(18 + 5 / 12, "feet"),
  27311. default: true
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(17 + 6 / 12, "feet"),
  27320. weight: math.unit(150, "lb"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/baadra/front.svg",
  27324. extra: 1694/1553,
  27325. bottom: 179/1873
  27326. }
  27327. },
  27328. frontAlt: {
  27329. height: math.unit(17 + 6 / 12, "feet"),
  27330. weight: math.unit(150, "lb"),
  27331. name: "Front (Alt)",
  27332. image: {
  27333. source: "./media/characters/baadra/front-alt.svg",
  27334. extra: 3137 / 2890,
  27335. bottom: 168.4 / 3305
  27336. }
  27337. },
  27338. back: {
  27339. height: math.unit(17 + 6 / 12, "feet"),
  27340. weight: math.unit(150, "lb"),
  27341. name: "Back",
  27342. image: {
  27343. source: "./media/characters/baadra/back.svg",
  27344. extra: 3142 / 2890,
  27345. bottom: 220 / 3371
  27346. }
  27347. },
  27348. head: {
  27349. height: math.unit(5.45, "feet"),
  27350. name: "Head",
  27351. image: {
  27352. source: "./media/characters/baadra/head.svg"
  27353. }
  27354. },
  27355. headAngry: {
  27356. height: math.unit(4.95, "feet"),
  27357. name: "Head (Angry)",
  27358. image: {
  27359. source: "./media/characters/baadra/head-angry.svg"
  27360. }
  27361. },
  27362. headOpen: {
  27363. height: math.unit(6, "feet"),
  27364. name: "Head (Open)",
  27365. image: {
  27366. source: "./media/characters/baadra/head-open.svg"
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(17 + 6 / 12, "feet"),
  27374. default: true
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(7 + 3 / 12, "feet"),
  27383. weight: math.unit(180, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/juri/front.svg",
  27387. extra: 1401 / 1237,
  27388. bottom: 18.5 / 1418
  27389. }
  27390. },
  27391. side: {
  27392. height: math.unit(7 + 3 / 12, "feet"),
  27393. weight: math.unit(180, "lb"),
  27394. name: "Side",
  27395. image: {
  27396. source: "./media/characters/juri/side.svg",
  27397. extra: 1424 / 1242,
  27398. bottom: 18.5 / 1447
  27399. }
  27400. },
  27401. sitting: {
  27402. height: math.unit(6, "feet"),
  27403. weight: math.unit(180, "lb"),
  27404. name: "Sitting",
  27405. image: {
  27406. source: "./media/characters/juri/sitting.svg",
  27407. extra: 1270 / 1143,
  27408. bottom: 100 / 1343
  27409. }
  27410. },
  27411. back: {
  27412. height: math.unit(7 + 3 / 12, "feet"),
  27413. weight: math.unit(180, "lb"),
  27414. name: "Back",
  27415. image: {
  27416. source: "./media/characters/juri/back.svg",
  27417. extra: 1377 / 1240,
  27418. bottom: 23.7 / 1405
  27419. }
  27420. },
  27421. maw: {
  27422. height: math.unit(2.8, "feet"),
  27423. name: "Maw",
  27424. image: {
  27425. source: "./media/characters/juri/maw.svg"
  27426. }
  27427. },
  27428. stomach: {
  27429. height: math.unit(0.89, "feet"),
  27430. preyCapacity: math.unit(4, "liters"),
  27431. name: "Stomach",
  27432. image: {
  27433. source: "./media/characters/juri/stomach.svg"
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(7 + 3 / 12, "feet"),
  27441. default: true
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27447. {
  27448. fox: {
  27449. height: math.unit(5 + 6 / 12, "feet"),
  27450. weight: math.unit(140, "lb"),
  27451. name: "Fox",
  27452. image: {
  27453. source: "./media/characters/maxene-sita/fox.svg",
  27454. extra: 146 / 138,
  27455. bottom: 2.1 / 148.19
  27456. }
  27457. },
  27458. foxLaying: {
  27459. height: math.unit(1.70, "feet"),
  27460. weight: math.unit(140, "lb"),
  27461. name: "Fox (Laying)",
  27462. image: {
  27463. source: "./media/characters/maxene-sita/fox-laying.svg",
  27464. extra: 910 / 572,
  27465. bottom: 71 / 981
  27466. }
  27467. },
  27468. kitsune: {
  27469. height: math.unit(10, "feet"),
  27470. weight: math.unit(800, "lb"),
  27471. name: "Kitsune",
  27472. image: {
  27473. source: "./media/characters/maxene-sita/kitsune.svg",
  27474. extra: 185 / 176,
  27475. bottom: 4.7 / 189.9
  27476. }
  27477. },
  27478. hellhound: {
  27479. height: math.unit(10, "feet"),
  27480. weight: math.unit(700, "lb"),
  27481. name: "Hellhound",
  27482. image: {
  27483. source: "./media/characters/maxene-sita/hellhound.svg",
  27484. extra: 1600 / 1545,
  27485. bottom: 81 / 1681
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(5 + 6 / 12, "feet"),
  27493. default: true
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27499. {
  27500. front: {
  27501. height: math.unit(3 + 4 / 12, "feet"),
  27502. weight: math.unit(70, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/maia/front.svg",
  27506. extra: 227 / 219.5,
  27507. bottom: 40 / 267
  27508. }
  27509. },
  27510. back: {
  27511. height: math.unit(3 + 4 / 12, "feet"),
  27512. weight: math.unit(70, "lb"),
  27513. name: "Back",
  27514. image: {
  27515. source: "./media/characters/maia/back.svg",
  27516. extra: 237 / 225
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(3 + 4 / 12, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(5 + 10 / 12, "feet"),
  27533. weight: math.unit(197, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/jabaro/front.svg",
  27537. extra: 225 / 216,
  27538. bottom: 5.06 / 230
  27539. }
  27540. },
  27541. back: {
  27542. height: math.unit(5 + 10 / 12, "feet"),
  27543. weight: math.unit(197, "lb"),
  27544. name: "Back",
  27545. image: {
  27546. source: "./media/characters/jabaro/back.svg",
  27547. extra: 225 / 219,
  27548. bottom: 1.9 / 227
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(5 + 10 / 12, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(5 + 8 / 12, "feet"),
  27565. weight: math.unit(139, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/risa/front.svg",
  27569. extra: 270 / 260,
  27570. bottom: 11.2 / 282
  27571. }
  27572. },
  27573. back: {
  27574. height: math.unit(5 + 8 / 12, "feet"),
  27575. weight: math.unit(139, "lb"),
  27576. name: "Back",
  27577. image: {
  27578. source: "./media/characters/risa/back.svg",
  27579. extra: 264 / 255,
  27580. bottom: 4 / 268
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(5 + 8 / 12, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(2 + 11 / 12, "feet"),
  27597. weight: math.unit(30, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/weatley/front.svg",
  27601. bottom: 10.7 / 414,
  27602. extra: 403.5 / 362
  27603. }
  27604. },
  27605. back: {
  27606. height: math.unit(2 + 11 / 12, "feet"),
  27607. weight: math.unit(30, "lb"),
  27608. name: "Back",
  27609. image: {
  27610. source: "./media/characters/weatley/back.svg",
  27611. bottom: 10.7 / 414,
  27612. extra: 403.5 / 362
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(2 + 11 / 12, "feet"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(5 + 2 / 12, "feet"),
  27629. weight: math.unit(50, "kg"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/mercury-crescent/front.svg",
  27633. extra: 1088 / 1033,
  27634. bottom: 18.9 / 1109
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Normal",
  27641. height: math.unit(5 + 2 / 12, "feet"),
  27642. default: true
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27648. {
  27649. front: {
  27650. height: math.unit(2, "feet"),
  27651. weight: math.unit(15, "kg"),
  27652. name: "Front",
  27653. image: {
  27654. source: "./media/characters/diamond-jones/front.svg",
  27655. extra: 727/723,
  27656. bottom: 46/773
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(2, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(3, "feet"),
  27673. weight: math.unit(30, "kg"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/sweet-bit/front.svg",
  27677. extra: 675 / 567,
  27678. bottom: 27.7 / 703
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(3, "feet"),
  27686. default: true
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27692. {
  27693. side: {
  27694. height: math.unit(9.178, "feet"),
  27695. weight: math.unit(500, "lb"),
  27696. name: "Side",
  27697. image: {
  27698. source: "./media/characters/umbrazen/side.svg",
  27699. extra: 1730 / 1473,
  27700. bottom: 34.6 / 1765
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(9.178, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(10, "feet"),
  27717. weight: math.unit(750, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/arlist/front.svg",
  27721. extra: 961 / 778,
  27722. bottom: 6.2 / 986
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(10, "feet"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(5 + 1 / 12, "feet"),
  27739. weight: math.unit(110, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/aradel/front.svg",
  27743. extra: 324 / 303,
  27744. bottom: 3.6 / 329.4
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(5 + 1 / 12, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27758. {
  27759. dressed: {
  27760. height: math.unit(3 + 8 / 12, "feet"),
  27761. weight: math.unit(50, "lb"),
  27762. name: "Dressed",
  27763. image: {
  27764. source: "./media/characters/serryn/dressed.svg",
  27765. extra: 1792 / 1656,
  27766. bottom: 43.5 / 1840
  27767. }
  27768. },
  27769. nude: {
  27770. height: math.unit(3 + 8 / 12, "feet"),
  27771. weight: math.unit(50, "lb"),
  27772. name: "Nude",
  27773. image: {
  27774. source: "./media/characters/serryn/nude.svg",
  27775. extra: 1792 / 1656,
  27776. bottom: 43.5 / 1840
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(3 + 8 / 12, "feet"),
  27784. default: true
  27785. },
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(7 + 10 / 12, "feet"),
  27793. weight: math.unit(255, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/xavier-thyme/front.svg",
  27797. extra: 3733 / 3642,
  27798. bottom: 131 / 3869
  27799. }
  27800. },
  27801. frontRaven: {
  27802. height: math.unit(7 + 10 / 12, "feet"),
  27803. weight: math.unit(255, "lb"),
  27804. name: "Front (Raven)",
  27805. image: {
  27806. source: "./media/characters/xavier-thyme/front-raven.svg",
  27807. extra: 4385 / 3642,
  27808. bottom: 131 / 4517
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(7 + 10 / 12, "feet"),
  27816. default: true
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(1.6, "m"),
  27825. weight: math.unit(50, "kg"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/kiki/front.svg",
  27829. extra: 4682 / 3610,
  27830. bottom: 115 / 4777
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(1.6, "meters"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(50, "m"),
  27847. weight: math.unit(500, "tonnes"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/ryoko/front.svg",
  27851. extra: 4632 / 3926,
  27852. bottom: 193 / 4823
  27853. }
  27854. },
  27855. },
  27856. [
  27857. {
  27858. name: "Normal",
  27859. height: math.unit(50, "meters"),
  27860. default: true
  27861. },
  27862. ]
  27863. ))
  27864. characterMakers.push(() => makeCharacter(
  27865. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27866. {
  27867. front: {
  27868. height: math.unit(30, "m"),
  27869. weight: math.unit(22, "tonnes"),
  27870. name: "Front",
  27871. image: {
  27872. source: "./media/characters/elio/front.svg",
  27873. extra: 4582 / 3720,
  27874. bottom: 236 / 4828
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Normal",
  27881. height: math.unit(30, "meters"),
  27882. default: true
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(6 + 3 / 12, "feet"),
  27891. weight: math.unit(120, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/azura/front.svg",
  27895. extra: 1149 / 1135,
  27896. bottom: 45 / 1194
  27897. }
  27898. },
  27899. frontClothed: {
  27900. height: math.unit(6 + 3 / 12, "feet"),
  27901. weight: math.unit(120, "lb"),
  27902. name: "Front (Clothed)",
  27903. image: {
  27904. source: "./media/characters/azura/front-clothed.svg",
  27905. extra: 1149 / 1135,
  27906. bottom: 45 / 1194
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(6 + 3 / 12, "feet"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Macro",
  27918. height: math.unit(20 + 6 / 12, "feet")
  27919. },
  27920. {
  27921. name: "Megamacro",
  27922. height: math.unit(12, "miles")
  27923. },
  27924. {
  27925. name: "Gigamacro",
  27926. height: math.unit(10000, "miles")
  27927. },
  27928. {
  27929. name: "Teramacro",
  27930. height: math.unit(900000, "miles")
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(12, "feet"),
  27939. weight: math.unit(1, "ton"),
  27940. capacity: math.unit(660000, "gallons"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/zeus/front.svg",
  27944. extra: 5005 / 4717,
  27945. bottom: 363 / 5388
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(12, "feet")
  27953. },
  27954. {
  27955. name: "Preferred Size",
  27956. height: math.unit(0.5, "miles"),
  27957. default: true
  27958. },
  27959. {
  27960. name: "Giga Horse",
  27961. height: math.unit(300, "miles")
  27962. },
  27963. {
  27964. name: "Riding Planets",
  27965. height: math.unit(30, "megameters")
  27966. },
  27967. {
  27968. name: "Cosmic Giant",
  27969. height: math.unit(3, "zettameters")
  27970. },
  27971. {
  27972. name: "Breeding God",
  27973. height: math.unit(9.92e22, "yottameters")
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27979. {
  27980. side: {
  27981. height: math.unit(9, "feet"),
  27982. weight: math.unit(1500, "kg"),
  27983. name: "Side",
  27984. image: {
  27985. source: "./media/characters/fang/side.svg",
  27986. extra: 924 / 866,
  27987. bottom: 47.5 / 972.3
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(9, "feet"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Macro",
  27999. height: math.unit(75 + 6 / 12, "feet")
  28000. },
  28001. {
  28002. name: "Teramacro",
  28003. height: math.unit(50000, "miles")
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(10, "feet"),
  28012. weight: math.unit(2, "tons"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/rekhit/front.svg",
  28016. extra: 2796 / 2590,
  28017. bottom: 225 / 3022
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(10, "feet"),
  28025. default: true
  28026. },
  28027. {
  28028. name: "Macro",
  28029. height: math.unit(500, "feet")
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(7 + 6.451 / 12, "feet"),
  28038. weight: math.unit(310, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/dahlia-verrick/front.svg",
  28042. extra: 1488 / 1365,
  28043. bottom: 6.2 / 1495
  28044. }
  28045. },
  28046. back: {
  28047. height: math.unit(7 + 6.451 / 12, "feet"),
  28048. weight: math.unit(310, "lb"),
  28049. name: "Back",
  28050. image: {
  28051. source: "./media/characters/dahlia-verrick/back.svg",
  28052. extra: 1472 / 1351,
  28053. bottom: 5.28 / 1477
  28054. }
  28055. },
  28056. frontBusiness: {
  28057. height: math.unit(7 + 6.451 / 12, "feet"),
  28058. weight: math.unit(200, "lb"),
  28059. name: "Front (Business)",
  28060. image: {
  28061. source: "./media/characters/dahlia-verrick/front-business.svg",
  28062. extra: 1478 / 1381,
  28063. bottom: 5.5 / 1484
  28064. }
  28065. },
  28066. frontCasual: {
  28067. height: math.unit(7 + 6.451 / 12, "feet"),
  28068. weight: math.unit(200, "lb"),
  28069. name: "Front (Casual)",
  28070. image: {
  28071. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28072. extra: 1478 / 1381,
  28073. bottom: 5.5 / 1484
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Travel-Sized",
  28080. height: math.unit(7.45, "inches")
  28081. },
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(7 + 6.451 / 12, "feet"),
  28085. default: true
  28086. },
  28087. {
  28088. name: "Hitting the Town",
  28089. height: math.unit(37 + 8 / 12, "feet")
  28090. },
  28091. {
  28092. name: "Stomp in the Suburbs",
  28093. height: math.unit(964 + 9.728 / 12, "feet")
  28094. },
  28095. {
  28096. name: "Sit on the City",
  28097. height: math.unit(61747 + 10.592 / 12, "feet")
  28098. },
  28099. {
  28100. name: "Glomp the Globe",
  28101. height: math.unit(252919327 + 4.832 / 12, "feet")
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(6 + 4 / 12, "feet"),
  28110. weight: math.unit(320, "lb"),
  28111. name: "Front",
  28112. image: {
  28113. source: "./media/characters/balina-mahigan/front.svg",
  28114. extra: 447 / 428,
  28115. bottom: 18 / 466
  28116. }
  28117. },
  28118. back: {
  28119. height: math.unit(6 + 4 / 12, "feet"),
  28120. weight: math.unit(320, "lb"),
  28121. name: "Back",
  28122. image: {
  28123. source: "./media/characters/balina-mahigan/back.svg",
  28124. extra: 445 / 428,
  28125. bottom: 4.07 / 448
  28126. }
  28127. },
  28128. arm: {
  28129. height: math.unit(1.88, "feet"),
  28130. name: "Arm",
  28131. image: {
  28132. source: "./media/characters/balina-mahigan/arm.svg"
  28133. }
  28134. },
  28135. backPort: {
  28136. height: math.unit(0.685, "feet"),
  28137. name: "Back Port",
  28138. image: {
  28139. source: "./media/characters/balina-mahigan/back-port.svg"
  28140. }
  28141. },
  28142. hoofpaw: {
  28143. height: math.unit(1.41, "feet"),
  28144. name: "Hoofpaw",
  28145. image: {
  28146. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28147. }
  28148. },
  28149. leftHandBack: {
  28150. height: math.unit(0.938, "feet"),
  28151. name: "Left Hand (Back)",
  28152. image: {
  28153. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28154. }
  28155. },
  28156. leftHandFront: {
  28157. height: math.unit(0.938, "feet"),
  28158. name: "Left Hand (Front)",
  28159. image: {
  28160. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28161. }
  28162. },
  28163. rightHandBack: {
  28164. height: math.unit(0.95, "feet"),
  28165. name: "Right Hand (Back)",
  28166. image: {
  28167. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28168. }
  28169. },
  28170. rightHandFront: {
  28171. height: math.unit(0.95, "feet"),
  28172. name: "Right Hand (Front)",
  28173. image: {
  28174. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(6 + 4 / 12, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(6, "feet"),
  28191. weight: math.unit(320, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/balina-mejeri/front.svg",
  28195. extra: 517 / 488,
  28196. bottom: 44.2 / 561
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(6 + 4 / 12, "feet")
  28204. },
  28205. {
  28206. name: "Business",
  28207. height: math.unit(155, "feet"),
  28208. default: true
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28214. {
  28215. kneeling: {
  28216. height: math.unit(6 + 4 / 12, "feet"),
  28217. weight: math.unit(300 * 20, "lb"),
  28218. name: "Kneeling",
  28219. image: {
  28220. source: "./media/characters/balbarian/kneeling.svg",
  28221. extra: 922 / 862,
  28222. bottom: 42.4 / 965
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(6 + 4 / 12, "feet")
  28230. },
  28231. {
  28232. name: "Treasured",
  28233. height: math.unit(18 + 9 / 12, "feet"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Macro",
  28238. height: math.unit(900, "feet")
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(6 + 4 / 12, "feet"),
  28247. weight: math.unit(325, "lb"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/balina-amarini/front.svg",
  28251. extra: 415 / 403,
  28252. bottom: 19 / 433.4
  28253. }
  28254. },
  28255. back: {
  28256. height: math.unit(6 + 4 / 12, "feet"),
  28257. weight: math.unit(325, "lb"),
  28258. name: "Back",
  28259. image: {
  28260. source: "./media/characters/balina-amarini/back.svg",
  28261. extra: 415 / 403,
  28262. bottom: 13.5 / 432
  28263. }
  28264. },
  28265. overdrive: {
  28266. height: math.unit(6 + 4 / 12, "feet"),
  28267. weight: math.unit(400, "lb"),
  28268. name: "Overdrive",
  28269. image: {
  28270. source: "./media/characters/balina-amarini/overdrive.svg",
  28271. extra: 269 / 259,
  28272. bottom: 12 / 282
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Boom",
  28279. height: math.unit(9 + 10 / 12, "feet"),
  28280. default: true
  28281. },
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(280, "feet")
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28290. {
  28291. goddess: {
  28292. height: math.unit(600, "feet"),
  28293. weight: math.unit(2000000, "tons"),
  28294. name: "Goddess",
  28295. image: {
  28296. source: "./media/characters/lady-kubwa/goddess.svg",
  28297. extra: 1240.5 / 1223,
  28298. bottom: 22 / 1263
  28299. }
  28300. },
  28301. goddesser: {
  28302. height: math.unit(900, "feet"),
  28303. weight: math.unit(20000000, "lb"),
  28304. name: "Goddess-er",
  28305. image: {
  28306. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28307. extra: 899 / 888,
  28308. bottom: 12.6 / 912
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Macro",
  28315. height: math.unit(600, "feet"),
  28316. default: true
  28317. },
  28318. {
  28319. name: "Megamacro",
  28320. height: math.unit(250, "miles")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(7 + 7 / 12, "feet"),
  28329. weight: math.unit(250, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/tala-grovehorn/front.svg",
  28333. extra: 2636 / 2525,
  28334. bottom: 147 / 2781
  28335. }
  28336. },
  28337. back: {
  28338. height: math.unit(7 + 7 / 12, "feet"),
  28339. weight: math.unit(250, "lb"),
  28340. name: "Back",
  28341. image: {
  28342. source: "./media/characters/tala-grovehorn/back.svg",
  28343. extra: 2635 / 2539,
  28344. bottom: 100 / 2732.8
  28345. }
  28346. },
  28347. mouth: {
  28348. height: math.unit(1.15, "feet"),
  28349. name: "Mouth",
  28350. image: {
  28351. source: "./media/characters/tala-grovehorn/mouth.svg"
  28352. }
  28353. },
  28354. dick: {
  28355. height: math.unit(2.36, "feet"),
  28356. name: "Dick",
  28357. image: {
  28358. source: "./media/characters/tala-grovehorn/dick.svg"
  28359. }
  28360. },
  28361. slit: {
  28362. height: math.unit(0.61, "feet"),
  28363. name: "Slit",
  28364. image: {
  28365. source: "./media/characters/tala-grovehorn/slit.svg"
  28366. }
  28367. },
  28368. },
  28369. [
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(7 + 7 / 12, "feet"),
  28377. weight: math.unit(225, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/epona/front.svg",
  28381. extra: 2445 / 2290,
  28382. bottom: 251 / 2696
  28383. }
  28384. },
  28385. back: {
  28386. height: math.unit(7 + 7 / 12, "feet"),
  28387. weight: math.unit(225, "lb"),
  28388. name: "Back",
  28389. image: {
  28390. source: "./media/characters/epona/back.svg",
  28391. extra: 2546 / 2408,
  28392. bottom: 44 / 2589
  28393. }
  28394. },
  28395. genitals: {
  28396. height: math.unit(1.5, "feet"),
  28397. name: "Genitals",
  28398. image: {
  28399. source: "./media/characters/epona/genitals.svg"
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(7 + 7 / 12, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28413. {
  28414. front: {
  28415. height: math.unit(7, "feet"),
  28416. weight: math.unit(518, "lb"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/avia-bloodbourn/front.svg",
  28420. extra: 1466 / 1350,
  28421. bottom: 65 / 1527
  28422. }
  28423. },
  28424. },
  28425. [
  28426. ]
  28427. ))
  28428. characterMakers.push(() => makeCharacter(
  28429. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28430. {
  28431. front: {
  28432. height: math.unit(9.35, "feet"),
  28433. weight: math.unit(600, "lb"),
  28434. name: "Front",
  28435. image: {
  28436. source: "./media/characters/amera/front.svg",
  28437. extra: 891 / 818,
  28438. bottom: 30 / 922.7
  28439. }
  28440. },
  28441. back: {
  28442. height: math.unit(9.35, "feet"),
  28443. weight: math.unit(600, "lb"),
  28444. name: "Back",
  28445. image: {
  28446. source: "./media/characters/amera/back.svg",
  28447. extra: 876 / 824,
  28448. bottom: 6.8 / 884
  28449. }
  28450. },
  28451. dick: {
  28452. height: math.unit(2.14, "feet"),
  28453. name: "Dick",
  28454. image: {
  28455. source: "./media/characters/amera/dick.svg"
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(9.35, "feet"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28469. {
  28470. kneeling: {
  28471. height: math.unit(3 + 4 / 12, "feet"),
  28472. weight: math.unit(90, "lb"),
  28473. name: "Kneeling",
  28474. image: {
  28475. source: "./media/characters/rosewen/kneeling.svg",
  28476. extra: 1835 / 1571,
  28477. bottom: 27.7 / 1862
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(3 + 4 / 12, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(5 + 10 / 12, "feet"),
  28494. weight: math.unit(200, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/sabah/front.svg",
  28498. extra: 849 / 763,
  28499. bottom: 33.9 / 881
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(5 + 10 / 12, "feet"),
  28507. default: true
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28513. {
  28514. front: {
  28515. height: math.unit(3 + 5 / 12, "feet"),
  28516. weight: math.unit(40, "kg"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/purple-flame/front.svg",
  28520. extra: 1577 / 1412,
  28521. bottom: 97 / 1694
  28522. }
  28523. },
  28524. frontDressed: {
  28525. height: math.unit(3 + 5 / 12, "feet"),
  28526. weight: math.unit(40, "kg"),
  28527. name: "Front (Dressed)",
  28528. image: {
  28529. source: "./media/characters/purple-flame/front-dressed.svg",
  28530. extra: 1577 / 1412,
  28531. bottom: 97 / 1694
  28532. }
  28533. },
  28534. headphones: {
  28535. height: math.unit(0.85, "feet"),
  28536. name: "Headphones",
  28537. image: {
  28538. source: "./media/characters/purple-flame/headphones.svg"
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Really Small",
  28545. height: math.unit(5, "cm")
  28546. },
  28547. {
  28548. name: "Micro",
  28549. height: math.unit(1 + 5 / 12, "feet")
  28550. },
  28551. {
  28552. name: "Normal",
  28553. height: math.unit(3 + 5 / 12, "feet"),
  28554. default: true
  28555. },
  28556. {
  28557. name: "Minimacro",
  28558. height: math.unit(125, "feet")
  28559. },
  28560. {
  28561. name: "Macro",
  28562. height: math.unit(0.5, "miles")
  28563. },
  28564. {
  28565. name: "Megamacro",
  28566. height: math.unit(50, "miles")
  28567. },
  28568. {
  28569. name: "Gigantic",
  28570. height: math.unit(750, "miles")
  28571. },
  28572. {
  28573. name: "Planetary",
  28574. height: math.unit(15000, "miles")
  28575. },
  28576. ]
  28577. ))
  28578. characterMakers.push(() => makeCharacter(
  28579. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28580. {
  28581. front: {
  28582. height: math.unit(14, "feet"),
  28583. weight: math.unit(959, "lb"),
  28584. name: "Front",
  28585. image: {
  28586. source: "./media/characters/arsenal/front.svg",
  28587. extra: 2357 / 2157,
  28588. bottom: 93 / 2458
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(14, "feet"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(6, "feet"),
  28605. weight: math.unit(150, "lb"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/adira/front.svg",
  28609. extra: 1078 / 1029,
  28610. bottom: 87 / 1166
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Micro",
  28617. height: math.unit(4, "inches"),
  28618. default: true
  28619. },
  28620. {
  28621. name: "Macro",
  28622. height: math.unit(50, "feet")
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(16, "feet"),
  28631. weight: math.unit(1000, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/grim/front.svg",
  28635. extra: 622 / 614,
  28636. bottom: 18.1 / 642
  28637. }
  28638. },
  28639. back: {
  28640. height: math.unit(16, "feet"),
  28641. weight: math.unit(1000, "lb"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/grim/back.svg",
  28645. extra: 610.6 / 602,
  28646. bottom: 40.8 / 652
  28647. }
  28648. },
  28649. hunched: {
  28650. height: math.unit(9.75, "feet"),
  28651. weight: math.unit(1000, "lb"),
  28652. name: "Hunched",
  28653. image: {
  28654. source: "./media/characters/grim/hunched.svg",
  28655. extra: 304 / 297,
  28656. bottom: 35.4 / 394
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(16, "feet"),
  28664. default: true
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(2.3, "meters"),
  28673. weight: math.unit(300, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/sinja/front-sfw.svg",
  28677. extra: 1393 / 1294,
  28678. bottom: 70 / 1463
  28679. }
  28680. },
  28681. frontNsfw: {
  28682. height: math.unit(2.3, "meters"),
  28683. weight: math.unit(300, "lb"),
  28684. name: "Front (NSFW)",
  28685. image: {
  28686. source: "./media/characters/sinja/front-nsfw.svg",
  28687. extra: 1393 / 1294,
  28688. bottom: 70 / 1463
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(2.3, "meters"),
  28693. weight: math.unit(300, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/sinja/back.svg",
  28697. extra: 1393 / 1294,
  28698. bottom: 70 / 1463
  28699. }
  28700. },
  28701. head: {
  28702. height: math.unit(1.771, "feet"),
  28703. name: "Head",
  28704. image: {
  28705. source: "./media/characters/sinja/head.svg"
  28706. }
  28707. },
  28708. slit: {
  28709. height: math.unit(0.8, "feet"),
  28710. name: "Slit",
  28711. image: {
  28712. source: "./media/characters/sinja/slit.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(2.3, "meters")
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(91, "meters"),
  28724. default: true
  28725. },
  28726. {
  28727. name: "Megamacro",
  28728. height: math.unit(91440, "meters")
  28729. },
  28730. {
  28731. name: "Gigamacro",
  28732. height: math.unit(60960000, "meters")
  28733. },
  28734. {
  28735. name: "Teramacro",
  28736. height: math.unit(9144000000, "meters")
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(1.7, "meters"),
  28745. weight: math.unit(130, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/kyu/front.svg",
  28749. extra: 415 / 395,
  28750. bottom: 5 / 420
  28751. }
  28752. },
  28753. head: {
  28754. height: math.unit(1.75, "feet"),
  28755. name: "Head",
  28756. image: {
  28757. source: "./media/characters/kyu/head.svg"
  28758. }
  28759. },
  28760. foot: {
  28761. height: math.unit(0.81, "feet"),
  28762. name: "Foot",
  28763. image: {
  28764. source: "./media/characters/kyu/foot.svg"
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(1.7, "meters")
  28772. },
  28773. {
  28774. name: "Macro",
  28775. height: math.unit(131, "feet"),
  28776. default: true
  28777. },
  28778. {
  28779. name: "Megamacro",
  28780. height: math.unit(91440, "meters")
  28781. },
  28782. {
  28783. name: "Gigamacro",
  28784. height: math.unit(60960000, "meters")
  28785. },
  28786. {
  28787. name: "Teramacro",
  28788. height: math.unit(9144000000, "meters")
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(7 + 1 / 12, "feet"),
  28797. weight: math.unit(250, "lb"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/joey/front.svg",
  28801. extra: 1791 / 1537,
  28802. bottom: 28 / 1816
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Micro",
  28809. height: math.unit(3, "inches")
  28810. },
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(7 + 1 / 12, "feet"),
  28814. default: true
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(165, "cm"),
  28823. weight: math.unit(140, "lb"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/sam-evans/front.svg",
  28827. extra: 3417 / 3230,
  28828. bottom: 41.3 / 3417
  28829. }
  28830. },
  28831. frontSixTails: {
  28832. height: math.unit(165, "cm"),
  28833. weight: math.unit(140, "lb"),
  28834. name: "Front-six-tails",
  28835. image: {
  28836. source: "./media/characters/sam-evans/front-six-tails.svg",
  28837. extra: 3417 / 3230,
  28838. bottom: 41.3 / 3417
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(165, "cm"),
  28843. weight: math.unit(140, "lb"),
  28844. name: "Back",
  28845. image: {
  28846. source: "./media/characters/sam-evans/back.svg",
  28847. extra: 3227 / 3032,
  28848. bottom: 6.8 / 3234
  28849. }
  28850. },
  28851. face: {
  28852. height: math.unit(0.68, "feet"),
  28853. name: "Face",
  28854. image: {
  28855. source: "./media/characters/sam-evans/face.svg"
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(165, "cm"),
  28863. default: true
  28864. },
  28865. {
  28866. name: "Macro",
  28867. height: math.unit(100, "meters")
  28868. },
  28869. {
  28870. name: "Macro+",
  28871. height: math.unit(800, "meters")
  28872. },
  28873. {
  28874. name: "Macro++",
  28875. height: math.unit(3, "km")
  28876. },
  28877. {
  28878. name: "Macro+++",
  28879. height: math.unit(30, "km")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(10, "feet"),
  28888. weight: math.unit(750, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/juliet-a/front.svg",
  28892. extra: 1766 / 1720,
  28893. bottom: 43 / 1809
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(10, "feet"),
  28898. weight: math.unit(750, "lb"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/juliet-a/back.svg",
  28902. extra: 1781 / 1734,
  28903. bottom: 35 / 1810,
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(10, "feet"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Dragon Form",
  28915. height: math.unit(250, "feet")
  28916. },
  28917. {
  28918. name: "Macro",
  28919. height: math.unit(1000, "feet")
  28920. },
  28921. {
  28922. name: "Megamacro",
  28923. height: math.unit(10000, "feet")
  28924. }
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28929. {
  28930. regular: {
  28931. height: math.unit(7 + 3 / 12, "feet"),
  28932. weight: math.unit(260, "lb"),
  28933. name: "Regular",
  28934. image: {
  28935. source: "./media/characters/wild/regular.svg",
  28936. extra: 97.45 / 92,
  28937. bottom: 6.8 / 104.3
  28938. }
  28939. },
  28940. biggums: {
  28941. height: math.unit(8 + 6 / 12, "feet"),
  28942. weight: math.unit(425, "lb"),
  28943. name: "Biggums",
  28944. image: {
  28945. source: "./media/characters/wild/biggums.svg",
  28946. extra: 97.45 / 92,
  28947. bottom: 7.5 / 132.34
  28948. }
  28949. },
  28950. mawRegular: {
  28951. height: math.unit(1.24, "feet"),
  28952. name: "Maw (Regular)",
  28953. image: {
  28954. source: "./media/characters/wild/maw.svg"
  28955. }
  28956. },
  28957. mawBiggums: {
  28958. height: math.unit(1.47, "feet"),
  28959. name: "Maw (Biggums)",
  28960. image: {
  28961. source: "./media/characters/wild/maw.svg"
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(7 + 3 / 12, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28975. {
  28976. front: {
  28977. height: math.unit(2.5, "meters"),
  28978. weight: math.unit(200, "kg"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/vidar/front.svg",
  28982. extra: 2994 / 2795,
  28983. bottom: 56 / 3061
  28984. }
  28985. },
  28986. back: {
  28987. height: math.unit(2.5, "meters"),
  28988. weight: math.unit(200, "kg"),
  28989. name: "Back",
  28990. image: {
  28991. source: "./media/characters/vidar/back.svg",
  28992. extra: 3131 / 2928,
  28993. bottom: 13.5 / 3141.5
  28994. }
  28995. },
  28996. feral: {
  28997. height: math.unit(2.5, "meters"),
  28998. weight: math.unit(2000, "kg"),
  28999. name: "Feral",
  29000. image: {
  29001. source: "./media/characters/vidar/feral.svg",
  29002. extra: 2790 / 1765,
  29003. bottom: 6 / 2796
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Normal",
  29010. height: math.unit(2.5, "meters"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Macro",
  29015. height: math.unit(100, "meters")
  29016. },
  29017. ]
  29018. ))
  29019. characterMakers.push(() => makeCharacter(
  29020. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29021. {
  29022. front: {
  29023. height: math.unit(5 + 9 / 12, "feet"),
  29024. weight: math.unit(120, "lb"),
  29025. name: "Front",
  29026. image: {
  29027. source: "./media/characters/ash/front.svg",
  29028. extra: 2189 / 1961,
  29029. bottom: 5.2 / 2194
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(5 + 9 / 12, "feet"),
  29037. default: true
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(9, "feet"),
  29046. weight: math.unit(10000, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/gygabite/front.svg",
  29050. bottom: 31.7 / 537.8,
  29051. extra: 505 / 370
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(9, "feet"),
  29059. default: true
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(12, "feet"),
  29068. weight: math.unit(4000, "lb"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/p0tat0/front.svg",
  29072. extra: 1065 / 921,
  29073. bottom: 55.7 / 1121.25
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(12, "feet"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29087. {
  29088. side: {
  29089. height: math.unit(6.5, "feet"),
  29090. weight: math.unit(800, "lb"),
  29091. name: "Side",
  29092. image: {
  29093. source: "./media/characters/dusk/side.svg",
  29094. extra: 615 / 373,
  29095. bottom: 53 / 664
  29096. }
  29097. },
  29098. sitting: {
  29099. height: math.unit(7, "feet"),
  29100. weight: math.unit(800, "lb"),
  29101. name: "Sitting",
  29102. image: {
  29103. source: "./media/characters/dusk/sitting.svg",
  29104. extra: 753 / 425,
  29105. bottom: 33 / 774
  29106. }
  29107. },
  29108. head: {
  29109. height: math.unit(6.1, "feet"),
  29110. name: "Head",
  29111. image: {
  29112. source: "./media/characters/dusk/head.svg"
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Normal",
  29119. height: math.unit(7, "feet"),
  29120. default: true
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29126. {
  29127. front: {
  29128. height: math.unit(15, "feet"),
  29129. weight: math.unit(7000, "lb"),
  29130. name: "Front",
  29131. image: {
  29132. source: "./media/characters/jay-direwolf/front.svg",
  29133. extra: 1810 / 1732,
  29134. bottom: 66 / 1892
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(15, "feet"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(4 + 9 / 12, "feet"),
  29151. weight: math.unit(130, "lb"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/anchovie/front.svg",
  29155. extra: 382 / 350,
  29156. bottom: 25 / 409
  29157. }
  29158. },
  29159. back: {
  29160. height: math.unit(4 + 9 / 12, "feet"),
  29161. weight: math.unit(130, "lb"),
  29162. name: "Back",
  29163. image: {
  29164. source: "./media/characters/anchovie/back.svg",
  29165. extra: 385 / 352,
  29166. bottom: 16.6 / 402
  29167. }
  29168. },
  29169. frontDressed: {
  29170. height: math.unit(4 + 9 / 12, "feet"),
  29171. weight: math.unit(130, "lb"),
  29172. name: "Front (Dressed)",
  29173. image: {
  29174. source: "./media/characters/anchovie/front-dressed.svg",
  29175. extra: 382 / 350,
  29176. bottom: 25 / 409
  29177. }
  29178. },
  29179. backDressed: {
  29180. height: math.unit(4 + 9 / 12, "feet"),
  29181. weight: math.unit(130, "lb"),
  29182. name: "Back (Dressed)",
  29183. image: {
  29184. source: "./media/characters/anchovie/back-dressed.svg",
  29185. extra: 385 / 352,
  29186. bottom: 16.6 / 402
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Micro",
  29193. height: math.unit(6.4, "inches")
  29194. },
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(4 + 9 / 12, "feet"),
  29198. default: true
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(2, "meters"),
  29207. weight: math.unit(180, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/acidrenamon/front.svg",
  29211. extra: 987 / 890,
  29212. bottom: 22.8 / 1009
  29213. }
  29214. },
  29215. back: {
  29216. height: math.unit(2, "meters"),
  29217. weight: math.unit(180, "lb"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/acidrenamon/back.svg",
  29221. extra: 983 / 891,
  29222. bottom: 8.4 / 992
  29223. }
  29224. },
  29225. head: {
  29226. height: math.unit(1.92, "feet"),
  29227. name: "Head",
  29228. image: {
  29229. source: "./media/characters/acidrenamon/head.svg"
  29230. }
  29231. },
  29232. rump: {
  29233. height: math.unit(1.72, "feet"),
  29234. name: "Rump",
  29235. image: {
  29236. source: "./media/characters/acidrenamon/rump.svg"
  29237. }
  29238. },
  29239. tail: {
  29240. height: math.unit(4.2, "feet"),
  29241. name: "Tail",
  29242. image: {
  29243. source: "./media/characters/acidrenamon/tail.svg"
  29244. }
  29245. },
  29246. },
  29247. [
  29248. {
  29249. name: "Normal",
  29250. height: math.unit(2, "meters"),
  29251. default: true
  29252. },
  29253. {
  29254. name: "Minimacro",
  29255. height: math.unit(7, "meters")
  29256. },
  29257. {
  29258. name: "Macro",
  29259. height: math.unit(200, "meters")
  29260. },
  29261. {
  29262. name: "Gigamacro",
  29263. height: math.unit(0.2, "earths")
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29269. {
  29270. front: {
  29271. height: math.unit(152, "feet"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/kenzie-lee/front.svg",
  29275. extra: 1869/1774,
  29276. bottom: 128/1997
  29277. }
  29278. },
  29279. side: {
  29280. height: math.unit(86, "feet"),
  29281. name: "Side",
  29282. image: {
  29283. source: "./media/characters/kenzie-lee/side.svg",
  29284. extra: 930/815,
  29285. bottom: 177/1107
  29286. }
  29287. },
  29288. paw: {
  29289. height: math.unit(15, "feet"),
  29290. name: "Paw",
  29291. image: {
  29292. source: "./media/characters/kenzie-lee/paw.svg"
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Kenzie Flea",
  29299. height: math.unit(2, "mm"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "Micro",
  29304. height: math.unit(2, "inches")
  29305. },
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(152, "feet")
  29309. },
  29310. {
  29311. name: "Megamacro",
  29312. height: math.unit(7, "miles")
  29313. },
  29314. {
  29315. name: "Gigamacro",
  29316. height: math.unit(8000, "miles")
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29322. {
  29323. front: {
  29324. height: math.unit(6, "feet"),
  29325. name: "Front",
  29326. image: {
  29327. source: "./media/characters/withers/front.svg",
  29328. extra: 1935/1760,
  29329. bottom: 72/2007
  29330. }
  29331. },
  29332. back: {
  29333. height: math.unit(6, "feet"),
  29334. name: "Back",
  29335. image: {
  29336. source: "./media/characters/withers/back.svg",
  29337. extra: 1944/1792,
  29338. bottom: 12/1956
  29339. }
  29340. },
  29341. dressed: {
  29342. height: math.unit(6, "feet"),
  29343. name: "Dressed",
  29344. image: {
  29345. source: "./media/characters/withers/dressed.svg",
  29346. extra: 1937/1765,
  29347. bottom: 73/2010
  29348. }
  29349. },
  29350. phase1: {
  29351. height: math.unit(1.1, "feet"),
  29352. name: "Phase 1",
  29353. image: {
  29354. source: "./media/characters/withers/phase-1.svg",
  29355. extra: 1885/1232,
  29356. bottom: 0/1885
  29357. }
  29358. },
  29359. phase2: {
  29360. height: math.unit(1.05, "feet"),
  29361. name: "Phase 2",
  29362. image: {
  29363. source: "./media/characters/withers/phase-2.svg",
  29364. extra: 1792/1090,
  29365. bottom: 0/1792
  29366. }
  29367. },
  29368. partyWipe: {
  29369. height: math.unit(1.1, "feet"),
  29370. name: "Party Wipe",
  29371. image: {
  29372. source: "./media/characters/withers/party-wipe.svg",
  29373. extra: 1864/1207,
  29374. bottom: 0/1864
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Macro",
  29381. height: math.unit(167, "feet"),
  29382. default: true
  29383. },
  29384. {
  29385. name: "Megamacro",
  29386. height: math.unit(15, "miles")
  29387. }
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(6 + 7 / 12, "feet"),
  29395. weight: math.unit(250, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/nemoskii/front.svg",
  29399. extra: 2270 / 1734,
  29400. bottom: 86 / 2354
  29401. }
  29402. },
  29403. back: {
  29404. height: math.unit(6 + 7 / 12, "feet"),
  29405. weight: math.unit(250, "lb"),
  29406. name: "Back",
  29407. image: {
  29408. source: "./media/characters/nemoskii/back.svg",
  29409. extra: 1845 / 1788,
  29410. bottom: 10.5 / 1852
  29411. }
  29412. },
  29413. head: {
  29414. height: math.unit(1.31, "feet"),
  29415. name: "Head",
  29416. image: {
  29417. source: "./media/characters/nemoskii/head.svg"
  29418. }
  29419. },
  29420. },
  29421. [
  29422. {
  29423. name: "Micro",
  29424. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29425. },
  29426. {
  29427. name: "Normal",
  29428. height: math.unit(6 + 7 / 12, "feet"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Macro",
  29433. height: math.unit((6 + 7 / 12) * 150, "feet")
  29434. },
  29435. {
  29436. name: "Macro+",
  29437. height: math.unit((6 + 7 / 12) * 500, "feet")
  29438. },
  29439. {
  29440. name: "Megamacro",
  29441. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29442. },
  29443. ]
  29444. ))
  29445. characterMakers.push(() => makeCharacter(
  29446. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29447. {
  29448. front: {
  29449. height: math.unit(1, "mile"),
  29450. weight: math.unit(265261.9, "lb"),
  29451. name: "Front",
  29452. image: {
  29453. source: "./media/characters/shui/front.svg",
  29454. extra: 1633 / 1564,
  29455. bottom: 91.5 / 1726
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(1, "mile"),
  29463. default: true
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(12 + 6 / 12, "feet"),
  29472. weight: math.unit(1342, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/arokh-takakura/front.svg",
  29476. extra: 1089 / 1043,
  29477. bottom: 77.4 / 1176.7
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(12 + 6 / 12, "feet"),
  29482. weight: math.unit(1342, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/arokh-takakura/back.svg",
  29486. extra: 1046 / 1019,
  29487. bottom: 102 / 1150
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Big",
  29494. height: math.unit(12 + 6 / 12, "feet"),
  29495. default: true
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(5 + 6 / 12, "feet"),
  29504. weight: math.unit(150, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/theo/front.svg",
  29508. extra: 1184 / 1131,
  29509. bottom: 7.4 / 1191
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Micro",
  29516. height: math.unit(5, "inches")
  29517. },
  29518. {
  29519. name: "Normal",
  29520. height: math.unit(5 + 6 / 12, "feet"),
  29521. default: true
  29522. },
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29527. {
  29528. front: {
  29529. height: math.unit(5 + 9 / 12, "feet"),
  29530. weight: math.unit(130, "lb"),
  29531. name: "Front",
  29532. image: {
  29533. source: "./media/characters/cecelia-swift/front.svg",
  29534. extra: 502 / 484,
  29535. bottom: 23 / 523
  29536. }
  29537. },
  29538. back: {
  29539. height: math.unit(5 + 9 / 12, "feet"),
  29540. weight: math.unit(130, "lb"),
  29541. name: "Back",
  29542. image: {
  29543. source: "./media/characters/cecelia-swift/back.svg",
  29544. extra: 499 / 485,
  29545. bottom: 12 / 511
  29546. }
  29547. },
  29548. head: {
  29549. height: math.unit(0.90, "feet"),
  29550. name: "Head",
  29551. image: {
  29552. source: "./media/characters/cecelia-swift/head.svg"
  29553. }
  29554. },
  29555. rump: {
  29556. height: math.unit(1.75, "feet"),
  29557. name: "Rump",
  29558. image: {
  29559. source: "./media/characters/cecelia-swift/rump.svg"
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(5 + 9 / 12, "feet"),
  29567. default: true
  29568. },
  29569. {
  29570. name: "Big",
  29571. height: math.unit(50, "feet")
  29572. },
  29573. {
  29574. name: "Macro",
  29575. height: math.unit(100, "feet")
  29576. },
  29577. {
  29578. name: "Macro+",
  29579. height: math.unit(500, "feet")
  29580. },
  29581. {
  29582. name: "Macro++",
  29583. height: math.unit(1000, "feet")
  29584. },
  29585. ]
  29586. ))
  29587. characterMakers.push(() => makeCharacter(
  29588. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29589. {
  29590. front: {
  29591. height: math.unit(6, "feet"),
  29592. weight: math.unit(150, "lb"),
  29593. name: "Front",
  29594. image: {
  29595. source: "./media/characters/kaunan/front.svg",
  29596. extra: 2890 / 2523,
  29597. bottom: 49 / 2939
  29598. }
  29599. },
  29600. },
  29601. [
  29602. {
  29603. name: "Macro",
  29604. height: math.unit(150, "feet"),
  29605. default: true
  29606. },
  29607. ]
  29608. ))
  29609. characterMakers.push(() => makeCharacter(
  29610. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29611. {
  29612. dressed: {
  29613. height: math.unit(175, "cm"),
  29614. weight: math.unit(60, "kg"),
  29615. name: "Dressed",
  29616. image: {
  29617. source: "./media/characters/fei/dressed.svg",
  29618. extra: 1402/1278,
  29619. bottom: 27/1429
  29620. }
  29621. },
  29622. nude: {
  29623. height: math.unit(175, "cm"),
  29624. weight: math.unit(60, "kg"),
  29625. name: "Nude",
  29626. image: {
  29627. source: "./media/characters/fei/nude.svg",
  29628. extra: 1402/1278,
  29629. bottom: 27/1429
  29630. }
  29631. },
  29632. heels: {
  29633. height: math.unit(0.466, "feet"),
  29634. name: "Heels",
  29635. image: {
  29636. source: "./media/characters/fei/heels.svg",
  29637. extra: 156/152,
  29638. bottom: 28/184
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Mortal",
  29645. height: math.unit(175, "cm")
  29646. },
  29647. {
  29648. name: "Normal",
  29649. height: math.unit(3500, "m")
  29650. },
  29651. {
  29652. name: "Stroll",
  29653. height: math.unit(18.4, "km"),
  29654. default: true
  29655. },
  29656. {
  29657. name: "Showoff",
  29658. height: math.unit(175, "km")
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29664. {
  29665. front: {
  29666. height: math.unit(7, "feet"),
  29667. weight: math.unit(1000, "kg"),
  29668. name: "Front",
  29669. image: {
  29670. source: "./media/characters/edrax/front.svg",
  29671. extra: 2838 / 2550,
  29672. bottom: 130 / 2968
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Small",
  29679. height: math.unit(7, "feet")
  29680. },
  29681. {
  29682. name: "Normal",
  29683. height: math.unit(1500, "meters")
  29684. },
  29685. {
  29686. name: "Mega",
  29687. height: math.unit(12000000, "km"),
  29688. default: true
  29689. },
  29690. {
  29691. name: "Megamacro",
  29692. height: math.unit(10600000, "lightyears")
  29693. },
  29694. {
  29695. name: "Hypermacro",
  29696. height: math.unit(256, "yottameters")
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(10, "feet"),
  29705. weight: math.unit(750, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/clove/front.svg",
  29709. extra: 1918/1751,
  29710. bottom: 52/1970
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(10, "feet"),
  29715. weight: math.unit(750, "lb"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/clove/back.svg",
  29719. extra: 1912/1747,
  29720. bottom: 50/1962
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(10, "feet"),
  29728. default: true
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(4, "feet"),
  29737. weight: math.unit(50, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/alex-rabbit/front.svg",
  29741. extra: 507 / 458,
  29742. bottom: 18.5 / 527
  29743. }
  29744. },
  29745. back: {
  29746. height: math.unit(4, "feet"),
  29747. weight: math.unit(50, "lb"),
  29748. name: "Back",
  29749. image: {
  29750. source: "./media/characters/alex-rabbit/back.svg",
  29751. extra: 502 / 460,
  29752. bottom: 18.9 / 521
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(4, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(1 + 3 / 12, "feet"),
  29769. weight: math.unit(80, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/zander-rose/front.svg",
  29773. extra: 916 / 797,
  29774. bottom: 17 / 933
  29775. }
  29776. },
  29777. back: {
  29778. height: math.unit(1 + 3 / 12, "feet"),
  29779. weight: math.unit(80, "lb"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/zander-rose/back.svg",
  29783. extra: 903 / 779,
  29784. bottom: 31 / 934
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(1 + 3 / 12, "feet"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29798. {
  29799. anthro: {
  29800. height: math.unit(6, "feet"),
  29801. weight: math.unit(150, "lb"),
  29802. name: "Anthro",
  29803. image: {
  29804. source: "./media/characters/razz/anthro.svg",
  29805. extra: 1437 / 1343,
  29806. bottom: 48 / 1485
  29807. }
  29808. },
  29809. feral: {
  29810. height: math.unit(6, "feet"),
  29811. weight: math.unit(150, "lb"),
  29812. name: "Feral",
  29813. image: {
  29814. source: "./media/characters/razz/feral.svg",
  29815. extra: 2569 / 1385,
  29816. bottom: 95 / 2664
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(6, "feet"),
  29824. default: true
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(9 + 4 / 12, "feet"),
  29833. weight: math.unit(500, "lb"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/morrigan/front.svg",
  29837. extra: 2707 / 2579,
  29838. bottom: 156 / 2863
  29839. }
  29840. },
  29841. },
  29842. [
  29843. {
  29844. name: "Normal",
  29845. height: math.unit(9 + 4 / 12, "feet"),
  29846. default: true
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(5, "stories"),
  29855. weight: math.unit(4000, "lb"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/jenene/front.svg",
  29859. extra: 1780 / 1710,
  29860. bottom: 57 / 1837
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Normal",
  29867. height: math.unit(5, "stories"),
  29868. default: true
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29874. {
  29875. taurSfw: {
  29876. height: math.unit(10, "meters"),
  29877. weight: math.unit(17500, "kg"),
  29878. name: "Taur",
  29879. image: {
  29880. source: "./media/characters/faey/taur-sfw.svg",
  29881. extra: 1200 / 968,
  29882. bottom: 41 / 1241
  29883. }
  29884. },
  29885. chestmaw: {
  29886. height: math.unit(2.01, "meters"),
  29887. name: "Chestmaw",
  29888. image: {
  29889. source: "./media/characters/faey/chestmaw.svg"
  29890. }
  29891. },
  29892. foot: {
  29893. height: math.unit(2.43, "meters"),
  29894. name: "Foot",
  29895. image: {
  29896. source: "./media/characters/faey/foot.svg"
  29897. }
  29898. },
  29899. jaws: {
  29900. height: math.unit(1.66, "meters"),
  29901. name: "Jaws",
  29902. image: {
  29903. source: "./media/characters/faey/jaws.svg"
  29904. }
  29905. },
  29906. tongues: {
  29907. height: math.unit(2.01, "meters"),
  29908. name: "Tongues",
  29909. image: {
  29910. source: "./media/characters/faey/tongues.svg"
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Small",
  29917. height: math.unit(10, "meters"),
  29918. default: true
  29919. },
  29920. {
  29921. name: "Big",
  29922. height: math.unit(500000, "km")
  29923. },
  29924. ]
  29925. ))
  29926. characterMakers.push(() => makeCharacter(
  29927. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29928. {
  29929. front: {
  29930. height: math.unit(7, "feet"),
  29931. weight: math.unit(275, "lb"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/roku/front.svg",
  29935. extra: 903 / 878,
  29936. bottom: 37 / 940
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(7, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Macro",
  29948. height: math.unit(500, "feet")
  29949. },
  29950. {
  29951. name: "Megamacro",
  29952. height: math.unit(200, "miles")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(6 + 2 / 12, "feet"),
  29961. weight: math.unit(150, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/lira/front.svg",
  29965. extra: 1727 / 1605,
  29966. bottom: 26 / 1753
  29967. }
  29968. },
  29969. back: {
  29970. height: math.unit(6 + 2 / 12, "feet"),
  29971. weight: math.unit(150, "lb"),
  29972. name: "Back",
  29973. image: {
  29974. source: "./media/characters/lira/back.svg",
  29975. extra: 1713/1621,
  29976. bottom: 20/1733
  29977. }
  29978. },
  29979. hand: {
  29980. height: math.unit(0.75, "feet"),
  29981. name: "Hand",
  29982. image: {
  29983. source: "./media/characters/lira/hand.svg"
  29984. }
  29985. },
  29986. maw: {
  29987. height: math.unit(0.65, "feet"),
  29988. name: "Maw",
  29989. image: {
  29990. source: "./media/characters/lira/maw.svg"
  29991. }
  29992. },
  29993. pawDigi: {
  29994. height: math.unit(1.6, "feet"),
  29995. name: "Paw Digi",
  29996. image: {
  29997. source: "./media/characters/lira/paw-digi.svg"
  29998. }
  29999. },
  30000. pawPlanti: {
  30001. height: math.unit(1.4, "feet"),
  30002. name: "Paw Planti",
  30003. image: {
  30004. source: "./media/characters/lira/paw-planti.svg"
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Normal",
  30011. height: math.unit(6 + 2 / 12, "feet"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(100, "feet")
  30017. },
  30018. {
  30019. name: "Macro²",
  30020. height: math.unit(1600, "feet")
  30021. },
  30022. {
  30023. name: "Planetary",
  30024. height: math.unit(20, "earths")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(6, "feet"),
  30033. weight: math.unit(150, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/hadjet/front.svg",
  30037. extra: 1480 / 1346,
  30038. bottom: 26 / 1506
  30039. }
  30040. },
  30041. frontNsfw: {
  30042. height: math.unit(6, "feet"),
  30043. weight: math.unit(150, "lb"),
  30044. name: "Front (NSFW)",
  30045. image: {
  30046. source: "./media/characters/hadjet/front-nsfw.svg",
  30047. extra: 1440 / 1358,
  30048. bottom: 52 / 1492
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Macro",
  30055. height: math.unit(10, "stories"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Megamacro",
  30060. height: math.unit(1.5, "miles")
  30061. },
  30062. {
  30063. name: "Megamacro+",
  30064. height: math.unit(5, "miles")
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30070. {
  30071. side: {
  30072. height: math.unit(106, "feet"),
  30073. weight: math.unit(500, "tonnes"),
  30074. name: "Side",
  30075. image: {
  30076. source: "./media/characters/kodran/side.svg",
  30077. extra: 553 / 480,
  30078. bottom: 33 / 586
  30079. }
  30080. },
  30081. front: {
  30082. height: math.unit(132, "feet"),
  30083. weight: math.unit(500, "tonnes"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/kodran/front.svg",
  30087. extra: 667 / 643,
  30088. bottom: 42 / 709
  30089. }
  30090. },
  30091. flying: {
  30092. height: math.unit(350, "feet"),
  30093. weight: math.unit(500, "tonnes"),
  30094. name: "Flying",
  30095. image: {
  30096. source: "./media/characters/kodran/flying.svg"
  30097. }
  30098. },
  30099. foot: {
  30100. height: math.unit(33, "feet"),
  30101. name: "Foot",
  30102. image: {
  30103. source: "./media/characters/kodran/foot.svg"
  30104. }
  30105. },
  30106. footFront: {
  30107. height: math.unit(19, "feet"),
  30108. name: "Foot (Front)",
  30109. image: {
  30110. source: "./media/characters/kodran/foot-front.svg",
  30111. extra: 261 / 261,
  30112. bottom: 91 / 352
  30113. }
  30114. },
  30115. headFront: {
  30116. height: math.unit(53, "feet"),
  30117. name: "Head (Front)",
  30118. image: {
  30119. source: "./media/characters/kodran/head-front.svg"
  30120. }
  30121. },
  30122. headSide: {
  30123. height: math.unit(65, "feet"),
  30124. name: "Head (Side)",
  30125. image: {
  30126. source: "./media/characters/kodran/head-side.svg"
  30127. }
  30128. },
  30129. throat: {
  30130. height: math.unit(79, "feet"),
  30131. name: "Throat",
  30132. image: {
  30133. source: "./media/characters/kodran/throat.svg"
  30134. }
  30135. },
  30136. },
  30137. [
  30138. {
  30139. name: "Large",
  30140. height: math.unit(106, "feet"),
  30141. default: true
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30147. {
  30148. side: {
  30149. height: math.unit(11, "feet"),
  30150. weight: math.unit(150, "lb"),
  30151. name: "Side",
  30152. image: {
  30153. source: "./media/characters/pyxaron/side.svg",
  30154. extra: 305 / 195,
  30155. bottom: 17 / 322
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Normal",
  30162. height: math.unit(11, "feet"),
  30163. default: true
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(6, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/meep/front.svg",
  30176. extra: 88 / 80,
  30177. bottom: 6 / 94
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Fun Sized",
  30184. height: math.unit(2, "inches"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Friend Sized",
  30189. height: math.unit(8, "inches")
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(15, "feet"),
  30198. weight: math.unit(2500, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/holly-rabbit/front.svg",
  30202. extra: 1433 / 1233,
  30203. bottom: 125 / 1558
  30204. }
  30205. },
  30206. dick: {
  30207. height: math.unit(4.6, "feet"),
  30208. name: "Dick",
  30209. image: {
  30210. source: "./media/characters/holly-rabbit/dick.svg"
  30211. }
  30212. },
  30213. },
  30214. [
  30215. {
  30216. name: "Normal",
  30217. height: math.unit(15, "feet"),
  30218. default: true
  30219. },
  30220. {
  30221. name: "Macro",
  30222. height: math.unit(250, "feet")
  30223. },
  30224. {
  30225. name: "Macro+",
  30226. height: math.unit(2500, "feet")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(3.02, "meters"),
  30235. weight: math.unit(500, "kg"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/drena/front.svg",
  30239. extra: 282 / 243,
  30240. bottom: 8 / 290
  30241. }
  30242. },
  30243. side: {
  30244. height: math.unit(3.02, "meters"),
  30245. weight: math.unit(500, "kg"),
  30246. name: "Side",
  30247. image: {
  30248. source: "./media/characters/drena/side.svg",
  30249. extra: 280 / 245,
  30250. bottom: 10 / 290
  30251. }
  30252. },
  30253. back: {
  30254. height: math.unit(3.02, "meters"),
  30255. weight: math.unit(500, "kg"),
  30256. name: "Back",
  30257. image: {
  30258. source: "./media/characters/drena/back.svg",
  30259. extra: 278 / 243,
  30260. bottom: 2 / 280
  30261. }
  30262. },
  30263. foot: {
  30264. height: math.unit(0.75, "meters"),
  30265. name: "Foot",
  30266. image: {
  30267. source: "./media/characters/drena/foot.svg"
  30268. }
  30269. },
  30270. maw: {
  30271. height: math.unit(0.82, "meters"),
  30272. name: "Maw",
  30273. image: {
  30274. source: "./media/characters/drena/maw.svg"
  30275. }
  30276. },
  30277. eating: {
  30278. height: math.unit(0.75, "meters"),
  30279. name: "Eating",
  30280. image: {
  30281. source: "./media/characters/drena/eating.svg"
  30282. }
  30283. },
  30284. rump: {
  30285. height: math.unit(0.93, "meters"),
  30286. name: "Rump",
  30287. image: {
  30288. source: "./media/characters/drena/rump.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(3.02, "meters"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(6 + 4 / 12, "feet"),
  30305. weight: math.unit(250, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/remmyzilla/front.svg",
  30309. extra: 4033 / 3588,
  30310. bottom: 123 / 4156
  30311. }
  30312. },
  30313. back: {
  30314. height: math.unit(6 + 4 / 12, "feet"),
  30315. weight: math.unit(250, "lb"),
  30316. name: "Back",
  30317. image: {
  30318. source: "./media/characters/remmyzilla/back.svg",
  30319. extra: 2687 / 2555,
  30320. bottom: 48 / 2735
  30321. }
  30322. },
  30323. paw: {
  30324. height: math.unit(1.73, "feet"),
  30325. name: "Paw",
  30326. image: {
  30327. source: "./media/characters/remmyzilla/paw.svg"
  30328. },
  30329. extraAttributes: {
  30330. "toeSize": {
  30331. name: "Toe Size",
  30332. power: 2,
  30333. type: "area",
  30334. base: math.unit(0.0035, "m^2")
  30335. },
  30336. "padSize": {
  30337. name: "Pad Size",
  30338. power: 2,
  30339. type: "area",
  30340. base: math.unit(0.015, "m^2")
  30341. },
  30342. "pawsize": {
  30343. name: "Paw Size",
  30344. power: 2,
  30345. type: "area",
  30346. base: math.unit(0.072, "m^2")
  30347. },
  30348. }
  30349. },
  30350. maw: {
  30351. height: math.unit(1.73, "feet"),
  30352. name: "Maw",
  30353. image: {
  30354. source: "./media/characters/remmyzilla/maw.svg"
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(6 + 4 / 12, "feet")
  30362. },
  30363. {
  30364. name: "Minimacro",
  30365. height: math.unit(12 + 8 / 12, "feet")
  30366. },
  30367. {
  30368. name: "Normal",
  30369. height: math.unit(640, "feet"),
  30370. default: true
  30371. },
  30372. {
  30373. name: "Megamacro",
  30374. height: math.unit(6400, "feet")
  30375. },
  30376. {
  30377. name: "Gigamacro",
  30378. height: math.unit(64000, "miles")
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(2.5, "meters"),
  30387. weight: math.unit(300, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/lawrence/front.svg",
  30391. extra: 357 / 335,
  30392. bottom: 30 / 387
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(2.5, "meters"),
  30397. weight: math.unit(300, "lb"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/lawrence/back.svg",
  30401. extra: 357 / 338,
  30402. bottom: 16 / 373
  30403. }
  30404. },
  30405. head: {
  30406. height: math.unit(0.9, "meter"),
  30407. name: "Head",
  30408. image: {
  30409. source: "./media/characters/lawrence/head.svg"
  30410. }
  30411. },
  30412. maw: {
  30413. height: math.unit(0.7, "meter"),
  30414. name: "Maw",
  30415. image: {
  30416. source: "./media/characters/lawrence/maw.svg"
  30417. }
  30418. },
  30419. footBottom: {
  30420. height: math.unit(0.5, "meter"),
  30421. name: "Foot (Bottom)",
  30422. image: {
  30423. source: "./media/characters/lawrence/foot-bottom.svg"
  30424. }
  30425. },
  30426. footTop: {
  30427. height: math.unit(0.5, "meter"),
  30428. name: "Foot (Top)",
  30429. image: {
  30430. source: "./media/characters/lawrence/foot-top.svg"
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(2.5, "meters"),
  30438. default: true
  30439. },
  30440. {
  30441. name: "Macro",
  30442. height: math.unit(95, "meters")
  30443. },
  30444. {
  30445. name: "Megamacro",
  30446. height: math.unit(150, "km")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30452. {
  30453. front: {
  30454. height: math.unit(4.2, "meters"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/sydney/front.svg",
  30458. extra: 1323 / 1277,
  30459. bottom: 111 / 1434
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(4.2, "meters"),
  30467. default: true
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30473. {
  30474. back: {
  30475. height: math.unit(201, "feet"),
  30476. name: "Back",
  30477. image: {
  30478. source: "./media/characters/jessica/back.svg",
  30479. extra: 273 / 259,
  30480. bottom: 7 / 280
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(201, "feet"),
  30488. default: true
  30489. },
  30490. {
  30491. name: "Megamacro",
  30492. height: math.unit(8, "miles")
  30493. },
  30494. ]
  30495. ))
  30496. characterMakers.push(() => makeCharacter(
  30497. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30498. {
  30499. side: {
  30500. height: math.unit(5.6, "m"),
  30501. weight: math.unit(8000, "kg"),
  30502. name: "Side",
  30503. image: {
  30504. source: "./media/characters/victoria/side.svg",
  30505. extra: 1542/1229,
  30506. bottom: 124/1666
  30507. }
  30508. },
  30509. maw: {
  30510. height: math.unit(7.14, "feet"),
  30511. name: "Maw",
  30512. image: {
  30513. source: "./media/characters/victoria/maw.svg"
  30514. }
  30515. },
  30516. },
  30517. [
  30518. {
  30519. name: "Normal",
  30520. height: math.unit(5.6, "m"),
  30521. default: true
  30522. },
  30523. ]
  30524. ))
  30525. characterMakers.push(() => makeCharacter(
  30526. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30527. {
  30528. front: {
  30529. height: math.unit(5 + 6 / 12, "feet"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/cat/front.svg",
  30533. extra: 1449/1295,
  30534. bottom: 34/1483
  30535. },
  30536. form: "cat",
  30537. default: true
  30538. },
  30539. back: {
  30540. height: math.unit(5 + 6 / 12, "feet"),
  30541. name: "Back",
  30542. image: {
  30543. source: "./media/characters/cat/back.svg",
  30544. extra: 1466/1301,
  30545. bottom: 19/1485
  30546. },
  30547. form: "cat"
  30548. },
  30549. taur: {
  30550. height: math.unit(7, "feet"),
  30551. name: "Taur",
  30552. image: {
  30553. source: "./media/characters/cat/taur.svg",
  30554. extra: 1389/1233,
  30555. bottom: 83/1472
  30556. },
  30557. form: "taur",
  30558. default: true
  30559. },
  30560. lucarioFront: {
  30561. height: math.unit(4, "feet"),
  30562. name: "Lucario (Front)",
  30563. image: {
  30564. source: "./media/characters/cat/lucario-front.svg",
  30565. extra: 1149/1019,
  30566. bottom: 84/1233
  30567. },
  30568. form: "lucario",
  30569. default: true
  30570. },
  30571. lucarioBack: {
  30572. height: math.unit(4, "feet"),
  30573. name: "Lucario (Back)",
  30574. image: {
  30575. source: "./media/characters/cat/lucario-back.svg",
  30576. extra: 1190/1059,
  30577. bottom: 33/1223
  30578. },
  30579. form: "lucario"
  30580. },
  30581. megaLucario: {
  30582. height: math.unit(4, "feet"),
  30583. name: "Mega Lucario",
  30584. image: {
  30585. source: "./media/characters/cat/mega-lucario.svg",
  30586. extra: 1515 / 1319,
  30587. bottom: 63 / 1578
  30588. },
  30589. form: "lucario"
  30590. },
  30591. nickit: {
  30592. height: math.unit(2, "feet"),
  30593. name: "Nickit",
  30594. image: {
  30595. source: "./media/characters/cat/nickit.svg",
  30596. extra: 1980 / 1585,
  30597. bottom: 102 / 2082
  30598. },
  30599. form: "nickit",
  30600. default: true
  30601. },
  30602. lopunnyFront: {
  30603. height: math.unit(5, "feet"),
  30604. name: "Lopunny (Front)",
  30605. image: {
  30606. source: "./media/characters/cat/lopunny-front.svg",
  30607. extra: 1782 / 1469,
  30608. bottom: 38 / 1820
  30609. },
  30610. form: "lopunny",
  30611. default: true
  30612. },
  30613. lopunnyBack: {
  30614. height: math.unit(5, "feet"),
  30615. name: "Lopunny (Back)",
  30616. image: {
  30617. source: "./media/characters/cat/lopunny-back.svg",
  30618. extra: 1660 / 1490,
  30619. bottom: 25 / 1685
  30620. },
  30621. form: "lopunny"
  30622. },
  30623. },
  30624. [
  30625. {
  30626. name: "Really small",
  30627. height: math.unit(1, "nm")
  30628. },
  30629. {
  30630. name: "Micro",
  30631. height: math.unit(5, "inches")
  30632. },
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(5 + 6 / 12, "feet"),
  30636. default: true
  30637. },
  30638. {
  30639. name: "Macro",
  30640. height: math.unit(50, "feet")
  30641. },
  30642. {
  30643. name: "Macro+",
  30644. height: math.unit(150, "feet")
  30645. },
  30646. {
  30647. name: "Megamacro",
  30648. height: math.unit(100, "miles")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(63.4, "meters"),
  30657. weight: math.unit(3.28349e+6, "kilograms"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/kirina-violet/front.svg",
  30661. extra: 2812 / 2725,
  30662. bottom: 0 / 2812
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(63.4, "meters"),
  30667. weight: math.unit(3.28349e+6, "kilograms"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/kirina-violet/back.svg",
  30671. extra: 2812 / 2725,
  30672. bottom: 0 / 2812
  30673. }
  30674. },
  30675. mouth: {
  30676. height: math.unit(4.35, "meters"),
  30677. name: "Mouth",
  30678. image: {
  30679. source: "./media/characters/kirina-violet/mouth.svg"
  30680. }
  30681. },
  30682. paw: {
  30683. height: math.unit(5.6, "meters"),
  30684. name: "Paw",
  30685. image: {
  30686. source: "./media/characters/kirina-violet/paw.svg"
  30687. }
  30688. },
  30689. tail: {
  30690. height: math.unit(18, "meters"),
  30691. name: "Tail",
  30692. image: {
  30693. source: "./media/characters/kirina-violet/tail.svg"
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Macro",
  30700. height: math.unit(63.4, "meters"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30707. {
  30708. front: {
  30709. height: math.unit(75, "feet"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/cat-gigachu/front.svg",
  30713. extra: 1239/1027,
  30714. bottom: 32/1271
  30715. }
  30716. },
  30717. back: {
  30718. height: math.unit(75, "feet"),
  30719. name: "Back",
  30720. image: {
  30721. source: "./media/characters/cat-gigachu/back.svg",
  30722. extra: 1229/1030,
  30723. bottom: 9/1238
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Dynamax",
  30730. height: math.unit(75, "feet"),
  30731. default: true
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(6, "feet"),
  30740. weight: math.unit(150, "lb"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/sfaiyan/front.svg",
  30744. extra: 999 / 978,
  30745. bottom: 5 / 1004
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(1.82, "meters")
  30753. },
  30754. {
  30755. name: "Giant",
  30756. height: math.unit(2.27, "km"),
  30757. default: true
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(179, "cm"),
  30766. weight: math.unit(100, "kg"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/raunehkeli/front.svg",
  30770. extra: 1934 / 1926,
  30771. bottom: 0 / 1934
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Normal",
  30778. height: math.unit(179, "cm")
  30779. },
  30780. {
  30781. name: "Maximum",
  30782. height: math.unit(575, "meters"),
  30783. default: true
  30784. },
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30789. {
  30790. front: {
  30791. height: math.unit(6, "feet"),
  30792. weight: math.unit(150, "lb"),
  30793. name: "Front",
  30794. image: {
  30795. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30796. extra: 2625 / 2518,
  30797. bottom: 60 / 2685
  30798. }
  30799. },
  30800. },
  30801. [
  30802. {
  30803. name: "Normal",
  30804. height: math.unit(6 + 2 / 12, "feet")
  30805. },
  30806. {
  30807. name: "Macro",
  30808. height: math.unit(1180, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(5 + 6 / 12, "feet"),
  30818. weight: math.unit(108, "lb"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/lilith-zott/front.svg",
  30822. extra: 2510 / 2238,
  30823. bottom: 100 / 2610
  30824. }
  30825. },
  30826. frontDressed: {
  30827. height: math.unit(5 + 6 / 12, "feet"),
  30828. weight: math.unit(108, "lb"),
  30829. name: "Front (Dressed)",
  30830. image: {
  30831. source: "./media/characters/lilith-zott/front-dressed.svg",
  30832. extra: 2510 / 2238,
  30833. bottom: 100 / 2610
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(5 + 6 / 12, "feet")
  30841. },
  30842. {
  30843. name: "Macro",
  30844. height: math.unit(1030, "feet"),
  30845. default: true
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(6, "feet"),
  30854. weight: math.unit(150, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30858. extra: 2567 / 2435,
  30859. bottom: 39 / 2606
  30860. }
  30861. },
  30862. frontSuper: {
  30863. height: math.unit(6, "feet"),
  30864. name: "Front (Super)",
  30865. image: {
  30866. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30867. extra: 2567 / 2435,
  30868. bottom: 39 / 2606
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(5 + 10 / 12, "feet")
  30876. },
  30877. {
  30878. name: "Macro",
  30879. height: math.unit(1100, "feet"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(100, "miles"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/sona/front.svg",
  30892. extra: 2433 / 2201,
  30893. bottom: 53 / 2486
  30894. }
  30895. },
  30896. foot: {
  30897. height: math.unit(16.1, "miles"),
  30898. name: "Foot",
  30899. image: {
  30900. source: "./media/characters/sona/foot.svg"
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Macro",
  30907. height: math.unit(100, "miles"),
  30908. default: true
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(150, "lb"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/bailey/front.svg",
  30921. extra: 1778 / 1724,
  30922. bottom: 30 / 1808
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Micro",
  30929. height: math.unit(4, "inches")
  30930. },
  30931. {
  30932. name: "Normal",
  30933. height: math.unit(5 + 5 / 12, "feet"),
  30934. default: true
  30935. },
  30936. {
  30937. name: "Macro",
  30938. height: math.unit(250, "feet")
  30939. },
  30940. {
  30941. name: "Megamacro",
  30942. height: math.unit(100, "miles")
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(5 + 2 / 12, "feet"),
  30951. weight: math.unit(120, "lb"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/snaps/front.svg",
  30955. extra: 2370 / 2177,
  30956. bottom: 48 / 2418
  30957. }
  30958. },
  30959. back: {
  30960. height: math.unit(5 + 2 / 12, "feet"),
  30961. weight: math.unit(120, "lb"),
  30962. name: "Back",
  30963. image: {
  30964. source: "./media/characters/snaps/back.svg",
  30965. extra: 2408 / 2258,
  30966. bottom: 15 / 2423
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Micro",
  30973. height: math.unit(9, "inches")
  30974. },
  30975. {
  30976. name: "Normal",
  30977. height: math.unit(5 + 2 / 12, "feet"),
  30978. default: true
  30979. },
  30980. {
  30981. name: "Mini Macro",
  30982. height: math.unit(10, "feet")
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30988. {
  30989. front: {
  30990. height: math.unit(1.8, "meters"),
  30991. weight: math.unit(85, "kg"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/azteck/front.svg",
  30995. extra: 2815 / 2625,
  30996. bottom: 89 / 2904
  30997. }
  30998. },
  30999. back: {
  31000. height: math.unit(1.8, "meters"),
  31001. weight: math.unit(85, "kg"),
  31002. name: "Back",
  31003. image: {
  31004. source: "./media/characters/azteck/back.svg",
  31005. extra: 2856 / 2648,
  31006. bottom: 85 / 2941
  31007. }
  31008. },
  31009. frontDressed: {
  31010. height: math.unit(1.8, "meters"),
  31011. weight: math.unit(85, "kg"),
  31012. name: "Front (Dressed)",
  31013. image: {
  31014. source: "./media/characters/azteck/front-dressed.svg",
  31015. extra: 2147 / 2003,
  31016. bottom: 68 / 2215
  31017. }
  31018. },
  31019. head: {
  31020. height: math.unit(0.47, "meters"),
  31021. weight: math.unit(85, "kg"),
  31022. name: "Head",
  31023. image: {
  31024. source: "./media/characters/azteck/head.svg"
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Bite sized",
  31031. height: math.unit(16, "cm")
  31032. },
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(1.8, "meters"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31042. {
  31043. front: {
  31044. height: math.unit(6, "feet"),
  31045. weight: math.unit(150, "lb"),
  31046. name: "Front",
  31047. image: {
  31048. source: "./media/characters/pidge/front.svg",
  31049. extra: 1936/1820,
  31050. bottom: 0/1936
  31051. }
  31052. },
  31053. back: {
  31054. height: math.unit(6, "feet"),
  31055. weight: math.unit(150, "lb"),
  31056. name: "Back",
  31057. image: {
  31058. source: "./media/characters/pidge/back.svg",
  31059. extra: 1938/1843,
  31060. bottom: 0/1938
  31061. }
  31062. },
  31063. casual: {
  31064. height: math.unit(6, "feet"),
  31065. weight: math.unit(150, "lb"),
  31066. name: "Casual",
  31067. image: {
  31068. source: "./media/characters/pidge/casual.svg",
  31069. extra: 1936/1820,
  31070. bottom: 0/1936
  31071. }
  31072. },
  31073. tech: {
  31074. height: math.unit(6, "feet"),
  31075. weight: math.unit(150, "lb"),
  31076. name: "Tech",
  31077. image: {
  31078. source: "./media/characters/pidge/tech.svg",
  31079. extra: 1802/1682,
  31080. bottom: 0/1802
  31081. }
  31082. },
  31083. head: {
  31084. height: math.unit(1.61, "feet"),
  31085. name: "Head",
  31086. image: {
  31087. source: "./media/characters/pidge/head.svg"
  31088. }
  31089. },
  31090. collar: {
  31091. height: math.unit(0.82, "feet"),
  31092. name: "Collar",
  31093. image: {
  31094. source: "./media/characters/pidge/collar.svg"
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Macro",
  31101. height: math.unit(2, "mile"),
  31102. default: true
  31103. },
  31104. {
  31105. name: "PUPPY",
  31106. height: math.unit(20, "miles")
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(150, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/en/front.svg",
  31119. extra: 1697 / 1563,
  31120. bottom: 103 / 1800
  31121. }
  31122. },
  31123. back: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(150, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/en/back.svg",
  31129. extra: 1700 / 1570,
  31130. bottom: 51 / 1751
  31131. }
  31132. },
  31133. frontDressed: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(150, "lb"),
  31136. name: "Front (Dressed)",
  31137. image: {
  31138. source: "./media/characters/en/front-dressed.svg",
  31139. extra: 1697 / 1563,
  31140. bottom: 103 / 1800
  31141. }
  31142. },
  31143. backDressed: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(150, "lb"),
  31146. name: "Back (Dressed)",
  31147. image: {
  31148. source: "./media/characters/en/back-dressed.svg",
  31149. extra: 1700 / 1570,
  31150. bottom: 51 / 1751
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Macro",
  31157. height: math.unit(210, "feet"),
  31158. default: true
  31159. },
  31160. ]
  31161. ))
  31162. characterMakers.push(() => makeCharacter(
  31163. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31164. {
  31165. front: {
  31166. height: math.unit(6, "feet"),
  31167. weight: math.unit(150, "lb"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/haze-orris/front.svg",
  31171. extra: 3975 / 3525,
  31172. bottom: 137 / 4112
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Micro",
  31179. height: math.unit(150, "mm"),
  31180. default: true
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(6, "feet"),
  31189. weight: math.unit(150, "lb"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/casselene-yaro/front.svg",
  31193. extra: 4721 / 4541,
  31194. bottom: 82 / 4803
  31195. }
  31196. },
  31197. back: {
  31198. height: math.unit(6, "feet"),
  31199. weight: math.unit(150, "lb"),
  31200. name: "Back",
  31201. image: {
  31202. source: "./media/characters/casselene-yaro/back.svg",
  31203. extra: 4569 / 4377,
  31204. bottom: 69 / 4638
  31205. }
  31206. },
  31207. dressed: {
  31208. height: math.unit(6, "feet"),
  31209. weight: math.unit(150, "lb"),
  31210. name: "Dressed",
  31211. image: {
  31212. source: "./media/characters/casselene-yaro/dressed.svg",
  31213. extra: 4721 / 4541,
  31214. bottom: 82 / 4803
  31215. }
  31216. },
  31217. maw: {
  31218. height: math.unit(1, "feet"),
  31219. name: "Maw",
  31220. image: {
  31221. source: "./media/characters/casselene-yaro/maw.svg"
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Macro",
  31228. height: math.unit(190, "feet"),
  31229. default: true
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(10, "feet"),
  31238. weight: math.unit(15015, "lb"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/platine/front.svg",
  31242. extra: 1741/1650,
  31243. bottom: 84/1825
  31244. }
  31245. },
  31246. side: {
  31247. height: math.unit(10, "feet"),
  31248. weight: math.unit(15015, "lb"),
  31249. name: "Side",
  31250. image: {
  31251. source: "./media/characters/platine/side.svg",
  31252. extra: 1790/1705,
  31253. bottom: 29/1819
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(10, "feet"),
  31261. default: true
  31262. },
  31263. {
  31264. name: "Macro",
  31265. height: math.unit(100, "feet")
  31266. },
  31267. {
  31268. name: "Megamacro",
  31269. height: math.unit(1000, "feet")
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(15 + 5 / 12, "feet"),
  31278. weight: math.unit(4600, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/neapolitan-ananassa/front.svg",
  31282. extra: 2903 / 2736,
  31283. bottom: 0 / 2903
  31284. }
  31285. },
  31286. side: {
  31287. height: math.unit(15 + 5 / 12, "feet"),
  31288. weight: math.unit(4600, "lb"),
  31289. name: "Side",
  31290. image: {
  31291. source: "./media/characters/neapolitan-ananassa/side.svg",
  31292. extra: 2925 / 2719,
  31293. bottom: 0 / 2925
  31294. }
  31295. },
  31296. back: {
  31297. height: math.unit(15 + 5 / 12, "feet"),
  31298. weight: math.unit(4600, "lb"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/neapolitan-ananassa/back.svg",
  31302. extra: 2903 / 2736,
  31303. bottom: 0 / 2903
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(15 + 5 / 12, "feet"),
  31311. default: true
  31312. },
  31313. {
  31314. name: "Post-Millenium",
  31315. height: math.unit(35 + 5 / 12, "feet")
  31316. },
  31317. {
  31318. name: "Post-Era",
  31319. height: math.unit(450 + 5 / 12, "feet")
  31320. },
  31321. ]
  31322. ))
  31323. characterMakers.push(() => makeCharacter(
  31324. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31325. {
  31326. front: {
  31327. height: math.unit(300, "meters"),
  31328. weight: math.unit(125000, "tonnes"),
  31329. name: "Front",
  31330. image: {
  31331. source: "./media/characters/pazuzu/front.svg",
  31332. extra: 877 / 794,
  31333. bottom: 47 / 924
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Macro",
  31340. height: math.unit(300, "meters"),
  31341. default: true
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31347. {
  31348. side: {
  31349. height: math.unit(10 + 7 / 12, "feet"),
  31350. weight: math.unit(2.5, "tons"),
  31351. name: "Side",
  31352. image: {
  31353. source: "./media/characters/aasha/side.svg",
  31354. extra: 1345 / 1245,
  31355. bottom: 111 / 1456
  31356. }
  31357. },
  31358. back: {
  31359. height: math.unit(10 + 7 / 12, "feet"),
  31360. weight: math.unit(2.5, "tons"),
  31361. name: "Back",
  31362. image: {
  31363. source: "./media/characters/aasha/back.svg",
  31364. extra: 1133 / 1057,
  31365. bottom: 257 / 1390
  31366. }
  31367. },
  31368. },
  31369. [
  31370. {
  31371. name: "Normal",
  31372. height: math.unit(10 + 7 / 12, "feet"),
  31373. default: true
  31374. },
  31375. ]
  31376. ))
  31377. characterMakers.push(() => makeCharacter(
  31378. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31379. {
  31380. front: {
  31381. height: math.unit(6 + 3 / 12, "feet"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/nevan/front.svg",
  31385. extra: 704 / 704,
  31386. bottom: 28 / 732
  31387. }
  31388. },
  31389. back: {
  31390. height: math.unit(6 + 3 / 12, "feet"),
  31391. name: "Back",
  31392. image: {
  31393. source: "./media/characters/nevan/back.svg",
  31394. extra: 714 / 714,
  31395. bottom: 21 / 735
  31396. }
  31397. },
  31398. frontFlaccid: {
  31399. height: math.unit(6 + 3 / 12, "feet"),
  31400. name: "Front (Flaccid)",
  31401. image: {
  31402. source: "./media/characters/nevan/front-flaccid.svg",
  31403. extra: 704 / 704,
  31404. bottom: 28 / 732
  31405. }
  31406. },
  31407. frontErect: {
  31408. height: math.unit(6 + 3 / 12, "feet"),
  31409. name: "Front (Erect)",
  31410. image: {
  31411. source: "./media/characters/nevan/front-erect.svg",
  31412. extra: 704 / 704,
  31413. bottom: 28 / 732
  31414. }
  31415. },
  31416. backFlaccid: {
  31417. height: math.unit(6 + 3 / 12, "feet"),
  31418. name: "Back (Flaccid)",
  31419. image: {
  31420. source: "./media/characters/nevan/back-flaccid.svg",
  31421. extra: 714 / 714,
  31422. bottom: 21 / 735
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(6 + 3 / 12, "feet"),
  31430. default: true
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(4, "feet"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/arhan/front.svg",
  31442. extra: 3368 / 3133,
  31443. bottom: 0 / 3368
  31444. }
  31445. },
  31446. side: {
  31447. height: math.unit(4, "feet"),
  31448. name: "Side",
  31449. image: {
  31450. source: "./media/characters/arhan/side.svg",
  31451. extra: 3347 / 3105,
  31452. bottom: 0 / 3347
  31453. }
  31454. },
  31455. tongue: {
  31456. height: math.unit(1.42, "feet"),
  31457. name: "Tongue",
  31458. image: {
  31459. source: "./media/characters/arhan/tongue.svg"
  31460. }
  31461. },
  31462. head: {
  31463. height: math.unit(0.85, "feet"),
  31464. name: "Head",
  31465. image: {
  31466. source: "./media/characters/arhan/head.svg"
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "Normal",
  31473. height: math.unit(4, "feet"),
  31474. default: true
  31475. },
  31476. ]
  31477. ))
  31478. characterMakers.push(() => makeCharacter(
  31479. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31480. {
  31481. front: {
  31482. height: math.unit(5 + 7.5 / 12, "feet"),
  31483. weight: math.unit(120, "lb"),
  31484. name: "Front",
  31485. image: {
  31486. source: "./media/characters/digi-duncan/front.svg",
  31487. extra: 330 / 326,
  31488. bottom: 16 / 346
  31489. }
  31490. },
  31491. side: {
  31492. height: math.unit(5 + 7.5 / 12, "feet"),
  31493. weight: math.unit(120, "lb"),
  31494. name: "Side",
  31495. image: {
  31496. source: "./media/characters/digi-duncan/side.svg",
  31497. extra: 341 / 337,
  31498. bottom: 1 / 342
  31499. }
  31500. },
  31501. back: {
  31502. height: math.unit(5 + 7.5 / 12, "feet"),
  31503. weight: math.unit(120, "lb"),
  31504. name: "Back",
  31505. image: {
  31506. source: "./media/characters/digi-duncan/back.svg",
  31507. extra: 330 / 326,
  31508. bottom: 12 / 342
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Speck",
  31515. height: math.unit(0.25, "mm")
  31516. },
  31517. {
  31518. name: "Micro",
  31519. height: math.unit(5, "mm")
  31520. },
  31521. {
  31522. name: "Tiny",
  31523. height: math.unit(0.5, "inches"),
  31524. default: true
  31525. },
  31526. {
  31527. name: "Human",
  31528. height: math.unit(5 + 7.5 / 12, "feet")
  31529. },
  31530. {
  31531. name: "Minigiant",
  31532. height: math.unit(8 + 5.25, "feet")
  31533. },
  31534. {
  31535. name: "Giant",
  31536. height: math.unit(2000, "feet")
  31537. },
  31538. {
  31539. name: "Mega",
  31540. height: math.unit(371.1, "miles")
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(2, "meters"),
  31549. weight: math.unit(350, "kg"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31553. extra: 898 / 838,
  31554. bottom: 9 / 907
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Micro",
  31561. height: math.unit(8, "meters")
  31562. },
  31563. {
  31564. name: "Normal",
  31565. height: math.unit(50, "meters"),
  31566. default: true
  31567. },
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(500, "meters")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31576. {
  31577. front: {
  31578. height: math.unit(6 + 6 / 12, "feet"),
  31579. name: "Front",
  31580. image: {
  31581. source: "./media/characters/khardesh/front.svg",
  31582. extra: 1788/1596,
  31583. bottom: 66/1854
  31584. }
  31585. },
  31586. back: {
  31587. height: math.unit(6 + 6 / 12, "feet"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/khardesh/back.svg",
  31591. extra: 1781/1584,
  31592. bottom: 68/1849
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Normal",
  31599. height: math.unit(6 + 6 / 12, "feet"),
  31600. default: true
  31601. },
  31602. {
  31603. name: "Normal+",
  31604. height: math.unit(4, "meters")
  31605. },
  31606. {
  31607. name: "Macro",
  31608. height: math.unit(50, "meters")
  31609. },
  31610. {
  31611. name: "Macro+",
  31612. height: math.unit(100, "meters")
  31613. },
  31614. {
  31615. name: "Megamacro",
  31616. height: math.unit(20, "km")
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31622. {
  31623. front: {
  31624. height: math.unit(6, "feet"),
  31625. weight: math.unit(150, "lb"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/kosho/front.svg",
  31629. extra: 1847 / 1847,
  31630. bottom: 86 / 1933
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Second-stage micro",
  31637. height: math.unit(0.5, "inches")
  31638. },
  31639. {
  31640. name: "First-stage micro",
  31641. height: math.unit(6, "inches")
  31642. },
  31643. {
  31644. name: "Normal",
  31645. height: math.unit(6, "feet"),
  31646. default: true
  31647. },
  31648. {
  31649. name: "First-stage macro",
  31650. height: math.unit(72, "feet")
  31651. },
  31652. {
  31653. name: "Second-stage macro",
  31654. height: math.unit(864, "feet")
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31660. {
  31661. normal: {
  31662. height: math.unit(4 + 6 / 12, "feet"),
  31663. name: "Normal",
  31664. image: {
  31665. source: "./media/characters/hydra/normal.svg",
  31666. extra: 2833 / 2634,
  31667. bottom: 68 / 2901
  31668. }
  31669. },
  31670. smol: {
  31671. height: math.unit(0.705, "inches"),
  31672. name: "Smol",
  31673. image: {
  31674. source: "./media/characters/hydra/smol.svg",
  31675. extra: 2715 / 2540,
  31676. bottom: 0 / 2715
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(4 + 6 / 12, "feet"),
  31684. default: true
  31685. }
  31686. ]
  31687. ))
  31688. characterMakers.push(() => makeCharacter(
  31689. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31690. {
  31691. front: {
  31692. height: math.unit(0.6, "cm"),
  31693. name: "Front",
  31694. image: {
  31695. source: "./media/characters/daz/front.svg",
  31696. extra: 1682 / 1164,
  31697. bottom: 42 / 1724
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(0.6, "cm"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(6, "feet"),
  31714. weight: math.unit(235, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/theo-pangolin/front.svg",
  31718. extra: 1996 / 1969,
  31719. bottom: 115 / 2111
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(6, "feet"),
  31724. weight: math.unit(235, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/theo-pangolin/back.svg",
  31728. extra: 1979 / 1979,
  31729. bottom: 40 / 2019
  31730. }
  31731. },
  31732. feral: {
  31733. height: math.unit(2, "feet"),
  31734. weight: math.unit(30, "lb"),
  31735. name: "Feral",
  31736. image: {
  31737. source: "./media/characters/theo-pangolin/feral.svg",
  31738. extra: 803 / 791,
  31739. bottom: 181 / 984
  31740. }
  31741. },
  31742. footFive: {
  31743. height: math.unit(1.43, "feet"),
  31744. name: "Foot (Five Toes)",
  31745. image: {
  31746. source: "./media/characters/theo-pangolin/foot-five.svg"
  31747. }
  31748. },
  31749. footFour: {
  31750. height: math.unit(1.43, "feet"),
  31751. name: "Foot (Four Toes)",
  31752. image: {
  31753. source: "./media/characters/theo-pangolin/foot-four.svg"
  31754. }
  31755. },
  31756. handFour: {
  31757. height: math.unit(0.81, "feet"),
  31758. name: "Hand (Four Fingers)",
  31759. image: {
  31760. source: "./media/characters/theo-pangolin/hand-four.svg"
  31761. }
  31762. },
  31763. handThree: {
  31764. height: math.unit(0.81, "feet"),
  31765. name: "Hand (Three Fingers)",
  31766. image: {
  31767. source: "./media/characters/theo-pangolin/hand-three.svg"
  31768. }
  31769. },
  31770. headFront: {
  31771. height: math.unit(1.37, "feet"),
  31772. name: "Head (Front)",
  31773. image: {
  31774. source: "./media/characters/theo-pangolin/head-front.svg"
  31775. }
  31776. },
  31777. headSide: {
  31778. height: math.unit(1.43, "feet"),
  31779. name: "Head (Side)",
  31780. image: {
  31781. source: "./media/characters/theo-pangolin/head-side.svg"
  31782. }
  31783. },
  31784. tongue: {
  31785. height: math.unit(2.29, "feet"),
  31786. name: "Tongue",
  31787. image: {
  31788. source: "./media/characters/theo-pangolin/tongue.svg"
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(6, "feet")
  31796. },
  31797. {
  31798. name: "Macro",
  31799. height: math.unit(400, "feet"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(6, "inches"),
  31809. weight: math.unit(0.036, "kg"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/renée/front.svg",
  31813. extra: 900 / 886,
  31814. bottom: 8 / 908
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Nano",
  31821. height: math.unit(1, "nm")
  31822. },
  31823. {
  31824. name: "Micro",
  31825. height: math.unit(1, "mm")
  31826. },
  31827. {
  31828. name: "Normal",
  31829. height: math.unit(6, "inches")
  31830. },
  31831. {
  31832. name: "Macro",
  31833. height: math.unit(2000, "feet"),
  31834. default: true
  31835. },
  31836. {
  31837. name: "Megamacro",
  31838. height: math.unit(2, "km")
  31839. },
  31840. {
  31841. name: "Gigamacro",
  31842. height: math.unit(2000, "km")
  31843. },
  31844. {
  31845. name: "Teramacro",
  31846. height: math.unit(250000, "km")
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(4, "meters"),
  31855. weight: math.unit(150, "kg"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/caledvwlch/front.svg",
  31859. extra: 1760 / 1551,
  31860. bottom: 28 / 1788
  31861. }
  31862. },
  31863. side: {
  31864. height: math.unit(4, "meters"),
  31865. weight: math.unit(150, "kg"),
  31866. name: "Side",
  31867. image: {
  31868. source: "./media/characters/caledvwlch/side.svg",
  31869. extra: 1605 / 1536,
  31870. bottom: 31 / 1636
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(4, "meters"),
  31875. weight: math.unit(150, "kg"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/caledvwlch/back.svg",
  31879. extra: 1635 / 1565,
  31880. bottom: 27 / 1662
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "\"Incognito\"",
  31887. height: math.unit(4, "meters")
  31888. },
  31889. {
  31890. name: "Small rampage",
  31891. height: math.unit(600, "meters")
  31892. },
  31893. {
  31894. name: "Mega",
  31895. height: math.unit(30, "km")
  31896. },
  31897. {
  31898. name: "Home-size",
  31899. height: math.unit(50, "km"),
  31900. default: true
  31901. },
  31902. {
  31903. name: "Giga",
  31904. height: math.unit(300, "km")
  31905. },
  31906. {
  31907. name: "Lounging",
  31908. height: math.unit(11000, "km")
  31909. },
  31910. {
  31911. name: "Planet snacking",
  31912. height: math.unit(2000000, "km")
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(6, "feet"),
  31921. weight: math.unit(215, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/sapphire-svell/front.svg",
  31925. extra: 495 / 455,
  31926. bottom: 20 / 515
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(6, "feet"),
  31931. weight: math.unit(216, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/sapphire-svell/back.svg",
  31935. extra: 497 / 477,
  31936. bottom: 7 / 504
  31937. }
  31938. },
  31939. maw: {
  31940. height: math.unit(1.57, "feet"),
  31941. name: "Maw",
  31942. image: {
  31943. source: "./media/characters/sapphire-svell/maw.svg"
  31944. }
  31945. },
  31946. foot: {
  31947. height: math.unit(1.07, "feet"),
  31948. name: "Foot",
  31949. image: {
  31950. source: "./media/characters/sapphire-svell/foot.svg"
  31951. }
  31952. },
  31953. toering: {
  31954. height: math.unit(1.7, "inch"),
  31955. name: "Toering",
  31956. image: {
  31957. source: "./media/characters/sapphire-svell/toering.svg"
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(300, "feet"),
  31965. default: true
  31966. },
  31967. {
  31968. name: "Augmented",
  31969. height: math.unit(1250, "feet")
  31970. },
  31971. {
  31972. name: "Unleashed",
  31973. height: math.unit(3000, "feet")
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31979. {
  31980. side: {
  31981. height: math.unit(2 + 3 / 12, "feet"),
  31982. weight: math.unit(110, "lb"),
  31983. name: "Side",
  31984. image: {
  31985. source: "./media/characters/glitch-flux/side.svg",
  31986. extra: 997 / 805,
  31987. bottom: 20 / 1017
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Normal",
  31994. height: math.unit(2 + 3 / 12, "feet"),
  31995. default: true
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(4, "meters"),
  32004. name: "Front",
  32005. image: {
  32006. source: "./media/characters/mid/front.svg",
  32007. extra: 507 / 476,
  32008. bottom: 17 / 524
  32009. }
  32010. },
  32011. back: {
  32012. height: math.unit(4, "meters"),
  32013. name: "Back",
  32014. image: {
  32015. source: "./media/characters/mid/back.svg",
  32016. extra: 519 / 487,
  32017. bottom: 7 / 526
  32018. }
  32019. },
  32020. stuck: {
  32021. height: math.unit(2.2, "meters"),
  32022. name: "Stuck",
  32023. image: {
  32024. source: "./media/characters/mid/stuck.svg",
  32025. extra: 1951 / 1869,
  32026. bottom: 88 / 2039
  32027. }
  32028. }
  32029. },
  32030. [
  32031. {
  32032. name: "Normal",
  32033. height: math.unit(4, "meters"),
  32034. default: true
  32035. },
  32036. {
  32037. name: "Big",
  32038. height: math.unit(10, "meters")
  32039. },
  32040. {
  32041. name: "Macro",
  32042. height: math.unit(800, "meters")
  32043. },
  32044. {
  32045. name: "Megamacro",
  32046. height: math.unit(100, "km")
  32047. },
  32048. {
  32049. name: "Overgrown",
  32050. height: math.unit(1, "parsec")
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(2.5, "meters"),
  32059. weight: math.unit(225, "kg"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/iris/front.svg",
  32063. extra: 3348 / 3251,
  32064. bottom: 205 / 3553
  32065. }
  32066. },
  32067. maw: {
  32068. height: math.unit(0.56, "meter"),
  32069. name: "Maw",
  32070. image: {
  32071. source: "./media/characters/iris/maw.svg"
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Mewter cat",
  32078. height: math.unit(1.2, "meters")
  32079. },
  32080. {
  32081. name: "Normal",
  32082. height: math.unit(2.5, "meters"),
  32083. default: true
  32084. },
  32085. {
  32086. name: "Minimacro",
  32087. height: math.unit(18, "feet")
  32088. },
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(140, "feet")
  32092. },
  32093. {
  32094. name: "Macro+",
  32095. height: math.unit(180, "meters")
  32096. },
  32097. {
  32098. name: "Megamacro",
  32099. height: math.unit(2746, "meters")
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32105. {
  32106. front: {
  32107. height: math.unit(6, "feet"),
  32108. weight: math.unit(135, "lb"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/axel/front.svg",
  32112. extra: 908 / 908,
  32113. bottom: 58 / 966
  32114. }
  32115. },
  32116. side: {
  32117. height: math.unit(6, "feet"),
  32118. weight: math.unit(135, "lb"),
  32119. name: "Side",
  32120. image: {
  32121. source: "./media/characters/axel/side.svg",
  32122. extra: 958 / 958,
  32123. bottom: 11 / 969
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(6, "feet"),
  32128. weight: math.unit(135, "lb"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/axel/back.svg",
  32132. extra: 887 / 887,
  32133. bottom: 34 / 921
  32134. }
  32135. },
  32136. head: {
  32137. height: math.unit(1.07, "feet"),
  32138. name: "Head",
  32139. image: {
  32140. source: "./media/characters/axel/head.svg"
  32141. }
  32142. },
  32143. beak: {
  32144. height: math.unit(1.4, "feet"),
  32145. name: "Beak",
  32146. image: {
  32147. source: "./media/characters/axel/beak.svg"
  32148. }
  32149. },
  32150. beakSide: {
  32151. height: math.unit(1.4, "feet"),
  32152. name: "Beak Side",
  32153. image: {
  32154. source: "./media/characters/axel/beak-side.svg"
  32155. }
  32156. },
  32157. sheath: {
  32158. height: math.unit(0.5, "feet"),
  32159. name: "Sheath",
  32160. image: {
  32161. source: "./media/characters/axel/sheath.svg"
  32162. }
  32163. },
  32164. dick: {
  32165. height: math.unit(0.98, "feet"),
  32166. name: "Dick",
  32167. image: {
  32168. source: "./media/characters/axel/dick.svg"
  32169. }
  32170. },
  32171. },
  32172. [
  32173. {
  32174. name: "Macro",
  32175. height: math.unit(68, "meters"),
  32176. default: true
  32177. },
  32178. ]
  32179. ))
  32180. characterMakers.push(() => makeCharacter(
  32181. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32182. {
  32183. front: {
  32184. height: math.unit(3.5, "meters"),
  32185. weight: math.unit(1200, "kg"),
  32186. name: "Front",
  32187. image: {
  32188. source: "./media/characters/joanna/front.svg",
  32189. extra: 1596 / 1488,
  32190. bottom: 29 / 1625
  32191. }
  32192. },
  32193. back: {
  32194. height: math.unit(3.5, "meters"),
  32195. weight: math.unit(1200, "kg"),
  32196. name: "Back",
  32197. image: {
  32198. source: "./media/characters/joanna/back.svg",
  32199. extra: 1594 / 1495,
  32200. bottom: 26 / 1620
  32201. }
  32202. },
  32203. frontShorts: {
  32204. height: math.unit(3.5, "meters"),
  32205. weight: math.unit(1200, "kg"),
  32206. name: "Front (Shorts)",
  32207. image: {
  32208. source: "./media/characters/joanna/front-shorts.svg",
  32209. extra: 1596 / 1488,
  32210. bottom: 29 / 1625
  32211. }
  32212. },
  32213. frontBiker: {
  32214. height: math.unit(3.5, "meters"),
  32215. weight: math.unit(1200, "kg"),
  32216. name: "Front (Biker)",
  32217. image: {
  32218. source: "./media/characters/joanna/front-biker.svg",
  32219. extra: 1596 / 1488,
  32220. bottom: 29 / 1625
  32221. }
  32222. },
  32223. backBiker: {
  32224. height: math.unit(3.5, "meters"),
  32225. weight: math.unit(1200, "kg"),
  32226. name: "Back (Biker)",
  32227. image: {
  32228. source: "./media/characters/joanna/back-biker.svg",
  32229. extra: 1594 / 1495,
  32230. bottom: 88 / 1682
  32231. }
  32232. },
  32233. bikeLeft: {
  32234. height: math.unit(2.4, "meters"),
  32235. weight: math.unit(1600, "kg"),
  32236. name: "Bike (Left)",
  32237. image: {
  32238. source: "./media/characters/joanna/bike-left.svg",
  32239. extra: 720 / 720,
  32240. bottom: 8 / 728
  32241. }
  32242. },
  32243. bikeRight: {
  32244. height: math.unit(2.4, "meters"),
  32245. weight: math.unit(1600, "kg"),
  32246. name: "Bike (Right)",
  32247. image: {
  32248. source: "./media/characters/joanna/bike-right.svg",
  32249. extra: 720 / 720,
  32250. bottom: 8 / 728
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Incognito",
  32257. height: math.unit(3.5, "meters")
  32258. },
  32259. {
  32260. name: "Casual Big",
  32261. height: math.unit(200, "meters")
  32262. },
  32263. {
  32264. name: "Macro",
  32265. height: math.unit(600, "meters")
  32266. },
  32267. {
  32268. name: "Original",
  32269. height: math.unit(20, "km"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "Giga",
  32274. height: math.unit(400, "km")
  32275. },
  32276. {
  32277. name: "Lounging",
  32278. height: math.unit(1500, "km")
  32279. },
  32280. {
  32281. name: "Planetary",
  32282. height: math.unit(200000, "km")
  32283. },
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32288. {
  32289. front: {
  32290. height: math.unit(6, "feet"),
  32291. weight: math.unit(150, "lb"),
  32292. name: "Front",
  32293. image: {
  32294. source: "./media/characters/hugo-sigil/front.svg",
  32295. extra: 522 / 500,
  32296. bottom: 2 / 524
  32297. }
  32298. },
  32299. back: {
  32300. height: math.unit(6, "feet"),
  32301. weight: math.unit(150, "lb"),
  32302. name: "Back",
  32303. image: {
  32304. source: "./media/characters/hugo-sigil/back.svg",
  32305. extra: 519 / 495,
  32306. bottom: 5 / 524
  32307. }
  32308. },
  32309. maw: {
  32310. height: math.unit(1.4, "feet"),
  32311. weight: math.unit(150, "lb"),
  32312. name: "Maw",
  32313. image: {
  32314. source: "./media/characters/hugo-sigil/maw.svg"
  32315. }
  32316. },
  32317. feet: {
  32318. height: math.unit(1.56, "feet"),
  32319. weight: math.unit(150, "lb"),
  32320. name: "Feet",
  32321. image: {
  32322. source: "./media/characters/hugo-sigil/feet.svg",
  32323. extra: 177 / 177,
  32324. bottom: 12 / 189
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(6, "feet")
  32332. },
  32333. {
  32334. name: "Macro",
  32335. height: math.unit(200, "feet"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(6, "feet"),
  32345. weight: math.unit(150, "lb"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/peri/front.svg",
  32349. extra: 2354 / 2233,
  32350. bottom: 49 / 2403
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Really Small",
  32357. height: math.unit(1, "nm")
  32358. },
  32359. {
  32360. name: "Micro",
  32361. height: math.unit(4, "inches")
  32362. },
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(7, "inches"),
  32366. default: true
  32367. },
  32368. {
  32369. name: "Macro",
  32370. height: math.unit(400, "feet")
  32371. },
  32372. {
  32373. name: "Megamacro",
  32374. height: math.unit(100, "miles")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32380. {
  32381. frontSlim: {
  32382. height: math.unit(7, "feet"),
  32383. name: "Front (Slim)",
  32384. image: {
  32385. source: "./media/characters/issilora/front-slim.svg",
  32386. extra: 529 / 449,
  32387. bottom: 53 / 582
  32388. }
  32389. },
  32390. sideSlim: {
  32391. height: math.unit(7, "feet"),
  32392. name: "Side (Slim)",
  32393. image: {
  32394. source: "./media/characters/issilora/side-slim.svg",
  32395. extra: 570 / 480,
  32396. bottom: 30 / 600
  32397. }
  32398. },
  32399. backSlim: {
  32400. height: math.unit(7, "feet"),
  32401. name: "Back (Slim)",
  32402. image: {
  32403. source: "./media/characters/issilora/back-slim.svg",
  32404. extra: 537 / 455,
  32405. bottom: 46 / 583
  32406. }
  32407. },
  32408. frontBuff: {
  32409. height: math.unit(7, "feet"),
  32410. name: "Front (Buff)",
  32411. image: {
  32412. source: "./media/characters/issilora/front-buff.svg",
  32413. extra: 2310 / 2035,
  32414. bottom: 335 / 2645
  32415. }
  32416. },
  32417. head: {
  32418. height: math.unit(1.94, "feet"),
  32419. name: "Head",
  32420. image: {
  32421. source: "./media/characters/issilora/head.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Minimum",
  32428. height: math.unit(7, "feet")
  32429. },
  32430. {
  32431. name: "Comfortable",
  32432. height: math.unit(17, "feet")
  32433. },
  32434. {
  32435. name: "Fun Size",
  32436. height: math.unit(47, "feet")
  32437. },
  32438. {
  32439. name: "Natural Macro",
  32440. height: math.unit(137, "feet"),
  32441. default: true
  32442. },
  32443. {
  32444. name: "Maximum Kaiju",
  32445. height: math.unit(397, "feet")
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32451. {
  32452. front: {
  32453. height: math.unit(50 + 9/12, "feet"),
  32454. weight: math.unit(32.8, "tons"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/irb'iiritaahn/front.svg",
  32458. extra: 1878/1826,
  32459. bottom: 326/2204
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(50 + 9/12, "feet"),
  32464. weight: math.unit(32.8, "tons"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/irb'iiritaahn/back.svg",
  32468. extra: 2052/2018,
  32469. bottom: 152/2204
  32470. }
  32471. },
  32472. head: {
  32473. height: math.unit(12.86, "feet"),
  32474. name: "Head",
  32475. image: {
  32476. source: "./media/characters/irb'iiritaahn/head.svg"
  32477. }
  32478. },
  32479. maw: {
  32480. height: math.unit(9.66, "feet"),
  32481. name: "Maw",
  32482. image: {
  32483. source: "./media/characters/irb'iiritaahn/maw.svg"
  32484. }
  32485. },
  32486. frontDick: {
  32487. height: math.unit(8.78461, "feet"),
  32488. name: "Front Dick",
  32489. image: {
  32490. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32491. }
  32492. },
  32493. rearDick: {
  32494. height: math.unit(8.78461, "feet"),
  32495. name: "Rear Dick",
  32496. image: {
  32497. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32498. }
  32499. },
  32500. rearDickUnfolded: {
  32501. height: math.unit(8.78, "feet"),
  32502. name: "Rear Dick (Unfolded)",
  32503. image: {
  32504. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32505. }
  32506. },
  32507. wings: {
  32508. height: math.unit(43, "feet"),
  32509. name: "Wings",
  32510. image: {
  32511. source: "./media/characters/irb'iiritaahn/wings.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Macro",
  32518. height: math.unit(50 + 9/12, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(205, "cm"),
  32528. weight: math.unit(102, "kg"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/irbisgreif/front.svg",
  32532. extra: 785/706,
  32533. bottom: 13/798
  32534. }
  32535. },
  32536. back: {
  32537. height: math.unit(205, "cm"),
  32538. weight: math.unit(102, "kg"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/irbisgreif/back.svg",
  32542. extra: 713/701,
  32543. bottom: 26/739
  32544. }
  32545. },
  32546. frontDressed: {
  32547. height: math.unit(216, "cm"),
  32548. weight: math.unit(102, "kg"),
  32549. name: "Front-dressed",
  32550. image: {
  32551. source: "./media/characters/irbisgreif/front-dressed.svg",
  32552. extra: 902/776,
  32553. bottom: 14/916
  32554. }
  32555. },
  32556. sideDressed: {
  32557. height: math.unit(195, "cm"),
  32558. weight: math.unit(102, "kg"),
  32559. name: "Side-dressed",
  32560. image: {
  32561. source: "./media/characters/irbisgreif/side-dressed.svg",
  32562. extra: 788/688,
  32563. bottom: 21/809
  32564. }
  32565. },
  32566. backDressed: {
  32567. height: math.unit(216, "cm"),
  32568. weight: math.unit(102, "kg"),
  32569. name: "Back-dressed",
  32570. image: {
  32571. source: "./media/characters/irbisgreif/back-dressed.svg",
  32572. extra: 901/783,
  32573. bottom: 10/911
  32574. }
  32575. },
  32576. dick: {
  32577. height: math.unit(0.49, "feet"),
  32578. name: "Dick",
  32579. image: {
  32580. source: "./media/characters/irbisgreif/dick.svg"
  32581. }
  32582. },
  32583. wingTop: {
  32584. height: math.unit(1.93 , "feet"),
  32585. name: "Wing-top",
  32586. image: {
  32587. source: "./media/characters/irbisgreif/wing-top.svg"
  32588. }
  32589. },
  32590. wingBottom: {
  32591. height: math.unit(1.93 , "feet"),
  32592. name: "Wing-bottom",
  32593. image: {
  32594. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32595. }
  32596. },
  32597. },
  32598. [
  32599. {
  32600. name: "Normal",
  32601. height: math.unit(216, "cm"),
  32602. default: true
  32603. },
  32604. ]
  32605. ))
  32606. characterMakers.push(() => makeCharacter(
  32607. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32608. {
  32609. front: {
  32610. height: math.unit(6, "feet"),
  32611. weight: math.unit(150, "lb"),
  32612. name: "Front",
  32613. image: {
  32614. source: "./media/characters/pride/front.svg",
  32615. extra: 1299/1230,
  32616. bottom: 18/1317
  32617. }
  32618. },
  32619. },
  32620. [
  32621. {
  32622. name: "Normal",
  32623. height: math.unit(7, "feet")
  32624. },
  32625. {
  32626. name: "Mini-macro",
  32627. height: math.unit(11, "feet")
  32628. },
  32629. {
  32630. name: "Macro",
  32631. height: math.unit(15, "meters"),
  32632. default: true
  32633. },
  32634. {
  32635. name: "Macro+",
  32636. height: math.unit(40, "meters")
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32642. {
  32643. front: {
  32644. height: math.unit(4 + 2 / 12, "feet"),
  32645. weight: math.unit(95, "lb"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/vaelophis-nyx/front.svg",
  32649. extra: 2532/2330,
  32650. bottom: 0/2532
  32651. }
  32652. },
  32653. back: {
  32654. height: math.unit(4 + 2 / 12, "feet"),
  32655. weight: math.unit(95, "lb"),
  32656. name: "Back",
  32657. image: {
  32658. source: "./media/characters/vaelophis-nyx/back.svg",
  32659. extra: 2484/2361,
  32660. bottom: 0/2484
  32661. }
  32662. },
  32663. feralSide: {
  32664. height: math.unit(2 + 1/12, "feet"),
  32665. weight: math.unit(20, "lb"),
  32666. name: "Feral (Side)",
  32667. image: {
  32668. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32669. extra: 1721/1581,
  32670. bottom: 70/1791
  32671. }
  32672. },
  32673. feralLazing: {
  32674. height: math.unit(1.08, "feet"),
  32675. weight: math.unit(20, "lb"),
  32676. name: "Feral (Lazing)",
  32677. image: {
  32678. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32679. extra: 822/822,
  32680. bottom: 248/1070
  32681. }
  32682. },
  32683. ear: {
  32684. height: math.unit(0.416, "feet"),
  32685. name: "Ear",
  32686. image: {
  32687. source: "./media/characters/vaelophis-nyx/ear.svg"
  32688. }
  32689. },
  32690. eye: {
  32691. height: math.unit(0.0748, "feet"),
  32692. name: "Eye",
  32693. image: {
  32694. source: "./media/characters/vaelophis-nyx/eye.svg"
  32695. }
  32696. },
  32697. mouth: {
  32698. height: math.unit(0.378, "feet"),
  32699. name: "Mouth",
  32700. image: {
  32701. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32702. }
  32703. },
  32704. spade: {
  32705. height: math.unit(0.55, "feet"),
  32706. name: "Spade",
  32707. image: {
  32708. source: "./media/characters/vaelophis-nyx/spade.svg"
  32709. }
  32710. },
  32711. },
  32712. [
  32713. {
  32714. name: "Normal",
  32715. height: math.unit(4 + 2/12, "feet"),
  32716. default: true
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32722. {
  32723. front: {
  32724. height: math.unit(7, "feet"),
  32725. weight: math.unit(231, "lb"),
  32726. name: "Front",
  32727. image: {
  32728. source: "./media/characters/flux/front.svg",
  32729. extra: 919/871,
  32730. bottom: 0/919
  32731. }
  32732. },
  32733. back: {
  32734. height: math.unit(7, "feet"),
  32735. weight: math.unit(231, "lb"),
  32736. name: "Back",
  32737. image: {
  32738. source: "./media/characters/flux/back.svg",
  32739. extra: 1040/992,
  32740. bottom: 0/1040
  32741. }
  32742. },
  32743. frontDressed: {
  32744. height: math.unit(7, "feet"),
  32745. weight: math.unit(231, "lb"),
  32746. name: "Front (Dressed)",
  32747. image: {
  32748. source: "./media/characters/flux/front-dressed.svg",
  32749. extra: 919/871,
  32750. bottom: 0/919
  32751. }
  32752. },
  32753. feralSide: {
  32754. height: math.unit(5, "feet"),
  32755. weight: math.unit(150, "lb"),
  32756. name: "Feral (Side)",
  32757. image: {
  32758. source: "./media/characters/flux/feral-side.svg",
  32759. extra: 598/528,
  32760. bottom: 28/626
  32761. }
  32762. },
  32763. head: {
  32764. height: math.unit(1.585, "feet"),
  32765. name: "Head",
  32766. image: {
  32767. source: "./media/characters/flux/head.svg"
  32768. }
  32769. },
  32770. headSide: {
  32771. height: math.unit(1.74, "feet"),
  32772. name: "Head (Side)",
  32773. image: {
  32774. source: "./media/characters/flux/head-side.svg"
  32775. }
  32776. },
  32777. headSideFire: {
  32778. height: math.unit(1.76, "feet"),
  32779. name: "Head (Side, Fire)",
  32780. image: {
  32781. source: "./media/characters/flux/head-side-fire.svg"
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(7, "feet"),
  32789. default: true
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32795. {
  32796. front: {
  32797. height: math.unit(9, "feet"),
  32798. weight: math.unit(1012, "lb"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/ulfra-lupae/front.svg",
  32802. extra: 1083/1011,
  32803. bottom: 67/1150
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Micro",
  32810. height: math.unit(6, "inches")
  32811. },
  32812. {
  32813. name: "Socializing",
  32814. height: math.unit(6 + 5/12, "feet")
  32815. },
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(9, "feet"),
  32819. default: true
  32820. },
  32821. {
  32822. name: "Macro",
  32823. height: math.unit(150, "feet")
  32824. },
  32825. ]
  32826. ))
  32827. characterMakers.push(() => makeCharacter(
  32828. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32829. {
  32830. front: {
  32831. height: math.unit(5 + 2/12, "feet"),
  32832. weight: math.unit(120, "lb"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/timber/front.svg",
  32836. extra: 2814/2705,
  32837. bottom: 181/2995
  32838. }
  32839. },
  32840. },
  32841. [
  32842. {
  32843. name: "Normal",
  32844. height: math.unit(5 + 2/12, "feet"),
  32845. default: true
  32846. },
  32847. ]
  32848. ))
  32849. characterMakers.push(() => makeCharacter(
  32850. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32851. {
  32852. front: {
  32853. height: math.unit(9, "feet"),
  32854. name: "Front",
  32855. image: {
  32856. source: "./media/characters/nicki/front.svg",
  32857. extra: 1240/990,
  32858. bottom: 45/1285
  32859. },
  32860. form: "anthro",
  32861. default: true
  32862. },
  32863. side: {
  32864. height: math.unit(9, "feet"),
  32865. name: "Side",
  32866. image: {
  32867. source: "./media/characters/nicki/side.svg",
  32868. extra: 1047/973,
  32869. bottom: 61/1108
  32870. },
  32871. form: "anthro"
  32872. },
  32873. back: {
  32874. height: math.unit(9, "feet"),
  32875. name: "Back",
  32876. image: {
  32877. source: "./media/characters/nicki/back.svg",
  32878. extra: 1006/965,
  32879. bottom: 39/1045
  32880. },
  32881. form: "anthro"
  32882. },
  32883. taur: {
  32884. height: math.unit(15, "feet"),
  32885. name: "Taur",
  32886. image: {
  32887. source: "./media/characters/nicki/taur.svg",
  32888. extra: 1592/1347,
  32889. bottom: 0/1592
  32890. },
  32891. form: "taur",
  32892. default: true
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(9, "feet"),
  32899. form: "anthro",
  32900. default: true
  32901. },
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(15, "feet"),
  32905. form: "taur",
  32906. default: true
  32907. }
  32908. ],
  32909. {
  32910. "anthro": {
  32911. name: "Anthro",
  32912. default: true
  32913. },
  32914. "taur": {
  32915. name: "Taur"
  32916. }
  32917. }
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(7 + 10/12, "feet"),
  32924. weight: math.unit(3.5, "tons"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/lee/front.svg",
  32928. extra: 1773/1615,
  32929. bottom: 86/1859
  32930. }
  32931. },
  32932. hand: {
  32933. height: math.unit(1.78, "feet"),
  32934. name: "Hand",
  32935. image: {
  32936. source: "./media/characters/lee/hand.svg"
  32937. }
  32938. },
  32939. maw: {
  32940. height: math.unit(1.18, "feet"),
  32941. name: "Maw",
  32942. image: {
  32943. source: "./media/characters/lee/maw.svg"
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Normal",
  32950. height: math.unit(7 + 10/12, "feet"),
  32951. default: true
  32952. },
  32953. ]
  32954. ))
  32955. characterMakers.push(() => makeCharacter(
  32956. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32957. {
  32958. front: {
  32959. height: math.unit(9, "feet"),
  32960. name: "Front",
  32961. image: {
  32962. source: "./media/characters/guti/front.svg",
  32963. extra: 4551/4355,
  32964. bottom: 123/4674
  32965. }
  32966. },
  32967. tongue: {
  32968. height: math.unit(1, "feet"),
  32969. name: "Tongue",
  32970. image: {
  32971. source: "./media/characters/guti/tongue.svg"
  32972. }
  32973. },
  32974. paw: {
  32975. height: math.unit(1.18, "feet"),
  32976. name: "Paw",
  32977. image: {
  32978. source: "./media/characters/guti/paw.svg"
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(9, "feet"),
  32986. default: true
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32992. {
  32993. side: {
  32994. height: math.unit(5, "meters"),
  32995. name: "Side",
  32996. image: {
  32997. source: "./media/characters/vesper/side.svg",
  32998. extra: 1605/1518,
  32999. bottom: 0/1605
  33000. }
  33001. },
  33002. },
  33003. [
  33004. {
  33005. name: "Small",
  33006. height: math.unit(5, "meters")
  33007. },
  33008. {
  33009. name: "Sage",
  33010. height: math.unit(100, "meters"),
  33011. default: true
  33012. },
  33013. {
  33014. name: "Fun Size",
  33015. height: math.unit(600, "meters")
  33016. },
  33017. {
  33018. name: "Goddess",
  33019. height: math.unit(20000, "km")
  33020. },
  33021. {
  33022. name: "Maximum",
  33023. height: math.unit(5, "galaxies")
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33029. {
  33030. front: {
  33031. height: math.unit(6 + 3/12, "feet"),
  33032. weight: math.unit(190, "lb"),
  33033. name: "Front",
  33034. image: {
  33035. source: "./media/characters/gawain/front.svg",
  33036. extra: 2222/2139,
  33037. bottom: 90/2312
  33038. }
  33039. },
  33040. back: {
  33041. height: math.unit(6 + 3/12, "feet"),
  33042. weight: math.unit(190, "lb"),
  33043. name: "Back",
  33044. image: {
  33045. source: "./media/characters/gawain/back.svg",
  33046. extra: 2199/2111,
  33047. bottom: 73/2272
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(6 + 3/12, "feet"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33061. {
  33062. side: {
  33063. height: math.unit(3.5, "meters"),
  33064. weight: math.unit(16000, "lb"),
  33065. name: "Side",
  33066. image: {
  33067. source: "./media/characters/dascalti/side.svg",
  33068. extra: 392/273,
  33069. bottom: 47/439
  33070. }
  33071. },
  33072. breath: {
  33073. height: math.unit(7.4, "feet"),
  33074. name: "Breath",
  33075. image: {
  33076. source: "./media/characters/dascalti/breath.svg"
  33077. }
  33078. },
  33079. fed: {
  33080. height: math.unit(3.6, "meters"),
  33081. weight: math.unit(16000, "lb"),
  33082. name: "Fed",
  33083. image: {
  33084. source: "./media/characters/dascalti/fed.svg",
  33085. extra: 1419/820,
  33086. bottom: 95/1514
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(3.5, "meters"),
  33094. default: true
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33100. {
  33101. front: {
  33102. height: math.unit(3 + 5/12, "feet"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/mauve/front.svg",
  33106. extra: 1126/1033,
  33107. bottom: 65/1191
  33108. }
  33109. },
  33110. side: {
  33111. height: math.unit(3 + 5/12, "feet"),
  33112. name: "Side",
  33113. image: {
  33114. source: "./media/characters/mauve/side.svg",
  33115. extra: 1089/1001,
  33116. bottom: 29/1118
  33117. }
  33118. },
  33119. back: {
  33120. height: math.unit(3 + 5/12, "feet"),
  33121. name: "Back",
  33122. image: {
  33123. source: "./media/characters/mauve/back.svg",
  33124. extra: 1173/1053,
  33125. bottom: 109/1282
  33126. }
  33127. },
  33128. },
  33129. [
  33130. {
  33131. name: "Normal",
  33132. height: math.unit(3 + 5/12, "feet"),
  33133. default: true
  33134. },
  33135. ]
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33139. {
  33140. front: {
  33141. height: math.unit(6 + 3/12, "feet"),
  33142. weight: math.unit(430, "lb"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/carlos/front.svg",
  33146. extra: 1964/1913,
  33147. bottom: 70/2034
  33148. }
  33149. },
  33150. },
  33151. [
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(6 + 3/12, "feet"),
  33155. default: true
  33156. },
  33157. ]
  33158. ))
  33159. characterMakers.push(() => makeCharacter(
  33160. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33161. {
  33162. back: {
  33163. height: math.unit(5 + 10/12, "feet"),
  33164. weight: math.unit(200, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/jax/back.svg",
  33168. extra: 764/739,
  33169. bottom: 25/789
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(5 + 10/12, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(8, "feet"),
  33186. weight: math.unit(250, "lb"),
  33187. name: "Front",
  33188. image: {
  33189. source: "./media/characters/eikthynir/front.svg",
  33190. extra: 1332/1166,
  33191. bottom: 82/1414
  33192. }
  33193. },
  33194. back: {
  33195. height: math.unit(8, "feet"),
  33196. weight: math.unit(250, "lb"),
  33197. name: "Back",
  33198. image: {
  33199. source: "./media/characters/eikthynir/back.svg",
  33200. extra: 1342/1190,
  33201. bottom: 19/1361
  33202. }
  33203. },
  33204. dick: {
  33205. height: math.unit(2.35, "feet"),
  33206. name: "Dick",
  33207. image: {
  33208. source: "./media/characters/eikthynir/dick.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(8, "feet"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(99, "meters"),
  33225. weight: math.unit(13000, "tons"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/zlmos/front.svg",
  33229. extra: 2202/1992,
  33230. bottom: 315/2517
  33231. }
  33232. },
  33233. },
  33234. [
  33235. {
  33236. name: "Macro",
  33237. height: math.unit(99, "meters"),
  33238. default: true
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33244. {
  33245. front: {
  33246. height: math.unit(6 + 5/12, "feet"),
  33247. name: "Front",
  33248. image: {
  33249. source: "./media/characters/purri/front.svg",
  33250. extra: 1698/1610,
  33251. bottom: 32/1730
  33252. }
  33253. },
  33254. frontAlt: {
  33255. height: math.unit(6 + 5/12, "feet"),
  33256. name: "Front (Alt)",
  33257. image: {
  33258. source: "./media/characters/purri/front-alt.svg",
  33259. extra: 450/420,
  33260. bottom: 26/476
  33261. }
  33262. },
  33263. boots: {
  33264. height: math.unit(5.5, "feet"),
  33265. name: "Boots",
  33266. image: {
  33267. source: "./media/characters/purri/boots.svg",
  33268. extra: 905/853,
  33269. bottom: 18/923
  33270. }
  33271. },
  33272. lying: {
  33273. height: math.unit(2, "feet"),
  33274. name: "Lying",
  33275. image: {
  33276. source: "./media/characters/purri/lying.svg",
  33277. extra: 940/843,
  33278. bottom: 146/1086
  33279. }
  33280. },
  33281. devious: {
  33282. height: math.unit(1.77, "feet"),
  33283. name: "Devious",
  33284. image: {
  33285. source: "./media/characters/purri/devious.svg",
  33286. extra: 1440/1155,
  33287. bottom: 147/1587
  33288. }
  33289. },
  33290. bean: {
  33291. height: math.unit(1.94, "feet"),
  33292. name: "Bean",
  33293. image: {
  33294. source: "./media/characters/purri/bean.svg"
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Micro",
  33301. height: math.unit(1, "mm")
  33302. },
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(6 + 5/12, "feet"),
  33306. default: true
  33307. },
  33308. {
  33309. name: "Macro :3c",
  33310. height: math.unit(2, "miles")
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33316. {
  33317. front: {
  33318. height: math.unit(6 + 2/12, "feet"),
  33319. weight: math.unit(250, "lb"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/moonlight/front.svg",
  33323. extra: 1044/908,
  33324. bottom: 56/1100
  33325. }
  33326. },
  33327. feral: {
  33328. height: math.unit(3 + 1/12, "feet"),
  33329. weight: math.unit(50, "kg"),
  33330. name: "Feral",
  33331. image: {
  33332. source: "./media/characters/moonlight/feral.svg",
  33333. extra: 3705/2791,
  33334. bottom: 145/3850
  33335. }
  33336. },
  33337. paw: {
  33338. height: math.unit(1, "feet"),
  33339. name: "Paw",
  33340. image: {
  33341. source: "./media/characters/moonlight/paw.svg"
  33342. }
  33343. },
  33344. paws: {
  33345. height: math.unit(0.98, "feet"),
  33346. name: "Paws",
  33347. image: {
  33348. source: "./media/characters/moonlight/paws.svg",
  33349. extra: 939/939,
  33350. bottom: 50/989
  33351. }
  33352. },
  33353. mouth: {
  33354. height: math.unit(0.48, "feet"),
  33355. name: "Mouth",
  33356. image: {
  33357. source: "./media/characters/moonlight/mouth.svg"
  33358. }
  33359. },
  33360. dick: {
  33361. height: math.unit(1.46, "feet"),
  33362. name: "Dick",
  33363. image: {
  33364. source: "./media/characters/moonlight/dick.svg"
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Normal",
  33371. height: math.unit(6 + 2/12, "feet"),
  33372. default: true
  33373. },
  33374. {
  33375. name: "Macro",
  33376. height: math.unit(300, "feet")
  33377. },
  33378. {
  33379. name: "Macro+",
  33380. height: math.unit(1, "mile")
  33381. },
  33382. {
  33383. name: "Mt. Moon",
  33384. height: math.unit(5, "miles")
  33385. },
  33386. {
  33387. name: "Megamacro",
  33388. height: math.unit(15, "miles")
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33394. {
  33395. back: {
  33396. height: math.unit(6, "feet"),
  33397. weight: math.unit(150, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/sylen/back.svg",
  33401. extra: 1335/1273,
  33402. bottom: 107/1442
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(5 + 5/12, "feet")
  33410. },
  33411. {
  33412. name: "Megamacro",
  33413. height: math.unit(3, "miles"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(6, "feet"),
  33423. weight: math.unit(190, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/huttser/front.svg",
  33427. extra: 1152/1058,
  33428. bottom: 23/1175
  33429. }
  33430. },
  33431. side: {
  33432. height: math.unit(6, "feet"),
  33433. weight: math.unit(190, "lb"),
  33434. name: "Side",
  33435. image: {
  33436. source: "./media/characters/huttser/side.svg",
  33437. extra: 1174/1065,
  33438. bottom: 18/1192
  33439. }
  33440. },
  33441. back: {
  33442. height: math.unit(6, "feet"),
  33443. weight: math.unit(190, "lb"),
  33444. name: "Back",
  33445. image: {
  33446. source: "./media/characters/huttser/back.svg",
  33447. extra: 1158/1056,
  33448. bottom: 12/1170
  33449. }
  33450. },
  33451. },
  33452. [
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33457. {
  33458. side: {
  33459. height: math.unit(12 + 9/12, "feet"),
  33460. weight: math.unit(15000, "lb"),
  33461. name: "Side",
  33462. image: {
  33463. source: "./media/characters/faan/side.svg",
  33464. extra: 2747/2697,
  33465. bottom: 0/2747
  33466. }
  33467. },
  33468. front: {
  33469. height: math.unit(12 + 9/12, "feet"),
  33470. weight: math.unit(15000, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/faan/front.svg",
  33474. extra: 607/571,
  33475. bottom: 24/631
  33476. }
  33477. },
  33478. head: {
  33479. height: math.unit(2.85, "feet"),
  33480. name: "Head",
  33481. image: {
  33482. source: "./media/characters/faan/head.svg"
  33483. }
  33484. },
  33485. headAlt: {
  33486. height: math.unit(3.13, "feet"),
  33487. name: "Head-alt",
  33488. image: {
  33489. source: "./media/characters/faan/head-alt.svg"
  33490. }
  33491. },
  33492. },
  33493. [
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(12 + 9/12, "feet"),
  33497. default: true
  33498. },
  33499. ]
  33500. ))
  33501. characterMakers.push(() => makeCharacter(
  33502. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33503. {
  33504. front: {
  33505. height: math.unit(6, "feet"),
  33506. weight: math.unit(300, "lb"),
  33507. name: "Front",
  33508. image: {
  33509. source: "./media/characters/tanio/front.svg",
  33510. extra: 711/673,
  33511. bottom: 25/736
  33512. }
  33513. },
  33514. },
  33515. [
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(6, "feet"),
  33519. default: true
  33520. },
  33521. ]
  33522. ))
  33523. characterMakers.push(() => makeCharacter(
  33524. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33525. {
  33526. front: {
  33527. height: math.unit(3, "inches"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/noboru/front.svg",
  33531. extra: 1039/932,
  33532. bottom: 18/1057
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Micro",
  33539. height: math.unit(3, "inches"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(1.85, "meters"),
  33549. weight: math.unit(80, "kg"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/daniel-barrett/front.svg",
  33553. extra: 355/337,
  33554. bottom: 9/364
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Pico",
  33561. height: math.unit(0.0433, "mm")
  33562. },
  33563. {
  33564. name: "Nano",
  33565. height: math.unit(1.5, "mm")
  33566. },
  33567. {
  33568. name: "Micro",
  33569. height: math.unit(5.3, "cm"),
  33570. default: true
  33571. },
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(1.85, "meters")
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(64.7, "meters")
  33579. },
  33580. {
  33581. name: "Megamacro",
  33582. height: math.unit(2.26, "km")
  33583. },
  33584. {
  33585. name: "Gigamacro",
  33586. height: math.unit(79, "km")
  33587. },
  33588. {
  33589. name: "Teramacro",
  33590. height: math.unit(2765, "km")
  33591. },
  33592. {
  33593. name: "Petamacro",
  33594. height: math.unit(96678, "km")
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33600. {
  33601. front: {
  33602. height: math.unit(30, "meters"),
  33603. weight: math.unit(400, "tons"),
  33604. name: "Front",
  33605. image: {
  33606. source: "./media/characters/zeel/front.svg",
  33607. extra: 2599/2599,
  33608. bottom: 226/2825
  33609. }
  33610. },
  33611. },
  33612. [
  33613. {
  33614. name: "Macro",
  33615. height: math.unit(30, "meters"),
  33616. default: true
  33617. },
  33618. ]
  33619. ))
  33620. characterMakers.push(() => makeCharacter(
  33621. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33622. {
  33623. front: {
  33624. height: math.unit(6 + 7/12, "feet"),
  33625. weight: math.unit(210, "lb"),
  33626. name: "Front",
  33627. image: {
  33628. source: "./media/characters/tarn/front.svg",
  33629. extra: 3517/3220,
  33630. bottom: 91/3608
  33631. }
  33632. },
  33633. back: {
  33634. height: math.unit(6 + 7/12, "feet"),
  33635. weight: math.unit(210, "lb"),
  33636. name: "Back",
  33637. image: {
  33638. source: "./media/characters/tarn/back.svg",
  33639. extra: 3566/3241,
  33640. bottom: 34/3600
  33641. }
  33642. },
  33643. dick: {
  33644. height: math.unit(1.65, "feet"),
  33645. name: "Dick",
  33646. image: {
  33647. source: "./media/characters/tarn/dick.svg"
  33648. }
  33649. },
  33650. paw: {
  33651. height: math.unit(1.80, "feet"),
  33652. name: "Paw",
  33653. image: {
  33654. source: "./media/characters/tarn/paw.svg"
  33655. }
  33656. },
  33657. tongue: {
  33658. height: math.unit(0.97, "feet"),
  33659. name: "Tongue",
  33660. image: {
  33661. source: "./media/characters/tarn/tongue.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Micro",
  33668. height: math.unit(4, "inches")
  33669. },
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(6 + 7/12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Macro",
  33677. height: math.unit(300, "feet")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(5 + 7/12, "feet"),
  33686. weight: math.unit(80, "kg"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33690. extra: 3023/2865,
  33691. bottom: 33/3056
  33692. }
  33693. },
  33694. back: {
  33695. height: math.unit(5 + 7/12, "feet"),
  33696. weight: math.unit(80, "kg"),
  33697. name: "Back",
  33698. image: {
  33699. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33700. extra: 3020/2886,
  33701. bottom: 30/3050
  33702. }
  33703. },
  33704. dick: {
  33705. height: math.unit(0.98, "feet"),
  33706. name: "Dick",
  33707. image: {
  33708. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33709. }
  33710. },
  33711. anatomy: {
  33712. height: math.unit(2.86, "feet"),
  33713. name: "Anatomy",
  33714. image: {
  33715. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Really Small",
  33722. height: math.unit(2, "inches")
  33723. },
  33724. {
  33725. name: "Micro",
  33726. height: math.unit(5.583, "inches")
  33727. },
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(5 + 7/12, "feet"),
  33731. default: true
  33732. },
  33733. {
  33734. name: "Macro",
  33735. height: math.unit(67, "feet")
  33736. },
  33737. {
  33738. name: "Megamacro",
  33739. height: math.unit(134, "feet")
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33745. {
  33746. front: {
  33747. height: math.unit(9, "feet"),
  33748. weight: math.unit(120, "lb"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/sally/front.svg",
  33752. extra: 1506/1349,
  33753. bottom: 66/1572
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(9, "feet"),
  33761. default: true
  33762. },
  33763. ]
  33764. ))
  33765. characterMakers.push(() => makeCharacter(
  33766. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33767. {
  33768. front: {
  33769. height: math.unit(8, "feet"),
  33770. weight: math.unit(900, "lb"),
  33771. name: "Front",
  33772. image: {
  33773. source: "./media/characters/owen/front.svg",
  33774. extra: 1761/1657,
  33775. bottom: 74/1835
  33776. }
  33777. },
  33778. side: {
  33779. height: math.unit(8, "feet"),
  33780. weight: math.unit(900, "lb"),
  33781. name: "Side",
  33782. image: {
  33783. source: "./media/characters/owen/side.svg",
  33784. extra: 1797/1734,
  33785. bottom: 30/1827
  33786. }
  33787. },
  33788. back: {
  33789. height: math.unit(8, "feet"),
  33790. weight: math.unit(900, "lb"),
  33791. name: "Back",
  33792. image: {
  33793. source: "./media/characters/owen/back.svg",
  33794. extra: 1796/1706,
  33795. bottom: 59/1855
  33796. }
  33797. },
  33798. maw: {
  33799. height: math.unit(1.76, "feet"),
  33800. name: "Maw",
  33801. image: {
  33802. source: "./media/characters/owen/maw.svg"
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Normal",
  33809. height: math.unit(8, "feet"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33816. {
  33817. front: {
  33818. height: math.unit(4, "feet"),
  33819. weight: math.unit(400, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/ryth/front.svg",
  33823. extra: 1920/1748,
  33824. bottom: 42/1962
  33825. }
  33826. },
  33827. back: {
  33828. height: math.unit(4, "feet"),
  33829. weight: math.unit(400, "lb"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/ryth/back.svg",
  33833. extra: 1897/1690,
  33834. bottom: 89/1986
  33835. }
  33836. },
  33837. mouth: {
  33838. height: math.unit(1.39, "feet"),
  33839. name: "Mouth",
  33840. image: {
  33841. source: "./media/characters/ryth/mouth.svg"
  33842. }
  33843. },
  33844. tailmaw: {
  33845. height: math.unit(1.23, "feet"),
  33846. name: "Tailmaw",
  33847. image: {
  33848. source: "./media/characters/ryth/tailmaw.svg"
  33849. }
  33850. },
  33851. goia: {
  33852. height: math.unit(4, "meters"),
  33853. weight: math.unit(10800, "lb"),
  33854. name: "Goia",
  33855. image: {
  33856. source: "./media/characters/ryth/goia.svg",
  33857. extra: 745/640,
  33858. bottom: 107/852
  33859. }
  33860. },
  33861. goiaFront: {
  33862. height: math.unit(4, "meters"),
  33863. weight: math.unit(10800, "lb"),
  33864. name: "Goia (Front)",
  33865. image: {
  33866. source: "./media/characters/ryth/goia-front.svg",
  33867. extra: 750/586,
  33868. bottom: 114/864
  33869. }
  33870. },
  33871. goiaMaw: {
  33872. height: math.unit(5.55, "feet"),
  33873. name: "Goia Maw",
  33874. image: {
  33875. source: "./media/characters/ryth/goia-maw.svg"
  33876. }
  33877. },
  33878. goiaForepaw: {
  33879. height: math.unit(3.5, "feet"),
  33880. name: "Goia Forepaw",
  33881. image: {
  33882. source: "./media/characters/ryth/goia-forepaw.svg"
  33883. }
  33884. },
  33885. goiaHindpaw: {
  33886. height: math.unit(5.55, "feet"),
  33887. name: "Goia Hindpaw",
  33888. image: {
  33889. source: "./media/characters/ryth/goia-hindpaw.svg"
  33890. }
  33891. },
  33892. },
  33893. [
  33894. {
  33895. name: "Normal",
  33896. height: math.unit(4, "feet"),
  33897. default: true
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33903. {
  33904. front: {
  33905. height: math.unit(7, "feet"),
  33906. weight: math.unit(180, "lb"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/necrolance/front.svg",
  33910. extra: 1062/947,
  33911. bottom: 41/1103
  33912. }
  33913. },
  33914. back: {
  33915. height: math.unit(7, "feet"),
  33916. weight: math.unit(180, "lb"),
  33917. name: "Back",
  33918. image: {
  33919. source: "./media/characters/necrolance/back.svg",
  33920. extra: 1045/984,
  33921. bottom: 14/1059
  33922. }
  33923. },
  33924. wing: {
  33925. height: math.unit(2.67, "feet"),
  33926. name: "Wing",
  33927. image: {
  33928. source: "./media/characters/necrolance/wing.svg"
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(7, "feet"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33942. {
  33943. front: {
  33944. height: math.unit(76, "meters"),
  33945. weight: math.unit(30000, "tons"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/tyler/front.svg",
  33949. extra: 1640/1640,
  33950. bottom: 114/1754
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Macro",
  33957. height: math.unit(76, "meters"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33964. {
  33965. front: {
  33966. height: math.unit(4 + 11/12, "feet"),
  33967. weight: math.unit(132, "lb"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/icey/front.svg",
  33971. extra: 2750/2550,
  33972. bottom: 33/2783
  33973. }
  33974. },
  33975. back: {
  33976. height: math.unit(4 + 11/12, "feet"),
  33977. weight: math.unit(132, "lb"),
  33978. name: "Back",
  33979. image: {
  33980. source: "./media/characters/icey/back.svg",
  33981. extra: 2624/2481,
  33982. bottom: 35/2659
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(4 + 11/12, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(100, "feet"),
  33999. weight: math.unit(0, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/smile/front.svg",
  34003. extra: 2983/2912,
  34004. bottom: 162/3145
  34005. }
  34006. },
  34007. back: {
  34008. height: math.unit(100, "feet"),
  34009. weight: math.unit(0, "lb"),
  34010. name: "Back",
  34011. image: {
  34012. source: "./media/characters/smile/back.svg",
  34013. extra: 3143/3031,
  34014. bottom: 91/3234
  34015. }
  34016. },
  34017. head: {
  34018. height: math.unit(26.3, "feet"),
  34019. weight: math.unit(0, "lb"),
  34020. name: "Head",
  34021. image: {
  34022. source: "./media/characters/smile/head.svg"
  34023. }
  34024. },
  34025. collar: {
  34026. height: math.unit(5.3, "feet"),
  34027. weight: math.unit(0, "lb"),
  34028. name: "Collar",
  34029. image: {
  34030. source: "./media/characters/smile/collar.svg"
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Macro",
  34037. height: math.unit(100, "feet"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34044. {
  34045. dragon: {
  34046. height: math.unit(26, "feet"),
  34047. weight: math.unit(36, "tons"),
  34048. name: "Dragon",
  34049. image: {
  34050. source: "./media/characters/arimphae/dragon.svg",
  34051. extra: 1574/983,
  34052. bottom: 357/1931
  34053. }
  34054. },
  34055. drake: {
  34056. height: math.unit(9, "feet"),
  34057. weight: math.unit(1.5, "tons"),
  34058. name: "Drake",
  34059. image: {
  34060. source: "./media/characters/arimphae/drake.svg",
  34061. extra: 1120/925,
  34062. bottom: 435/1555
  34063. }
  34064. },
  34065. },
  34066. [
  34067. {
  34068. name: "Small",
  34069. height: math.unit(26*5/9, "feet")
  34070. },
  34071. {
  34072. name: "Normal",
  34073. height: math.unit(26, "feet"),
  34074. default: true
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34080. {
  34081. front: {
  34082. height: math.unit(8 + 9/12, "feet"),
  34083. name: "Front",
  34084. image: {
  34085. source: "./media/characters/xander/front.svg",
  34086. extra: 1237/974,
  34087. bottom: 94/1331
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(8 + 9/12, "feet"),
  34095. default: true
  34096. },
  34097. {
  34098. name: "Gaze Grabber",
  34099. height: math.unit(13 + 8/12, "feet")
  34100. },
  34101. {
  34102. name: "Jaw Dropper",
  34103. height: math.unit(27, "feet")
  34104. },
  34105. {
  34106. name: "Show Stopper",
  34107. height: math.unit(136, "feet")
  34108. },
  34109. {
  34110. name: "Superstar",
  34111. height: math.unit(1.9e6, "miles")
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34117. {
  34118. side: {
  34119. height: math.unit(2100, "feet"),
  34120. name: "Side",
  34121. image: {
  34122. source: "./media/characters/osiris/side.svg",
  34123. extra: 1105/939,
  34124. bottom: 167/1272
  34125. }
  34126. },
  34127. },
  34128. [
  34129. {
  34130. name: "Macro",
  34131. height: math.unit(2100, "feet"),
  34132. default: true
  34133. },
  34134. ]
  34135. ))
  34136. characterMakers.push(() => makeCharacter(
  34137. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34138. {
  34139. front: {
  34140. height: math.unit(6 + 8/12, "feet"),
  34141. weight: math.unit(225, "lb"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/rhys-londe/front.svg",
  34145. extra: 2258/2141,
  34146. bottom: 188/2446
  34147. }
  34148. },
  34149. back: {
  34150. height: math.unit(6 + 8/12, "feet"),
  34151. weight: math.unit(225, "lb"),
  34152. name: "Back",
  34153. image: {
  34154. source: "./media/characters/rhys-londe/back.svg",
  34155. extra: 2237/2137,
  34156. bottom: 63/2300
  34157. }
  34158. },
  34159. frontNsfw: {
  34160. height: math.unit(6 + 8/12, "feet"),
  34161. weight: math.unit(225, "lb"),
  34162. name: "Front (NSFW)",
  34163. image: {
  34164. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34165. extra: 2258/2141,
  34166. bottom: 188/2446
  34167. }
  34168. },
  34169. backNsfw: {
  34170. height: math.unit(6 + 8/12, "feet"),
  34171. weight: math.unit(225, "lb"),
  34172. name: "Back (NSFW)",
  34173. image: {
  34174. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34175. extra: 2237/2137,
  34176. bottom: 63/2300
  34177. }
  34178. },
  34179. dick: {
  34180. height: math.unit(30, "inches"),
  34181. name: "Dick",
  34182. image: {
  34183. source: "./media/characters/rhys-londe/dick.svg"
  34184. }
  34185. },
  34186. maw: {
  34187. height: math.unit(1.6, "feet"),
  34188. name: "Maw",
  34189. image: {
  34190. source: "./media/characters/rhys-londe/maw.svg"
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(6 + 8/12, "feet"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(3 + 10/12, "feet"),
  34207. weight: math.unit(90, "lb"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/taivas-ensim/front.svg",
  34211. extra: 1327/1216,
  34212. bottom: 96/1423
  34213. }
  34214. },
  34215. back: {
  34216. height: math.unit(3 + 10/12, "feet"),
  34217. weight: math.unit(90, "lb"),
  34218. name: "Back",
  34219. image: {
  34220. source: "./media/characters/taivas-ensim/back.svg",
  34221. extra: 1355/1247,
  34222. bottom: 11/1366
  34223. }
  34224. },
  34225. frontNsfw: {
  34226. height: math.unit(3 + 10/12, "feet"),
  34227. weight: math.unit(90, "lb"),
  34228. name: "Front (NSFW)",
  34229. image: {
  34230. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34231. extra: 1327/1216,
  34232. bottom: 96/1423
  34233. }
  34234. },
  34235. backNsfw: {
  34236. height: math.unit(3 + 10/12, "feet"),
  34237. weight: math.unit(90, "lb"),
  34238. name: "Back (NSFW)",
  34239. image: {
  34240. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34241. extra: 1355/1247,
  34242. bottom: 11/1366
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(3 + 10/12, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(9 + 6/12, "feet"),
  34259. weight: math.unit(940, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/byliss/front.svg",
  34263. extra: 1327/1290,
  34264. bottom: 82/1409
  34265. }
  34266. },
  34267. back: {
  34268. height: math.unit(9 + 6/12, "feet"),
  34269. weight: math.unit(940, "lb"),
  34270. name: "Back",
  34271. image: {
  34272. source: "./media/characters/byliss/back.svg",
  34273. extra: 1376/1349,
  34274. bottom: 9/1385
  34275. }
  34276. },
  34277. frontNsfw: {
  34278. height: math.unit(9 + 6/12, "feet"),
  34279. weight: math.unit(940, "lb"),
  34280. name: "Front (NSFW)",
  34281. image: {
  34282. source: "./media/characters/byliss/front-nsfw.svg",
  34283. extra: 1327/1290,
  34284. bottom: 82/1409
  34285. }
  34286. },
  34287. backNsfw: {
  34288. height: math.unit(9 + 6/12, "feet"),
  34289. weight: math.unit(940, "lb"),
  34290. name: "Back (NSFW)",
  34291. image: {
  34292. source: "./media/characters/byliss/back-nsfw.svg",
  34293. extra: 1376/1349,
  34294. bottom: 9/1385
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(9 + 6/12, "feet"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(5 + 2/12, "feet"),
  34311. weight: math.unit(200, "lb"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/noraly/front.svg",
  34315. extra: 4985/4773,
  34316. bottom: 150/5135
  34317. }
  34318. },
  34319. full: {
  34320. height: math.unit(5 + 2/12, "feet"),
  34321. weight: math.unit(164, "lb"),
  34322. name: "Full",
  34323. image: {
  34324. source: "./media/characters/noraly/full.svg",
  34325. extra: 1114/1059,
  34326. bottom: 35/1149
  34327. }
  34328. },
  34329. fuller: {
  34330. height: math.unit(5 + 2/12, "feet"),
  34331. weight: math.unit(230, "lb"),
  34332. name: "Fuller",
  34333. image: {
  34334. source: "./media/characters/noraly/fuller.svg",
  34335. extra: 1114/1059,
  34336. bottom: 35/1149
  34337. }
  34338. },
  34339. fullest: {
  34340. height: math.unit(5 + 2/12, "feet"),
  34341. weight: math.unit(300, "lb"),
  34342. name: "Fullest",
  34343. image: {
  34344. source: "./media/characters/noraly/fullest.svg",
  34345. extra: 1114/1059,
  34346. bottom: 35/1149
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(5 + 2/12, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34360. {
  34361. front: {
  34362. height: math.unit(5 + 2/12, "feet"),
  34363. weight: math.unit(210, "lb"),
  34364. name: "Front",
  34365. image: {
  34366. source: "./media/characters/pera/front.svg",
  34367. extra: 1560/1531,
  34368. bottom: 165/1725
  34369. }
  34370. },
  34371. back: {
  34372. height: math.unit(5 + 2/12, "feet"),
  34373. weight: math.unit(210, "lb"),
  34374. name: "Back",
  34375. image: {
  34376. source: "./media/characters/pera/back.svg",
  34377. extra: 1523/1493,
  34378. bottom: 152/1675
  34379. }
  34380. },
  34381. dick: {
  34382. height: math.unit(2.4, "feet"),
  34383. name: "Dick",
  34384. image: {
  34385. source: "./media/characters/pera/dick.svg"
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(5 + 2/12, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(12, "feet"),
  34402. weight: math.unit(3200, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/julian/front.svg",
  34406. extra: 2962/2701,
  34407. bottom: 184/3146
  34408. }
  34409. },
  34410. maw: {
  34411. height: math.unit(5.35, "feet"),
  34412. name: "Maw",
  34413. image: {
  34414. source: "./media/characters/julian/maw.svg"
  34415. }
  34416. },
  34417. paw: {
  34418. height: math.unit(3.07, "feet"),
  34419. name: "Paw",
  34420. image: {
  34421. source: "./media/characters/julian/paw.svg"
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Default",
  34428. height: math.unit(12, "feet"),
  34429. default: true
  34430. },
  34431. {
  34432. name: "Big",
  34433. height: math.unit(50, "feet")
  34434. },
  34435. {
  34436. name: "Really Big",
  34437. height: math.unit(1, "mile")
  34438. },
  34439. {
  34440. name: "Extremely Big",
  34441. height: math.unit(100, "miles")
  34442. },
  34443. {
  34444. name: "Planet Hugger",
  34445. height: math.unit(200, "megameters")
  34446. },
  34447. {
  34448. name: "Unreasonably Big",
  34449. height: math.unit(1e300, "meters")
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34455. {
  34456. solgooleo: {
  34457. height: math.unit(4, "meters"),
  34458. weight: math.unit(6000*1.5, "kg"),
  34459. volume: math.unit(6000, "liters"),
  34460. name: "Solgooleo",
  34461. image: {
  34462. source: "./media/characters/pi/solgooleo.svg",
  34463. extra: 388/331,
  34464. bottom: 29/417
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(4, "meters"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(8, "feet"),
  34481. weight: math.unit(4, "tons"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/shaun/front.svg",
  34485. extra: 503/495,
  34486. bottom: 20/523
  34487. }
  34488. },
  34489. back: {
  34490. height: math.unit(8, "feet"),
  34491. weight: math.unit(4, "tons"),
  34492. name: "Back",
  34493. image: {
  34494. source: "./media/characters/shaun/back.svg",
  34495. extra: 487/480,
  34496. bottom: 20/507
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Lorg",
  34503. height: math.unit(8, "feet"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34510. {
  34511. frontAnthro: {
  34512. height: math.unit(7, "feet"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/sini/front-anthro.svg",
  34516. extra: 726/678,
  34517. bottom: 35/761
  34518. },
  34519. form: "anthro",
  34520. default: true
  34521. },
  34522. backAnthro: {
  34523. height: math.unit(7, "feet"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/sini/back-anthro.svg",
  34527. extra: 743/701,
  34528. bottom: 12/755
  34529. },
  34530. form: "anthro",
  34531. },
  34532. frontAnthroNsfw: {
  34533. height: math.unit(7, "feet"),
  34534. name: "Front (NSFW)",
  34535. image: {
  34536. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34537. extra: 726/678,
  34538. bottom: 35/761
  34539. },
  34540. form: "anthro"
  34541. },
  34542. backAnthroNsfw: {
  34543. height: math.unit(7, "feet"),
  34544. name: "Back (NSFW)",
  34545. image: {
  34546. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34547. extra: 743/701,
  34548. bottom: 12/755
  34549. },
  34550. form: "anthro",
  34551. },
  34552. mawAnthro: {
  34553. height: math.unit(2.14, "feet"),
  34554. name: "Maw",
  34555. image: {
  34556. source: "./media/characters/sini/maw-anthro.svg"
  34557. },
  34558. form: "anthro"
  34559. },
  34560. dick: {
  34561. height: math.unit(1.45, "feet"),
  34562. name: "Dick",
  34563. image: {
  34564. source: "./media/characters/sini/dick-anthro.svg"
  34565. },
  34566. form: "anthro"
  34567. },
  34568. feral: {
  34569. height: math.unit(16, "feet"),
  34570. name: "Feral",
  34571. image: {
  34572. source: "./media/characters/sini/feral.svg",
  34573. extra: 814/605,
  34574. bottom: 11/825
  34575. },
  34576. form: "feral",
  34577. default: true
  34578. },
  34579. feralNsfw: {
  34580. height: math.unit(16, "feet"),
  34581. name: "Feral (NSFW)",
  34582. image: {
  34583. source: "./media/characters/sini/feral-nsfw.svg",
  34584. extra: 814/605,
  34585. bottom: 11/825
  34586. },
  34587. form: "feral"
  34588. },
  34589. mawFeral: {
  34590. height: math.unit(5.66, "feet"),
  34591. name: "Maw",
  34592. image: {
  34593. source: "./media/characters/sini/maw-feral.svg"
  34594. },
  34595. form: "feral",
  34596. },
  34597. pawFeral: {
  34598. height: math.unit(5.17, "feet"),
  34599. name: "Paw",
  34600. image: {
  34601. source: "./media/characters/sini/paw-feral.svg"
  34602. },
  34603. form: "feral",
  34604. },
  34605. rumpFeral: {
  34606. height: math.unit(13.11, "feet"),
  34607. name: "Rump",
  34608. image: {
  34609. source: "./media/characters/sini/rump-feral.svg"
  34610. },
  34611. form: "feral",
  34612. },
  34613. dickFeral: {
  34614. height: math.unit(1, "feet"),
  34615. name: "Dick",
  34616. image: {
  34617. source: "./media/characters/sini/dick-feral.svg"
  34618. },
  34619. form: "feral",
  34620. },
  34621. eyeFeral: {
  34622. height: math.unit(1.23, "feet"),
  34623. name: "Eye",
  34624. image: {
  34625. source: "./media/characters/sini/eye-feral.svg"
  34626. },
  34627. form: "feral",
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Normal",
  34633. height: math.unit(7, "feet"),
  34634. default: true,
  34635. form: "anthro"
  34636. },
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(16, "feet"),
  34640. default: true,
  34641. form: "feral"
  34642. },
  34643. ],
  34644. {
  34645. "anthro": {
  34646. name: "Anthro",
  34647. default: true
  34648. },
  34649. "feral": {
  34650. name: "Feral",
  34651. }
  34652. }
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34656. {
  34657. side: {
  34658. height: math.unit(47.2, "meters"),
  34659. weight: math.unit(10000, "tons"),
  34660. name: "Side",
  34661. image: {
  34662. source: "./media/characters/raylldo/side.svg",
  34663. extra: 2363/642,
  34664. bottom: 221/2584
  34665. }
  34666. },
  34667. top: {
  34668. height: math.unit(240, "meters"),
  34669. weight: math.unit(10000, "tons"),
  34670. name: "Top",
  34671. image: {
  34672. source: "./media/characters/raylldo/top.svg"
  34673. }
  34674. },
  34675. bottom: {
  34676. height: math.unit(240, "meters"),
  34677. weight: math.unit(10000, "tons"),
  34678. name: "Bottom",
  34679. image: {
  34680. source: "./media/characters/raylldo/bottom.svg"
  34681. }
  34682. },
  34683. head: {
  34684. height: math.unit(38.6, "meters"),
  34685. name: "Head",
  34686. image: {
  34687. source: "./media/characters/raylldo/head.svg",
  34688. extra: 1335/1112,
  34689. bottom: 0/1335
  34690. }
  34691. },
  34692. maw: {
  34693. height: math.unit(16.37, "meters"),
  34694. name: "Maw",
  34695. image: {
  34696. source: "./media/characters/raylldo/maw.svg",
  34697. extra: 883/660,
  34698. bottom: 0/883
  34699. },
  34700. extraAttributes: {
  34701. preyCapacity: {
  34702. name: "Capacity",
  34703. power: 3,
  34704. type: "volume",
  34705. base: math.unit(1000, "people")
  34706. },
  34707. tongueSize: {
  34708. name: "Tongue Size",
  34709. power: 2,
  34710. type: "area",
  34711. base: math.unit(21, "m^2")
  34712. }
  34713. }
  34714. },
  34715. forepaw: {
  34716. height: math.unit(18, "meters"),
  34717. name: "Forepaw",
  34718. image: {
  34719. source: "./media/characters/raylldo/forepaw.svg"
  34720. }
  34721. },
  34722. hindpaw: {
  34723. height: math.unit(23, "meters"),
  34724. name: "Hindpaw",
  34725. image: {
  34726. source: "./media/characters/raylldo/hindpaw.svg"
  34727. }
  34728. },
  34729. genitals: {
  34730. height: math.unit(42, "meters"),
  34731. name: "Genitals",
  34732. image: {
  34733. source: "./media/characters/raylldo/genitals.svg"
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(47.2, "meters"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34747. {
  34748. anthroFront: {
  34749. height: math.unit(9, "feet"),
  34750. weight: math.unit(600, "lb"),
  34751. name: "Anthro (Front)",
  34752. image: {
  34753. source: "./media/characters/glint/anthro-front.svg",
  34754. extra: 1097/1018,
  34755. bottom: 28/1125
  34756. }
  34757. },
  34758. anthroBack: {
  34759. height: math.unit(9, "feet"),
  34760. weight: math.unit(600, "lb"),
  34761. name: "Anthro (Back)",
  34762. image: {
  34763. source: "./media/characters/glint/anthro-back.svg",
  34764. extra: 1154/997,
  34765. bottom: 36/1190
  34766. }
  34767. },
  34768. feral: {
  34769. height: math.unit(11, "feet"),
  34770. weight: math.unit(50000, "lb"),
  34771. name: "Feral",
  34772. image: {
  34773. source: "./media/characters/glint/feral.svg",
  34774. extra: 3035/1585,
  34775. bottom: 1169/4204
  34776. }
  34777. },
  34778. dickAnthro: {
  34779. height: math.unit(0.7, "meters"),
  34780. name: "Dick (Anthro)",
  34781. image: {
  34782. source: "./media/characters/glint/dick-anthro.svg"
  34783. }
  34784. },
  34785. dickFeral: {
  34786. height: math.unit(2.65, "meters"),
  34787. name: "Dick (Feral)",
  34788. image: {
  34789. source: "./media/characters/glint/dick-feral.svg"
  34790. }
  34791. },
  34792. slitHidden: {
  34793. height: math.unit(5.85, "meters"),
  34794. name: "Slit (Hidden)",
  34795. image: {
  34796. source: "./media/characters/glint/slit-hidden.svg"
  34797. }
  34798. },
  34799. slitErect: {
  34800. height: math.unit(5.85, "meters"),
  34801. name: "Slit (Erect)",
  34802. image: {
  34803. source: "./media/characters/glint/slit-erect.svg"
  34804. }
  34805. },
  34806. mawAnthro: {
  34807. height: math.unit(0.63, "meters"),
  34808. name: "Maw (Anthro)",
  34809. image: {
  34810. source: "./media/characters/glint/maw.svg"
  34811. }
  34812. },
  34813. mawFeral: {
  34814. height: math.unit(2.89, "meters"),
  34815. name: "Maw (Feral)",
  34816. image: {
  34817. source: "./media/characters/glint/maw.svg"
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(9, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34831. {
  34832. side: {
  34833. height: math.unit(15, "feet"),
  34834. weight: math.unit(5000, "kg"),
  34835. name: "Side",
  34836. image: {
  34837. source: "./media/characters/kairne/side.svg",
  34838. extra: 979/811,
  34839. bottom: 13/992
  34840. }
  34841. },
  34842. front: {
  34843. height: math.unit(15, "feet"),
  34844. weight: math.unit(5000, "kg"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/kairne/front.svg",
  34848. extra: 908/814,
  34849. bottom: 26/934
  34850. }
  34851. },
  34852. sideNsfw: {
  34853. height: math.unit(15, "feet"),
  34854. weight: math.unit(5000, "kg"),
  34855. name: "Side (NSFW)",
  34856. image: {
  34857. source: "./media/characters/kairne/side-nsfw.svg",
  34858. extra: 979/811,
  34859. bottom: 13/992
  34860. }
  34861. },
  34862. frontNsfw: {
  34863. height: math.unit(15, "feet"),
  34864. weight: math.unit(5000, "kg"),
  34865. name: "Front (NSFW)",
  34866. image: {
  34867. source: "./media/characters/kairne/front-nsfw.svg",
  34868. extra: 908/814,
  34869. bottom: 26/934
  34870. }
  34871. },
  34872. dickCaged: {
  34873. height: math.unit(0.65, "meters"),
  34874. name: "Dick-caged",
  34875. image: {
  34876. source: "./media/characters/kairne/dick-caged.svg"
  34877. }
  34878. },
  34879. dick: {
  34880. height: math.unit(0.79, "meters"),
  34881. name: "Dick",
  34882. image: {
  34883. source: "./media/characters/kairne/dick.svg"
  34884. }
  34885. },
  34886. genitals: {
  34887. height: math.unit(1.29, "meters"),
  34888. name: "Genitals",
  34889. image: {
  34890. source: "./media/characters/kairne/genitals.svg"
  34891. }
  34892. },
  34893. maw: {
  34894. height: math.unit(1.73, "meters"),
  34895. name: "Maw",
  34896. image: {
  34897. source: "./media/characters/kairne/maw.svg"
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(15, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(5 + 8/12, "feet"),
  34914. weight: math.unit(139, "lb"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/biscuit-jackal/front.svg",
  34918. extra: 2106/1961,
  34919. bottom: 58/2164
  34920. }
  34921. },
  34922. back: {
  34923. height: math.unit(5 + 8/12, "feet"),
  34924. weight: math.unit(139, "lb"),
  34925. name: "Back",
  34926. image: {
  34927. source: "./media/characters/biscuit-jackal/back.svg",
  34928. extra: 2132/1976,
  34929. bottom: 57/2189
  34930. }
  34931. },
  34932. werejackal: {
  34933. height: math.unit(6 + 3/12, "feet"),
  34934. weight: math.unit(188, "lb"),
  34935. name: "Werejackal",
  34936. image: {
  34937. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34938. extra: 2373/2178,
  34939. bottom: 53/2426
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(5 + 8/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(140, "cm"),
  34956. weight: math.unit(45, "kg"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/tayra-white/front.svg",
  34960. extra: 2229/2192,
  34961. bottom: 75/2304
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Normal",
  34968. height: math.unit(140, "cm"),
  34969. default: true
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(4 + 5/12, "feet"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/scoop/front.svg",
  34981. extra: 1257/1136,
  34982. bottom: 69/1326
  34983. }
  34984. },
  34985. back: {
  34986. height: math.unit(4 + 5/12, "feet"),
  34987. name: "Back",
  34988. image: {
  34989. source: "./media/characters/scoop/back.svg",
  34990. extra: 1321/1152,
  34991. bottom: 32/1353
  34992. }
  34993. },
  34994. maw: {
  34995. height: math.unit(0.68, "feet"),
  34996. name: "Maw",
  34997. image: {
  34998. source: "./media/characters/scoop/maw.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Really Small",
  35005. height: math.unit(1, "mm")
  35006. },
  35007. {
  35008. name: "Micro",
  35009. height: math.unit(1, "inch")
  35010. },
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(4 + 5/12, "feet"),
  35014. default: true
  35015. },
  35016. {
  35017. name: "Macro",
  35018. height: math.unit(200, "feet")
  35019. },
  35020. {
  35021. name: "Megamacro",
  35022. height: math.unit(3240, "feet")
  35023. },
  35024. {
  35025. name: "Teramacro",
  35026. height: math.unit(2500, "miles")
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(15 + 7/12, "feet"),
  35035. weight: math.unit(1150, "tons"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/saphinara/front.svg",
  35039. extra: 1837/1643,
  35040. bottom: 84/1921
  35041. },
  35042. form: "normal",
  35043. default: true
  35044. },
  35045. side: {
  35046. height: math.unit(15 + 7/12, "feet"),
  35047. weight: math.unit(1150, "tons"),
  35048. name: "Side",
  35049. image: {
  35050. source: "./media/characters/saphinara/side.svg",
  35051. extra: 605/547,
  35052. bottom: 6/611
  35053. },
  35054. form: "normal"
  35055. },
  35056. back: {
  35057. height: math.unit(15 + 7/12, "feet"),
  35058. weight: math.unit(1150, "tons"),
  35059. name: "Back",
  35060. image: {
  35061. source: "./media/characters/saphinara/back.svg",
  35062. extra: 591/531,
  35063. bottom: 13/604
  35064. },
  35065. form: "normal"
  35066. },
  35067. frontTail: {
  35068. height: math.unit(15 + 7/12, "feet"),
  35069. weight: math.unit(1150, "tons"),
  35070. name: "Front (Full Tail)",
  35071. image: {
  35072. source: "./media/characters/saphinara/front-tail.svg",
  35073. extra: 2256/1630,
  35074. bottom: 261/2517
  35075. },
  35076. form: "normal"
  35077. },
  35078. insides: {
  35079. height: math.unit(11.92, "feet"),
  35080. name: "Insides",
  35081. image: {
  35082. source: "./media/characters/saphinara/insides.svg"
  35083. },
  35084. form: "normal"
  35085. },
  35086. head: {
  35087. height: math.unit(4.17, "feet"),
  35088. name: "Head",
  35089. image: {
  35090. source: "./media/characters/saphinara/head.svg"
  35091. },
  35092. form: "normal"
  35093. },
  35094. tongue: {
  35095. height: math.unit(4.60, "feet"),
  35096. name: "Tongue",
  35097. image: {
  35098. source: "./media/characters/saphinara/tongue.svg"
  35099. },
  35100. form: "normal"
  35101. },
  35102. headEnraged: {
  35103. height: math.unit(5.55, "feet"),
  35104. name: "Head (Enraged)",
  35105. image: {
  35106. source: "./media/characters/saphinara/head-enraged.svg"
  35107. },
  35108. form: "normal"
  35109. },
  35110. wings: {
  35111. height: math.unit(11.95, "feet"),
  35112. name: "Wings",
  35113. image: {
  35114. source: "./media/characters/saphinara/wings.svg"
  35115. },
  35116. form: "normal"
  35117. },
  35118. feathers: {
  35119. height: math.unit(8.92, "feet"),
  35120. name: "Feathers",
  35121. image: {
  35122. source: "./media/characters/saphinara/feathers.svg"
  35123. },
  35124. form: "normal"
  35125. },
  35126. shackles: {
  35127. height: math.unit(2, "feet"),
  35128. name: "Shackles",
  35129. image: {
  35130. source: "./media/characters/saphinara/shackles.svg"
  35131. },
  35132. form: "normal"
  35133. },
  35134. eyes: {
  35135. height: math.unit(1.331, "feet"),
  35136. name: "Eyes",
  35137. image: {
  35138. source: "./media/characters/saphinara/eyes.svg"
  35139. },
  35140. form: "normal"
  35141. },
  35142. eyesEnraged: {
  35143. height: math.unit(1.331, "feet"),
  35144. name: "Eyes (Enraged)",
  35145. image: {
  35146. source: "./media/characters/saphinara/eyes-enraged.svg"
  35147. },
  35148. form: "normal"
  35149. },
  35150. trueFormSide: {
  35151. height: math.unit(200, "feet"),
  35152. weight: math.unit(1e7, "tons"),
  35153. name: "Side",
  35154. image: {
  35155. source: "./media/characters/saphinara/true-form-side.svg",
  35156. extra: 1399/770,
  35157. bottom: 97/1496
  35158. },
  35159. form: "true-form",
  35160. default: true
  35161. },
  35162. trueFormMaw: {
  35163. height: math.unit(71.5, "feet"),
  35164. name: "Maw",
  35165. image: {
  35166. source: "./media/characters/saphinara/true-form-maw.svg",
  35167. extra: 2302/1453,
  35168. bottom: 0/2302
  35169. },
  35170. form: "true-form"
  35171. },
  35172. meowberusSide: {
  35173. height: math.unit(75, "feet"),
  35174. weight: math.unit(180000, "kg"),
  35175. preyCapacity: math.unit(50000, "people"),
  35176. name: "Side",
  35177. image: {
  35178. source: "./media/characters/saphinara/meowberus-side.svg",
  35179. extra: 1400/711,
  35180. bottom: 126/1526
  35181. },
  35182. form: "meowberus",
  35183. extraAttributes: {
  35184. "pawArea": {
  35185. name: "Paw Size",
  35186. power: 2,
  35187. type: "area",
  35188. base: math.unit(35, "m^2")
  35189. }
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(15 + 7/12, "feet"),
  35197. default: true,
  35198. form: "normal"
  35199. },
  35200. {
  35201. name: "Angry",
  35202. height: math.unit(30 + 6/12, "feet"),
  35203. form: "normal"
  35204. },
  35205. {
  35206. name: "Enraged",
  35207. height: math.unit(102 + 1/12, "feet"),
  35208. form: "normal"
  35209. },
  35210. {
  35211. name: "True",
  35212. height: math.unit(200, "feet"),
  35213. default: true,
  35214. form: "true-form"
  35215. },
  35216. {
  35217. name: "Normal",
  35218. height: math.unit(75, "feet"),
  35219. default: true,
  35220. form: "meowberus"
  35221. },
  35222. ],
  35223. {
  35224. "normal": {
  35225. name: "Normal",
  35226. default: true
  35227. },
  35228. "true-form": {
  35229. name: "True Form"
  35230. },
  35231. "meowberus": {
  35232. name: "Meowberus",
  35233. },
  35234. }
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(6 + 8/12, "feet"),
  35241. weight: math.unit(300, "lb"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/jrain/front.svg",
  35245. extra: 3039/2865,
  35246. bottom: 399/3438
  35247. }
  35248. },
  35249. back: {
  35250. height: math.unit(6 + 8/12, "feet"),
  35251. weight: math.unit(300, "lb"),
  35252. name: "Back",
  35253. image: {
  35254. source: "./media/characters/jrain/back.svg",
  35255. extra: 3089/2938,
  35256. bottom: 172/3261
  35257. }
  35258. },
  35259. head: {
  35260. height: math.unit(2.14, "feet"),
  35261. name: "Head",
  35262. image: {
  35263. source: "./media/characters/jrain/head.svg"
  35264. }
  35265. },
  35266. maw: {
  35267. height: math.unit(1.77, "feet"),
  35268. name: "Maw",
  35269. image: {
  35270. source: "./media/characters/jrain/maw.svg"
  35271. }
  35272. },
  35273. leftHand: {
  35274. height: math.unit(1.1, "feet"),
  35275. name: "Left Hand",
  35276. image: {
  35277. source: "./media/characters/jrain/left-hand.svg"
  35278. }
  35279. },
  35280. rightHand: {
  35281. height: math.unit(1.1, "feet"),
  35282. name: "Right Hand",
  35283. image: {
  35284. source: "./media/characters/jrain/right-hand.svg"
  35285. }
  35286. },
  35287. eye: {
  35288. height: math.unit(0.35, "feet"),
  35289. name: "Eye",
  35290. image: {
  35291. source: "./media/characters/jrain/eye.svg"
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(6 + 8/12, "feet"),
  35299. default: true
  35300. },
  35301. {
  35302. name: "Casually Large",
  35303. height: math.unit(25, "feet")
  35304. },
  35305. {
  35306. name: "Giant",
  35307. height: math.unit(100, "feet")
  35308. },
  35309. {
  35310. name: "Kaiju",
  35311. height: math.unit(300, "feet")
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35317. {
  35318. dragon: {
  35319. height: math.unit(5, "meters"),
  35320. name: "Dragon",
  35321. image: {
  35322. source: "./media/characters/sabrina/dragon.svg",
  35323. extra: 3670 / 2365,
  35324. bottom: 333 / 4003
  35325. }
  35326. },
  35327. gryphon: {
  35328. height: math.unit(3, "meters"),
  35329. name: "Gryphon",
  35330. image: {
  35331. source: "./media/characters/sabrina/gryphon.svg",
  35332. extra: 1576 / 945,
  35333. bottom: 71 / 1647
  35334. }
  35335. },
  35336. snake: {
  35337. height: math.unit(12, "meters"),
  35338. name: "Snake",
  35339. image: {
  35340. source: "./media/characters/sabrina/snake.svg",
  35341. extra: 1758 / 1320,
  35342. bottom: 186 / 1944
  35343. }
  35344. },
  35345. collar: {
  35346. height: math.unit(1.86, "meters"),
  35347. name: "Collar",
  35348. image: {
  35349. source: "./media/characters/sabrina/collar.svg"
  35350. }
  35351. },
  35352. eye: {
  35353. height: math.unit(0.53, "meters"),
  35354. name: "Eye",
  35355. image: {
  35356. source: "./media/characters/sabrina/eye.svg"
  35357. }
  35358. },
  35359. foot: {
  35360. height: math.unit(1.86, "meters"),
  35361. name: "Foot",
  35362. image: {
  35363. source: "./media/characters/sabrina/foot.svg"
  35364. }
  35365. },
  35366. hand: {
  35367. height: math.unit(1.32, "meters"),
  35368. name: "Hand",
  35369. image: {
  35370. source: "./media/characters/sabrina/hand.svg"
  35371. }
  35372. },
  35373. head: {
  35374. height: math.unit(2.44, "meters"),
  35375. name: "Head",
  35376. image: {
  35377. source: "./media/characters/sabrina/head.svg"
  35378. }
  35379. },
  35380. headAngry: {
  35381. height: math.unit(2.44, "meters"),
  35382. name: "Head (Angry))",
  35383. image: {
  35384. source: "./media/characters/sabrina/head-angry.svg"
  35385. }
  35386. },
  35387. maw: {
  35388. height: math.unit(1.65, "meters"),
  35389. name: "Maw",
  35390. image: {
  35391. source: "./media/characters/sabrina/maw.svg"
  35392. }
  35393. },
  35394. spikes: {
  35395. height: math.unit(1.69, "meters"),
  35396. name: "Spikes",
  35397. image: {
  35398. source: "./media/characters/sabrina/spikes.svg"
  35399. }
  35400. },
  35401. stomach: {
  35402. height: math.unit(1.15, "meters"),
  35403. name: "Stomach",
  35404. image: {
  35405. source: "./media/characters/sabrina/stomach.svg"
  35406. }
  35407. },
  35408. tongue: {
  35409. height: math.unit(1.27, "meters"),
  35410. name: "Tongue",
  35411. image: {
  35412. source: "./media/characters/sabrina/tongue.svg"
  35413. }
  35414. },
  35415. wingDorsal: {
  35416. height: math.unit(4.85, "meters"),
  35417. name: "Wing (Dorsal)",
  35418. image: {
  35419. source: "./media/characters/sabrina/wing-dorsal.svg"
  35420. }
  35421. },
  35422. wingVentral: {
  35423. height: math.unit(4.85, "meters"),
  35424. name: "Wing (Ventral)",
  35425. image: {
  35426. source: "./media/characters/sabrina/wing-ventral.svg"
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(5, "meters"),
  35434. default: true
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35440. {
  35441. frontMaid: {
  35442. height: math.unit(5 + 5/12, "feet"),
  35443. weight: math.unit(130, "lb"),
  35444. name: "Front (Maid)",
  35445. image: {
  35446. source: "./media/characters/midnight-tales/front-maid.svg",
  35447. extra: 489/454,
  35448. bottom: 61/550
  35449. }
  35450. },
  35451. frontFormal: {
  35452. height: math.unit(5 + 5/12, "feet"),
  35453. weight: math.unit(130, "lb"),
  35454. name: "Front (Formal)",
  35455. image: {
  35456. source: "./media/characters/midnight-tales/front-formal.svg",
  35457. extra: 489/454,
  35458. bottom: 61/550
  35459. }
  35460. },
  35461. back: {
  35462. height: math.unit(5 + 5/12, "feet"),
  35463. weight: math.unit(130, "lb"),
  35464. name: "Back",
  35465. image: {
  35466. source: "./media/characters/midnight-tales/back.svg",
  35467. extra: 498/456,
  35468. bottom: 33/531
  35469. }
  35470. },
  35471. frontBeast: {
  35472. height: math.unit(40, "feet"),
  35473. weight: math.unit(64000, "lb"),
  35474. name: "Front (Beast)",
  35475. image: {
  35476. source: "./media/characters/midnight-tales/front-beast.svg",
  35477. extra: 927/860,
  35478. bottom: 53/980
  35479. }
  35480. },
  35481. backBeast: {
  35482. height: math.unit(40, "feet"),
  35483. weight: math.unit(64000, "lb"),
  35484. name: "Back (Beast)",
  35485. image: {
  35486. source: "./media/characters/midnight-tales/back-beast.svg",
  35487. extra: 929/855,
  35488. bottom: 16/945
  35489. }
  35490. },
  35491. footBeast: {
  35492. height: math.unit(6.7, "feet"),
  35493. name: "Foot (Beast)",
  35494. image: {
  35495. source: "./media/characters/midnight-tales/foot-beast.svg"
  35496. }
  35497. },
  35498. headBeast: {
  35499. height: math.unit(8, "feet"),
  35500. name: "Head (Beast)",
  35501. image: {
  35502. source: "./media/characters/midnight-tales/head-beast.svg"
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(5 + 5 / 12, "feet"),
  35510. default: true
  35511. },
  35512. {
  35513. name: "Macro",
  35514. height: math.unit(25, "feet")
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(5 + 10/12, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/argon/front.svg",
  35526. extra: 2009/1935,
  35527. bottom: 118/2127
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(5 + 10/12, "feet"),
  35532. name: "Back",
  35533. image: {
  35534. source: "./media/characters/argon/back.svg",
  35535. extra: 2047/1992,
  35536. bottom: 20/2067
  35537. }
  35538. },
  35539. frontDressed: {
  35540. height: math.unit(5 + 10/12, "feet"),
  35541. name: "Front (Dressed)",
  35542. image: {
  35543. source: "./media/characters/argon/front-dressed.svg",
  35544. extra: 2009/1935,
  35545. bottom: 118/2127
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(5 + 10/12, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(8 + 6/12, "feet"),
  35562. weight: math.unit(1150, "lb"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/kichi/front.svg",
  35566. extra: 1267/1164,
  35567. bottom: 61/1328
  35568. }
  35569. },
  35570. back: {
  35571. height: math.unit(8 + 6/12, "feet"),
  35572. weight: math.unit(1150, "lb"),
  35573. name: "Back",
  35574. image: {
  35575. source: "./media/characters/kichi/back.svg",
  35576. extra: 1273/1166,
  35577. bottom: 33/1306
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(8 + 6/12, "feet"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(6, "feet"),
  35594. weight: math.unit(210, "lb"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/manetel-greyscale/front.svg",
  35598. extra: 350/312,
  35599. bottom: 8/358
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Micro",
  35606. height: math.unit(2, "inches")
  35607. },
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(6, "feet"),
  35611. default: true
  35612. },
  35613. {
  35614. name: "Minimacro",
  35615. height: math.unit(17, "feet")
  35616. },
  35617. {
  35618. name: "Macro",
  35619. height: math.unit(117, "feet")
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35625. {
  35626. side: {
  35627. height: math.unit(5 + 1/12, "feet"),
  35628. weight: math.unit(418, "lb"),
  35629. name: "Side",
  35630. image: {
  35631. source: "./media/characters/softpurr/side.svg",
  35632. extra: 1993/1945,
  35633. bottom: 134/2127
  35634. }
  35635. },
  35636. front: {
  35637. height: math.unit(5 + 1/12, "feet"),
  35638. weight: math.unit(418, "lb"),
  35639. name: "Front",
  35640. image: {
  35641. source: "./media/characters/softpurr/front.svg",
  35642. extra: 1950/1856,
  35643. bottom: 174/2124
  35644. }
  35645. },
  35646. paw: {
  35647. height: math.unit(1, "feet"),
  35648. name: "Paw",
  35649. image: {
  35650. source: "./media/characters/softpurr/paw.svg"
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(5 + 1/12, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(260, "meters"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/anahita/front.svg",
  35670. extra: 665/635,
  35671. bottom: 89/754
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Macro",
  35678. height: math.unit(260, "meters"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(4 + 10/12, "feet"),
  35688. weight: math.unit(160, "lb"),
  35689. name: "Front",
  35690. image: {
  35691. source: "./media/characters/chip-mouse/front.svg",
  35692. extra: 3528/3408,
  35693. bottom: 0/3528
  35694. }
  35695. },
  35696. frontNsfw: {
  35697. height: math.unit(4 + 10/12, "feet"),
  35698. weight: math.unit(160, "lb"),
  35699. name: "Front (NSFW)",
  35700. image: {
  35701. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35702. extra: 3528/3408,
  35703. bottom: 0/3528
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(4 + 10/12, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35717. {
  35718. side: {
  35719. height: math.unit(10, "feet"),
  35720. weight: math.unit(14000, "lb"),
  35721. name: "Side",
  35722. image: {
  35723. source: "./media/characters/kremm/side.svg",
  35724. extra: 1390/1053,
  35725. bottom: 90/1480
  35726. }
  35727. },
  35728. gut: {
  35729. height: math.unit(5.8, "feet"),
  35730. name: "Gut",
  35731. image: {
  35732. source: "./media/characters/kremm/gut.svg"
  35733. }
  35734. },
  35735. ass: {
  35736. height: math.unit(6.1, "feet"),
  35737. name: "Ass",
  35738. image: {
  35739. source: "./media/characters/kremm/ass.svg"
  35740. }
  35741. },
  35742. jaws: {
  35743. height: math.unit(2.2, "feet"),
  35744. name: "Jaws",
  35745. image: {
  35746. source: "./media/characters/kremm/jaws.svg"
  35747. }
  35748. },
  35749. dick: {
  35750. height: math.unit(4.26, "feet"),
  35751. name: "Dick",
  35752. image: {
  35753. source: "./media/characters/kremm/dick.svg"
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(10, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(30, "stories"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/kai/front.svg",
  35773. extra: 1892/1718,
  35774. bottom: 162/2054
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Macro",
  35781. height: math.unit(30, "stories"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(6 + 4/12, "feet"),
  35791. weight: math.unit(145, "lb"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/sykes/front.svg",
  35795. extra: 1321 / 1187,
  35796. bottom: 66 / 1387
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(6 + 4/12, "feet"),
  35801. weight: math.unit(145, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/sykes/back.svg",
  35805. extra: 1326/1181,
  35806. bottom: 31/1357
  35807. }
  35808. },
  35809. traditionalOutfit: {
  35810. height: math.unit(6 + 4/12, "feet"),
  35811. weight: math.unit(145, "lb"),
  35812. name: "Traditional Outfit",
  35813. image: {
  35814. source: "./media/characters/sykes/traditional-outfit.svg",
  35815. extra: 1321 / 1187,
  35816. bottom: 66 / 1387
  35817. }
  35818. },
  35819. adventureOutfit: {
  35820. height: math.unit(6 + 4/12, "feet"),
  35821. weight: math.unit(145, "lb"),
  35822. name: "Adventure Outfit",
  35823. image: {
  35824. source: "./media/characters/sykes/adventure-outfit.svg",
  35825. extra: 1321 / 1187,
  35826. bottom: 66 / 1387
  35827. }
  35828. },
  35829. handLeft: {
  35830. height: math.unit(0.9, "feet"),
  35831. name: "Hand (Left)",
  35832. image: {
  35833. source: "./media/characters/sykes/hand-left.svg"
  35834. }
  35835. },
  35836. handRight: {
  35837. height: math.unit(0.839, "feet"),
  35838. name: "Hand (Right)",
  35839. image: {
  35840. source: "./media/characters/sykes/hand-right.svg"
  35841. }
  35842. },
  35843. leftFoot: {
  35844. height: math.unit(1.2, "feet"),
  35845. name: "Foot (Left)",
  35846. image: {
  35847. source: "./media/characters/sykes/foot-left.svg"
  35848. }
  35849. },
  35850. rightFoot: {
  35851. height: math.unit(1.2, "feet"),
  35852. name: "Foot (Right)",
  35853. image: {
  35854. source: "./media/characters/sykes/foot-right.svg"
  35855. }
  35856. },
  35857. maw: {
  35858. height: math.unit(1.93, "feet"),
  35859. name: "Maw",
  35860. image: {
  35861. source: "./media/characters/sykes/maw.svg"
  35862. }
  35863. },
  35864. teeth: {
  35865. height: math.unit(0.51, "feet"),
  35866. name: "Teeth",
  35867. image: {
  35868. source: "./media/characters/sykes/teeth.svg"
  35869. }
  35870. },
  35871. tongue: {
  35872. height: math.unit(2.13, "feet"),
  35873. name: "Tongue",
  35874. image: {
  35875. source: "./media/characters/sykes/tongue.svg"
  35876. }
  35877. },
  35878. uvula: {
  35879. height: math.unit(0.16, "feet"),
  35880. name: "Uvula",
  35881. image: {
  35882. source: "./media/characters/sykes/uvula.svg"
  35883. }
  35884. },
  35885. collar: {
  35886. height: math.unit(0.287, "feet"),
  35887. name: "Collar",
  35888. image: {
  35889. source: "./media/characters/sykes/collar.svg"
  35890. }
  35891. },
  35892. tail: {
  35893. height: math.unit(3.8, "feet"),
  35894. name: "Tail",
  35895. image: {
  35896. source: "./media/characters/sykes/tail.svg"
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Shrunken",
  35903. height: math.unit(5, "inches")
  35904. },
  35905. {
  35906. name: "Normal",
  35907. height: math.unit(6 + 4 / 12, "feet"),
  35908. default: true
  35909. },
  35910. {
  35911. name: "Big",
  35912. height: math.unit(15, "feet")
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(5 + 8/12, "feet"),
  35921. weight: math.unit(190, "lb"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/oven-otter/front.svg",
  35925. extra: 1809/1740,
  35926. bottom: 181/1990
  35927. }
  35928. },
  35929. back: {
  35930. height: math.unit(5 + 8/12, "feet"),
  35931. weight: math.unit(190, "lb"),
  35932. name: "Back",
  35933. image: {
  35934. source: "./media/characters/oven-otter/back.svg",
  35935. extra: 1709/1635,
  35936. bottom: 118/1827
  35937. }
  35938. },
  35939. hand: {
  35940. height: math.unit(1.07, "feet"),
  35941. name: "Hand",
  35942. image: {
  35943. source: "./media/characters/oven-otter/hand.svg"
  35944. }
  35945. },
  35946. beans: {
  35947. height: math.unit(1.74, "feet"),
  35948. name: "Beans",
  35949. image: {
  35950. source: "./media/characters/oven-otter/beans.svg"
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Micro",
  35957. height: math.unit(0.5, "inches")
  35958. },
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(5 + 8/12, "feet"),
  35962. default: true
  35963. },
  35964. {
  35965. name: "Macro",
  35966. height: math.unit(250, "feet")
  35967. },
  35968. {
  35969. name: "Really High",
  35970. height: math.unit(420, "feet")
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35976. {
  35977. front: {
  35978. height: math.unit(5, "meters"),
  35979. weight: math.unit(292000000000000, "kg"),
  35980. name: "Front",
  35981. image: {
  35982. source: "./media/characters/devourer/front.svg",
  35983. extra: 1800/1733,
  35984. bottom: 211/2011
  35985. }
  35986. },
  35987. maw: {
  35988. height: math.unit(1.1, "meter"),
  35989. name: "Maw",
  35990. image: {
  35991. source: "./media/characters/devourer/maw.svg"
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Small",
  35998. height: math.unit(3, "meters")
  35999. },
  36000. {
  36001. name: "Large",
  36002. height: math.unit(5, "meters"),
  36003. default: true
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36009. {
  36010. front: {
  36011. height: math.unit(6, "feet"),
  36012. weight: math.unit(400, "lb"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/ellarby/front.svg",
  36016. extra: 1909/1763,
  36017. bottom: 80/1989
  36018. }
  36019. },
  36020. back: {
  36021. height: math.unit(6, "feet"),
  36022. weight: math.unit(400, "lb"),
  36023. name: "Back",
  36024. image: {
  36025. source: "./media/characters/ellarby/back.svg",
  36026. extra: 1914/1784,
  36027. bottom: 172/2086
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Mischief",
  36034. height: math.unit(18, "inches")
  36035. },
  36036. {
  36037. name: "Trouble",
  36038. height: math.unit(12, "feet")
  36039. },
  36040. {
  36041. name: "Havoc",
  36042. height: math.unit(200, "feet"),
  36043. default: true
  36044. },
  36045. {
  36046. name: "Pandemonium",
  36047. height: math.unit(1, "mile")
  36048. },
  36049. {
  36050. name: "Catastrophe",
  36051. height: math.unit(100, "miles")
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36057. {
  36058. front: {
  36059. height: math.unit(4.7, "meters"),
  36060. weight: math.unit(6500, "kg"),
  36061. name: "Front",
  36062. image: {
  36063. source: "./media/characters/vex/front.svg",
  36064. extra: 1288/1140,
  36065. bottom: 100/1388
  36066. }
  36067. },
  36068. },
  36069. [
  36070. {
  36071. name: "Normal",
  36072. height: math.unit(4.7, "meters"),
  36073. default: true
  36074. },
  36075. ]
  36076. ))
  36077. characterMakers.push(() => makeCharacter(
  36078. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36079. {
  36080. normal: {
  36081. height: math.unit(6, "feet"),
  36082. weight: math.unit(350, "lb"),
  36083. name: "Normal",
  36084. image: {
  36085. source: "./media/characters/teshy/normal.svg",
  36086. extra: 1795/1735,
  36087. bottom: 16/1811
  36088. }
  36089. },
  36090. monsterFront: {
  36091. height: math.unit(12, "feet"),
  36092. weight: math.unit(4700, "lb"),
  36093. name: "Monster (Front)",
  36094. image: {
  36095. source: "./media/characters/teshy/monster-front.svg",
  36096. extra: 2042/2034,
  36097. bottom: 128/2170
  36098. }
  36099. },
  36100. monsterSide: {
  36101. height: math.unit(12, "feet"),
  36102. weight: math.unit(4700, "lb"),
  36103. name: "Monster (Side)",
  36104. image: {
  36105. source: "./media/characters/teshy/monster-side.svg",
  36106. extra: 2067/2056,
  36107. bottom: 70/2137
  36108. }
  36109. },
  36110. monsterBack: {
  36111. height: math.unit(12, "feet"),
  36112. weight: math.unit(4700, "lb"),
  36113. name: "Monster (Back)",
  36114. image: {
  36115. source: "./media/characters/teshy/monster-back.svg",
  36116. extra: 1921/1914,
  36117. bottom: 171/2092
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(6, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36131. {
  36132. front: {
  36133. height: math.unit(6, "feet"),
  36134. name: "Front",
  36135. image: {
  36136. source: "./media/characters/ramey/front.svg",
  36137. extra: 790/787,
  36138. bottom: 27/817
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(6, "feet"),
  36146. default: true
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36152. {
  36153. front: {
  36154. height: math.unit(5 + 5/12, "feet"),
  36155. weight: math.unit(120, "lb"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/phirae/front.svg",
  36159. extra: 2491/2436,
  36160. bottom: 38/2529
  36161. }
  36162. },
  36163. },
  36164. [
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(5 + 5/12, "feet"),
  36168. default: true
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36174. {
  36175. front: {
  36176. height: math.unit(5 + 3/12, "feet"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/stagglas/front.svg",
  36180. extra: 962/882,
  36181. bottom: 53/1015
  36182. }
  36183. },
  36184. feral: {
  36185. height: math.unit(335, "cm"),
  36186. name: "Feral",
  36187. image: {
  36188. source: "./media/characters/stagglas/feral.svg",
  36189. extra: 1732/1090,
  36190. bottom: 48/1780
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(5 + 3/12, "feet"),
  36198. default: true
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36204. {
  36205. front: {
  36206. height: math.unit(5 + 4/12, "feet"),
  36207. weight: math.unit(145, "lb"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/starra/front.svg",
  36211. extra: 1790/1691,
  36212. bottom: 91/1881
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Normal",
  36219. height: math.unit(5 + 4/12, "feet"),
  36220. default: true
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36226. {
  36227. front: {
  36228. height: math.unit(2.2, "meters"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36232. extra: 1248/972,
  36233. bottom: 38/1286
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(2.2, "meters"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36247. {
  36248. side: {
  36249. height: math.unit(8 + 2/12, "feet"),
  36250. weight: math.unit(1240, "lb"),
  36251. name: "Side",
  36252. image: {
  36253. source: "./media/characters/mika-valentine/side.svg",
  36254. extra: 2670/2501,
  36255. bottom: 250/2920
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(8 + 2/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(7 + 2/12, "feet"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/xoltol/front.svg",
  36275. extra: 2212/2124,
  36276. bottom: 84/2296
  36277. }
  36278. },
  36279. side: {
  36280. height: math.unit(7 + 2/12, "feet"),
  36281. name: "Side",
  36282. image: {
  36283. source: "./media/characters/xoltol/side.svg",
  36284. extra: 2273/2197,
  36285. bottom: 26/2299
  36286. }
  36287. },
  36288. hand: {
  36289. height: math.unit(2.5, "feet"),
  36290. name: "Hand",
  36291. image: {
  36292. source: "./media/characters/xoltol/hand.svg"
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Small-ish",
  36299. height: math.unit(5 + 11/12, "feet")
  36300. },
  36301. {
  36302. name: "Normal",
  36303. height: math.unit(7 + 2/12, "feet")
  36304. },
  36305. {
  36306. name: "\"Macro\"",
  36307. height: math.unit(14 + 9/12, "feet"),
  36308. default: true
  36309. },
  36310. {
  36311. name: "Alternate Height",
  36312. height: math.unit(20, "feet")
  36313. },
  36314. {
  36315. name: "Actually Macro",
  36316. height: math.unit(100, "feet")
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36322. {
  36323. front: {
  36324. height: math.unit(5 + 2/12, "feet"),
  36325. name: "Front",
  36326. image: {
  36327. source: "./media/characters/kotetsu-redwood/front.svg",
  36328. extra: 1053/942,
  36329. bottom: 60/1113
  36330. }
  36331. },
  36332. },
  36333. [
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(5 + 2/12, "feet"),
  36337. default: true
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(2.4, "meters"),
  36346. weight: math.unit(125, "kg"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/lilith/front.svg",
  36350. extra: 1590/1513,
  36351. bottom: 203/1793
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Humanoid",
  36358. height: math.unit(2.4, "meters")
  36359. },
  36360. {
  36361. name: "Normal",
  36362. height: math.unit(6, "meters"),
  36363. default: true
  36364. },
  36365. {
  36366. name: "Largest",
  36367. height: math.unit(55, "meters")
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(8 + 4/12, "feet"),
  36376. weight: math.unit(535, "lb"),
  36377. name: "Front",
  36378. image: {
  36379. source: "./media/characters/beh'kah-bolger/front.svg",
  36380. extra: 1660/1603,
  36381. bottom: 37/1697
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(8 + 4/12, "feet"),
  36389. default: true
  36390. },
  36391. {
  36392. name: "Kaiju",
  36393. height: math.unit(250, "feet")
  36394. },
  36395. {
  36396. name: "Still Growing",
  36397. height: math.unit(10, "miles")
  36398. },
  36399. {
  36400. name: "Continental",
  36401. height: math.unit(5000, "miles")
  36402. },
  36403. {
  36404. name: "Final Form",
  36405. height: math.unit(2500000, "miles")
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(7 + 2/12, "feet"),
  36414. weight: math.unit(230, "kg"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/tatyana-milewska/front.svg",
  36418. extra: 1199/1150,
  36419. bottom: 86/1285
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(7 + 2/12, "feet"),
  36427. default: true
  36428. },
  36429. {
  36430. name: "Big",
  36431. height: math.unit(12, "feet")
  36432. },
  36433. {
  36434. name: "Minimacro",
  36435. height: math.unit(20, "feet")
  36436. },
  36437. {
  36438. name: "Macro",
  36439. height: math.unit(120, "feet")
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36445. {
  36446. front: {
  36447. height: math.unit(7 + 8/12, "feet"),
  36448. weight: math.unit(152, "kg"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/helen-arri/front.svg",
  36452. extra: 440/423,
  36453. bottom: 14/454
  36454. }
  36455. },
  36456. back: {
  36457. height: math.unit(7 + 8/12, "feet"),
  36458. weight: math.unit(152, "kg"),
  36459. name: "Back",
  36460. image: {
  36461. source: "./media/characters/helen-arri/back.svg",
  36462. extra: 443/426,
  36463. bottom: 8/451
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(7 + 8/12, "feet"),
  36471. default: true
  36472. },
  36473. {
  36474. name: "Big",
  36475. height: math.unit(14, "feet")
  36476. },
  36477. {
  36478. name: "Minimacro",
  36479. height: math.unit(24, "feet")
  36480. },
  36481. {
  36482. name: "Macro",
  36483. height: math.unit(140, "feet")
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(6, "meters"),
  36492. name: "Front",
  36493. image: {
  36494. source: "./media/characters/ehanu-rehu/front.svg",
  36495. extra: 1800/1800,
  36496. bottom: 59/1859
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Normal",
  36503. height: math.unit(6, "meters"),
  36504. default: true
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36510. {
  36511. front: {
  36512. height: math.unit(7 + 3/12, "feet"),
  36513. name: "Front",
  36514. image: {
  36515. source: "./media/characters/renholder/front.svg",
  36516. extra: 3096/2960,
  36517. bottom: 250/3346
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Normal Bat",
  36524. height: math.unit(7 + 3/12, "feet"),
  36525. default: true
  36526. },
  36527. {
  36528. name: "Slightly Tall Bat",
  36529. height: math.unit(100, "feet")
  36530. },
  36531. {
  36532. name: "Big Bat",
  36533. height: math.unit(1000, "feet")
  36534. },
  36535. {
  36536. name: "City-Sized Bat",
  36537. height: math.unit(200000, "feet")
  36538. },
  36539. {
  36540. name: "Bigger Bat",
  36541. height: math.unit(10000, "miles")
  36542. },
  36543. {
  36544. name: "Solar Sized Bat",
  36545. height: math.unit(100, "AU")
  36546. },
  36547. {
  36548. name: "Galactic Bat",
  36549. height: math.unit(200000, "lightyears")
  36550. },
  36551. {
  36552. name: "Universally Known Bat",
  36553. height: math.unit(1, "universe")
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(6 + 11/12, "feet"),
  36562. weight: math.unit(250, "lb"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/cookiecat/front.svg",
  36566. extra: 893/827,
  36567. bottom: 14/907
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Micro",
  36574. height: math.unit(3, "inches")
  36575. },
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(6 + 11/12, "feet"),
  36579. default: true
  36580. },
  36581. {
  36582. name: "Macro",
  36583. height: math.unit(100, "feet")
  36584. },
  36585. {
  36586. name: "Macro+",
  36587. height: math.unit(404, "feet")
  36588. },
  36589. {
  36590. name: "Megamacro",
  36591. height: math.unit(165, "miles")
  36592. },
  36593. {
  36594. name: "Planetary",
  36595. height: math.unit(4600, "miles")
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36601. {
  36602. front: {
  36603. height: math.unit(10 + 3/12, "feet"),
  36604. weight: math.unit(1500, "lb"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/tux-kusanagi/front.svg",
  36608. extra: 944/840,
  36609. bottom: 39/983
  36610. }
  36611. },
  36612. back: {
  36613. height: math.unit(10 + 3/12, "feet"),
  36614. weight: math.unit(1500, "lb"),
  36615. name: "Back",
  36616. image: {
  36617. source: "./media/characters/tux-kusanagi/back.svg",
  36618. extra: 941/842,
  36619. bottom: 28/969
  36620. }
  36621. },
  36622. rump: {
  36623. height: math.unit(5.25, "feet"),
  36624. name: "Rump",
  36625. image: {
  36626. source: "./media/characters/tux-kusanagi/rump.svg"
  36627. }
  36628. },
  36629. beak: {
  36630. height: math.unit(1.54, "feet"),
  36631. name: "Beak",
  36632. image: {
  36633. source: "./media/characters/tux-kusanagi/beak.svg"
  36634. }
  36635. },
  36636. },
  36637. [
  36638. {
  36639. name: "Normal",
  36640. height: math.unit(10 + 3/12, "feet"),
  36641. default: true
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(58, "feet"),
  36650. weight: math.unit(200, "tons"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/uzarmazari/front.svg",
  36654. extra: 1575/1455,
  36655. bottom: 152/1727
  36656. }
  36657. },
  36658. back: {
  36659. height: math.unit(58, "feet"),
  36660. weight: math.unit(200, "tons"),
  36661. name: "Back",
  36662. image: {
  36663. source: "./media/characters/uzarmazari/back.svg",
  36664. extra: 1585/1510,
  36665. bottom: 157/1742
  36666. }
  36667. },
  36668. head: {
  36669. height: math.unit(26, "feet"),
  36670. name: "Head",
  36671. image: {
  36672. source: "./media/characters/uzarmazari/head.svg"
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(58, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36686. {
  36687. side: {
  36688. height: math.unit(15, "feet"),
  36689. name: "Side",
  36690. image: {
  36691. source: "./media/characters/akitu/side.svg",
  36692. extra: 1421/1321,
  36693. bottom: 157/1578
  36694. }
  36695. },
  36696. front: {
  36697. height: math.unit(15, "feet"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/akitu/front.svg",
  36701. extra: 1435/1326,
  36702. bottom: 232/1667
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Normal",
  36709. height: math.unit(15, "feet"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(10 + 8/12, "feet"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/azalie-croixland/front.svg",
  36722. extra: 1972/1856,
  36723. bottom: 31/2003
  36724. }
  36725. },
  36726. },
  36727. [
  36728. {
  36729. name: "Original Height",
  36730. height: math.unit(5 + 4/12, "feet")
  36731. },
  36732. {
  36733. name: "Normal Height",
  36734. height: math.unit(10 + 8/12, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36741. {
  36742. side: {
  36743. height: math.unit(7 + 1/12, "feet"),
  36744. weight: math.unit(245, "lb"),
  36745. name: "Side",
  36746. image: {
  36747. source: "./media/characters/kavus-kazian/side.svg",
  36748. extra: 349/342,
  36749. bottom: 15/364
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(7 + 1/12, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36763. {
  36764. normalFront: {
  36765. height: math.unit(5 + 11/12, "feet"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/moonlight-rose/normal-front.svg",
  36769. extra: 1980/1825,
  36770. bottom: 18/1998
  36771. },
  36772. form: "normal",
  36773. default: true
  36774. },
  36775. normalBack: {
  36776. height: math.unit(5 + 11/12, "feet"),
  36777. name: "Back",
  36778. image: {
  36779. source: "./media/characters/moonlight-rose/normal-back.svg",
  36780. extra: 2010/1839,
  36781. bottom: 10/2020
  36782. },
  36783. form: "normal"
  36784. },
  36785. demonFront: {
  36786. height: math.unit(1.5, "earths"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/moonlight-rose/demon.svg",
  36790. extra: 1400/1294,
  36791. bottom: 45/1445
  36792. },
  36793. form: "demon",
  36794. default: true
  36795. },
  36796. terraFront: {
  36797. height: math.unit(1.5, "earths"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/moonlight-rose/terra.svg"
  36801. },
  36802. form: "terra",
  36803. default: true
  36804. },
  36805. jupiterFront: {
  36806. height: math.unit(69911*2, "km"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36810. extra: 1367/1286,
  36811. bottom: 55/1422
  36812. },
  36813. form: "jupiter",
  36814. default: true
  36815. },
  36816. neptuneFront: {
  36817. height: math.unit(24622*2, "feet"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36821. extra: 1851/1712,
  36822. bottom: 0/1851
  36823. },
  36824. form: "neptune",
  36825. default: true
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "\"Natural\" Height",
  36831. height: math.unit(5 + 11/12, "feet"),
  36832. form: "normal"
  36833. },
  36834. {
  36835. name: "Smallest comfortable size",
  36836. height: math.unit(40, "meters"),
  36837. form: "normal"
  36838. },
  36839. {
  36840. name: "Common size",
  36841. height: math.unit(50, "km"),
  36842. form: "normal",
  36843. default: true
  36844. },
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(1.5, "earths"),
  36848. form: "demon",
  36849. default: true
  36850. },
  36851. {
  36852. name: "Universal",
  36853. height: math.unit(15, "universes"),
  36854. form: "demon"
  36855. },
  36856. {
  36857. name: "Earth",
  36858. height: math.unit(1.5, "earths"),
  36859. form: "terra",
  36860. default: true
  36861. },
  36862. {
  36863. name: "Super Earth",
  36864. height: math.unit(67.5, "earths"),
  36865. form: "terra"
  36866. },
  36867. {
  36868. name: "Doesn't fit in a solar system...",
  36869. height: math.unit(1, "galaxy"),
  36870. form: "terra"
  36871. },
  36872. {
  36873. name: "Saturn",
  36874. height: math.unit(58232*2, "km"),
  36875. form: "jupiter"
  36876. },
  36877. {
  36878. name: "Jupiter",
  36879. height: math.unit(69911*2, "km"),
  36880. form: "jupiter",
  36881. default: true
  36882. },
  36883. {
  36884. name: "HD 100546 b",
  36885. height: math.unit(482938, "km"),
  36886. form: "jupiter"
  36887. },
  36888. {
  36889. name: "Enceladus",
  36890. height: math.unit(513*2, "km"),
  36891. form: "neptune"
  36892. },
  36893. {
  36894. name: "Europe",
  36895. height: math.unit(1560*2, "km"),
  36896. form: "neptune"
  36897. },
  36898. {
  36899. name: "Neptune",
  36900. height: math.unit(24622*2, "km"),
  36901. form: "neptune",
  36902. default: true
  36903. },
  36904. {
  36905. name: "CoRoT-9b",
  36906. height: math.unit(75067*2, "km"),
  36907. form: "neptune"
  36908. },
  36909. ],
  36910. {
  36911. "normal": {
  36912. name: "Normal",
  36913. default: true
  36914. },
  36915. "demon": {
  36916. name: "Demon"
  36917. },
  36918. "terra": {
  36919. name: "Terra"
  36920. },
  36921. "jupiter": {
  36922. name: "Jupiter"
  36923. },
  36924. "neptune": {
  36925. name: "Neptune"
  36926. }
  36927. }
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(16, "feet"),
  36934. weight: math.unit(610, "kg"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/huckle/front.svg",
  36938. extra: 1731/1625,
  36939. bottom: 33/1764
  36940. }
  36941. },
  36942. back: {
  36943. height: math.unit(16, "feet"),
  36944. weight: math.unit(610, "kg"),
  36945. name: "Back",
  36946. image: {
  36947. source: "./media/characters/huckle/back.svg",
  36948. extra: 1738/1651,
  36949. bottom: 37/1775
  36950. }
  36951. },
  36952. laughing: {
  36953. height: math.unit(3.75, "feet"),
  36954. name: "Laughing",
  36955. image: {
  36956. source: "./media/characters/huckle/laughing.svg"
  36957. }
  36958. },
  36959. angry: {
  36960. height: math.unit(4.15, "feet"),
  36961. name: "Angry",
  36962. image: {
  36963. source: "./media/characters/huckle/angry.svg"
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Normal",
  36970. height: math.unit(16, "feet"),
  36971. default: true
  36972. },
  36973. {
  36974. name: "Mini Macro",
  36975. height: math.unit(463, "feet")
  36976. },
  36977. {
  36978. name: "Macro",
  36979. height: math.unit(1680, "meters")
  36980. },
  36981. {
  36982. name: "Mega Macro",
  36983. height: math.unit(175, "km")
  36984. },
  36985. {
  36986. name: "Terra Macro",
  36987. height: math.unit(32, "gigameters")
  36988. },
  36989. {
  36990. name: "Multiverse+",
  36991. height: math.unit(2.56e23, "yottameters")
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(6 + 9/12, "feet"),
  37000. weight: math.unit(280, "lb"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/candy/front.svg",
  37004. extra: 234/217,
  37005. bottom: 11/245
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Really Small",
  37012. height: math.unit(0.1, "nm")
  37013. },
  37014. {
  37015. name: "Micro",
  37016. height: math.unit(2, "inches")
  37017. },
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(6 + 9/12, "feet"),
  37021. default: true
  37022. },
  37023. {
  37024. name: "Small Macro",
  37025. height: math.unit(69, "feet")
  37026. },
  37027. {
  37028. name: "Macro",
  37029. height: math.unit(160, "feet")
  37030. },
  37031. {
  37032. name: "Megamacro",
  37033. height: math.unit(22000, "miles")
  37034. },
  37035. {
  37036. name: "Gigamacro",
  37037. height: math.unit(50000, "miles")
  37038. },
  37039. ]
  37040. ))
  37041. characterMakers.push(() => makeCharacter(
  37042. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37043. {
  37044. front: {
  37045. height: math.unit(4, "feet"),
  37046. weight: math.unit(90, "lb"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/joey-mcdonald/front.svg",
  37050. extra: 1059/852,
  37051. bottom: 33/1092
  37052. }
  37053. },
  37054. back: {
  37055. height: math.unit(4, "feet"),
  37056. weight: math.unit(90, "lb"),
  37057. name: "Back",
  37058. image: {
  37059. source: "./media/characters/joey-mcdonald/back.svg",
  37060. extra: 1077/879,
  37061. bottom: 5/1082
  37062. }
  37063. },
  37064. frontKobold: {
  37065. height: math.unit(4, "feet"),
  37066. weight: math.unit(100, "lb"),
  37067. name: "Front-kobold",
  37068. image: {
  37069. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37070. extra: 1480/1367,
  37071. bottom: 0/1480
  37072. }
  37073. },
  37074. backKobold: {
  37075. height: math.unit(4, "feet"),
  37076. weight: math.unit(100, "lb"),
  37077. name: "Back-kobold",
  37078. image: {
  37079. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37080. extra: 1449/1361,
  37081. bottom: 0/1449
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(4, "feet"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(12 + 6/12, "feet"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/kass-lockheed/front.svg",
  37101. extra: 354/343,
  37102. bottom: 9/363
  37103. }
  37104. },
  37105. back: {
  37106. height: math.unit(12 + 6/12, "feet"),
  37107. name: "Back",
  37108. image: {
  37109. source: "./media/characters/kass-lockheed/back.svg",
  37110. extra: 364/352,
  37111. bottom: 3/367
  37112. }
  37113. },
  37114. dick: {
  37115. height: math.unit(3.12, "feet"),
  37116. name: "Dick",
  37117. image: {
  37118. source: "./media/characters/kass-lockheed/dick.svg"
  37119. }
  37120. },
  37121. head: {
  37122. height: math.unit(2.6, "feet"),
  37123. name: "Head",
  37124. image: {
  37125. source: "./media/characters/kass-lockheed/head.svg"
  37126. }
  37127. },
  37128. bleh: {
  37129. height: math.unit(2.85, "feet"),
  37130. name: "Bleh",
  37131. image: {
  37132. source: "./media/characters/kass-lockheed/bleh.svg"
  37133. }
  37134. },
  37135. smug: {
  37136. height: math.unit(2.85, "feet"),
  37137. name: "Smug",
  37138. image: {
  37139. source: "./media/characters/kass-lockheed/smug.svg"
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(12 + 6/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(6 + 2/12, "feet"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/taylor/front.svg",
  37159. extra: 639/495,
  37160. bottom: 12/651
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(6 + 2/12, "feet"),
  37168. default: true
  37169. },
  37170. {
  37171. name: "Big",
  37172. height: math.unit(15, "feet")
  37173. },
  37174. {
  37175. name: "Lorg",
  37176. height: math.unit(80, "feet")
  37177. },
  37178. {
  37179. name: "Too Lorg",
  37180. height: math.unit(120, "feet")
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(15, "feet"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/kaizer/front.svg",
  37192. extra: 1612/1436,
  37193. bottom: 43/1655
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(15, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(2, "feet"),
  37210. weight: math.unit(30, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/sandy/front.svg",
  37214. extra: 1439/1307,
  37215. bottom: 194/1633
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(2, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(3, "feet"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/mellvi/front.svg",
  37235. extra: 1831/1630,
  37236. bottom: 58/1889
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(3, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(5 + 11/12, "feet"),
  37253. weight: math.unit(200, "lb"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/shirou/front.svg",
  37257. extra: 2491/2383,
  37258. bottom: 189/2680
  37259. }
  37260. },
  37261. back: {
  37262. height: math.unit(5 + 11/12, "feet"),
  37263. weight: math.unit(200, "lb"),
  37264. name: "Back",
  37265. image: {
  37266. source: "./media/characters/shirou/back.svg",
  37267. extra: 2554/2450,
  37268. bottom: 76/2630
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(5 + 11/12, "feet"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(6 + 3/12, "feet"),
  37285. weight: math.unit(177, "lb"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/noryu/front.svg",
  37289. extra: 973/885,
  37290. bottom: 10/983
  37291. }
  37292. },
  37293. },
  37294. [
  37295. {
  37296. name: "Normal",
  37297. height: math.unit(6 + 3/12, "feet"),
  37298. default: true
  37299. },
  37300. ]
  37301. ))
  37302. characterMakers.push(() => makeCharacter(
  37303. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37304. {
  37305. front: {
  37306. height: math.unit(5 + 6/12, "feet"),
  37307. weight: math.unit(170, "lb"),
  37308. name: "Front",
  37309. image: {
  37310. source: "./media/characters/mevolas-rubenido/front.svg",
  37311. extra: 2109/1901,
  37312. bottom: 96/2205
  37313. }
  37314. },
  37315. },
  37316. [
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(5 + 6/12, "feet"),
  37320. default: true
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(100, "feet"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/dee/front.svg",
  37332. extra: 2153/2036,
  37333. bottom: 59/2212
  37334. }
  37335. },
  37336. back: {
  37337. height: math.unit(100, "feet"),
  37338. name: "Back",
  37339. image: {
  37340. source: "./media/characters/dee/back.svg",
  37341. extra: 2183/2058,
  37342. bottom: 75/2258
  37343. }
  37344. },
  37345. foot: {
  37346. height: math.unit(19.43, "feet"),
  37347. name: "Foot",
  37348. image: {
  37349. source: "./media/characters/dee/foot.svg"
  37350. }
  37351. },
  37352. hoof: {
  37353. height: math.unit(20.6, "feet"),
  37354. name: "Hoof",
  37355. image: {
  37356. source: "./media/characters/dee/hoof.svg"
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Macro",
  37363. height: math.unit(100, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(5 + 6/12, "feet"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/teh/front.svg",
  37376. extra: 1002/847,
  37377. bottom: 62/1064
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(5 + 6/12, "feet"),
  37385. default: true
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37391. {
  37392. side: {
  37393. height: math.unit(6 + 1/12, "feet"),
  37394. weight: math.unit(204, "lb"),
  37395. name: "Side",
  37396. image: {
  37397. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37398. extra: 974/775,
  37399. bottom: 169/1143
  37400. }
  37401. },
  37402. sitting: {
  37403. height: math.unit(6 + 2/12, "feet"),
  37404. weight: math.unit(204, "lb"),
  37405. name: "Sitting",
  37406. image: {
  37407. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37408. extra: 1175/964,
  37409. bottom: 378/1553
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(6 + 1/12, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(6, "inches"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/tululi/front.svg",
  37429. extra: 1997/1876,
  37430. bottom: 20/2017
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(6, "inches"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(4 + 1/12, "feet"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/star/front.svg",
  37450. extra: 1493/1189,
  37451. bottom: 48/1541
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(4 + 1/12, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(6 + 3/12, "feet"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/comet/front.svg",
  37471. extra: 1681/1462,
  37472. bottom: 26/1707
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(6 + 3/12, "feet"),
  37480. default: true
  37481. },
  37482. ]
  37483. ))
  37484. characterMakers.push(() => makeCharacter(
  37485. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37486. {
  37487. front: {
  37488. height: math.unit(950, "feet"),
  37489. name: "Front",
  37490. image: {
  37491. source: "./media/characters/vortex/front.svg",
  37492. extra: 1497/1434,
  37493. bottom: 56/1553
  37494. }
  37495. },
  37496. maw: {
  37497. height: math.unit(285, "feet"),
  37498. name: "Maw",
  37499. image: {
  37500. source: "./media/characters/vortex/maw.svg"
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Macro",
  37507. height: math.unit(950, "feet"),
  37508. default: true
  37509. },
  37510. ]
  37511. ))
  37512. characterMakers.push(() => makeCharacter(
  37513. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37514. {
  37515. front: {
  37516. height: math.unit(600, "feet"),
  37517. weight: math.unit(0.02, "grams"),
  37518. name: "Front",
  37519. image: {
  37520. source: "./media/characters/doodle/front.svg",
  37521. extra: 1578/1413,
  37522. bottom: 37/1615
  37523. }
  37524. },
  37525. },
  37526. [
  37527. {
  37528. name: "Macro",
  37529. height: math.unit(600, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(6 + 6/12, "feet"),
  37539. name: "Front",
  37540. image: {
  37541. source: "./media/characters/jai/front.svg",
  37542. extra: 1645/1534,
  37543. bottom: 115/1760
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(6 + 6/12, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(6 + 8/12, "feet"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/pixel/front.svg",
  37563. extra: 1900/1735,
  37564. bottom: 63/1963
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(6 + 8/12, "feet"),
  37572. default: true
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37578. {
  37579. back: {
  37580. height: math.unit(4 + 1/12, "feet"),
  37581. weight: math.unit(75, "lb"),
  37582. name: "Back",
  37583. image: {
  37584. source: "./media/characters/rhett/back.svg",
  37585. extra: 930/878,
  37586. bottom: 25/955
  37587. }
  37588. },
  37589. front: {
  37590. height: math.unit(4 + 1/12, "feet"),
  37591. weight: math.unit(75, "lb"),
  37592. name: "Front",
  37593. image: {
  37594. source: "./media/characters/rhett/front.svg",
  37595. extra: 1682/1586,
  37596. bottom: 92/1774
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Micro",
  37603. height: math.unit(8, "inches")
  37604. },
  37605. {
  37606. name: "Tiny",
  37607. height: math.unit(2, "feet")
  37608. },
  37609. {
  37610. name: "Normal",
  37611. height: math.unit(4 + 1/12, "feet"),
  37612. default: true
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(3 + 3/12, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/penny/front.svg",
  37624. extra: 1406/1311,
  37625. bottom: 26/1432
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(3 + 3/12, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(4 + 11/12, "feet"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/monty/front.svg",
  37645. extra: 1479/1209,
  37646. bottom: 0/1479
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(4 + 11/12, "feet"),
  37654. default: true
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37660. {
  37661. front: {
  37662. height: math.unit(8 + 4/12, "feet"),
  37663. name: "Front",
  37664. image: {
  37665. source: "./media/characters/sterling/front.svg",
  37666. extra: 1420/1236,
  37667. bottom: 27/1447
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(8 + 4/12, "feet"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(15, "feet"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/marble/front.svg",
  37687. extra: 973/937,
  37688. bottom: 32/1005
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(15, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37702. {
  37703. front: {
  37704. height: math.unit(3, "inches"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/powder/front.svg",
  37708. extra: 1504/1334,
  37709. bottom: 518/2022
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(3, "inches"),
  37717. default: true
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37723. {
  37724. front: {
  37725. height: math.unit(4 + 5/12, "feet"),
  37726. name: "Front",
  37727. image: {
  37728. source: "./media/characters/joey-raccoon/front.svg",
  37729. extra: 1273/1197,
  37730. bottom: 0/1273
  37731. }
  37732. },
  37733. },
  37734. [
  37735. {
  37736. name: "Normal",
  37737. height: math.unit(4 + 5/12, "feet"),
  37738. default: true
  37739. },
  37740. ]
  37741. ))
  37742. characterMakers.push(() => makeCharacter(
  37743. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37744. {
  37745. front: {
  37746. height: math.unit(8 + 4/12, "feet"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/vick/front.svg",
  37750. extra: 2187/2118,
  37751. bottom: 47/2234
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(8 + 4/12, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(5 + 5/12, "feet"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/mitsy/front.svg",
  37771. extra: 1842/1695,
  37772. bottom: 0/1842
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(5 + 5/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(6 + 3/12, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/silvy/front.svg",
  37792. extra: 1995/1836,
  37793. bottom: 225/2220
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(6 + 3/12, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(3 + 8/12, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/rodney/front.svg",
  37813. extra: 1956/1747,
  37814. bottom: 31/1987
  37815. }
  37816. },
  37817. frontDressed: {
  37818. height: math.unit(2.9, "feet"),
  37819. name: "Front (Dressed)",
  37820. image: {
  37821. source: "./media/characters/rodney/front-dressed.svg",
  37822. extra: 1382/1241,
  37823. bottom: 385/1767
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(3 + 8/12, "feet"),
  37831. default: true
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(5 + 9/12, "feet"),
  37840. weight: math.unit(194, "lbs"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/zakail-sudekai/front.svg",
  37844. extra: 2696/2533,
  37845. bottom: 248/2944
  37846. }
  37847. },
  37848. maw: {
  37849. height: math.unit(1.35, "feet"),
  37850. name: "Maw",
  37851. image: {
  37852. source: "./media/characters/zakail-sudekai/maw.svg"
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Normal",
  37859. height: math.unit(5 + 9/12, "feet"),
  37860. default: true
  37861. },
  37862. ]
  37863. ))
  37864. characterMakers.push(() => makeCharacter(
  37865. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37866. {
  37867. front: {
  37868. height: math.unit(8 + 4/12, "feet"),
  37869. weight: math.unit(1200, "lb"),
  37870. name: "Front",
  37871. image: {
  37872. source: "./media/characters/eleanor/front.svg",
  37873. extra: 1226/1192,
  37874. bottom: 52/1278
  37875. }
  37876. },
  37877. back: {
  37878. height: math.unit(8 + 4/12, "feet"),
  37879. weight: math.unit(1200, "lb"),
  37880. name: "Back",
  37881. image: {
  37882. source: "./media/characters/eleanor/back.svg",
  37883. extra: 1242/1184,
  37884. bottom: 60/1302
  37885. }
  37886. },
  37887. head: {
  37888. height: math.unit(2.62, "feet"),
  37889. name: "Head",
  37890. image: {
  37891. source: "./media/characters/eleanor/head.svg"
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(8 + 4/12, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(8 + 4/12, "feet"),
  37908. weight: math.unit(750, "lb"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/tanya/front.svg",
  37912. extra: 1749/1615,
  37913. bottom: 33/1782
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(8 + 4/12, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(5, "feet"),
  37930. weight: math.unit(225, "lb"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/cindy/front.svg",
  37934. extra: 1320/1250,
  37935. bottom: 42/1362
  37936. }
  37937. },
  37938. frontDressed: {
  37939. height: math.unit(5, "feet"),
  37940. weight: math.unit(225, "lb"),
  37941. name: "Front (Dressed)",
  37942. image: {
  37943. source: "./media/characters/cindy/front-dressed.svg",
  37944. extra: 1320/1250,
  37945. bottom: 42/1362
  37946. }
  37947. },
  37948. back: {
  37949. height: math.unit(5, "feet"),
  37950. weight: math.unit(225, "lb"),
  37951. name: "Back",
  37952. image: {
  37953. source: "./media/characters/cindy/back.svg",
  37954. extra: 1384/1346,
  37955. bottom: 14/1398
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(5, "feet"),
  37963. default: true
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(6 + 9/12, "feet"),
  37972. weight: math.unit(440, "lb"),
  37973. name: "Front",
  37974. image: {
  37975. source: "./media/characters/wilbur-owen/front.svg",
  37976. extra: 1575/1448,
  37977. bottom: 72/1647
  37978. }
  37979. },
  37980. back: {
  37981. height: math.unit(6 + 9/12, "feet"),
  37982. weight: math.unit(440, "lb"),
  37983. name: "Back",
  37984. image: {
  37985. source: "./media/characters/wilbur-owen/back.svg",
  37986. extra: 1578/1445,
  37987. bottom: 36/1614
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(6 + 9/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(6 + 5/12, "feet"),
  38004. weight: math.unit(650, "lb"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/keegan/front.svg",
  38008. extra: 2387/2198,
  38009. bottom: 33/2420
  38010. }
  38011. },
  38012. side: {
  38013. height: math.unit(6 + 5/12, "feet"),
  38014. weight: math.unit(650, "lb"),
  38015. name: "Side",
  38016. image: {
  38017. source: "./media/characters/keegan/side.svg",
  38018. extra: 2390/2202,
  38019. bottom: 47/2437
  38020. }
  38021. },
  38022. back: {
  38023. height: math.unit(6 + 5/12, "feet"),
  38024. weight: math.unit(650, "lb"),
  38025. name: "Back",
  38026. image: {
  38027. source: "./media/characters/keegan/back.svg",
  38028. extra: 2418/2268,
  38029. bottom: 15/2433
  38030. }
  38031. },
  38032. frontSfw: {
  38033. height: math.unit(6 + 5/12, "feet"),
  38034. weight: math.unit(650, "lb"),
  38035. name: "Front (SFW)",
  38036. image: {
  38037. source: "./media/characters/keegan/front-sfw.svg",
  38038. extra: 2387/2198,
  38039. bottom: 33/2420
  38040. }
  38041. },
  38042. beans: {
  38043. height: math.unit(1.85, "feet"),
  38044. name: "Beans",
  38045. image: {
  38046. source: "./media/characters/keegan/beans.svg"
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(6 + 5/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(9, "feet"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/colton/front.svg",
  38066. extra: 1589/1326,
  38067. bottom: 139/1728
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(9, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(2 + 9/12, "feet"),
  38084. name: "Front",
  38085. image: {
  38086. source: "./media/characters/bora/front.svg",
  38087. extra: 1265/1250,
  38088. bottom: 24/1289
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Normal",
  38095. height: math.unit(2 + 9/12, "feet"),
  38096. default: true
  38097. },
  38098. ]
  38099. ))
  38100. characterMakers.push(() => makeCharacter(
  38101. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38102. {
  38103. front: {
  38104. height: math.unit(8, "feet"),
  38105. name: "Front",
  38106. image: {
  38107. source: "./media/characters/myu-myu/front.svg",
  38108. extra: 1949/1857,
  38109. bottom: 90/2039
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(8, "feet"),
  38117. default: true
  38118. },
  38119. {
  38120. name: "Big",
  38121. height: math.unit(15, "feet")
  38122. },
  38123. {
  38124. name: "BIG",
  38125. height: math.unit(25, "feet")
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38131. {
  38132. side: {
  38133. height: math.unit(7 + 5/12, "feet"),
  38134. weight: math.unit(2800, "lb"),
  38135. name: "Side",
  38136. image: {
  38137. source: "./media/characters/haloren/side.svg",
  38138. extra: 1793/409,
  38139. bottom: 59/1852
  38140. }
  38141. },
  38142. frontPaw: {
  38143. height: math.unit(2.36, "feet"),
  38144. name: "Front paw",
  38145. image: {
  38146. source: "./media/characters/haloren/front-paw.svg"
  38147. }
  38148. },
  38149. hindPaw: {
  38150. height: math.unit(3.18, "feet"),
  38151. name: "Hind paw",
  38152. image: {
  38153. source: "./media/characters/haloren/hind-paw.svg"
  38154. }
  38155. },
  38156. maw: {
  38157. height: math.unit(5.05, "feet"),
  38158. name: "Maw",
  38159. image: {
  38160. source: "./media/characters/haloren/maw.svg"
  38161. }
  38162. },
  38163. dick: {
  38164. height: math.unit(2.90, "feet"),
  38165. name: "Dick",
  38166. image: {
  38167. source: "./media/characters/haloren/dick.svg"
  38168. }
  38169. },
  38170. },
  38171. [
  38172. {
  38173. name: "Normal",
  38174. height: math.unit(7 + 5/12, "feet"),
  38175. default: true
  38176. },
  38177. {
  38178. name: "Enhanced",
  38179. height: math.unit(14 + 3/12, "feet")
  38180. },
  38181. ]
  38182. ))
  38183. characterMakers.push(() => makeCharacter(
  38184. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38185. {
  38186. front: {
  38187. height: math.unit(171, "cm"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/kimmy/front.svg",
  38191. extra: 1491/1435,
  38192. bottom: 53/1544
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Small",
  38199. height: math.unit(9, "cm")
  38200. },
  38201. {
  38202. name: "Normal",
  38203. height: math.unit(171, "cm"),
  38204. default: true
  38205. },
  38206. ]
  38207. ))
  38208. characterMakers.push(() => makeCharacter(
  38209. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38210. {
  38211. front: {
  38212. height: math.unit(8, "feet"),
  38213. weight: math.unit(300, "lb"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/galeboomer/front.svg",
  38217. extra: 4651/4415,
  38218. bottom: 162/4813
  38219. }
  38220. },
  38221. back: {
  38222. height: math.unit(8, "feet"),
  38223. weight: math.unit(300, "lb"),
  38224. name: "Back",
  38225. image: {
  38226. source: "./media/characters/galeboomer/back.svg",
  38227. extra: 4544/4314,
  38228. bottom: 16/4560
  38229. }
  38230. },
  38231. frontAlt: {
  38232. height: math.unit(8, "feet"),
  38233. weight: math.unit(300, "lb"),
  38234. name: "Front (Alt)",
  38235. image: {
  38236. source: "./media/characters/galeboomer/front-alt.svg",
  38237. extra: 4458/4228,
  38238. bottom: 68/4526
  38239. }
  38240. },
  38241. maw: {
  38242. height: math.unit(1.2, "feet"),
  38243. name: "Maw",
  38244. image: {
  38245. source: "./media/characters/galeboomer/maw.svg"
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(8, "feet"),
  38253. default: true
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38259. {
  38260. front: {
  38261. height: math.unit(5 + 9/12, "feet"),
  38262. weight: math.unit(120, "lb"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/chyr/front.svg",
  38266. extra: 1323/1254,
  38267. bottom: 63/1386
  38268. }
  38269. },
  38270. back: {
  38271. height: math.unit(5 + 9/12, "feet"),
  38272. weight: math.unit(120, "lb"),
  38273. name: "Back",
  38274. image: {
  38275. source: "./media/characters/chyr/back.svg",
  38276. extra: 1323/1252,
  38277. bottom: 48/1371
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(5 + 9/12, "feet"),
  38285. default: true
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38291. {
  38292. front: {
  38293. height: math.unit(7, "feet"),
  38294. weight: math.unit(310, "lb"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/solarus/front.svg",
  38298. extra: 2415/2021,
  38299. bottom: 103/2518
  38300. }
  38301. },
  38302. back: {
  38303. height: math.unit(7, "feet"),
  38304. weight: math.unit(310, "lb"),
  38305. name: "Back",
  38306. image: {
  38307. source: "./media/characters/solarus/back.svg",
  38308. extra: 2463/2089,
  38309. bottom: 79/2542
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Normal",
  38316. height: math.unit(7, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38323. {
  38324. front: {
  38325. height: math.unit(16, "feet"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38329. extra: 1844/1780,
  38330. bottom: 58/1902
  38331. }
  38332. },
  38333. winterCoat: {
  38334. height: math.unit(16, "feet"),
  38335. name: "Winter Coat",
  38336. image: {
  38337. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38338. extra: 1807/1775,
  38339. bottom: 69/1876
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(16, "feet"),
  38347. default: true
  38348. },
  38349. {
  38350. name: "Chicago Size",
  38351. height: math.unit(560, "feet")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(11 + 6/12, "feet"),
  38360. weight: math.unit(1366, "lb"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/lexor/front.svg",
  38364. extra: 1560/1481,
  38365. bottom: 211/1771
  38366. }
  38367. },
  38368. back: {
  38369. height: math.unit(11 + 6/12, "feet"),
  38370. weight: math.unit(1366, "lb"),
  38371. name: "Back",
  38372. image: {
  38373. source: "./media/characters/lexor/back.svg",
  38374. extra: 1614/1533,
  38375. bottom: 76/1690
  38376. }
  38377. },
  38378. maw: {
  38379. height: math.unit(3, "feet"),
  38380. name: "Maw",
  38381. image: {
  38382. source: "./media/characters/lexor/maw.svg"
  38383. }
  38384. },
  38385. dick: {
  38386. height: math.unit(2.59, "feet"),
  38387. name: "Dick",
  38388. image: {
  38389. source: "./media/characters/lexor/dick.svg"
  38390. }
  38391. },
  38392. },
  38393. [
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(11 + 6/12, "feet"),
  38397. default: true
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38403. {
  38404. front: {
  38405. height: math.unit(5 + 8/12, "feet"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/magnum/front.svg",
  38409. extra: 942/855,
  38410. bottom: 26/968
  38411. }
  38412. },
  38413. },
  38414. [
  38415. {
  38416. name: "Normal",
  38417. height: math.unit(5 + 8/12, "feet"),
  38418. default: true
  38419. },
  38420. ]
  38421. ))
  38422. characterMakers.push(() => makeCharacter(
  38423. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38424. {
  38425. front: {
  38426. height: math.unit(18 + 4/12, "feet"),
  38427. weight: math.unit(1500, "kg"),
  38428. name: "Front",
  38429. image: {
  38430. source: "./media/characters/solas-sharpsman/front.svg",
  38431. extra: 1698/1589,
  38432. bottom: 0/1698
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(18 + 4/12, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(5 + 5/12, "feet"),
  38449. weight: math.unit(180, "lb"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/october/front.svg",
  38453. extra: 1800/1650,
  38454. bottom: 0/1800
  38455. }
  38456. },
  38457. frontNsfw: {
  38458. height: math.unit(5 + 5/12, "feet"),
  38459. weight: math.unit(180, "lb"),
  38460. name: "Front (NSFW)",
  38461. image: {
  38462. source: "./media/characters/october/front-nsfw.svg",
  38463. extra: 1392/1307,
  38464. bottom: 42/1434
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(5 + 5/12, "feet"),
  38472. default: true
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(8 + 6/12, "feet"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/essynkardi/front.svg",
  38484. extra: 1914/1846,
  38485. bottom: 22/1936
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(8 + 6/12, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(6 + 6/12, "feet"),
  38502. weight: math.unit(7, "lb"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/icky/front.svg",
  38506. extra: 813/782,
  38507. bottom: 66/879
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(6 + 6/12, "feet"),
  38512. weight: math.unit(7, "lb"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/icky/back.svg",
  38516. extra: 754/735,
  38517. bottom: 56/810
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(6 + 6/12, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(15, "feet"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/rojas/front.svg",
  38537. extra: 1462/1408,
  38538. bottom: 95/1557
  38539. }
  38540. },
  38541. back: {
  38542. height: math.unit(15, "feet"),
  38543. name: "Back",
  38544. image: {
  38545. source: "./media/characters/rojas/back.svg",
  38546. extra: 1023/954,
  38547. bottom: 28/1051
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(15, "feet"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38561. {
  38562. frontHuman: {
  38563. height: math.unit(5 + 7/12, "feet"),
  38564. name: "Front (Human)",
  38565. image: {
  38566. source: "./media/characters/alek-dryagan/front-human.svg",
  38567. extra: 1687/1667,
  38568. bottom: 69/1756
  38569. }
  38570. },
  38571. backHuman: {
  38572. height: math.unit(5 + 7/12, "feet"),
  38573. name: "Back (Human)",
  38574. image: {
  38575. source: "./media/characters/alek-dryagan/back-human.svg",
  38576. extra: 1670/1649,
  38577. bottom: 65/1735
  38578. }
  38579. },
  38580. frontDemi: {
  38581. height: math.unit(65, "feet"),
  38582. name: "Front (Demi)",
  38583. image: {
  38584. source: "./media/characters/alek-dryagan/front-demi.svg",
  38585. extra: 1669/1642,
  38586. bottom: 49/1718
  38587. }
  38588. },
  38589. backDemi: {
  38590. height: math.unit(65, "feet"),
  38591. name: "Back (Demi)",
  38592. image: {
  38593. source: "./media/characters/alek-dryagan/back-demi.svg",
  38594. extra: 1658/1637,
  38595. bottom: 40/1698
  38596. }
  38597. },
  38598. mawHuman: {
  38599. height: math.unit(0.3, "feet"),
  38600. name: "Maw (Human)",
  38601. image: {
  38602. source: "./media/characters/alek-dryagan/maw-human.svg"
  38603. }
  38604. },
  38605. mawDemi: {
  38606. height: math.unit(3.8, "feet"),
  38607. name: "Maw (Demi)",
  38608. image: {
  38609. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Normal",
  38616. height: math.unit(5 + 7/12, "feet"),
  38617. default: true
  38618. },
  38619. ]
  38620. ))
  38621. characterMakers.push(() => makeCharacter(
  38622. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38623. {
  38624. frontHuman: {
  38625. height: math.unit(5 + 2/12, "feet"),
  38626. name: "Front (Human)",
  38627. image: {
  38628. source: "./media/characters/gen/front-human.svg",
  38629. extra: 1627/1538,
  38630. bottom: 71/1698
  38631. }
  38632. },
  38633. backHuman: {
  38634. height: math.unit(5 + 2/12, "feet"),
  38635. name: "Back (Human)",
  38636. image: {
  38637. source: "./media/characters/gen/back-human.svg",
  38638. extra: 1638/1548,
  38639. bottom: 69/1707
  38640. }
  38641. },
  38642. frontDemi: {
  38643. height: math.unit(5 + 2/12, "feet"),
  38644. name: "Front (Demi)",
  38645. image: {
  38646. source: "./media/characters/gen/front-demi.svg",
  38647. extra: 1627/1538,
  38648. bottom: 71/1698
  38649. }
  38650. },
  38651. backDemi: {
  38652. height: math.unit(5 + 2/12, "feet"),
  38653. name: "Back (Demi)",
  38654. image: {
  38655. source: "./media/characters/gen/back-demi.svg",
  38656. extra: 1638/1548,
  38657. bottom: 69/1707
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(5 + 2/12, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38671. {
  38672. frontImp: {
  38673. height: math.unit(1 + 11/12, "feet"),
  38674. name: "Front (Imp)",
  38675. image: {
  38676. source: "./media/characters/max-kobold/front-imp.svg",
  38677. extra: 1238/1134,
  38678. bottom: 81/1319
  38679. }
  38680. },
  38681. backImp: {
  38682. height: math.unit(1 + 11/12, "feet"),
  38683. name: "Back (Imp)",
  38684. image: {
  38685. source: "./media/characters/max-kobold/back-imp.svg",
  38686. extra: 1334/1175,
  38687. bottom: 34/1368
  38688. }
  38689. },
  38690. frontDemi: {
  38691. height: math.unit(5 + 9/12, "feet"),
  38692. name: "Front (Demi)",
  38693. image: {
  38694. source: "./media/characters/max-kobold/front-demi.svg",
  38695. extra: 1715/1685,
  38696. bottom: 54/1769
  38697. }
  38698. },
  38699. backDemi: {
  38700. height: math.unit(5 + 9/12, "feet"),
  38701. name: "Back (Demi)",
  38702. image: {
  38703. source: "./media/characters/max-kobold/back-demi.svg",
  38704. extra: 1752/1729,
  38705. bottom: 41/1793
  38706. }
  38707. },
  38708. handImp: {
  38709. height: math.unit(0.45, "feet"),
  38710. name: "Hand (Imp)",
  38711. image: {
  38712. source: "./media/characters/max-kobold/hand.svg"
  38713. }
  38714. },
  38715. pawImp: {
  38716. height: math.unit(0.46, "feet"),
  38717. name: "Paw (Imp)",
  38718. image: {
  38719. source: "./media/characters/max-kobold/paw.svg"
  38720. }
  38721. },
  38722. handDemi: {
  38723. height: math.unit(0.80, "feet"),
  38724. name: "Hand (Demi)",
  38725. image: {
  38726. source: "./media/characters/max-kobold/hand.svg"
  38727. }
  38728. },
  38729. pawDemi: {
  38730. height: math.unit(1.1, "feet"),
  38731. name: "Paw (Demi)",
  38732. image: {
  38733. source: "./media/characters/max-kobold/paw.svg"
  38734. }
  38735. },
  38736. headImp: {
  38737. height: math.unit(1.33, "feet"),
  38738. name: "Head (Imp)",
  38739. image: {
  38740. source: "./media/characters/max-kobold/head-imp.svg"
  38741. }
  38742. },
  38743. mawImp: {
  38744. height: math.unit(0.75, "feet"),
  38745. name: "Maw (Imp)",
  38746. image: {
  38747. source: "./media/characters/max-kobold/maw-imp.svg"
  38748. }
  38749. },
  38750. mawDemi: {
  38751. height: math.unit(0.42, "feet"),
  38752. name: "Maw (Demi)",
  38753. image: {
  38754. source: "./media/characters/max-kobold/maw-demi.svg"
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Normal",
  38761. height: math.unit(1 + 11/12, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(7 + 5/12, "feet"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/carbon/front.svg",
  38774. extra: 1754/1689,
  38775. bottom: 65/1819
  38776. }
  38777. },
  38778. back: {
  38779. height: math.unit(7 + 5/12, "feet"),
  38780. name: "Back",
  38781. image: {
  38782. source: "./media/characters/carbon/back.svg",
  38783. extra: 1762/1695,
  38784. bottom: 24/1786
  38785. }
  38786. },
  38787. frontGigantamax: {
  38788. height: math.unit(150, "feet"),
  38789. name: "Front (Gigantamax)",
  38790. image: {
  38791. source: "./media/characters/carbon/front-gigantamax.svg",
  38792. extra: 1826/1669,
  38793. bottom: 59/1885
  38794. }
  38795. },
  38796. backGigantamax: {
  38797. height: math.unit(150, "feet"),
  38798. name: "Back (Gigantamax)",
  38799. image: {
  38800. source: "./media/characters/carbon/back-gigantamax.svg",
  38801. extra: 1796/1653,
  38802. bottom: 53/1849
  38803. }
  38804. },
  38805. maw: {
  38806. height: math.unit(0.48, "feet"),
  38807. name: "Maw",
  38808. image: {
  38809. source: "./media/characters/carbon/maw.svg"
  38810. }
  38811. },
  38812. mawGigantamax: {
  38813. height: math.unit(7.5, "feet"),
  38814. name: "Maw (Gigantamax)",
  38815. image: {
  38816. source: "./media/characters/carbon/maw-gigantamax.svg"
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Normal",
  38823. height: math.unit(7 + 5/12, "feet"),
  38824. default: true
  38825. },
  38826. ]
  38827. ))
  38828. characterMakers.push(() => makeCharacter(
  38829. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38830. {
  38831. front: {
  38832. height: math.unit(6, "feet"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/maverick/front.svg",
  38836. extra: 1672/1661,
  38837. bottom: 85/1757
  38838. }
  38839. },
  38840. back: {
  38841. height: math.unit(6, "feet"),
  38842. name: "Back",
  38843. image: {
  38844. source: "./media/characters/maverick/back.svg",
  38845. extra: 1642/1631,
  38846. bottom: 38/1680
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(6, "feet"),
  38854. default: true
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(15, "feet"),
  38863. weight: math.unit(615, "lb"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/grockle/front.svg",
  38867. extra: 1535/1427,
  38868. bottom: 56/1591
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(15, "feet"),
  38876. default: true
  38877. },
  38878. {
  38879. name: "Large",
  38880. height: math.unit(150, "feet")
  38881. },
  38882. {
  38883. name: "Macro",
  38884. height: math.unit(1876, "feet")
  38885. },
  38886. {
  38887. name: "Mega Macro",
  38888. height: math.unit(121940, "feet")
  38889. },
  38890. {
  38891. name: "Giga Macro",
  38892. height: math.unit(750, "km")
  38893. },
  38894. {
  38895. name: "Tera Macro",
  38896. height: math.unit(750000, "km")
  38897. },
  38898. {
  38899. name: "Galactic",
  38900. height: math.unit(1.4e5, "km")
  38901. },
  38902. {
  38903. name: "Godlike",
  38904. height: math.unit(9.8e280, "galaxies")
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(11, "meters"),
  38913. weight: math.unit(20, "tonnes"),
  38914. name: "Front",
  38915. image: {
  38916. source: "./media/characters/alistair/front.svg",
  38917. extra: 1265/1009,
  38918. bottom: 93/1358
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Normal",
  38925. height: math.unit(11, "meters"),
  38926. default: true
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(5 + 8/12, "feet"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/haruka/front.svg",
  38938. extra: 2012/1952,
  38939. bottom: 0/2012
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(5 + 8/12, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38953. {
  38954. back: {
  38955. height: math.unit(9, "feet"),
  38956. name: "Back",
  38957. image: {
  38958. source: "./media/characters/vivian-sylveon/back.svg",
  38959. extra: 1853/1714,
  38960. bottom: 0/1853
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(9, "feet"),
  38968. default: true
  38969. },
  38970. {
  38971. name: "Macro",
  38972. height: math.unit(500, "feet")
  38973. },
  38974. {
  38975. name: "Megamacro",
  38976. height: math.unit(600, "miles")
  38977. },
  38978. {
  38979. name: "Gigamacro",
  38980. height: math.unit(30000, "miles")
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38986. {
  38987. anthro: {
  38988. height: math.unit(5 + 10/12, "feet"),
  38989. weight: math.unit(100, "lb"),
  38990. name: "Anthro",
  38991. image: {
  38992. source: "./media/characters/daiki/anthro.svg",
  38993. extra: 1115/1027,
  38994. bottom: 69/1184
  38995. }
  38996. },
  38997. feral: {
  38998. height: math.unit(200, "feet"),
  38999. name: "Feral",
  39000. image: {
  39001. source: "./media/characters/daiki/feral.svg",
  39002. extra: 1256/313,
  39003. bottom: 39/1295
  39004. }
  39005. },
  39006. feralHead: {
  39007. height: math.unit(171, "feet"),
  39008. name: "Feral Head",
  39009. image: {
  39010. source: "./media/characters/daiki/feral-head.svg"
  39011. }
  39012. },
  39013. manaDragon: {
  39014. height: math.unit(170, "meters"),
  39015. name: "Mana-dragon",
  39016. image: {
  39017. source: "./media/characters/daiki/mana-dragon.svg",
  39018. extra: 763/420,
  39019. bottom: 97/860
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(5 + 10/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39033. {
  39034. fullyEquippedFront: {
  39035. height: math.unit(3 + 1/12, "feet"),
  39036. weight: math.unit(24, "lb"),
  39037. name: "Fully Equipped (Front)",
  39038. image: {
  39039. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39040. extra: 687/605,
  39041. bottom: 18/705
  39042. }
  39043. },
  39044. fullyEquippedBack: {
  39045. height: math.unit(3 + 1/12, "feet"),
  39046. weight: math.unit(24, "lb"),
  39047. name: "Fully Equipped (Back)",
  39048. image: {
  39049. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39050. extra: 689/590,
  39051. bottom: 18/707
  39052. }
  39053. },
  39054. dailyWear: {
  39055. height: math.unit(3 + 1/12, "feet"),
  39056. weight: math.unit(24, "lb"),
  39057. name: "Daily Wear",
  39058. image: {
  39059. source: "./media/characters/tea-spot/daily-wear.svg",
  39060. extra: 701/620,
  39061. bottom: 21/722
  39062. }
  39063. },
  39064. maidWork: {
  39065. height: math.unit(3 + 1/12, "feet"),
  39066. weight: math.unit(24, "lb"),
  39067. name: "Maid Work",
  39068. image: {
  39069. source: "./media/characters/tea-spot/maid-work.svg",
  39070. extra: 693/609,
  39071. bottom: 15/708
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(3 + 1/12, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(175, "cm"),
  39088. weight: math.unit(75, "kg"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/chee/front.svg",
  39092. extra: 1796/1740,
  39093. bottom: 40/1836
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Micro-Micro",
  39100. height: math.unit(1, "nm")
  39101. },
  39102. {
  39103. name: "Micro-erst",
  39104. height: math.unit(1, "micrometer")
  39105. },
  39106. {
  39107. name: "Micro-er",
  39108. height: math.unit(1, "cm")
  39109. },
  39110. {
  39111. name: "Normal",
  39112. height: math.unit(175, "cm"),
  39113. default: true
  39114. },
  39115. {
  39116. name: "Macro",
  39117. height: math.unit(100, "m")
  39118. },
  39119. {
  39120. name: "Macro-er",
  39121. height: math.unit(1, "km")
  39122. },
  39123. {
  39124. name: "Macro-erst",
  39125. height: math.unit(10, "km")
  39126. },
  39127. {
  39128. name: "Macro-Macro",
  39129. height: math.unit(100, "km")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(11 + 9/12, "feet"),
  39138. weight: math.unit(935, "lb"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/kingsley/front.svg",
  39142. extra: 1803/1674,
  39143. bottom: 127/1930
  39144. }
  39145. },
  39146. frontNude: {
  39147. height: math.unit(11 + 9/12, "feet"),
  39148. weight: math.unit(935, "lb"),
  39149. name: "Front (Nude)",
  39150. image: {
  39151. source: "./media/characters/kingsley/front-nude.svg",
  39152. extra: 1803/1674,
  39153. bottom: 127/1930
  39154. }
  39155. },
  39156. },
  39157. [
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(11 + 9/12, "feet"),
  39161. default: true
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39167. {
  39168. side: {
  39169. height: math.unit(9, "feet"),
  39170. name: "Side",
  39171. image: {
  39172. source: "./media/characters/rymel/side.svg",
  39173. extra: 792/469,
  39174. bottom: 121/913
  39175. }
  39176. },
  39177. maw: {
  39178. height: math.unit(2.4, "meters"),
  39179. name: "Maw",
  39180. image: {
  39181. source: "./media/characters/rymel/maw.svg"
  39182. }
  39183. },
  39184. },
  39185. [
  39186. {
  39187. name: "House Drake",
  39188. height: math.unit(2, "feet")
  39189. },
  39190. {
  39191. name: "Reduced",
  39192. height: math.unit(4.5, "feet")
  39193. },
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(9, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39203. {
  39204. front: {
  39205. height: math.unit(1.74, "meters"),
  39206. weight: math.unit(55, "kg"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/rubus/front.svg",
  39210. extra: 1894/1742,
  39211. bottom: 44/1938
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(1.74, "meters"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(5 + 2/12, "feet"),
  39228. weight: math.unit(112, "lb"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/cassie-kingston/front.svg",
  39232. extra: 1438/1390,
  39233. bottom: 47/1485
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(5 + 2/12, "feet"),
  39241. default: true
  39242. },
  39243. {
  39244. name: "Macro",
  39245. height: math.unit(128, "feet")
  39246. },
  39247. {
  39248. name: "Megamacro",
  39249. height: math.unit(2.56, "miles")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(7, "feet"),
  39258. name: "Front",
  39259. image: {
  39260. source: "./media/characters/fox/front.svg",
  39261. extra: 1798/1703,
  39262. bottom: 55/1853
  39263. }
  39264. },
  39265. back: {
  39266. height: math.unit(7, "feet"),
  39267. name: "Back",
  39268. image: {
  39269. source: "./media/characters/fox/back.svg",
  39270. extra: 1748/1649,
  39271. bottom: 32/1780
  39272. }
  39273. },
  39274. head: {
  39275. height: math.unit(1.95, "feet"),
  39276. name: "Head",
  39277. image: {
  39278. source: "./media/characters/fox/head.svg"
  39279. }
  39280. },
  39281. dick: {
  39282. height: math.unit(1.33, "feet"),
  39283. name: "Dick",
  39284. image: {
  39285. source: "./media/characters/fox/dick.svg"
  39286. }
  39287. },
  39288. foot: {
  39289. height: math.unit(1, "feet"),
  39290. name: "Foot",
  39291. image: {
  39292. source: "./media/characters/fox/foot.svg"
  39293. }
  39294. },
  39295. paw: {
  39296. height: math.unit(0.92, "feet"),
  39297. name: "Paw",
  39298. image: {
  39299. source: "./media/characters/fox/paw.svg"
  39300. }
  39301. },
  39302. },
  39303. [
  39304. {
  39305. name: "Small",
  39306. height: math.unit(3, "inches")
  39307. },
  39308. {
  39309. name: "\"Realistic\"",
  39310. height: math.unit(7, "feet")
  39311. },
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(150, "feet"),
  39315. default: true
  39316. },
  39317. {
  39318. name: "BIG",
  39319. height: math.unit(1200, "feet")
  39320. },
  39321. {
  39322. name: "👀",
  39323. height: math.unit(5, "miles")
  39324. },
  39325. {
  39326. name: "👀👀👀",
  39327. height: math.unit(64, "miles")
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(625, "feet"),
  39336. name: "Front",
  39337. image: {
  39338. source: "./media/characters/asonja-rossa/front.svg",
  39339. extra: 1833/1686,
  39340. bottom: 24/1857
  39341. }
  39342. },
  39343. back: {
  39344. height: math.unit(625, "feet"),
  39345. name: "Back",
  39346. image: {
  39347. source: "./media/characters/asonja-rossa/back.svg",
  39348. extra: 1852/1753,
  39349. bottom: 26/1878
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Macro",
  39356. height: math.unit(625, "feet"),
  39357. default: true
  39358. },
  39359. ]
  39360. ))
  39361. characterMakers.push(() => makeCharacter(
  39362. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39363. {
  39364. side: {
  39365. height: math.unit(8, "feet"),
  39366. name: "Side",
  39367. image: {
  39368. source: "./media/characters/rezukii/side.svg",
  39369. extra: 979/542,
  39370. bottom: 87/1066
  39371. }
  39372. },
  39373. sitting: {
  39374. height: math.unit(14.6, "feet"),
  39375. name: "Sitting",
  39376. image: {
  39377. source: "./media/characters/rezukii/sitting.svg",
  39378. extra: 1023/813,
  39379. bottom: 45/1068
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Tiny",
  39386. height: math.unit(2, "feet")
  39387. },
  39388. {
  39389. name: "Smol",
  39390. height: math.unit(4, "feet")
  39391. },
  39392. {
  39393. name: "Normal",
  39394. height: math.unit(8, "feet"),
  39395. default: true
  39396. },
  39397. {
  39398. name: "Big",
  39399. height: math.unit(12, "feet")
  39400. },
  39401. {
  39402. name: "Macro",
  39403. height: math.unit(30, "feet")
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(14, "feet"),
  39412. weight: math.unit(9.5, "tonnes"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/dawnheart/front.svg",
  39416. extra: 2792/2675,
  39417. bottom: 64/2856
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(14, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39431. {
  39432. front: {
  39433. height: math.unit(1.7, "m"),
  39434. name: "Front",
  39435. image: {
  39436. source: "./media/characters/gladi/front.svg",
  39437. extra: 1460/1362,
  39438. bottom: 19/1479
  39439. }
  39440. },
  39441. back: {
  39442. height: math.unit(1.7, "m"),
  39443. name: "Back",
  39444. image: {
  39445. source: "./media/characters/gladi/back.svg",
  39446. extra: 1459/1357,
  39447. bottom: 12/1471
  39448. }
  39449. },
  39450. feral: {
  39451. height: math.unit(2.05, "m"),
  39452. name: "Feral",
  39453. image: {
  39454. source: "./media/characters/gladi/feral.svg",
  39455. extra: 821/557,
  39456. bottom: 91/912
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Shortest",
  39463. height: math.unit(70, "cm")
  39464. },
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(1.7, "m")
  39468. },
  39469. {
  39470. name: "Macro",
  39471. height: math.unit(10, "m"),
  39472. default: true
  39473. },
  39474. {
  39475. name: "Tallest",
  39476. height: math.unit(200, "m")
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(5 + 7/12, "feet"),
  39485. weight: math.unit(2, "tons"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/erdno/front.svg",
  39489. extra: 1234/1129,
  39490. bottom: 35/1269
  39491. }
  39492. },
  39493. angled: {
  39494. height: math.unit(5 + 7/12, "feet"),
  39495. weight: math.unit(2, "tons"),
  39496. name: "Angled",
  39497. image: {
  39498. source: "./media/characters/erdno/angled.svg",
  39499. extra: 1185/1139,
  39500. bottom: 36/1221
  39501. }
  39502. },
  39503. side: {
  39504. height: math.unit(5 + 7/12, "feet"),
  39505. weight: math.unit(2, "tons"),
  39506. name: "Side",
  39507. image: {
  39508. source: "./media/characters/erdno/side.svg",
  39509. extra: 1191/1144,
  39510. bottom: 40/1231
  39511. }
  39512. },
  39513. back: {
  39514. height: math.unit(5 + 7/12, "feet"),
  39515. weight: math.unit(2, "tons"),
  39516. name: "Back",
  39517. image: {
  39518. source: "./media/characters/erdno/back.svg",
  39519. extra: 1202/1146,
  39520. bottom: 17/1219
  39521. }
  39522. },
  39523. frontNsfw: {
  39524. height: math.unit(5 + 7/12, "feet"),
  39525. weight: math.unit(2, "tons"),
  39526. name: "Front (NSFW)",
  39527. image: {
  39528. source: "./media/characters/erdno/front-nsfw.svg",
  39529. extra: 1234/1129,
  39530. bottom: 35/1269
  39531. }
  39532. },
  39533. angledNsfw: {
  39534. height: math.unit(5 + 7/12, "feet"),
  39535. weight: math.unit(2, "tons"),
  39536. name: "Angled (NSFW)",
  39537. image: {
  39538. source: "./media/characters/erdno/angled-nsfw.svg",
  39539. extra: 1185/1139,
  39540. bottom: 36/1221
  39541. }
  39542. },
  39543. sideNsfw: {
  39544. height: math.unit(5 + 7/12, "feet"),
  39545. weight: math.unit(2, "tons"),
  39546. name: "Side (NSFW)",
  39547. image: {
  39548. source: "./media/characters/erdno/side-nsfw.svg",
  39549. extra: 1191/1144,
  39550. bottom: 40/1231
  39551. }
  39552. },
  39553. backNsfw: {
  39554. height: math.unit(5 + 7/12, "feet"),
  39555. weight: math.unit(2, "tons"),
  39556. name: "Back (NSFW)",
  39557. image: {
  39558. source: "./media/characters/erdno/back-nsfw.svg",
  39559. extra: 1202/1146,
  39560. bottom: 17/1219
  39561. }
  39562. },
  39563. frontHyper: {
  39564. height: math.unit(5 + 7/12, "feet"),
  39565. weight: math.unit(2, "tons"),
  39566. name: "Front (Hyper)",
  39567. image: {
  39568. source: "./media/characters/erdno/front-hyper.svg",
  39569. extra: 1298/1136,
  39570. bottom: 35/1333
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(5 + 7/12, "feet"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Big",
  39582. height: math.unit(5.7, "meters")
  39583. },
  39584. {
  39585. name: "Macro",
  39586. height: math.unit(5.7, "kilometers")
  39587. },
  39588. {
  39589. name: "Megamacro",
  39590. height: math.unit(5.7, "earths")
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(5 + 10/12, "feet"),
  39599. weight: math.unit(150, "lb"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/jamie/front.svg",
  39603. extra: 1908/1768,
  39604. bottom: 19/1927
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Minimum",
  39611. height: math.unit(2, "cm")
  39612. },
  39613. {
  39614. name: "Micro",
  39615. height: math.unit(3, "inches")
  39616. },
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(5 + 10/12, "feet"),
  39620. default: true
  39621. },
  39622. {
  39623. name: "Macro",
  39624. height: math.unit(150, "feet")
  39625. },
  39626. {
  39627. name: "Megamacro",
  39628. height: math.unit(10000, "m")
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(2, "meters"),
  39637. weight: math.unit(100, "kg"),
  39638. name: "Front",
  39639. image: {
  39640. source: "./media/characters/shiron/front.svg",
  39641. extra: 2103/1985,
  39642. bottom: 98/2201
  39643. }
  39644. },
  39645. back: {
  39646. height: math.unit(2, "meters"),
  39647. weight: math.unit(100, "kg"),
  39648. name: "Back",
  39649. image: {
  39650. source: "./media/characters/shiron/back.svg",
  39651. extra: 2110/2015,
  39652. bottom: 89/2199
  39653. }
  39654. },
  39655. hand: {
  39656. height: math.unit(0.96, "feet"),
  39657. name: "Hand",
  39658. image: {
  39659. source: "./media/characters/shiron/hand.svg"
  39660. }
  39661. },
  39662. foot: {
  39663. height: math.unit(1.464, "feet"),
  39664. name: "Foot",
  39665. image: {
  39666. source: "./media/characters/shiron/foot.svg"
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Normal",
  39673. height: math.unit(2, "meters")
  39674. },
  39675. {
  39676. name: "Macro",
  39677. height: math.unit(500, "meters"),
  39678. default: true
  39679. },
  39680. {
  39681. name: "Megamacro",
  39682. height: math.unit(20, "km")
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(6, "feet"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/sam/front.svg",
  39694. extra: 849/826,
  39695. bottom: 19/868
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(6, "feet"),
  39703. default: true
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(8 + 4/12, "feet"),
  39712. weight: math.unit(122, "kg"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/namori-kurogawa/front.svg",
  39716. extra: 1894/1576,
  39717. bottom: 34/1928
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(8 + 4/12, "feet"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(9, "feet"),
  39734. weight: math.unit(621, "lb"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/unmru/front.svg",
  39738. extra: 1853/1747,
  39739. bottom: 73/1926
  39740. }
  39741. },
  39742. side: {
  39743. height: math.unit(9, "feet"),
  39744. weight: math.unit(621, "lb"),
  39745. name: "Side",
  39746. image: {
  39747. source: "./media/characters/unmru/side.svg",
  39748. extra: 1781/1671,
  39749. bottom: 127/1908
  39750. }
  39751. },
  39752. back: {
  39753. height: math.unit(9, "feet"),
  39754. weight: math.unit(621, "lb"),
  39755. name: "Back",
  39756. image: {
  39757. source: "./media/characters/unmru/back.svg",
  39758. extra: 1894/1765,
  39759. bottom: 75/1969
  39760. }
  39761. },
  39762. dick: {
  39763. height: math.unit(3, "feet"),
  39764. weight: math.unit(35, "lb"),
  39765. name: "Dick",
  39766. image: {
  39767. source: "./media/characters/unmru/dick.svg"
  39768. }
  39769. },
  39770. },
  39771. [
  39772. {
  39773. name: "Normal",
  39774. height: math.unit(9, "feet")
  39775. },
  39776. {
  39777. name: "Natural",
  39778. height: math.unit(27, "feet"),
  39779. default: true
  39780. },
  39781. {
  39782. name: "Giant",
  39783. height: math.unit(90, "feet")
  39784. },
  39785. {
  39786. name: "Kaiju",
  39787. height: math.unit(270, "feet")
  39788. },
  39789. {
  39790. name: "Macro",
  39791. height: math.unit(900, "feet")
  39792. },
  39793. {
  39794. name: "Macro+",
  39795. height: math.unit(2700, "feet")
  39796. },
  39797. {
  39798. name: "Megamacro",
  39799. height: math.unit(9000, "feet")
  39800. },
  39801. {
  39802. name: "City-Crushing",
  39803. height: math.unit(27000, "feet")
  39804. },
  39805. {
  39806. name: "Mountain-Mashing",
  39807. height: math.unit(90000, "feet")
  39808. },
  39809. {
  39810. name: "Earth-Eclipsing",
  39811. height: math.unit(2.7e8, "feet")
  39812. },
  39813. {
  39814. name: "Sol-Swallowing",
  39815. height: math.unit(9e10, "feet")
  39816. },
  39817. {
  39818. name: "Majoris-Munching",
  39819. height: math.unit(2.7e13, "feet")
  39820. },
  39821. ]
  39822. ))
  39823. characterMakers.push(() => makeCharacter(
  39824. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39825. {
  39826. front: {
  39827. height: math.unit(1, "inch"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/squeaks-mouse/front.svg",
  39831. extra: 352/308,
  39832. bottom: 25/377
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Micro",
  39839. height: math.unit(1, "inch"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39846. {
  39847. side: {
  39848. height: math.unit(35, "feet"),
  39849. name: "Side",
  39850. image: {
  39851. source: "./media/characters/sayko/side.svg",
  39852. extra: 1697/1021,
  39853. bottom: 82/1779
  39854. }
  39855. },
  39856. head: {
  39857. height: math.unit(16, "feet"),
  39858. name: "Head",
  39859. image: {
  39860. source: "./media/characters/sayko/head.svg"
  39861. }
  39862. },
  39863. forepaw: {
  39864. height: math.unit(7.85, "feet"),
  39865. name: "Forepaw",
  39866. image: {
  39867. source: "./media/characters/sayko/forepaw.svg"
  39868. }
  39869. },
  39870. hindpaw: {
  39871. height: math.unit(8.8, "feet"),
  39872. name: "Hindpaw",
  39873. image: {
  39874. source: "./media/characters/sayko/hindpaw.svg"
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(35, "feet"),
  39882. default: true
  39883. },
  39884. {
  39885. name: "Colossus",
  39886. height: math.unit(100, "meters")
  39887. },
  39888. {
  39889. name: "\"Small\" Deity",
  39890. height: math.unit(1, "km")
  39891. },
  39892. {
  39893. name: "\"Large\" Deity",
  39894. height: math.unit(15, "km")
  39895. },
  39896. ]
  39897. ))
  39898. characterMakers.push(() => makeCharacter(
  39899. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39900. {
  39901. front: {
  39902. height: math.unit(6, "feet"),
  39903. weight: math.unit(250, "lb"),
  39904. name: "Front",
  39905. image: {
  39906. source: "./media/characters/mukiro/front.svg",
  39907. extra: 1368/1310,
  39908. bottom: 34/1402
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Normal",
  39915. height: math.unit(6, "feet"),
  39916. default: true
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(12 + 4/12, "feet"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39928. extra: 1346/1311,
  39929. bottom: 65/1411
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Base",
  39936. height: math.unit(12 + 4/12, "feet"),
  39937. default: true
  39938. },
  39939. {
  39940. name: "Macro",
  39941. height: math.unit(150, "feet")
  39942. },
  39943. {
  39944. name: "Mega",
  39945. height: math.unit(2, "miles")
  39946. },
  39947. {
  39948. name: "Demi God",
  39949. height: math.unit(4, "AU")
  39950. },
  39951. {
  39952. name: "God Size",
  39953. height: math.unit(1, "universe")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(3 + 3/12, "feet"),
  39962. weight: math.unit(88, "lb"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/trey/front.svg",
  39966. extra: 1815/1509,
  39967. bottom: 60/1875
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(3 + 3/12, "feet"),
  39975. default: true
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39981. {
  39982. front: {
  39983. height: math.unit(4, "meters"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/adelonda/front.svg",
  39987. extra: 1077/982,
  39988. bottom: 39/1116
  39989. }
  39990. },
  39991. back: {
  39992. height: math.unit(4, "meters"),
  39993. name: "Back",
  39994. image: {
  39995. source: "./media/characters/adelonda/back.svg",
  39996. extra: 1105/1003,
  39997. bottom: 25/1130
  39998. }
  39999. },
  40000. feral: {
  40001. height: math.unit(40/1.5, "meters"),
  40002. name: "Feral",
  40003. image: {
  40004. source: "./media/characters/adelonda/feral.svg",
  40005. extra: 597/271,
  40006. bottom: 387/984
  40007. }
  40008. },
  40009. },
  40010. [
  40011. {
  40012. name: "Normal",
  40013. height: math.unit(4, "meters"),
  40014. default: true
  40015. },
  40016. ]
  40017. ))
  40018. characterMakers.push(() => makeCharacter(
  40019. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40020. {
  40021. front: {
  40022. height: math.unit(8 + 4/12, "feet"),
  40023. weight: math.unit(670, "lb"),
  40024. name: "Front",
  40025. image: {
  40026. source: "./media/characters/acadiel/front.svg",
  40027. extra: 1901/1595,
  40028. bottom: 142/2043
  40029. }
  40030. },
  40031. },
  40032. [
  40033. {
  40034. name: "Normal",
  40035. height: math.unit(8 + 4/12, "feet"),
  40036. default: true
  40037. },
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(200, "feet")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(6 + 2/12, "feet"),
  40049. weight: math.unit(185, "lb"),
  40050. name: "Front",
  40051. image: {
  40052. source: "./media/characters/kayne-ein/front.svg",
  40053. extra: 1780/1560,
  40054. bottom: 81/1861
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Normal",
  40061. height: math.unit(6 + 2/12, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Transformation Stage",
  40066. height: math.unit(15, "feet")
  40067. },
  40068. {
  40069. name: "Macro",
  40070. height: math.unit(150, "feet")
  40071. },
  40072. {
  40073. name: "Earth's Shadow",
  40074. height: math.unit(6200, "miles")
  40075. },
  40076. {
  40077. name: "Universal Demon",
  40078. height: math.unit(28e9, "parsecs")
  40079. },
  40080. {
  40081. name: "Multiverse God",
  40082. height: math.unit(3, "multiverses")
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(5 + 5/12, "feet"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/fawn/front.svg",
  40094. extra: 1873/1731,
  40095. bottom: 95/1968
  40096. }
  40097. },
  40098. back: {
  40099. height: math.unit(5 + 5/12, "feet"),
  40100. name: "Back",
  40101. image: {
  40102. source: "./media/characters/fawn/back.svg",
  40103. extra: 1813/1700,
  40104. bottom: 14/1827
  40105. }
  40106. },
  40107. hoof: {
  40108. height: math.unit(1.45, "feet"),
  40109. name: "Hoof",
  40110. image: {
  40111. source: "./media/characters/fawn/hoof.svg"
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(5 + 5/12, "feet"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(2 + 5/12, "feet"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/orion/front.svg",
  40131. extra: 1366/1304,
  40132. bottom: 43/1409
  40133. }
  40134. },
  40135. paw: {
  40136. height: math.unit(0.52, "feet"),
  40137. name: "Paw",
  40138. image: {
  40139. source: "./media/characters/orion/paw.svg"
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Normal",
  40146. height: math.unit(2 + 5/12, "feet"),
  40147. default: true
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(5 + 10/12, "feet"),
  40156. name: "Front",
  40157. image: {
  40158. source: "./media/characters/vera/front.svg",
  40159. extra: 1680/1575,
  40160. bottom: 49/1729
  40161. }
  40162. },
  40163. back: {
  40164. height: math.unit(5 + 10/12, "feet"),
  40165. name: "Back",
  40166. image: {
  40167. source: "./media/characters/vera/back.svg",
  40168. extra: 1700/1588,
  40169. bottom: 18/1718
  40170. }
  40171. },
  40172. arcanine: {
  40173. height: math.unit(6 + 8/12, "feet"),
  40174. name: "Arcanine",
  40175. image: {
  40176. source: "./media/characters/vera/arcanine.svg",
  40177. extra: 1590/1511,
  40178. bottom: 71/1661
  40179. }
  40180. },
  40181. maw: {
  40182. height: math.unit(0.82, "feet"),
  40183. name: "Maw",
  40184. image: {
  40185. source: "./media/characters/vera/maw.svg"
  40186. }
  40187. },
  40188. mawArcanine: {
  40189. height: math.unit(0.97, "feet"),
  40190. name: "Maw (Arcanine)",
  40191. image: {
  40192. source: "./media/characters/vera/maw-arcanine.svg"
  40193. }
  40194. },
  40195. paw: {
  40196. height: math.unit(0.75, "feet"),
  40197. name: "Paw",
  40198. image: {
  40199. source: "./media/characters/vera/paw.svg"
  40200. }
  40201. },
  40202. pawprint: {
  40203. height: math.unit(0.52, "feet"),
  40204. name: "Pawprint",
  40205. image: {
  40206. source: "./media/characters/vera/pawprint.svg"
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Normal",
  40213. height: math.unit(5 + 10/12, "feet"),
  40214. default: true
  40215. },
  40216. {
  40217. name: "Macro",
  40218. height: math.unit(75, "feet")
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40224. {
  40225. front: {
  40226. height: math.unit(4, "feet"),
  40227. weight: math.unit(40, "lb"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/orvan-rabbit/front.svg",
  40231. extra: 1896/1642,
  40232. bottom: 29/1925
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(4, "feet"),
  40240. default: true
  40241. },
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40246. {
  40247. front: {
  40248. height: math.unit(6, "feet"),
  40249. weight: math.unit(168, "lb"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/lisa/front.svg",
  40253. extra: 2065/1867,
  40254. bottom: 46/2111
  40255. }
  40256. },
  40257. back: {
  40258. height: math.unit(6, "feet"),
  40259. weight: math.unit(168, "lb"),
  40260. name: "Back",
  40261. image: {
  40262. source: "./media/characters/lisa/back.svg",
  40263. extra: 1982/1838,
  40264. bottom: 29/2011
  40265. }
  40266. },
  40267. maw: {
  40268. height: math.unit(0.81, "feet"),
  40269. name: "Maw",
  40270. image: {
  40271. source: "./media/characters/lisa/maw.svg"
  40272. }
  40273. },
  40274. paw: {
  40275. height: math.unit(0.9, "feet"),
  40276. name: "Paw",
  40277. image: {
  40278. source: "./media/characters/lisa/paw.svg"
  40279. }
  40280. },
  40281. caribousune: {
  40282. height: math.unit(7 + 2/12, "feet"),
  40283. weight: math.unit(268, "lb"),
  40284. name: "Caribousune",
  40285. image: {
  40286. source: "./media/characters/lisa/caribousune.svg",
  40287. extra: 1843/1633,
  40288. bottom: 29/1872
  40289. }
  40290. },
  40291. frontCaribousune: {
  40292. height: math.unit(7 + 2/12, "feet"),
  40293. weight: math.unit(268, "lb"),
  40294. name: "Front (Caribousune)",
  40295. image: {
  40296. source: "./media/characters/lisa/front-caribousune.svg",
  40297. extra: 1818/1638,
  40298. bottom: 52/1870
  40299. }
  40300. },
  40301. sideCaribousune: {
  40302. height: math.unit(7 + 2/12, "feet"),
  40303. weight: math.unit(268, "lb"),
  40304. name: "Side (Caribousune)",
  40305. image: {
  40306. source: "./media/characters/lisa/side-caribousune.svg",
  40307. extra: 1851/1635,
  40308. bottom: 16/1867
  40309. }
  40310. },
  40311. backCaribousune: {
  40312. height: math.unit(7 + 2/12, "feet"),
  40313. weight: math.unit(268, "lb"),
  40314. name: "Back (Caribousune)",
  40315. image: {
  40316. source: "./media/characters/lisa/back-caribousune.svg",
  40317. extra: 1801/1604,
  40318. bottom: 44/1845
  40319. }
  40320. },
  40321. caribou: {
  40322. height: math.unit(7 + 2/12, "feet"),
  40323. weight: math.unit(268, "lb"),
  40324. name: "Caribou",
  40325. image: {
  40326. source: "./media/characters/lisa/caribou.svg",
  40327. extra: 1843/1633,
  40328. bottom: 29/1872
  40329. }
  40330. },
  40331. frontCaribou: {
  40332. height: math.unit(7 + 2/12, "feet"),
  40333. weight: math.unit(268, "lb"),
  40334. name: "Front (Caribou)",
  40335. image: {
  40336. source: "./media/characters/lisa/front-caribou.svg",
  40337. extra: 1818/1638,
  40338. bottom: 52/1870
  40339. }
  40340. },
  40341. sideCaribou: {
  40342. height: math.unit(7 + 2/12, "feet"),
  40343. weight: math.unit(268, "lb"),
  40344. name: "Side (Caribou)",
  40345. image: {
  40346. source: "./media/characters/lisa/side-caribou.svg",
  40347. extra: 1851/1635,
  40348. bottom: 16/1867
  40349. }
  40350. },
  40351. backCaribou: {
  40352. height: math.unit(7 + 2/12, "feet"),
  40353. weight: math.unit(268, "lb"),
  40354. name: "Back (Caribou)",
  40355. image: {
  40356. source: "./media/characters/lisa/back-caribou.svg",
  40357. extra: 1801/1604,
  40358. bottom: 44/1845
  40359. }
  40360. },
  40361. mawCaribou: {
  40362. height: math.unit(1.45, "feet"),
  40363. name: "Maw (Caribou)",
  40364. image: {
  40365. source: "./media/characters/lisa/maw-caribou.svg"
  40366. }
  40367. },
  40368. mawCaribousune: {
  40369. height: math.unit(1.45, "feet"),
  40370. name: "Maw (Caribousune)",
  40371. image: {
  40372. source: "./media/characters/lisa/maw-caribousune.svg"
  40373. }
  40374. },
  40375. pawCaribousune: {
  40376. height: math.unit(1.61, "feet"),
  40377. name: "Paw (Caribou)",
  40378. image: {
  40379. source: "./media/characters/lisa/paw-caribousune.svg"
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(6, "feet")
  40387. },
  40388. {
  40389. name: "God Size",
  40390. height: math.unit(72, "feet"),
  40391. default: true
  40392. },
  40393. {
  40394. name: "Towering",
  40395. height: math.unit(288, "feet")
  40396. },
  40397. {
  40398. name: "City Size",
  40399. height: math.unit(48384, "feet")
  40400. },
  40401. {
  40402. name: "Continental",
  40403. height: math.unit(4200, "miles")
  40404. },
  40405. {
  40406. name: "Planet Eater",
  40407. height: math.unit(42, "earths")
  40408. },
  40409. {
  40410. name: "Star Swallower",
  40411. height: math.unit(42, "solarradii")
  40412. },
  40413. {
  40414. name: "System Swallower",
  40415. height: math.unit(84000, "AU")
  40416. },
  40417. {
  40418. name: "Galaxy Gobbler",
  40419. height: math.unit(42, "galaxies")
  40420. },
  40421. {
  40422. name: "Universe Devourer",
  40423. height: math.unit(42, "universes")
  40424. },
  40425. {
  40426. name: "Multiverse Muncher",
  40427. height: math.unit(42, "multiverses")
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(36, "feet"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/shadow-rat/front.svg",
  40439. extra: 1845/1758,
  40440. bottom: 83/1928
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(36, "feet"),
  40448. default: true
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40454. {
  40455. side: {
  40456. height: math.unit(8, "feet"),
  40457. weight: math.unit(2630, "lb"),
  40458. name: "Side",
  40459. image: {
  40460. source: "./media/characters/torallia/side.svg",
  40461. extra: 2164/2021,
  40462. bottom: 371/2535
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Mortal Interaction",
  40469. height: math.unit(8, "feet")
  40470. },
  40471. {
  40472. name: "Natural",
  40473. height: math.unit(24, "feet"),
  40474. default: true
  40475. },
  40476. {
  40477. name: "Giant",
  40478. height: math.unit(80, "feet")
  40479. },
  40480. {
  40481. name: "Kaiju",
  40482. height: math.unit(240, "feet")
  40483. },
  40484. {
  40485. name: "Macro",
  40486. height: math.unit(800, "feet")
  40487. },
  40488. {
  40489. name: "Macro+",
  40490. height: math.unit(2400, "feet")
  40491. },
  40492. {
  40493. name: "Macro++",
  40494. height: math.unit(8000, "feet")
  40495. },
  40496. {
  40497. name: "City-Crushing",
  40498. height: math.unit(24000, "feet")
  40499. },
  40500. {
  40501. name: "Mountain-Mashing",
  40502. height: math.unit(80000, "feet")
  40503. },
  40504. {
  40505. name: "District Demolisher",
  40506. height: math.unit(240000, "feet")
  40507. },
  40508. {
  40509. name: "Tri-County Terror",
  40510. height: math.unit(800000, "feet")
  40511. },
  40512. {
  40513. name: "State Smasher",
  40514. height: math.unit(2.4e6, "feet")
  40515. },
  40516. {
  40517. name: "Nation Nemesis",
  40518. height: math.unit(8e6, "feet")
  40519. },
  40520. {
  40521. name: "Continent Cracker",
  40522. height: math.unit(2.4e7, "feet")
  40523. },
  40524. {
  40525. name: "Planet-Pillaging",
  40526. height: math.unit(8e7, "feet")
  40527. },
  40528. {
  40529. name: "Earth-Eclipsing",
  40530. height: math.unit(2.4e8, "feet")
  40531. },
  40532. {
  40533. name: "Jovian-Jostling",
  40534. height: math.unit(8e8, "feet")
  40535. },
  40536. {
  40537. name: "Gas Giant Gulper",
  40538. height: math.unit(2.4e9, "feet")
  40539. },
  40540. {
  40541. name: "Astral Annihilator",
  40542. height: math.unit(8e9, "feet")
  40543. },
  40544. {
  40545. name: "Celestial Conqueror",
  40546. height: math.unit(2.4e10, "feet")
  40547. },
  40548. {
  40549. name: "Sol-Swallowing",
  40550. height: math.unit(8e10, "feet")
  40551. },
  40552. {
  40553. name: "Hunter of the Heavens",
  40554. height: math.unit(2.4e13, "feet")
  40555. },
  40556. ]
  40557. ))
  40558. characterMakers.push(() => makeCharacter(
  40559. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40560. {
  40561. front: {
  40562. height: math.unit(6 + 8/12, "feet"),
  40563. weight: math.unit(250, "kilograms"),
  40564. volume: math.unit(28, "liters"),
  40565. name: "Front",
  40566. image: {
  40567. source: "./media/characters/rebecca-pawlson/front.svg",
  40568. extra: 1737/1596,
  40569. bottom: 107/1844
  40570. }
  40571. },
  40572. back: {
  40573. height: math.unit(6 + 8/12, "feet"),
  40574. weight: math.unit(250, "kilograms"),
  40575. volume: math.unit(28, "liters"),
  40576. name: "Back",
  40577. image: {
  40578. source: "./media/characters/rebecca-pawlson/back.svg",
  40579. extra: 1702/1523,
  40580. bottom: 86/1788
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Normal",
  40587. height: math.unit(6 + 8/12, "feet")
  40588. },
  40589. {
  40590. name: "Mini Macro",
  40591. height: math.unit(10, "feet"),
  40592. default: true
  40593. },
  40594. {
  40595. name: "Macro",
  40596. height: math.unit(100, "feet")
  40597. },
  40598. {
  40599. name: "Mega Macro",
  40600. height: math.unit(2500, "feet")
  40601. },
  40602. {
  40603. name: "Giga Macro",
  40604. height: math.unit(50, "miles")
  40605. },
  40606. ]
  40607. ))
  40608. characterMakers.push(() => makeCharacter(
  40609. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40610. {
  40611. front: {
  40612. height: math.unit(7 + 6/12, "feet"),
  40613. weight: math.unit(600, "lb"),
  40614. name: "Front",
  40615. image: {
  40616. source: "./media/characters/moxie-nova/front.svg",
  40617. extra: 1734/1652,
  40618. bottom: 41/1775
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(7 + 6/12, "feet"),
  40626. default: true
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40632. {
  40633. goat: {
  40634. height: math.unit(4, "feet"),
  40635. weight: math.unit(180, "lb"),
  40636. name: "Goat",
  40637. image: {
  40638. source: "./media/characters/tiffany/goat.svg",
  40639. extra: 1845/1595,
  40640. bottom: 106/1951
  40641. }
  40642. },
  40643. front: {
  40644. height: math.unit(5, "feet"),
  40645. weight: math.unit(150, "lb"),
  40646. name: "Foxcoon",
  40647. image: {
  40648. source: "./media/characters/tiffany/foxcoon.svg",
  40649. extra: 1941/1845,
  40650. bottom: 58/1999
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "Normal",
  40657. height: math.unit(5, "feet"),
  40658. default: true
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(8, "feet"),
  40667. weight: math.unit(300, "lb"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/raxinath/front.svg",
  40671. extra: 1407/1309,
  40672. bottom: 39/1446
  40673. }
  40674. },
  40675. back: {
  40676. height: math.unit(8, "feet"),
  40677. weight: math.unit(300, "lb"),
  40678. name: "Back",
  40679. image: {
  40680. source: "./media/characters/raxinath/back.svg",
  40681. extra: 1405/1315,
  40682. bottom: 9/1414
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Speck",
  40689. height: math.unit(0.5, "nm")
  40690. },
  40691. {
  40692. name: "Micro",
  40693. height: math.unit(3, "inches")
  40694. },
  40695. {
  40696. name: "Kobold",
  40697. height: math.unit(3, "feet")
  40698. },
  40699. {
  40700. name: "Normal",
  40701. height: math.unit(8, "feet"),
  40702. default: true
  40703. },
  40704. {
  40705. name: "Giant",
  40706. height: math.unit(50, "feet")
  40707. },
  40708. {
  40709. name: "Macro",
  40710. height: math.unit(1000, "feet")
  40711. },
  40712. {
  40713. name: "Megamacro",
  40714. height: math.unit(1, "mile")
  40715. },
  40716. ]
  40717. ))
  40718. characterMakers.push(() => makeCharacter(
  40719. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40720. {
  40721. front: {
  40722. height: math.unit(10, "feet"),
  40723. weight: math.unit(1442, "lb"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/mal-dragon/front.svg",
  40727. extra: 1515/1444,
  40728. bottom: 113/1628
  40729. }
  40730. },
  40731. back: {
  40732. height: math.unit(10, "feet"),
  40733. weight: math.unit(1442, "lb"),
  40734. name: "Back",
  40735. image: {
  40736. source: "./media/characters/mal-dragon/back.svg",
  40737. extra: 1527/1434,
  40738. bottom: 25/1552
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Mortal Interaction",
  40745. height: math.unit(10, "feet"),
  40746. default: true
  40747. },
  40748. {
  40749. name: "Large",
  40750. height: math.unit(30, "feet")
  40751. },
  40752. {
  40753. name: "Kaiju",
  40754. height: math.unit(300, "feet")
  40755. },
  40756. {
  40757. name: "Megamacro",
  40758. height: math.unit(10000, "feet")
  40759. },
  40760. {
  40761. name: "Continent Cracker",
  40762. height: math.unit(30000000, "feet")
  40763. },
  40764. {
  40765. name: "Sol-Swallowing",
  40766. height: math.unit(1e11, "feet")
  40767. },
  40768. {
  40769. name: "Light Universal",
  40770. height: math.unit(5, "universes")
  40771. },
  40772. {
  40773. name: "Universe Atoms",
  40774. height: math.unit(1.829e9, "universes")
  40775. },
  40776. {
  40777. name: "Light Multiversal",
  40778. height: math.unit(5, "multiverses")
  40779. },
  40780. {
  40781. name: "Multiverse Atoms",
  40782. height: math.unit(1.829e9, "multiverses")
  40783. },
  40784. {
  40785. name: "Fabric of Time",
  40786. height: math.unit(1e262, "multiverses")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(9, "feet"),
  40795. weight: math.unit(1050, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/tabitha/front.svg",
  40799. extra: 2083/1994,
  40800. bottom: 68/2151
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Baseline",
  40807. height: math.unit(9, "feet"),
  40808. default: true
  40809. },
  40810. {
  40811. name: "Giant",
  40812. height: math.unit(90, "feet")
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(900, "feet")
  40817. },
  40818. {
  40819. name: "Megamacro",
  40820. height: math.unit(9000, "feet")
  40821. },
  40822. {
  40823. name: "City-Crushing",
  40824. height: math.unit(27000, "feet")
  40825. },
  40826. {
  40827. name: "Mountain-Mashing",
  40828. height: math.unit(90000, "feet")
  40829. },
  40830. {
  40831. name: "Nation Nemesis",
  40832. height: math.unit(9e6, "feet")
  40833. },
  40834. {
  40835. name: "Continent Cracker",
  40836. height: math.unit(27e6, "feet")
  40837. },
  40838. {
  40839. name: "Earth-Eclipsing",
  40840. height: math.unit(2.7e8, "feet")
  40841. },
  40842. {
  40843. name: "Gas Giant Gulper",
  40844. height: math.unit(2.7e9, "feet")
  40845. },
  40846. {
  40847. name: "Sol-Swallowing",
  40848. height: math.unit(9e10, "feet")
  40849. },
  40850. {
  40851. name: "Galaxy Gulper",
  40852. height: math.unit(9, "galaxies")
  40853. },
  40854. {
  40855. name: "Cosmos Churner",
  40856. height: math.unit(9, "universes")
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(160, "cm"),
  40865. weight: math.unit(55, "kg"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/tow/front.svg",
  40869. extra: 1751/1722,
  40870. bottom: 74/1825
  40871. }
  40872. },
  40873. },
  40874. [
  40875. {
  40876. name: "Norm",
  40877. height: math.unit(160, "cm")
  40878. },
  40879. {
  40880. name: "Casual",
  40881. height: math.unit(3200, "m"),
  40882. default: true
  40883. },
  40884. {
  40885. name: "Show-Off",
  40886. height: math.unit(160, "km")
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40892. {
  40893. front: {
  40894. height: math.unit(7 + 11/12, "feet"),
  40895. weight: math.unit(342.8, "lb"),
  40896. name: "Front",
  40897. image: {
  40898. source: "./media/characters/vivian-orca-dragon/front.svg",
  40899. extra: 1890/1865,
  40900. bottom: 28/1918
  40901. }
  40902. },
  40903. },
  40904. [
  40905. {
  40906. name: "Micro",
  40907. height: math.unit(5, "inches")
  40908. },
  40909. {
  40910. name: "Normal",
  40911. height: math.unit(7 + 11/12, "feet"),
  40912. default: true
  40913. },
  40914. {
  40915. name: "Macro",
  40916. height: math.unit(395 + 7/12, "feet")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40922. {
  40923. side: {
  40924. height: math.unit(10, "feet"),
  40925. weight: math.unit(1442, "lb"),
  40926. name: "Side",
  40927. image: {
  40928. source: "./media/characters/lotherakon/side.svg",
  40929. extra: 1604/1497,
  40930. bottom: 89/1693
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Mortal Interaction",
  40937. height: math.unit(10, "feet")
  40938. },
  40939. {
  40940. name: "Large",
  40941. height: math.unit(30, "feet"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "Giant",
  40946. height: math.unit(100, "feet")
  40947. },
  40948. {
  40949. name: "Kaiju",
  40950. height: math.unit(300, "feet")
  40951. },
  40952. {
  40953. name: "Macro",
  40954. height: math.unit(1000, "feet")
  40955. },
  40956. {
  40957. name: "Macro+",
  40958. height: math.unit(3000, "feet")
  40959. },
  40960. {
  40961. name: "Megamacro",
  40962. height: math.unit(10000, "feet")
  40963. },
  40964. {
  40965. name: "City-Crushing",
  40966. height: math.unit(30000, "feet")
  40967. },
  40968. {
  40969. name: "Continent Cracker",
  40970. height: math.unit(30e6, "feet")
  40971. },
  40972. {
  40973. name: "Earth Eclipsing",
  40974. height: math.unit(3e8, "feet")
  40975. },
  40976. {
  40977. name: "Gas Giant Gulper",
  40978. height: math.unit(3e9, "feet")
  40979. },
  40980. {
  40981. name: "Sol-Swallowing",
  40982. height: math.unit(1e11, "feet")
  40983. },
  40984. {
  40985. name: "System Swallower",
  40986. height: math.unit(3e14, "feet")
  40987. },
  40988. {
  40989. name: "Galaxy Gulper",
  40990. height: math.unit(10, "galaxies")
  40991. },
  40992. {
  40993. name: "Light Universal",
  40994. height: math.unit(5, "universes")
  40995. },
  40996. {
  40997. name: "Universe Palm",
  40998. height: math.unit(20, "universes")
  40999. },
  41000. {
  41001. name: "Light Multiversal",
  41002. height: math.unit(5, "multiverses")
  41003. },
  41004. {
  41005. name: "Multiverse Palm",
  41006. height: math.unit(20, "multiverses")
  41007. },
  41008. {
  41009. name: "Inferno Incarnate",
  41010. height: math.unit(1e7, "multiverses")
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(8, "feet"),
  41019. weight: math.unit(1200, "lb"),
  41020. name: "Front",
  41021. image: {
  41022. source: "./media/characters/malithee/front.svg",
  41023. extra: 1675/1640,
  41024. bottom: 162/1837
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Mortal Interaction",
  41031. height: math.unit(8, "feet"),
  41032. default: true
  41033. },
  41034. {
  41035. name: "Large",
  41036. height: math.unit(24, "feet")
  41037. },
  41038. {
  41039. name: "Kaiju",
  41040. height: math.unit(240, "feet")
  41041. },
  41042. {
  41043. name: "Megamacro",
  41044. height: math.unit(8000, "feet")
  41045. },
  41046. {
  41047. name: "Continent Cracker",
  41048. height: math.unit(24e6, "feet")
  41049. },
  41050. {
  41051. name: "Earth-Eclipsing",
  41052. height: math.unit(2.4e8, "feet")
  41053. },
  41054. {
  41055. name: "Sol-Swallowing",
  41056. height: math.unit(8e10, "feet")
  41057. },
  41058. {
  41059. name: "Galaxy Gulper",
  41060. height: math.unit(8, "galaxies")
  41061. },
  41062. {
  41063. name: "Light Universal",
  41064. height: math.unit(4, "universes")
  41065. },
  41066. {
  41067. name: "Universe Atoms",
  41068. height: math.unit(1.829e9, "universes")
  41069. },
  41070. {
  41071. name: "Light Multiversal",
  41072. height: math.unit(4, "multiverses")
  41073. },
  41074. {
  41075. name: "Multiverse Atoms",
  41076. height: math.unit(1.829e9, "multiverses")
  41077. },
  41078. {
  41079. name: "Nigh-Omnipresence",
  41080. height: math.unit(8e261, "multiverses")
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41086. {
  41087. front: {
  41088. height: math.unit(10, "feet"),
  41089. weight: math.unit(1500, "lb"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/miles-thestia/front.svg",
  41093. extra: 1812/1727,
  41094. bottom: 86/1898
  41095. }
  41096. },
  41097. back: {
  41098. height: math.unit(10, "feet"),
  41099. weight: math.unit(1500, "lb"),
  41100. name: "Back",
  41101. image: {
  41102. source: "./media/characters/miles-thestia/back.svg",
  41103. extra: 1799/1690,
  41104. bottom: 47/1846
  41105. }
  41106. },
  41107. frontNsfw: {
  41108. height: math.unit(10, "feet"),
  41109. weight: math.unit(1500, "lb"),
  41110. name: "Front (NSFW)",
  41111. image: {
  41112. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41113. extra: 1812/1727,
  41114. bottom: 86/1898
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Mini-Macro",
  41121. height: math.unit(10, "feet"),
  41122. default: true
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(25, "feet"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/titan-s-wulf/front.svg",
  41134. extra: 1560/1484,
  41135. bottom: 76/1636
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Smallest",
  41142. height: math.unit(25, "feet"),
  41143. default: true
  41144. },
  41145. {
  41146. name: "Normal",
  41147. height: math.unit(200, "feet")
  41148. },
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(200000, "feet")
  41152. },
  41153. {
  41154. name: "Multiversal Original",
  41155. height: math.unit(10000, "multiverses")
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(8, "feet"),
  41164. weight: math.unit(553, "lb"),
  41165. name: "Front",
  41166. image: {
  41167. source: "./media/characters/tawendeh/front.svg",
  41168. extra: 2365/2268,
  41169. bottom: 83/2448
  41170. }
  41171. },
  41172. frontClothed: {
  41173. height: math.unit(8, "feet"),
  41174. weight: math.unit(553, "lb"),
  41175. name: "Front (Clothed)",
  41176. image: {
  41177. source: "./media/characters/tawendeh/front-clothed.svg",
  41178. extra: 2365/2268,
  41179. bottom: 83/2448
  41180. }
  41181. },
  41182. back: {
  41183. height: math.unit(8, "feet"),
  41184. weight: math.unit(553, "lb"),
  41185. name: "Back",
  41186. image: {
  41187. source: "./media/characters/tawendeh/back.svg",
  41188. extra: 2397/2294,
  41189. bottom: 42/2439
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "Mortal Interaction",
  41196. height: math.unit(8, "feet"),
  41197. default: true
  41198. },
  41199. {
  41200. name: "Giant",
  41201. height: math.unit(80, "feet")
  41202. },
  41203. {
  41204. name: "Macro",
  41205. height: math.unit(800, "feet")
  41206. },
  41207. {
  41208. name: "Megamacro",
  41209. height: math.unit(8000, "feet")
  41210. },
  41211. {
  41212. name: "City-Crushing",
  41213. height: math.unit(24000, "feet")
  41214. },
  41215. {
  41216. name: "Mountain-Mashing",
  41217. height: math.unit(80000, "feet")
  41218. },
  41219. {
  41220. name: "Nation Nemesis",
  41221. height: math.unit(8e6, "feet")
  41222. },
  41223. {
  41224. name: "Continent Cracker",
  41225. height: math.unit(24e6, "feet")
  41226. },
  41227. {
  41228. name: "Earth-Eclipsing",
  41229. height: math.unit(2.4e8, "feet")
  41230. },
  41231. {
  41232. name: "Gas Giant Gulper",
  41233. height: math.unit(2.4e9, "feet")
  41234. },
  41235. {
  41236. name: "Sol-Swallowing",
  41237. height: math.unit(8e10, "feet")
  41238. },
  41239. {
  41240. name: "Galaxy Gulper",
  41241. height: math.unit(8, "galaxies")
  41242. },
  41243. {
  41244. name: "Cosmos Churner",
  41245. height: math.unit(8, "universes")
  41246. },
  41247. {
  41248. name: "Omnipotent Otter",
  41249. height: math.unit(80, "universes")
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41255. {
  41256. front: {
  41257. height: math.unit(2.6, "meters"),
  41258. weight: math.unit(900, "kg"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/neesha/front.svg",
  41262. extra: 1803/1653,
  41263. bottom: 128/1931
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(2.6, "meters"),
  41271. default: true
  41272. },
  41273. {
  41274. name: "Macro",
  41275. height: math.unit(50, "meters")
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41281. {
  41282. front: {
  41283. height: math.unit(5, "feet"),
  41284. weight: math.unit(185, "lb"),
  41285. name: "Front",
  41286. image: {
  41287. source: "./media/characters/kyera/front.svg",
  41288. extra: 1875/1790,
  41289. bottom: 96/1971
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(5, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(7 + 6/12, "feet"),
  41306. weight: math.unit(540, "lb"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/yuko/front.svg",
  41310. extra: 1282/1222,
  41311. bottom: 101/1383
  41312. }
  41313. },
  41314. frontClothed: {
  41315. height: math.unit(7 + 6/12, "feet"),
  41316. weight: math.unit(540, "lb"),
  41317. name: "Front (Clothed)",
  41318. image: {
  41319. source: "./media/characters/yuko/front-clothed.svg",
  41320. extra: 1282/1222,
  41321. bottom: 101/1383
  41322. }
  41323. },
  41324. },
  41325. [
  41326. {
  41327. name: "Normal",
  41328. height: math.unit(7 + 6/12, "feet"),
  41329. default: true
  41330. },
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(26 + 9/12, "feet")
  41334. },
  41335. {
  41336. name: "Megamacro",
  41337. height: math.unit(300, "feet")
  41338. },
  41339. {
  41340. name: "Gigamacro",
  41341. height: math.unit(5000, "feet")
  41342. },
  41343. {
  41344. name: "Planetary",
  41345. height: math.unit(10000, "miles")
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(8 + 2/12, "feet"),
  41354. weight: math.unit(600, "lb"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/deam-nitrel/front.svg",
  41358. extra: 1308/1234,
  41359. bottom: 125/1433
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Normal",
  41366. height: math.unit(8 + 2/12, "feet"),
  41367. default: true
  41368. },
  41369. ]
  41370. ))
  41371. characterMakers.push(() => makeCharacter(
  41372. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41373. {
  41374. front: {
  41375. height: math.unit(6.1, "feet"),
  41376. weight: math.unit(180, "lb"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/skyress/front.svg",
  41380. extra: 1045/915,
  41381. bottom: 28/1073
  41382. }
  41383. },
  41384. maw: {
  41385. height: math.unit(1, "feet"),
  41386. name: "Maw",
  41387. image: {
  41388. source: "./media/characters/skyress/maw.svg"
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Normal",
  41395. height: math.unit(6.1, "feet"),
  41396. default: true
  41397. },
  41398. {
  41399. name: "Macro",
  41400. height: math.unit(200, "feet")
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(4 + 2/12, "feet"),
  41409. weight: math.unit(40, "kg"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/amethyst-jones/front.svg",
  41413. extra: 1220/1150,
  41414. bottom: 101/1321
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Normal",
  41421. height: math.unit(4 + 2/12, "feet"),
  41422. default: true
  41423. },
  41424. ]
  41425. ))
  41426. characterMakers.push(() => makeCharacter(
  41427. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41428. {
  41429. front: {
  41430. height: math.unit(1.7, "m"),
  41431. weight: math.unit(135, "lb"),
  41432. name: "Front",
  41433. image: {
  41434. source: "./media/characters/jade/front.svg",
  41435. extra: 1818/1767,
  41436. bottom: 32/1850
  41437. }
  41438. },
  41439. back: {
  41440. height: math.unit(1.7, "m"),
  41441. weight: math.unit(135, "lb"),
  41442. name: "Back",
  41443. image: {
  41444. source: "./media/characters/jade/back.svg",
  41445. extra: 1869/1809,
  41446. bottom: 35/1904
  41447. }
  41448. },
  41449. hand: {
  41450. height: math.unit(0.24, "m"),
  41451. name: "Hand",
  41452. image: {
  41453. source: "./media/characters/jade/hand.svg"
  41454. }
  41455. },
  41456. foot: {
  41457. height: math.unit(0.263, "m"),
  41458. name: "Foot",
  41459. image: {
  41460. source: "./media/characters/jade/foot.svg"
  41461. }
  41462. },
  41463. dick: {
  41464. height: math.unit(0.47, "m"),
  41465. name: "Dick",
  41466. image: {
  41467. source: "./media/characters/jade/dick.svg"
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Micro",
  41474. height: math.unit(22, "cm")
  41475. },
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(1.7, "m"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Macro",
  41483. height: math.unit(152, "m")
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(100, "miles"),
  41492. weight: math.unit(20000, "tons"),
  41493. name: "Front",
  41494. image: {
  41495. source: "./media/characters/cookie/front.svg",
  41496. extra: 1125/1070,
  41497. bottom: 30/1155
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Big",
  41504. height: math.unit(50, "feet")
  41505. },
  41506. {
  41507. name: "Macro",
  41508. height: math.unit(100, "miles"),
  41509. default: true
  41510. },
  41511. {
  41512. name: "Megamacro",
  41513. height: math.unit(90000, "miles")
  41514. },
  41515. ]
  41516. ))
  41517. characterMakers.push(() => makeCharacter(
  41518. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41519. {
  41520. front: {
  41521. height: math.unit(6, "feet"),
  41522. weight: math.unit(145, "lb"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/farzian/front.svg",
  41526. extra: 1902/1693,
  41527. bottom: 108/2010
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Macro",
  41534. height: math.unit(500, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(3 + 6/12, "feet"),
  41544. weight: math.unit(50, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/kimberly-tilson/front.svg",
  41548. extra: 1400/1322,
  41549. bottom: 36/1436
  41550. }
  41551. },
  41552. back: {
  41553. height: math.unit(3 + 6/12, "feet"),
  41554. weight: math.unit(50, "lb"),
  41555. name: "Back",
  41556. image: {
  41557. source: "./media/characters/kimberly-tilson/back.svg",
  41558. extra: 1370/1307,
  41559. bottom: 20/1390
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(3 + 6/12, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(1148, "feet"),
  41576. weight: math.unit(34057, "lb"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/harthos/front.svg",
  41580. extra: 1391/1339,
  41581. bottom: 13/1404
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Macro",
  41588. height: math.unit(1148, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(15, "feet"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/hypatia/front.svg",
  41601. extra: 1653/1591,
  41602. bottom: 79/1732
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(15, "feet")
  41610. },
  41611. {
  41612. name: "Small",
  41613. height: math.unit(300, "feet")
  41614. },
  41615. {
  41616. name: "Macro",
  41617. height: math.unit(2500, "feet"),
  41618. default: true
  41619. },
  41620. {
  41621. name: "Mega Macro",
  41622. height: math.unit(1500, "miles")
  41623. },
  41624. {
  41625. name: "Giga Macro",
  41626. height: math.unit(1.5e6, "miles")
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(6, "feet"),
  41635. weight: math.unit(200, "lb"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/wulver/front.svg",
  41639. extra: 1724/1632,
  41640. bottom: 130/1854
  41641. }
  41642. },
  41643. frontNsfw: {
  41644. height: math.unit(6, "feet"),
  41645. weight: math.unit(200, "lb"),
  41646. name: "Front (NSFW)",
  41647. image: {
  41648. source: "./media/characters/wulver/front-nsfw.svg",
  41649. extra: 1724/1632,
  41650. bottom: 130/1854
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Human-Sized",
  41657. height: math.unit(6, "feet")
  41658. },
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(4, "meters"),
  41662. default: true
  41663. },
  41664. {
  41665. name: "Large",
  41666. height: math.unit(6, "m")
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(7, "feet"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/maru/front.svg",
  41678. extra: 1595/1570,
  41679. bottom: 0/1595
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Normal",
  41686. height: math.unit(7, "feet"),
  41687. default: true
  41688. },
  41689. {
  41690. name: "Macro",
  41691. height: math.unit(700, "feet")
  41692. },
  41693. {
  41694. name: "Mega Macro",
  41695. height: math.unit(25, "miles")
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(6, "feet"),
  41704. weight: math.unit(170, "lb"),
  41705. name: "Front",
  41706. image: {
  41707. source: "./media/characters/xenon/front.svg",
  41708. extra: 1376/1305,
  41709. bottom: 56/1432
  41710. }
  41711. },
  41712. back: {
  41713. height: math.unit(6, "feet"),
  41714. weight: math.unit(170, "lb"),
  41715. name: "Back",
  41716. image: {
  41717. source: "./media/characters/xenon/back.svg",
  41718. extra: 1328/1259,
  41719. bottom: 95/1423
  41720. }
  41721. },
  41722. maw: {
  41723. height: math.unit(0.52, "feet"),
  41724. name: "Maw",
  41725. image: {
  41726. source: "./media/characters/xenon/maw.svg"
  41727. }
  41728. },
  41729. handLeft: {
  41730. height: math.unit(0.82 * 169 / 153, "feet"),
  41731. name: "Hand (Left)",
  41732. image: {
  41733. source: "./media/characters/xenon/hand-left.svg"
  41734. }
  41735. },
  41736. handRight: {
  41737. height: math.unit(0.82, "feet"),
  41738. name: "Hand (Right)",
  41739. image: {
  41740. source: "./media/characters/xenon/hand-right.svg"
  41741. }
  41742. },
  41743. footLeft: {
  41744. height: math.unit(1.13, "feet"),
  41745. name: "Foot (Left)",
  41746. image: {
  41747. source: "./media/characters/xenon/foot-left.svg"
  41748. }
  41749. },
  41750. footRight: {
  41751. height: math.unit(1.13 * 194 / 196, "feet"),
  41752. name: "Foot (Right)",
  41753. image: {
  41754. source: "./media/characters/xenon/foot-right.svg"
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "Micro",
  41761. height: math.unit(0.8, "inches")
  41762. },
  41763. {
  41764. name: "Normal",
  41765. height: math.unit(6, "feet")
  41766. },
  41767. {
  41768. name: "Macro",
  41769. height: math.unit(50, "feet"),
  41770. default: true
  41771. },
  41772. {
  41773. name: "Macro+",
  41774. height: math.unit(250, "feet")
  41775. },
  41776. {
  41777. name: "Megamacro",
  41778. height: math.unit(1500, "feet")
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(7 + 5/12, "feet"),
  41787. name: "Front",
  41788. image: {
  41789. source: "./media/characters/zane/front.svg",
  41790. extra: 1260/1203,
  41791. bottom: 94/1354
  41792. }
  41793. },
  41794. back: {
  41795. height: math.unit(5.05, "feet"),
  41796. name: "Back",
  41797. image: {
  41798. source: "./media/characters/zane/back.svg",
  41799. extra: 893/829,
  41800. bottom: 30/923
  41801. }
  41802. },
  41803. werewolf: {
  41804. height: math.unit(11, "feet"),
  41805. name: "Werewolf",
  41806. image: {
  41807. source: "./media/characters/zane/werewolf.svg",
  41808. extra: 1383/1323,
  41809. bottom: 89/1472
  41810. }
  41811. },
  41812. foot: {
  41813. height: math.unit(1.46, "feet"),
  41814. name: "Foot",
  41815. image: {
  41816. source: "./media/characters/zane/foot.svg"
  41817. }
  41818. },
  41819. footFront: {
  41820. height: math.unit(0.784, "feet"),
  41821. name: "Foot (Front)",
  41822. image: {
  41823. source: "./media/characters/zane/foot-front.svg"
  41824. }
  41825. },
  41826. dick: {
  41827. height: math.unit(1.95, "feet"),
  41828. name: "Dick",
  41829. image: {
  41830. source: "./media/characters/zane/dick.svg"
  41831. }
  41832. },
  41833. dickWerewolf: {
  41834. height: math.unit(3.77, "feet"),
  41835. name: "Dick (Werewolf)",
  41836. image: {
  41837. source: "./media/characters/zane/dick.svg"
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Normal",
  41844. height: math.unit(7 + 5/12, "feet"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41851. {
  41852. front: {
  41853. height: math.unit(6 + 2/12, "feet"),
  41854. weight: math.unit(284, "lb"),
  41855. name: "Front",
  41856. image: {
  41857. source: "./media/characters/benni-desparque/front.svg",
  41858. extra: 1353/1126,
  41859. bottom: 69/1422
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Civilian",
  41866. height: math.unit(6 + 2/12, "feet")
  41867. },
  41868. {
  41869. name: "Normal",
  41870. height: math.unit(98, "feet"),
  41871. default: true
  41872. },
  41873. {
  41874. name: "Kaiju Fighter",
  41875. height: math.unit(268, "feet")
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41881. {
  41882. front: {
  41883. height: math.unit(5, "feet"),
  41884. weight: math.unit(105, "lb"),
  41885. name: "Front",
  41886. image: {
  41887. source: "./media/characters/maxine/front.svg",
  41888. extra: 1386/1250,
  41889. bottom: 71/1457
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Normal",
  41896. height: math.unit(5, "feet"),
  41897. default: true
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(11 + 7/12, "feet"),
  41906. weight: math.unit(9576, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/scaly/front.svg",
  41910. extra: 888/867,
  41911. bottom: 36/924
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(11 + 7/12, "feet"),
  41919. default: true
  41920. },
  41921. ]
  41922. ))
  41923. characterMakers.push(() => makeCharacter(
  41924. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41925. {
  41926. front: {
  41927. height: math.unit(6 + 3/12, "feet"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/saelria/front.svg",
  41931. extra: 1243/1138,
  41932. bottom: 46/1289
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Micro",
  41939. height: math.unit(6, "inches"),
  41940. },
  41941. {
  41942. name: "Normal",
  41943. height: math.unit(6 + 3/12, "feet"),
  41944. default: true
  41945. },
  41946. {
  41947. name: "Macro",
  41948. height: math.unit(25, "feet")
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41954. {
  41955. front: {
  41956. height: math.unit(80, "meters"),
  41957. weight: math.unit(7000, "tonnes"),
  41958. name: "Front",
  41959. image: {
  41960. source: "./media/characters/tef/front.svg",
  41961. extra: 2036/1991,
  41962. bottom: 54/2090
  41963. }
  41964. },
  41965. back: {
  41966. height: math.unit(80, "meters"),
  41967. weight: math.unit(7000, "tonnes"),
  41968. name: "Back",
  41969. image: {
  41970. source: "./media/characters/tef/back.svg",
  41971. extra: 2036/1991,
  41972. bottom: 54/2090
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Macro",
  41979. height: math.unit(80, "meters"),
  41980. default: true
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41986. {
  41987. front: {
  41988. height: math.unit(13, "feet"),
  41989. weight: math.unit(6, "tons"),
  41990. name: "Front",
  41991. image: {
  41992. source: "./media/characters/rover/front.svg",
  41993. extra: 1233/1156,
  41994. bottom: 50/1283
  41995. }
  41996. },
  41997. back: {
  41998. height: math.unit(13, "feet"),
  41999. weight: math.unit(6, "tons"),
  42000. name: "Back",
  42001. image: {
  42002. source: "./media/characters/rover/back.svg",
  42003. extra: 1327/1258,
  42004. bottom: 39/1366
  42005. }
  42006. },
  42007. },
  42008. [
  42009. {
  42010. name: "Normal",
  42011. height: math.unit(13, "feet"),
  42012. default: true
  42013. },
  42014. {
  42015. name: "Macro",
  42016. height: math.unit(1300, "feet")
  42017. },
  42018. {
  42019. name: "Megamacro",
  42020. height: math.unit(1300, "miles")
  42021. },
  42022. {
  42023. name: "Gigamacro",
  42024. height: math.unit(1300000, "miles")
  42025. },
  42026. ]
  42027. ))
  42028. characterMakers.push(() => makeCharacter(
  42029. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42030. {
  42031. front: {
  42032. height: math.unit(6, "feet"),
  42033. weight: math.unit(150, "lb"),
  42034. name: "Front",
  42035. image: {
  42036. source: "./media/characters/ariz/front.svg",
  42037. extra: 1401/1346,
  42038. bottom: 5/1406
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Normal",
  42045. height: math.unit(10, "feet"),
  42046. default: true
  42047. },
  42048. ]
  42049. ))
  42050. characterMakers.push(() => makeCharacter(
  42051. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42052. {
  42053. front: {
  42054. height: math.unit(6, "feet"),
  42055. weight: math.unit(140, "lb"),
  42056. name: "Front",
  42057. image: {
  42058. source: "./media/characters/sigrun/front.svg",
  42059. extra: 1418/1359,
  42060. bottom: 27/1445
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Macro",
  42067. height: math.unit(35, "feet"),
  42068. default: true
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42074. {
  42075. front: {
  42076. height: math.unit(6, "feet"),
  42077. weight: math.unit(150, "lb"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/numin/front.svg",
  42081. extra: 1433/1388,
  42082. bottom: 12/1445
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Macro",
  42089. height: math.unit(21.5, "km"),
  42090. default: true
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(6, "feet"),
  42099. weight: math.unit(463, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/melwa/front.svg",
  42103. extra: 1307/1248,
  42104. bottom: 93/1400
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Macro",
  42111. height: math.unit(50, "meters"),
  42112. default: true
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(325, "feet"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/zorkaiju/front.svg",
  42124. extra: 1955/1814,
  42125. bottom: 40/1995
  42126. }
  42127. },
  42128. frontExtended: {
  42129. height: math.unit(325, "feet"),
  42130. name: "Front (Extended)",
  42131. image: {
  42132. source: "./media/characters/zorkaiju/front-extended.svg",
  42133. extra: 1955/1814,
  42134. bottom: 40/1995
  42135. }
  42136. },
  42137. side: {
  42138. height: math.unit(325, "feet"),
  42139. name: "Side",
  42140. image: {
  42141. source: "./media/characters/zorkaiju/side.svg",
  42142. extra: 1495/1396,
  42143. bottom: 17/1512
  42144. }
  42145. },
  42146. sideExtended: {
  42147. height: math.unit(325, "feet"),
  42148. name: "Side (Extended)",
  42149. image: {
  42150. source: "./media/characters/zorkaiju/side-extended.svg",
  42151. extra: 1495/1396,
  42152. bottom: 17/1512
  42153. }
  42154. },
  42155. back: {
  42156. height: math.unit(325, "feet"),
  42157. name: "Back",
  42158. image: {
  42159. source: "./media/characters/zorkaiju/back.svg",
  42160. extra: 1959/1821,
  42161. bottom: 31/1990
  42162. }
  42163. },
  42164. backExtended: {
  42165. height: math.unit(325, "feet"),
  42166. name: "Back (Extended)",
  42167. image: {
  42168. source: "./media/characters/zorkaiju/back-extended.svg",
  42169. extra: 1959/1821,
  42170. bottom: 31/1990
  42171. }
  42172. },
  42173. hand: {
  42174. height: math.unit(58.4, "feet"),
  42175. name: "Hand",
  42176. image: {
  42177. source: "./media/characters/zorkaiju/hand.svg"
  42178. }
  42179. },
  42180. handExtended: {
  42181. height: math.unit(61.4, "feet"),
  42182. name: "Hand (Extended)",
  42183. image: {
  42184. source: "./media/characters/zorkaiju/hand-extended.svg"
  42185. }
  42186. },
  42187. foot: {
  42188. height: math.unit(95, "feet"),
  42189. name: "Foot",
  42190. image: {
  42191. source: "./media/characters/zorkaiju/foot.svg"
  42192. }
  42193. },
  42194. leftArm: {
  42195. height: math.unit(59, "feet"),
  42196. name: "Left Arm",
  42197. image: {
  42198. source: "./media/characters/zorkaiju/left-arm.svg"
  42199. }
  42200. },
  42201. rightArm: {
  42202. height: math.unit(59, "feet"),
  42203. name: "Right Arm",
  42204. image: {
  42205. source: "./media/characters/zorkaiju/right-arm.svg"
  42206. }
  42207. },
  42208. leftArmExtended: {
  42209. height: math.unit(59 * 1.033546, "feet"),
  42210. name: "Left Arm (Extended)",
  42211. image: {
  42212. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42213. }
  42214. },
  42215. rightArmExtended: {
  42216. height: math.unit(59 * 1.0496, "feet"),
  42217. name: "Right Arm (Extended)",
  42218. image: {
  42219. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42220. }
  42221. },
  42222. tail: {
  42223. height: math.unit(104, "feet"),
  42224. name: "Tail",
  42225. image: {
  42226. source: "./media/characters/zorkaiju/tail.svg"
  42227. }
  42228. },
  42229. tailExtended: {
  42230. height: math.unit(104, "feet"),
  42231. name: "Tail (Extended)",
  42232. image: {
  42233. source: "./media/characters/zorkaiju/tail-extended.svg"
  42234. }
  42235. },
  42236. tailBottom: {
  42237. height: math.unit(104, "feet"),
  42238. name: "Tail Bottom",
  42239. image: {
  42240. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42241. }
  42242. },
  42243. crystal: {
  42244. height: math.unit(27.54, "feet"),
  42245. name: "Crystal",
  42246. image: {
  42247. source: "./media/characters/zorkaiju/crystal.svg"
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Kaiju",
  42254. height: math.unit(325, "feet"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(6 + 1/12, "feet"),
  42264. weight: math.unit(115, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/bailey-belfry/front.svg",
  42268. extra: 1240/1121,
  42269. bottom: 101/1341
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(6 + 1/12, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42283. {
  42284. side: {
  42285. height: math.unit(4, "meters"),
  42286. weight: math.unit(250, "kg"),
  42287. name: "Side",
  42288. image: {
  42289. source: "./media/characters/blacky/side.svg",
  42290. extra: 1027/919,
  42291. bottom: 43/1070
  42292. }
  42293. },
  42294. maw: {
  42295. height: math.unit(1, "meters"),
  42296. name: "Maw",
  42297. image: {
  42298. source: "./media/characters/blacky/maw.svg"
  42299. }
  42300. },
  42301. paw: {
  42302. height: math.unit(1, "meters"),
  42303. name: "Paw",
  42304. image: {
  42305. source: "./media/characters/blacky/paw.svg"
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(4, "meters"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(170, "cm"),
  42322. weight: math.unit(66, "kg"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/thux-ei/front.svg",
  42326. extra: 1109/1011,
  42327. bottom: 8/1117
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(170, "cm"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(5, "feet"),
  42344. weight: math.unit(120, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/roxanne-voltaire/front.svg",
  42348. extra: 1901/1779,
  42349. bottom: 53/1954
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(5, "feet"),
  42357. default: true
  42358. },
  42359. {
  42360. name: "Giant",
  42361. height: math.unit(50, "feet")
  42362. },
  42363. {
  42364. name: "Titan",
  42365. height: math.unit(500, "feet")
  42366. },
  42367. {
  42368. name: "Macro",
  42369. height: math.unit(5000, "feet")
  42370. },
  42371. {
  42372. name: "Megamacro",
  42373. height: math.unit(50000, "feet")
  42374. },
  42375. {
  42376. name: "Gigamacro",
  42377. height: math.unit(500000, "feet")
  42378. },
  42379. {
  42380. name: "Teramacro",
  42381. height: math.unit(5e6, "feet")
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(6 + 2/12, "feet"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/squeaks/front.svg",
  42393. extra: 1823/1768,
  42394. bottom: 138/1961
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Micro",
  42401. height: math.unit(0.5, "inches")
  42402. },
  42403. {
  42404. name: "Normal",
  42405. height: math.unit(6 + 2/12, "feet"),
  42406. default: true
  42407. },
  42408. {
  42409. name: "Macro",
  42410. height: math.unit(600, "feet")
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42416. {
  42417. front: {
  42418. height: math.unit(1.72, "meters"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/archinger/front.svg",
  42422. extra: 1861/1675,
  42423. bottom: 125/1986
  42424. }
  42425. },
  42426. back: {
  42427. height: math.unit(1.72, "meters"),
  42428. name: "Back",
  42429. image: {
  42430. source: "./media/characters/archinger/back.svg",
  42431. extra: 1844/1701,
  42432. bottom: 104/1948
  42433. }
  42434. },
  42435. cock: {
  42436. height: math.unit(0.59, "feet"),
  42437. name: "Cock",
  42438. image: {
  42439. source: "./media/characters/archinger/cock.svg"
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(1.72, "meters"),
  42447. default: true
  42448. },
  42449. {
  42450. name: "Macro",
  42451. height: math.unit(84, "meters")
  42452. },
  42453. {
  42454. name: "Macro+",
  42455. height: math.unit(112, "meters")
  42456. },
  42457. {
  42458. name: "Macro++",
  42459. height: math.unit(960, "meters")
  42460. },
  42461. {
  42462. name: "Macro+++",
  42463. height: math.unit(4, "km")
  42464. },
  42465. {
  42466. name: "Macro++++",
  42467. height: math.unit(48, "km")
  42468. },
  42469. {
  42470. name: "Macro+++++",
  42471. height: math.unit(4500, "km")
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(5 + 5/12, "feet"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/alsnapz/front.svg",
  42483. extra: 1157/1065,
  42484. bottom: 42/1199
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(5 + 5/12, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42498. {
  42499. side: {
  42500. height: math.unit(3.2, "earths"),
  42501. name: "Side",
  42502. image: {
  42503. source: "./media/characters/mag/side.svg",
  42504. extra: 1331/1008,
  42505. bottom: 52/1383
  42506. }
  42507. },
  42508. wing: {
  42509. height: math.unit(1.94, "earths"),
  42510. name: "Wing",
  42511. image: {
  42512. source: "./media/characters/mag/wing.svg"
  42513. }
  42514. },
  42515. dick: {
  42516. height: math.unit(1.8, "earths"),
  42517. name: "Dick",
  42518. image: {
  42519. source: "./media/characters/mag/dick.svg"
  42520. }
  42521. },
  42522. ass: {
  42523. height: math.unit(1.33, "earths"),
  42524. name: "Ass",
  42525. image: {
  42526. source: "./media/characters/mag/ass.svg"
  42527. }
  42528. },
  42529. head: {
  42530. height: math.unit(1.1, "earths"),
  42531. name: "Head",
  42532. image: {
  42533. source: "./media/characters/mag/head.svg"
  42534. }
  42535. },
  42536. maw: {
  42537. height: math.unit(1.62, "earths"),
  42538. name: "Maw",
  42539. image: {
  42540. source: "./media/characters/mag/maw.svg"
  42541. }
  42542. },
  42543. },
  42544. [
  42545. {
  42546. name: "Small",
  42547. height: math.unit(162, "feet")
  42548. },
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(3.2, "earths"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42558. {
  42559. front: {
  42560. height: math.unit(512, "feet"),
  42561. weight: math.unit(63509, "tonnes"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/vorrel-harroc/front.svg",
  42565. extra: 1075/1063,
  42566. bottom: 62/1137
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Normal",
  42573. height: math.unit(10, "feet")
  42574. },
  42575. {
  42576. name: "Macro",
  42577. height: math.unit(512, "feet"),
  42578. default: true
  42579. },
  42580. {
  42581. name: "Megamacro",
  42582. height: math.unit(256, "miles")
  42583. },
  42584. {
  42585. name: "Gigamacro",
  42586. height: math.unit(4096, "miles")
  42587. },
  42588. ]
  42589. ))
  42590. characterMakers.push(() => makeCharacter(
  42591. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42592. {
  42593. side: {
  42594. height: math.unit(50, "feet"),
  42595. name: "Side",
  42596. image: {
  42597. source: "./media/characters/froimar/side.svg",
  42598. extra: 855/638,
  42599. bottom: 99/954
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Macro",
  42606. height: math.unit(50, "feet"),
  42607. default: true
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(210, "miles"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/timothy/front.svg",
  42619. extra: 1007/943,
  42620. bottom: 62/1069
  42621. }
  42622. },
  42623. frontSkirt: {
  42624. height: math.unit(210, "miles"),
  42625. name: "Front (Skirt)",
  42626. image: {
  42627. source: "./media/characters/timothy/front-skirt.svg",
  42628. extra: 1007/943,
  42629. bottom: 62/1069
  42630. }
  42631. },
  42632. frontCoat: {
  42633. height: math.unit(210, "miles"),
  42634. name: "Front (Coat)",
  42635. image: {
  42636. source: "./media/characters/timothy/front-coat.svg",
  42637. extra: 1007/943,
  42638. bottom: 62/1069
  42639. }
  42640. },
  42641. },
  42642. [
  42643. {
  42644. name: "Macro",
  42645. height: math.unit(210, "miles"),
  42646. default: true
  42647. },
  42648. {
  42649. name: "Megamacro",
  42650. height: math.unit(210000, "miles")
  42651. },
  42652. ]
  42653. ))
  42654. characterMakers.push(() => makeCharacter(
  42655. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42656. {
  42657. front: {
  42658. height: math.unit(188, "feet"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/pyotr/front.svg",
  42662. extra: 1912/1826,
  42663. bottom: 18/1930
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Macro",
  42670. height: math.unit(188, "feet"),
  42671. default: true
  42672. },
  42673. {
  42674. name: "Megamacro",
  42675. height: math.unit(8, "miles")
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42681. {
  42682. side: {
  42683. height: math.unit(10, "feet"),
  42684. weight: math.unit(4500, "lb"),
  42685. name: "Side",
  42686. image: {
  42687. source: "./media/characters/ackart/side.svg",
  42688. extra: 1776/1668,
  42689. bottom: 116/1892
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(10, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42703. {
  42704. side: {
  42705. height: math.unit(21, "feet"),
  42706. name: "Side",
  42707. image: {
  42708. source: "./media/characters/nolow/side.svg",
  42709. extra: 1484/1434,
  42710. bottom: 85/1569
  42711. }
  42712. },
  42713. sideErect: {
  42714. height: math.unit(21, "feet"),
  42715. name: "Side-erect",
  42716. image: {
  42717. source: "./media/characters/nolow/side-erect.svg",
  42718. extra: 1484/1434,
  42719. bottom: 85/1569
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Regular",
  42726. height: math.unit(12, "feet")
  42727. },
  42728. {
  42729. name: "Big Chee",
  42730. height: math.unit(21, "feet"),
  42731. default: true
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(7, "feet"),
  42740. weight: math.unit(250, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/nines/front.svg",
  42744. extra: 1741/1607,
  42745. bottom: 41/1782
  42746. }
  42747. },
  42748. side: {
  42749. height: math.unit(7, "feet"),
  42750. weight: math.unit(250, "lb"),
  42751. name: "Side",
  42752. image: {
  42753. source: "./media/characters/nines/side.svg",
  42754. extra: 1854/1735,
  42755. bottom: 93/1947
  42756. }
  42757. },
  42758. back: {
  42759. height: math.unit(7, "feet"),
  42760. weight: math.unit(250, "lb"),
  42761. name: "Back",
  42762. image: {
  42763. source: "./media/characters/nines/back.svg",
  42764. extra: 1748/1615,
  42765. bottom: 20/1768
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Megamacro",
  42772. height: math.unit(99, "km"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42779. {
  42780. front: {
  42781. height: math.unit(5 + 10/12, "feet"),
  42782. weight: math.unit(210, "lb"),
  42783. name: "Front",
  42784. image: {
  42785. source: "./media/characters/zenith/front.svg",
  42786. extra: 1531/1452,
  42787. bottom: 198/1729
  42788. }
  42789. },
  42790. back: {
  42791. height: math.unit(5 + 10/12, "feet"),
  42792. weight: math.unit(210, "lb"),
  42793. name: "Back",
  42794. image: {
  42795. source: "./media/characters/zenith/back.svg",
  42796. extra: 1571/1487,
  42797. bottom: 75/1646
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Normal",
  42804. height: math.unit(5 + 10/12, "feet"),
  42805. default: true
  42806. }
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(4, "feet"),
  42814. weight: math.unit(60, "lb"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/jasper/front.svg",
  42818. extra: 1450/1379,
  42819. bottom: 19/1469
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Normal",
  42826. height: math.unit(4, "feet"),
  42827. default: true
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42833. {
  42834. front: {
  42835. height: math.unit(6 + 5/12, "feet"),
  42836. weight: math.unit(290, "lb"),
  42837. name: "Front",
  42838. image: {
  42839. source: "./media/characters/tiberius-thyben/front.svg",
  42840. extra: 757/739,
  42841. bottom: 39/796
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Micro",
  42848. height: math.unit(1.5, "inches")
  42849. },
  42850. {
  42851. name: "Normal",
  42852. height: math.unit(6 + 5/12, "feet"),
  42853. default: true
  42854. },
  42855. {
  42856. name: "Macro",
  42857. height: math.unit(300, "feet")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(5 + 6/12, "feet"),
  42866. weight: math.unit(60, "kg"),
  42867. name: "Front",
  42868. image: {
  42869. source: "./media/characters/sabre/front.svg",
  42870. extra: 738/671,
  42871. bottom: 27/765
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Teeny",
  42878. height: math.unit(2, "inches")
  42879. },
  42880. {
  42881. name: "Smol",
  42882. height: math.unit(8, "inches")
  42883. },
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(5 + 6/12, "feet"),
  42887. default: true
  42888. },
  42889. {
  42890. name: "Mini-Macro",
  42891. height: math.unit(15, "feet")
  42892. },
  42893. {
  42894. name: "Macro",
  42895. height: math.unit(50, "feet")
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42901. {
  42902. front: {
  42903. height: math.unit(6 + 4/12, "feet"),
  42904. weight: math.unit(170, "lb"),
  42905. name: "Front",
  42906. image: {
  42907. source: "./media/characters/charlie/front.svg",
  42908. extra: 1348/1228,
  42909. bottom: 15/1363
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Macro",
  42916. height: math.unit(1700, "meters"),
  42917. default: true
  42918. },
  42919. {
  42920. name: "MegaMacro",
  42921. height: math.unit(20400, "meters")
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(6 + 3/12, "feet"),
  42930. weight: math.unit(185, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/susan-grant/front.svg",
  42934. extra: 1351/1327,
  42935. bottom: 26/1377
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Normal",
  42942. height: math.unit(6 + 3/12, "feet"),
  42943. default: true
  42944. },
  42945. {
  42946. name: "Macro",
  42947. height: math.unit(225, "feet")
  42948. },
  42949. {
  42950. name: "Macro+",
  42951. height: math.unit(900, "feet")
  42952. },
  42953. {
  42954. name: "MegaMacro",
  42955. height: math.unit(14400, "feet")
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(5 + 4/12, "feet"),
  42964. weight: math.unit(110, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/axel-isanov/front.svg",
  42968. extra: 1096/1065,
  42969. bottom: 13/1109
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(5 + 4/12, "feet"),
  42977. default: true
  42978. },
  42979. ]
  42980. ))
  42981. characterMakers.push(() => makeCharacter(
  42982. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42983. {
  42984. front: {
  42985. height: math.unit(9, "feet"),
  42986. weight: math.unit(467, "lb"),
  42987. name: "Front",
  42988. image: {
  42989. source: "./media/characters/necahual/front.svg",
  42990. extra: 920/873,
  42991. bottom: 26/946
  42992. }
  42993. },
  42994. back: {
  42995. height: math.unit(9, "feet"),
  42996. weight: math.unit(467, "lb"),
  42997. name: "Back",
  42998. image: {
  42999. source: "./media/characters/necahual/back.svg",
  43000. extra: 930/884,
  43001. bottom: 16/946
  43002. }
  43003. },
  43004. frontUnderwear: {
  43005. height: math.unit(9, "feet"),
  43006. weight: math.unit(467, "lb"),
  43007. name: "Front (Underwear)",
  43008. image: {
  43009. source: "./media/characters/necahual/front-underwear.svg",
  43010. extra: 920/873,
  43011. bottom: 26/946
  43012. }
  43013. },
  43014. frontDressed: {
  43015. height: math.unit(9, "feet"),
  43016. weight: math.unit(467, "lb"),
  43017. name: "Front (Dressed)",
  43018. image: {
  43019. source: "./media/characters/necahual/front-dressed.svg",
  43020. extra: 920/873,
  43021. bottom: 26/946
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Comprsesed",
  43028. height: math.unit(9, "feet")
  43029. },
  43030. {
  43031. name: "Natural",
  43032. height: math.unit(15, "feet"),
  43033. default: true
  43034. },
  43035. {
  43036. name: "Boosted",
  43037. height: math.unit(50, "feet")
  43038. },
  43039. {
  43040. name: "Boosted+",
  43041. height: math.unit(150, "feet")
  43042. },
  43043. {
  43044. name: "Max",
  43045. height: math.unit(500, "feet")
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(22 + 1/12, "feet"),
  43054. weight: math.unit(3200, "lb"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/theo-acacia/front.svg",
  43058. extra: 1796/1741,
  43059. bottom: 83/1879
  43060. }
  43061. },
  43062. frontUnderwear: {
  43063. height: math.unit(22 + 1/12, "feet"),
  43064. weight: math.unit(3200, "lb"),
  43065. name: "Front (Underwear)",
  43066. image: {
  43067. source: "./media/characters/theo-acacia/front-underwear.svg",
  43068. extra: 1796/1741,
  43069. bottom: 83/1879
  43070. }
  43071. },
  43072. frontNude: {
  43073. height: math.unit(22 + 1/12, "feet"),
  43074. weight: math.unit(3200, "lb"),
  43075. name: "Front (Nude)",
  43076. image: {
  43077. source: "./media/characters/theo-acacia/front-nude.svg",
  43078. extra: 1796/1741,
  43079. bottom: 83/1879
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(22 + 1/12, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(20, "feet"),
  43096. name: "Front",
  43097. image: {
  43098. source: "./media/characters/astra/front.svg",
  43099. extra: 1850/1714,
  43100. bottom: 106/1956
  43101. }
  43102. },
  43103. frontUndressed: {
  43104. height: math.unit(20, "feet"),
  43105. name: "Front (Undressed)",
  43106. image: {
  43107. source: "./media/characters/astra/front-undressed.svg",
  43108. extra: 1926/1749,
  43109. bottom: 0/1926
  43110. }
  43111. },
  43112. hand: {
  43113. height: math.unit(1.53, "feet"),
  43114. name: "Hand",
  43115. image: {
  43116. source: "./media/characters/astra/hand.svg"
  43117. }
  43118. },
  43119. paw: {
  43120. height: math.unit(1.53, "feet"),
  43121. name: "Paw",
  43122. image: {
  43123. source: "./media/characters/astra/paw.svg"
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "Smallest",
  43130. height: math.unit(20, "feet")
  43131. },
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(1e9, "miles"),
  43135. default: true
  43136. },
  43137. {
  43138. name: "Larger",
  43139. height: math.unit(5, "multiverses")
  43140. },
  43141. {
  43142. name: "Largest",
  43143. height: math.unit(1e9, "multiverses")
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43149. {
  43150. front: {
  43151. height: math.unit(8, "feet"),
  43152. name: "Front",
  43153. image: {
  43154. source: "./media/characters/breanna/front.svg",
  43155. extra: 1912/1632,
  43156. bottom: 33/1945
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Smallest",
  43163. height: math.unit(8, "feet")
  43164. },
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(1, "mile"),
  43168. default: true
  43169. },
  43170. {
  43171. name: "Maximum",
  43172. height: math.unit(1500000000000, "lightyears")
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43178. {
  43179. front: {
  43180. height: math.unit(5 + 11/12, "feet"),
  43181. weight: math.unit(155, "lb"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/cai/front.svg",
  43185. extra: 1823/1702,
  43186. bottom: 32/1855
  43187. }
  43188. },
  43189. back: {
  43190. height: math.unit(5 + 11/12, "feet"),
  43191. weight: math.unit(155, "lb"),
  43192. name: "Back",
  43193. image: {
  43194. source: "./media/characters/cai/back.svg",
  43195. extra: 1809/1708,
  43196. bottom: 31/1840
  43197. }
  43198. },
  43199. },
  43200. [
  43201. {
  43202. name: "Normal",
  43203. height: math.unit(5 + 11/12, "feet"),
  43204. default: true
  43205. },
  43206. {
  43207. name: "Big",
  43208. height: math.unit(15, "feet")
  43209. },
  43210. {
  43211. name: "Macro",
  43212. height: math.unit(200, "feet")
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43218. {
  43219. front: {
  43220. height: math.unit(5 + 6/12, "feet"),
  43221. weight: math.unit(160, "lb"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43225. extra: 1227/1174,
  43226. bottom: 37/1264
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Macro",
  43233. height: math.unit(444, "meters"),
  43234. default: true
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43240. {
  43241. front: {
  43242. height: math.unit(18 + 7/12, "feet"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/rex/front.svg",
  43246. extra: 1941/1807,
  43247. bottom: 66/2007
  43248. }
  43249. },
  43250. back: {
  43251. height: math.unit(18 + 7/12, "feet"),
  43252. name: "Back",
  43253. image: {
  43254. source: "./media/characters/rex/back.svg",
  43255. extra: 1937/1822,
  43256. bottom: 42/1979
  43257. }
  43258. },
  43259. boot: {
  43260. height: math.unit(3.45, "feet"),
  43261. name: "Boot",
  43262. image: {
  43263. source: "./media/characters/rex/boot.svg"
  43264. }
  43265. },
  43266. paw: {
  43267. height: math.unit(4.17, "feet"),
  43268. name: "Paw",
  43269. image: {
  43270. source: "./media/characters/rex/paw.svg"
  43271. }
  43272. },
  43273. head: {
  43274. height: math.unit(6.728, "feet"),
  43275. name: "Head",
  43276. image: {
  43277. source: "./media/characters/rex/head.svg"
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Nano",
  43284. height: math.unit(18 + 7/12, "feet")
  43285. },
  43286. {
  43287. name: "Micro",
  43288. height: math.unit(1.5, "megameters")
  43289. },
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(440, "megameters"),
  43293. default: true
  43294. },
  43295. {
  43296. name: "Macro",
  43297. height: math.unit(2.5, "gigameters")
  43298. },
  43299. {
  43300. name: "Gigamacro",
  43301. height: math.unit(2, "galaxies")
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43307. {
  43308. side: {
  43309. height: math.unit(32, "feet"),
  43310. weight: math.unit(250000, "lb"),
  43311. name: "Side",
  43312. image: {
  43313. source: "./media/characters/silverwing/side.svg",
  43314. extra: 1100/1019,
  43315. bottom: 204/1304
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(32, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(6 + 6/12, "feet"),
  43332. weight: math.unit(350, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/tristan-hawthorne/front.svg",
  43336. extra: 1159/1124,
  43337. bottom: 37/1196
  43338. },
  43339. form: "labrador",
  43340. default: true
  43341. },
  43342. skunkFront: {
  43343. height: math.unit(4 + 6/12, "feet"),
  43344. weight: math.unit(120, "lb"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43348. extra: 1609/1551,
  43349. bottom: 169/1778
  43350. },
  43351. form: "skunk",
  43352. default: true
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Normal",
  43358. height: math.unit(6 + 6/12, "feet"),
  43359. form: "labrador",
  43360. default: true
  43361. },
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(4 + 6/12, "feet"),
  43365. form: "skunk",
  43366. default: true
  43367. },
  43368. ],
  43369. {
  43370. "labrador": {
  43371. name: "Labrador",
  43372. default: true
  43373. },
  43374. "skunk": {
  43375. name: "Skunk"
  43376. }
  43377. }
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(5 + 11/12, "feet"),
  43384. weight: math.unit(190, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/mizu/front.svg",
  43388. extra: 1988/1788,
  43389. bottom: 14/2002
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(5 + 11/12, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(1.7, "feet"),
  43406. weight: math.unit(50, "lb"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/dechroma/front.svg",
  43410. extra: 1095/859,
  43411. bottom: 64/1159
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(1.7, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43425. {
  43426. side: {
  43427. height: math.unit(30, "feet"),
  43428. name: "Side",
  43429. image: {
  43430. source: "./media/characters/veluren-thanazel/side.svg",
  43431. extra: 1611/633,
  43432. bottom: 118/1729
  43433. }
  43434. },
  43435. front: {
  43436. height: math.unit(30, "feet"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/veluren-thanazel/front.svg",
  43440. extra: 1486/636,
  43441. bottom: 238/1724
  43442. }
  43443. },
  43444. head: {
  43445. height: math.unit(21.4, "feet"),
  43446. name: "Head",
  43447. image: {
  43448. source: "./media/characters/veluren-thanazel/head.svg"
  43449. }
  43450. },
  43451. genitals: {
  43452. height: math.unit(19.4, "feet"),
  43453. name: "Genitals",
  43454. image: {
  43455. source: "./media/characters/veluren-thanazel/genitals.svg"
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Social",
  43462. height: math.unit(6, "feet")
  43463. },
  43464. {
  43465. name: "Play",
  43466. height: math.unit(12, "feet")
  43467. },
  43468. {
  43469. name: "True",
  43470. height: math.unit(30, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(7 + 6/12, "feet"),
  43480. weight: math.unit(500, "kg"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/arcturas/front.svg",
  43484. extra: 1700/1500,
  43485. bottom: 145/1845
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Normal",
  43492. height: math.unit(7 + 6/12, "feet"),
  43493. default: true
  43494. },
  43495. ]
  43496. ))
  43497. characterMakers.push(() => makeCharacter(
  43498. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43499. {
  43500. side: {
  43501. height: math.unit(6, "feet"),
  43502. weight: math.unit(2, "tons"),
  43503. name: "Side",
  43504. image: {
  43505. source: "./media/characters/vitaen/side.svg",
  43506. extra: 1157/617,
  43507. bottom: 122/1279
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(6, "feet"),
  43515. default: true
  43516. },
  43517. ]
  43518. ))
  43519. characterMakers.push(() => makeCharacter(
  43520. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43521. {
  43522. front: {
  43523. height: math.unit(19, "feet"),
  43524. name: "Front",
  43525. image: {
  43526. source: "./media/characters/fia-dreamweaver/front.svg",
  43527. extra: 1630/1504,
  43528. bottom: 25/1655
  43529. }
  43530. },
  43531. },
  43532. [
  43533. {
  43534. name: "Normal",
  43535. height: math.unit(19, "feet"),
  43536. default: true
  43537. },
  43538. ]
  43539. ))
  43540. characterMakers.push(() => makeCharacter(
  43541. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43542. {
  43543. front: {
  43544. height: math.unit(5 + 4/12, "feet"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/artan/front.svg",
  43548. extra: 1618/1535,
  43549. bottom: 46/1664
  43550. }
  43551. },
  43552. back: {
  43553. height: math.unit(5 + 4/12, "feet"),
  43554. name: "Back",
  43555. image: {
  43556. source: "./media/characters/artan/back.svg",
  43557. extra: 1618/1543,
  43558. bottom: 31/1649
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Normal",
  43565. height: math.unit(5 + 4/12, "feet"),
  43566. default: true
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43572. {
  43573. side: {
  43574. height: math.unit(182, "cm"),
  43575. weight: math.unit(1000, "lb"),
  43576. name: "Side",
  43577. image: {
  43578. source: "./media/characters/silver-dragon/side.svg",
  43579. extra: 710/287,
  43580. bottom: 88/798
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Normal",
  43587. height: math.unit(182, "cm"),
  43588. default: true
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43594. {
  43595. side: {
  43596. height: math.unit(6 + 6/12, "feet"),
  43597. weight: math.unit(1.5, "tons"),
  43598. name: "Side",
  43599. image: {
  43600. source: "./media/characters/zephyr/side.svg",
  43601. extra: 1433/586,
  43602. bottom: 109/1542
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(6 + 6/12, "feet"),
  43610. default: true
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43616. {
  43617. side: {
  43618. height: math.unit(1, "feet"),
  43619. name: "Side",
  43620. image: {
  43621. source: "./media/characters/vixye/side.svg",
  43622. extra: 632/541,
  43623. bottom: 0/632
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(1, "feet"),
  43631. default: true
  43632. },
  43633. {
  43634. name: "True",
  43635. height: math.unit(1e15, "multiverses")
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(8 + 2/12, "feet"),
  43644. weight: math.unit(650, "lb"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43648. extra: 1174/1137,
  43649. bottom: 82/1256
  43650. }
  43651. },
  43652. back: {
  43653. height: math.unit(8 + 2/12, "feet"),
  43654. weight: math.unit(650, "lb"),
  43655. name: "Back",
  43656. image: {
  43657. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43658. extra: 1204/1157,
  43659. bottom: 46/1250
  43660. }
  43661. },
  43662. },
  43663. [
  43664. {
  43665. name: "Wildform",
  43666. height: math.unit(8 + 2/12, "feet"),
  43667. default: true
  43668. },
  43669. ]
  43670. ))
  43671. characterMakers.push(() => makeCharacter(
  43672. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43673. {
  43674. front: {
  43675. height: math.unit(18, "feet"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/cyphin/front.svg",
  43679. extra: 970/886,
  43680. bottom: 42/1012
  43681. }
  43682. },
  43683. back: {
  43684. height: math.unit(18, "feet"),
  43685. name: "Back",
  43686. image: {
  43687. source: "./media/characters/cyphin/back.svg",
  43688. extra: 1009/894,
  43689. bottom: 24/1033
  43690. }
  43691. },
  43692. head: {
  43693. height: math.unit(5.05, "feet"),
  43694. name: "Head",
  43695. image: {
  43696. source: "./media/characters/cyphin/head.svg"
  43697. }
  43698. },
  43699. tailbud: {
  43700. height: math.unit(5, "feet"),
  43701. name: "Tailbud",
  43702. image: {
  43703. source: "./media/characters/cyphin/tailbud.svg"
  43704. }
  43705. },
  43706. },
  43707. [
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43712. {
  43713. side: {
  43714. height: math.unit(10, "feet"),
  43715. weight: math.unit(6, "tons"),
  43716. name: "Side",
  43717. image: {
  43718. source: "./media/characters/raijin/side.svg",
  43719. extra: 1529/613,
  43720. bottom: 337/1866
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "Normal",
  43727. height: math.unit(10, "feet"),
  43728. default: true
  43729. },
  43730. ]
  43731. ))
  43732. characterMakers.push(() => makeCharacter(
  43733. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43734. {
  43735. side: {
  43736. height: math.unit(9, "feet"),
  43737. name: "Side",
  43738. image: {
  43739. source: "./media/characters/nilghais/side.svg",
  43740. extra: 1047/744,
  43741. bottom: 91/1138
  43742. }
  43743. },
  43744. head: {
  43745. height: math.unit(3.14, "feet"),
  43746. name: "Head",
  43747. image: {
  43748. source: "./media/characters/nilghais/head.svg"
  43749. }
  43750. },
  43751. mouth: {
  43752. height: math.unit(4.6, "feet"),
  43753. name: "Mouth",
  43754. image: {
  43755. source: "./media/characters/nilghais/mouth.svg"
  43756. }
  43757. },
  43758. wings: {
  43759. height: math.unit(24, "feet"),
  43760. name: "Wings",
  43761. image: {
  43762. source: "./media/characters/nilghais/wings.svg"
  43763. }
  43764. },
  43765. ass: {
  43766. height: math.unit(6.12, "feet"),
  43767. name: "Ass",
  43768. image: {
  43769. source: "./media/characters/nilghais/ass.svg"
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(9, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43783. {
  43784. regular: {
  43785. height: math.unit(16 + 2/12, "feet"),
  43786. weight: math.unit(2300, "lb"),
  43787. name: "Regular",
  43788. image: {
  43789. source: "./media/characters/zolgar/regular.svg",
  43790. extra: 1246/1004,
  43791. bottom: 124/1370
  43792. }
  43793. },
  43794. boxers: {
  43795. height: math.unit(16 + 2/12, "feet"),
  43796. weight: math.unit(2300, "lb"),
  43797. name: "Boxers",
  43798. image: {
  43799. source: "./media/characters/zolgar/boxers.svg",
  43800. extra: 1246/1004,
  43801. bottom: 124/1370
  43802. }
  43803. },
  43804. armored: {
  43805. height: math.unit(16 + 2/12, "feet"),
  43806. weight: math.unit(2300, "lb"),
  43807. name: "Armored",
  43808. image: {
  43809. source: "./media/characters/zolgar/armored.svg",
  43810. extra: 1246/1004,
  43811. bottom: 124/1370
  43812. }
  43813. },
  43814. goth: {
  43815. height: math.unit(16 + 2/12, "feet"),
  43816. weight: math.unit(2300, "lb"),
  43817. name: "Goth",
  43818. image: {
  43819. source: "./media/characters/zolgar/goth.svg",
  43820. extra: 1246/1004,
  43821. bottom: 124/1370
  43822. }
  43823. },
  43824. },
  43825. [
  43826. {
  43827. name: "Shrunken Down",
  43828. height: math.unit(9 + 2/12, "feet")
  43829. },
  43830. {
  43831. name: "Normal",
  43832. height: math.unit(16 + 2/12, "feet"),
  43833. default: true
  43834. },
  43835. ]
  43836. ))
  43837. characterMakers.push(() => makeCharacter(
  43838. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43839. {
  43840. front: {
  43841. height: math.unit(6, "feet"),
  43842. weight: math.unit(168, "lb"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/luca/front.svg",
  43846. extra: 841/667,
  43847. bottom: 102/943
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Normal",
  43854. height: math.unit(6, "feet"),
  43855. default: true
  43856. },
  43857. ]
  43858. ))
  43859. characterMakers.push(() => makeCharacter(
  43860. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43861. {
  43862. side: {
  43863. height: math.unit(7 + 3/12, "feet"),
  43864. weight: math.unit(312, "lb"),
  43865. name: "Side",
  43866. image: {
  43867. source: "./media/characters/zezo/side.svg",
  43868. extra: 1192/1067,
  43869. bottom: 63/1255
  43870. }
  43871. },
  43872. },
  43873. [
  43874. {
  43875. name: "Normal",
  43876. height: math.unit(7 + 3/12, "feet"),
  43877. default: true
  43878. },
  43879. ]
  43880. ))
  43881. characterMakers.push(() => makeCharacter(
  43882. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43883. {
  43884. front: {
  43885. height: math.unit(5 + 5/12, "feet"),
  43886. weight: math.unit(170, "lb"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/mayso/front.svg",
  43890. extra: 1215/1108,
  43891. bottom: 16/1231
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(5 + 5/12, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(4 + 3/12, "feet"),
  43908. weight: math.unit(80, "lb"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/hess/front.svg",
  43912. extra: 1200/1123,
  43913. bottom: 16/1216
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(4 + 3/12, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43927. {
  43928. front: {
  43929. height: math.unit(1.9, "meters"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/ashgar/front.svg",
  43933. extra: 1177/1146,
  43934. bottom: 99/1276
  43935. }
  43936. },
  43937. back: {
  43938. height: math.unit(1.9, "meters"),
  43939. name: "Back",
  43940. image: {
  43941. source: "./media/characters/ashgar/back.svg",
  43942. extra: 1201/1183,
  43943. bottom: 53/1254
  43944. }
  43945. },
  43946. feral: {
  43947. height: math.unit(1.4, "meters"),
  43948. name: "Feral",
  43949. image: {
  43950. source: "./media/characters/ashgar/feral.svg",
  43951. extra: 370/345,
  43952. bottom: 45/415
  43953. }
  43954. },
  43955. },
  43956. [
  43957. {
  43958. name: "Normal",
  43959. height: math.unit(1.9, "meters"),
  43960. default: true
  43961. },
  43962. ]
  43963. ))
  43964. characterMakers.push(() => makeCharacter(
  43965. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43966. {
  43967. regular: {
  43968. height: math.unit(6, "feet"),
  43969. weight: math.unit(220, "lb"),
  43970. name: "Regular",
  43971. image: {
  43972. source: "./media/characters/phillip/regular.svg",
  43973. extra: 1373/1277,
  43974. bottom: 75/1448
  43975. }
  43976. },
  43977. dressed: {
  43978. height: math.unit(6, "feet"),
  43979. weight: math.unit(220, "lb"),
  43980. name: "Dressed",
  43981. image: {
  43982. source: "./media/characters/phillip/dressed.svg",
  43983. extra: 1373/1277,
  43984. bottom: 75/1448
  43985. }
  43986. },
  43987. paw: {
  43988. height: math.unit(1.44, "feet"),
  43989. name: "Paw",
  43990. image: {
  43991. source: "./media/characters/phillip/paw.svg"
  43992. }
  43993. },
  43994. },
  43995. [
  43996. {
  43997. name: "Normal",
  43998. height: math.unit(6, "feet"),
  43999. default: true
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44005. {
  44006. side: {
  44007. height: math.unit(42, "feet"),
  44008. name: "Side",
  44009. image: {
  44010. source: "./media/characters/uvula/side.svg",
  44011. extra: 683/586,
  44012. bottom: 60/743
  44013. }
  44014. },
  44015. front: {
  44016. height: math.unit(42, "feet"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/uvula/front.svg",
  44020. extra: 705/613,
  44021. bottom: 54/759
  44022. }
  44023. },
  44024. maw: {
  44025. height: math.unit(23.5, "feet"),
  44026. name: "Maw",
  44027. image: {
  44028. source: "./media/characters/uvula/maw.svg"
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Original Size",
  44035. height: math.unit(14, "inches")
  44036. },
  44037. {
  44038. name: "Human Size",
  44039. height: math.unit(6, "feet")
  44040. },
  44041. {
  44042. name: "Big",
  44043. height: math.unit(42, "feet"),
  44044. default: true
  44045. },
  44046. {
  44047. name: "Bigger",
  44048. height: math.unit(100, "feet")
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(5 + 11/12, "feet"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/lannah/front.svg",
  44060. extra: 1208/1113,
  44061. bottom: 97/1305
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(5 + 11/12, "feet"),
  44069. default: true
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44075. {
  44076. front: {
  44077. height: math.unit(6 + 3/12, "feet"),
  44078. weight: math.unit(3.5, "tons"),
  44079. name: "Front",
  44080. image: {
  44081. source: "./media/characters/emberflame/front.svg",
  44082. extra: 1198/672,
  44083. bottom: 82/1280
  44084. }
  44085. },
  44086. side: {
  44087. height: math.unit(6 + 3/12, "feet"),
  44088. weight: math.unit(3.5, "tons"),
  44089. name: "Side",
  44090. image: {
  44091. source: "./media/characters/emberflame/side.svg",
  44092. extra: 938/527,
  44093. bottom: 56/994
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(6 + 3/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44107. {
  44108. side: {
  44109. height: math.unit(17.5, "feet"),
  44110. weight: math.unit(35, "tons"),
  44111. name: "Side",
  44112. image: {
  44113. source: "./media/characters/sophie-ambrose/side.svg",
  44114. extra: 1573/1242,
  44115. bottom: 71/1644
  44116. }
  44117. },
  44118. maw: {
  44119. height: math.unit(7.4, "feet"),
  44120. name: "Maw",
  44121. image: {
  44122. source: "./media/characters/sophie-ambrose/maw.svg"
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(17.5, "feet"),
  44130. default: true
  44131. },
  44132. ]
  44133. ))
  44134. characterMakers.push(() => makeCharacter(
  44135. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44136. {
  44137. front: {
  44138. height: math.unit(280, "feet"),
  44139. weight: math.unit(550, "tons"),
  44140. name: "Front",
  44141. image: {
  44142. source: "./media/characters/king-mugi/front.svg",
  44143. extra: 1102/947,
  44144. bottom: 104/1206
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "King Mugi",
  44151. height: math.unit(280, "feet"),
  44152. default: true
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44158. {
  44159. front: {
  44160. height: math.unit(64, "meters"),
  44161. name: "Front",
  44162. image: {
  44163. source: "./media/characters/nova-fox/front.svg",
  44164. extra: 1310/1246,
  44165. bottom: 65/1375
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Macro",
  44172. height: math.unit(64, "meters"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. characterMakers.push(() => makeCharacter(
  44178. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44179. {
  44180. front: {
  44181. height: math.unit(6 + 3/12, "feet"),
  44182. weight: math.unit(170, "lb"),
  44183. name: "Front",
  44184. image: {
  44185. source: "./media/characters/sam-bat/front.svg",
  44186. extra: 1601/1411,
  44187. bottom: 125/1726
  44188. }
  44189. },
  44190. back: {
  44191. height: math.unit(6 + 3/12, "feet"),
  44192. weight: math.unit(170, "lb"),
  44193. name: "Back",
  44194. image: {
  44195. source: "./media/characters/sam-bat/back.svg",
  44196. extra: 1577/1405,
  44197. bottom: 58/1635
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(6 + 3/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44211. {
  44212. front: {
  44213. height: math.unit(59, "feet"),
  44214. weight: math.unit(40000, "lb"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/inari/front.svg",
  44218. extra: 1884/1350,
  44219. bottom: 95/1979
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Gigantamax",
  44226. height: math.unit(59, "feet"),
  44227. default: true
  44228. },
  44229. ]
  44230. ))
  44231. characterMakers.push(() => makeCharacter(
  44232. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44233. {
  44234. front: {
  44235. height: math.unit(5 + 8/12, "feet"),
  44236. name: "Front",
  44237. image: {
  44238. source: "./media/characters/elizabeth/front.svg",
  44239. extra: 1395/1298,
  44240. bottom: 54/1449
  44241. }
  44242. },
  44243. mouth: {
  44244. height: math.unit(1.97, "feet"),
  44245. name: "Mouth",
  44246. image: {
  44247. source: "./media/characters/elizabeth/mouth.svg"
  44248. }
  44249. },
  44250. foot: {
  44251. height: math.unit(1.17, "feet"),
  44252. name: "Foot",
  44253. image: {
  44254. source: "./media/characters/elizabeth/foot.svg"
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(5 + 8/12, "feet"),
  44262. default: true
  44263. },
  44264. {
  44265. name: "Minimacro",
  44266. height: math.unit(18, "feet")
  44267. },
  44268. {
  44269. name: "Macro",
  44270. height: math.unit(180, "feet")
  44271. },
  44272. ]
  44273. ))
  44274. characterMakers.push(() => makeCharacter(
  44275. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44276. {
  44277. front: {
  44278. height: math.unit(5 + 2/12, "feet"),
  44279. name: "Front",
  44280. image: {
  44281. source: "./media/characters/october-gossamer/front.svg",
  44282. extra: 505/454,
  44283. bottom: 7/512
  44284. }
  44285. },
  44286. back: {
  44287. height: math.unit(5 + 2/12, "feet"),
  44288. name: "Back",
  44289. image: {
  44290. source: "./media/characters/october-gossamer/back.svg",
  44291. extra: 501/454,
  44292. bottom: 11/512
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(5 + 2/12, "feet"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44306. {
  44307. front: {
  44308. height: math.unit(5, "feet"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/epiglottis/front.svg",
  44312. extra: 923/849,
  44313. bottom: 17/940
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Original Size",
  44320. height: math.unit(10, "inches")
  44321. },
  44322. {
  44323. name: "Human Size",
  44324. height: math.unit(5, "feet"),
  44325. default: true
  44326. },
  44327. {
  44328. name: "Big",
  44329. height: math.unit(25, "feet")
  44330. },
  44331. {
  44332. name: "Bigger",
  44333. height: math.unit(50, "feet")
  44334. },
  44335. {
  44336. name: "oh lawd",
  44337. height: math.unit(75, "feet")
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(2 + 4/12, "feet"),
  44346. weight: math.unit(60, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/lerm/front.svg",
  44350. extra: 796/790,
  44351. bottom: 79/875
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(2 + 4/12, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(5.5, "feet"),
  44368. weight: math.unit(130, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/xena-nebadon/front.svg",
  44372. extra: 1828/1730,
  44373. bottom: 79/1907
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "Tiny Puppy",
  44380. height: math.unit(3, "inches")
  44381. },
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(5.5, "feet"),
  44385. default: true
  44386. },
  44387. {
  44388. name: "Lotta Lady",
  44389. height: math.unit(12, "feet")
  44390. },
  44391. {
  44392. name: "Pretty Big",
  44393. height: math.unit(100, "feet")
  44394. },
  44395. {
  44396. name: "Big",
  44397. height: math.unit(500, "feet")
  44398. },
  44399. {
  44400. name: "Skyscraper Toys",
  44401. height: math.unit(2500, "feet")
  44402. },
  44403. {
  44404. name: "Plane Catcher",
  44405. height: math.unit(8, "miles")
  44406. },
  44407. {
  44408. name: "Planet Toys",
  44409. height: math.unit(15, "earths")
  44410. },
  44411. {
  44412. name: "Stardust",
  44413. height: math.unit(0.25, "galaxies")
  44414. },
  44415. {
  44416. name: "Snacks",
  44417. height: math.unit(70, "universes")
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(1.6, "meters"),
  44426. weight: math.unit(60, "kg"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/bounty/front.svg",
  44430. extra: 1426/1308,
  44431. bottom: 15/1441
  44432. }
  44433. },
  44434. back: {
  44435. height: math.unit(1.6, "meters"),
  44436. weight: math.unit(60, "kg"),
  44437. name: "Back",
  44438. image: {
  44439. source: "./media/characters/bounty/back.svg",
  44440. extra: 1417/1307,
  44441. bottom: 8/1425
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Normal",
  44448. height: math.unit(1.6, "meters"),
  44449. default: true
  44450. },
  44451. {
  44452. name: "Macro",
  44453. height: math.unit(300, "meters")
  44454. },
  44455. ]
  44456. ))
  44457. characterMakers.push(() => makeCharacter(
  44458. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44459. {
  44460. front: {
  44461. height: math.unit(2 + 8/12, "feet"),
  44462. weight: math.unit(15, "lb"),
  44463. name: "Front",
  44464. image: {
  44465. source: "./media/characters/mochi/front.svg",
  44466. extra: 1022/852,
  44467. bottom: 435/1457
  44468. }
  44469. },
  44470. back: {
  44471. height: math.unit(2 + 8/12, "feet"),
  44472. weight: math.unit(15, "lb"),
  44473. name: "Back",
  44474. image: {
  44475. source: "./media/characters/mochi/back.svg",
  44476. extra: 1335/1119,
  44477. bottom: 39/1374
  44478. }
  44479. },
  44480. bird: {
  44481. height: math.unit(2 + 8/12, "feet"),
  44482. weight: math.unit(15, "lb"),
  44483. name: "Bird",
  44484. image: {
  44485. source: "./media/characters/mochi/bird.svg",
  44486. extra: 1251/1113,
  44487. bottom: 178/1429
  44488. }
  44489. },
  44490. kaiju: {
  44491. height: math.unit(154, "feet"),
  44492. weight: math.unit(1e7, "lb"),
  44493. name: "Kaiju",
  44494. image: {
  44495. source: "./media/characters/mochi/kaiju.svg",
  44496. extra: 460/324,
  44497. bottom: 40/500
  44498. }
  44499. },
  44500. head: {
  44501. height: math.unit(1.21, "feet"),
  44502. name: "Head",
  44503. image: {
  44504. source: "./media/characters/mochi/head.svg"
  44505. }
  44506. },
  44507. alternateTail: {
  44508. height: math.unit(2 + 8/12, "feet"),
  44509. weight: math.unit(45, "lb"),
  44510. name: "Alternate Tail",
  44511. image: {
  44512. source: "./media/characters/mochi/alternate-tail.svg",
  44513. extra: 139/76,
  44514. bottom: 45/184
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Micro",
  44521. height: math.unit(2, "inches")
  44522. },
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(2 + 8/12, "feet"),
  44526. default: true
  44527. },
  44528. {
  44529. name: "Macro",
  44530. height: math.unit(106, "feet")
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44536. {
  44537. front: {
  44538. height: math.unit(5.67, "feet"),
  44539. weight: math.unit(135, "lb"),
  44540. name: "Front",
  44541. image: {
  44542. source: "./media/characters/sarel/front.svg",
  44543. extra: 865/788,
  44544. bottom: 97/962
  44545. }
  44546. },
  44547. back: {
  44548. height: math.unit(5.67, "feet"),
  44549. weight: math.unit(135, "lb"),
  44550. name: "Back",
  44551. image: {
  44552. source: "./media/characters/sarel/back.svg",
  44553. extra: 857/777,
  44554. bottom: 32/889
  44555. }
  44556. },
  44557. chozoan: {
  44558. height: math.unit(5.67, "feet"),
  44559. weight: math.unit(135, "lb"),
  44560. name: "Chozoan",
  44561. image: {
  44562. source: "./media/characters/sarel/chozoan.svg",
  44563. extra: 865/788,
  44564. bottom: 97/962
  44565. }
  44566. },
  44567. current: {
  44568. height: math.unit(5.67, "feet"),
  44569. weight: math.unit(135, "lb"),
  44570. name: "Current",
  44571. image: {
  44572. source: "./media/characters/sarel/current.svg",
  44573. extra: 865/788,
  44574. bottom: 97/962
  44575. }
  44576. },
  44577. head: {
  44578. height: math.unit(1.77, "feet"),
  44579. name: "Head",
  44580. image: {
  44581. source: "./media/characters/sarel/head.svg"
  44582. }
  44583. },
  44584. claws: {
  44585. height: math.unit(1.8, "feet"),
  44586. name: "Claws",
  44587. image: {
  44588. source: "./media/characters/sarel/claws.svg"
  44589. }
  44590. },
  44591. clawsAlt: {
  44592. height: math.unit(1.8, "feet"),
  44593. name: "Claws-alt",
  44594. image: {
  44595. source: "./media/characters/sarel/claws-alt.svg"
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(5.67, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(5500, "feet"),
  44612. name: "Front",
  44613. image: {
  44614. source: "./media/characters/alyonia/front.svg",
  44615. extra: 1200/1135,
  44616. bottom: 29/1229
  44617. }
  44618. },
  44619. back: {
  44620. height: math.unit(5500, "feet"),
  44621. name: "Back",
  44622. image: {
  44623. source: "./media/characters/alyonia/back.svg",
  44624. extra: 1205/1138,
  44625. bottom: 10/1215
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Small",
  44632. height: math.unit(10, "feet")
  44633. },
  44634. {
  44635. name: "Macro",
  44636. height: math.unit(500, "feet")
  44637. },
  44638. {
  44639. name: "Mega Macro",
  44640. height: math.unit(5500, "feet"),
  44641. default: true
  44642. },
  44643. {
  44644. name: "Mega Macro+",
  44645. height: math.unit(500000, "feet")
  44646. },
  44647. {
  44648. name: "Giga Macro",
  44649. height: math.unit(3000, "miles")
  44650. },
  44651. {
  44652. name: "Tera Macro",
  44653. height: math.unit(2.8e6, "miles")
  44654. },
  44655. {
  44656. name: "Galactic",
  44657. height: math.unit(120000, "lightyears")
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44663. {
  44664. werewolf: {
  44665. height: math.unit(8, "feet"),
  44666. weight: math.unit(425, "lb"),
  44667. name: "Werewolf",
  44668. image: {
  44669. source: "./media/characters/autumn/werewolf.svg",
  44670. extra: 2154/2031,
  44671. bottom: 160/2314
  44672. }
  44673. },
  44674. human: {
  44675. height: math.unit(5 + 8/12, "feet"),
  44676. weight: math.unit(150, "lb"),
  44677. name: "Human",
  44678. image: {
  44679. source: "./media/characters/autumn/human.svg",
  44680. extra: 1200/1149,
  44681. bottom: 30/1230
  44682. }
  44683. },
  44684. },
  44685. [
  44686. {
  44687. name: "Normal",
  44688. height: math.unit(8, "feet"),
  44689. default: true
  44690. },
  44691. ]
  44692. ))
  44693. characterMakers.push(() => makeCharacter(
  44694. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44695. {
  44696. front: {
  44697. height: math.unit(8 + 5/12, "feet"),
  44698. weight: math.unit(825, "lb"),
  44699. name: "Front",
  44700. image: {
  44701. source: "./media/characters/cobalt-charizard/front.svg",
  44702. extra: 1268/1155,
  44703. bottom: 122/1390
  44704. }
  44705. },
  44706. side: {
  44707. height: math.unit(8 + 5/12, "feet"),
  44708. weight: math.unit(825, "lb"),
  44709. name: "Side",
  44710. image: {
  44711. source: "./media/characters/cobalt-charizard/side.svg",
  44712. extra: 1348/1257,
  44713. bottom: 58/1406
  44714. }
  44715. },
  44716. gMax: {
  44717. height: math.unit(134 + 11/12, "feet"),
  44718. name: "G-Max",
  44719. image: {
  44720. source: "./media/characters/cobalt-charizard/g-max.svg",
  44721. extra: 1835/1541,
  44722. bottom: 151/1986
  44723. }
  44724. },
  44725. },
  44726. [
  44727. {
  44728. name: "Normal",
  44729. height: math.unit(8 + 5/12, "feet"),
  44730. default: true
  44731. },
  44732. ]
  44733. ))
  44734. characterMakers.push(() => makeCharacter(
  44735. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44736. {
  44737. front: {
  44738. height: math.unit(6 + 3/12, "feet"),
  44739. weight: math.unit(210, "lb"),
  44740. name: "Front",
  44741. image: {
  44742. source: "./media/characters/stella/front.svg",
  44743. extra: 3549/3335,
  44744. bottom: 51/3600
  44745. }
  44746. },
  44747. },
  44748. [
  44749. {
  44750. name: "Normal",
  44751. height: math.unit(6 + 3/12, "feet"),
  44752. default: true
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44758. {
  44759. front: {
  44760. height: math.unit(5, "feet"),
  44761. weight: math.unit(90, "lb"),
  44762. name: "Front",
  44763. image: {
  44764. source: "./media/characters/riley-bishop/front.svg",
  44765. extra: 1450/1428,
  44766. bottom: 152/1602
  44767. }
  44768. },
  44769. },
  44770. [
  44771. {
  44772. name: "Normal",
  44773. height: math.unit(5, "feet"),
  44774. default: true
  44775. },
  44776. ]
  44777. ))
  44778. characterMakers.push(() => makeCharacter(
  44779. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44780. {
  44781. side: {
  44782. height: math.unit(8 + 2/12, "feet"),
  44783. weight: math.unit(500, "kg"),
  44784. name: "Side",
  44785. image: {
  44786. source: "./media/characters/theo-arcanine/side.svg",
  44787. extra: 1342/1074,
  44788. bottom: 111/1453
  44789. }
  44790. },
  44791. },
  44792. [
  44793. {
  44794. name: "Normal",
  44795. height: math.unit(8 + 2/12, "feet"),
  44796. default: true
  44797. },
  44798. ]
  44799. ))
  44800. characterMakers.push(() => makeCharacter(
  44801. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44802. {
  44803. front: {
  44804. height: math.unit(4, "feet"),
  44805. name: "Front",
  44806. image: {
  44807. source: "./media/characters/kali/front.svg",
  44808. extra: 1921/1357,
  44809. bottom: 70/1991
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(4, "feet"),
  44817. default: true
  44818. },
  44819. {
  44820. name: "Macro",
  44821. height: math.unit(32, "meters")
  44822. },
  44823. {
  44824. name: "Macro+",
  44825. height: math.unit(150, "meters")
  44826. },
  44827. {
  44828. name: "Megamacro",
  44829. height: math.unit(7500, "meters")
  44830. },
  44831. {
  44832. name: "Megamacro+",
  44833. height: math.unit(80, "kilometers")
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44839. {
  44840. side: {
  44841. height: math.unit(5 + 11/12, "feet"),
  44842. weight: math.unit(236, "lb"),
  44843. name: "Side",
  44844. image: {
  44845. source: "./media/characters/gapp/side.svg",
  44846. extra: 775/340,
  44847. bottom: 58/833
  44848. }
  44849. },
  44850. mouth: {
  44851. height: math.unit(2.98, "feet"),
  44852. name: "Mouth",
  44853. image: {
  44854. source: "./media/characters/gapp/mouth.svg"
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(5 + 1/12, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(6, "feet"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/persephone/front.svg",
  44874. extra: 1895/1717,
  44875. bottom: 96/1991
  44876. }
  44877. },
  44878. back: {
  44879. height: math.unit(6, "feet"),
  44880. name: "Back",
  44881. image: {
  44882. source: "./media/characters/persephone/back.svg",
  44883. extra: 1868/1679,
  44884. bottom: 26/1894
  44885. }
  44886. },
  44887. casual: {
  44888. height: math.unit(6, "feet"),
  44889. name: "Casual",
  44890. image: {
  44891. source: "./media/characters/persephone/casual.svg",
  44892. extra: 1713/1541,
  44893. bottom: 76/1789
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Human Size",
  44900. height: math.unit(6, "feet")
  44901. },
  44902. {
  44903. name: "Big Steppy",
  44904. height: math.unit(600, "meters"),
  44905. default: true
  44906. },
  44907. {
  44908. name: "Galaxy Brain",
  44909. height: math.unit(1, "zettameter")
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(1.85, "meters"),
  44918. name: "Front",
  44919. image: {
  44920. source: "./media/characters/riley-foxthing/front.svg",
  44921. extra: 1495/1354,
  44922. bottom: 122/1617
  44923. }
  44924. },
  44925. frontAlt: {
  44926. height: math.unit(1.85, "meters"),
  44927. name: "Front (Alt)",
  44928. image: {
  44929. source: "./media/characters/riley-foxthing/front-alt.svg",
  44930. extra: 1572/1389,
  44931. bottom: 116/1688
  44932. }
  44933. },
  44934. },
  44935. [
  44936. {
  44937. name: "Normal Sized",
  44938. height: math.unit(1.85, "meters"),
  44939. default: true
  44940. },
  44941. {
  44942. name: "Quite Sizable",
  44943. height: math.unit(5, "meters")
  44944. },
  44945. {
  44946. name: "Rather Large",
  44947. height: math.unit(20, "meters")
  44948. },
  44949. {
  44950. name: "Macro",
  44951. height: math.unit(450, "meters")
  44952. },
  44953. {
  44954. name: "Giga",
  44955. height: math.unit(5, "km")
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(6, "feet"),
  44964. weight: math.unit(200, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/blizzard/front.svg",
  44968. extra: 1136/990,
  44969. bottom: 136/1272
  44970. }
  44971. },
  44972. back: {
  44973. height: math.unit(6, "feet"),
  44974. weight: math.unit(200, "lb"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/blizzard/back.svg",
  44978. extra: 1175/1034,
  44979. bottom: 97/1272
  44980. }
  44981. },
  44982. sitting: {
  44983. height: math.unit(3.725, "feet"),
  44984. weight: math.unit(200, "lb"),
  44985. name: "Sitting",
  44986. image: {
  44987. source: "./media/characters/blizzard/sitting.svg",
  44988. extra: 581/485,
  44989. bottom: 90/671
  44990. }
  44991. },
  44992. frontWizard: {
  44993. height: math.unit(7.9, "feet"),
  44994. weight: math.unit(200, "lb"),
  44995. name: "Front (Wizard)",
  44996. image: {
  44997. source: "./media/characters/blizzard/front-wizard.svg"
  44998. }
  44999. },
  45000. backWizard: {
  45001. height: math.unit(7.9, "feet"),
  45002. weight: math.unit(200, "lb"),
  45003. name: "Back (Wizard)",
  45004. image: {
  45005. source: "./media/characters/blizzard/back-wizard.svg"
  45006. }
  45007. },
  45008. frontNsfw: {
  45009. height: math.unit(6, "feet"),
  45010. weight: math.unit(200, "lb"),
  45011. name: "Front (NSFW)",
  45012. image: {
  45013. source: "./media/characters/blizzard/front-nsfw.svg",
  45014. extra: 1136/990,
  45015. bottom: 136/1272
  45016. }
  45017. },
  45018. backNsfw: {
  45019. height: math.unit(6, "feet"),
  45020. weight: math.unit(200, "lb"),
  45021. name: "Back (NSFW)",
  45022. image: {
  45023. source: "./media/characters/blizzard/back-nsfw.svg",
  45024. extra: 1175/1034,
  45025. bottom: 97/1272
  45026. }
  45027. },
  45028. sittingNsfw: {
  45029. height: math.unit(3.725, "feet"),
  45030. weight: math.unit(200, "lb"),
  45031. name: "Sitting (NSFW)",
  45032. image: {
  45033. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45034. extra: 581/485,
  45035. bottom: 90/671
  45036. }
  45037. },
  45038. wizardFrontNsfw: {
  45039. height: math.unit(7.9, "feet"),
  45040. weight: math.unit(200, "lb"),
  45041. name: "Wizard (Front, NSFW)",
  45042. image: {
  45043. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45044. }
  45045. },
  45046. },
  45047. [
  45048. {
  45049. name: "Normal",
  45050. height: math.unit(6, "feet"),
  45051. default: true
  45052. },
  45053. ]
  45054. ))
  45055. characterMakers.push(() => makeCharacter(
  45056. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45057. {
  45058. front: {
  45059. height: math.unit(5 + 2/12, "feet"),
  45060. name: "Front",
  45061. image: {
  45062. source: "./media/characters/lumi/front.svg",
  45063. extra: 1328/1268,
  45064. bottom: 103/1431
  45065. }
  45066. },
  45067. back: {
  45068. height: math.unit(5 + 2/12, "feet"),
  45069. name: "Back",
  45070. image: {
  45071. source: "./media/characters/lumi/back.svg",
  45072. extra: 1381/1327,
  45073. bottom: 43/1424
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(5 + 2/12, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(5 + 9/12, "feet"),
  45090. name: "Front",
  45091. image: {
  45092. source: "./media/characters/aliya-cotton/front.svg",
  45093. extra: 577/564,
  45094. bottom: 29/606
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(5 + 9/12, "feet"),
  45102. default: true
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45108. {
  45109. front: {
  45110. height: math.unit(2.7, "meters"),
  45111. weight: math.unit(25000, "lb"),
  45112. name: "Front",
  45113. image: {
  45114. source: "./media/characters/noah-luxray/front.svg",
  45115. extra: 1644/825,
  45116. bottom: 339/1983
  45117. }
  45118. },
  45119. side: {
  45120. height: math.unit(2.97, "meters"),
  45121. weight: math.unit(25000, "lb"),
  45122. name: "Side",
  45123. image: {
  45124. source: "./media/characters/noah-luxray/side.svg",
  45125. extra: 1319/650,
  45126. bottom: 163/1482
  45127. }
  45128. },
  45129. dick: {
  45130. height: math.unit(7.4, "feet"),
  45131. weight: math.unit(2500, "lb"),
  45132. name: "Dick",
  45133. image: {
  45134. source: "./media/characters/noah-luxray/dick.svg"
  45135. }
  45136. },
  45137. dickAlt: {
  45138. height: math.unit(10.83, "feet"),
  45139. weight: math.unit(2500, "lb"),
  45140. name: "Dick-alt",
  45141. image: {
  45142. source: "./media/characters/noah-luxray/dick-alt.svg"
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "BIG",
  45149. height: math.unit(2.7, "meters"),
  45150. default: true
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45156. {
  45157. standing: {
  45158. height: math.unit(183, "cm"),
  45159. weight: math.unit(68, "kg"),
  45160. name: "Standing",
  45161. image: {
  45162. source: "./media/characters/arion/standing.svg",
  45163. extra: 1869/1807,
  45164. bottom: 93/1962
  45165. }
  45166. },
  45167. reclining: {
  45168. height: math.unit(70.5, "cm"),
  45169. weight: math.unit(68, "lb"),
  45170. name: "Reclining",
  45171. image: {
  45172. source: "./media/characters/arion/reclining.svg",
  45173. extra: 937/870,
  45174. bottom: 63/1000
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Colossus Size, Low",
  45181. height: math.unit(33, "meters"),
  45182. default: true
  45183. },
  45184. {
  45185. name: "Colossus Size, Mid",
  45186. height: math.unit(52, "meters")
  45187. },
  45188. {
  45189. name: "Colossus Size, High",
  45190. height: math.unit(60, "meters")
  45191. },
  45192. {
  45193. name: "Titan Size, Low",
  45194. height: math.unit(91, "meters"),
  45195. },
  45196. {
  45197. name: "Titan Size, Mid",
  45198. height: math.unit(122, "meters")
  45199. },
  45200. {
  45201. name: "Titan Size, High",
  45202. height: math.unit(162, "meters")
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45208. {
  45209. front: {
  45210. height: math.unit(53, "meters"),
  45211. name: "Front",
  45212. image: {
  45213. source: "./media/characters/stellar-marbey/front.svg",
  45214. extra: 1913/1805,
  45215. bottom: 92/2005
  45216. }
  45217. },
  45218. back: {
  45219. height: math.unit(53, "meters"),
  45220. name: "Back",
  45221. image: {
  45222. source: "./media/characters/stellar-marbey/back.svg",
  45223. extra: 1960/1851,
  45224. bottom: 28/1988
  45225. }
  45226. },
  45227. mouth: {
  45228. height: math.unit(3.5, "meters"),
  45229. name: "Mouth",
  45230. image: {
  45231. source: "./media/characters/stellar-marbey/mouth.svg"
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Macro",
  45238. height: math.unit(53, "meters"),
  45239. default: true
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45245. {
  45246. front: {
  45247. height: math.unit(8 + 1/12, "feet"),
  45248. weight: math.unit(233, "lb"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/matsu/front.svg",
  45252. extra: 832/772,
  45253. bottom: 40/872
  45254. }
  45255. },
  45256. back: {
  45257. height: math.unit(8 + 1/12, "feet"),
  45258. weight: math.unit(233, "lb"),
  45259. name: "Back",
  45260. image: {
  45261. source: "./media/characters/matsu/back.svg",
  45262. extra: 839/780,
  45263. bottom: 47/886
  45264. }
  45265. },
  45266. },
  45267. [
  45268. {
  45269. name: "Normal",
  45270. height: math.unit(8 + 1/12, "feet"),
  45271. default: true
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45277. {
  45278. front: {
  45279. height: math.unit(4, "feet"),
  45280. weight: math.unit(148, "lb"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/thiz/front.svg",
  45284. extra: 1913/1748,
  45285. bottom: 62/1975
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(4, "feet"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45299. {
  45300. front: {
  45301. height: math.unit(7 + 6/12, "feet"),
  45302. weight: math.unit(267, "lb"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/marcel/front.svg",
  45306. extra: 1221/1096,
  45307. bottom: 76/1297
  45308. }
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Normal",
  45314. height: math.unit(7 + 6/12, "feet"),
  45315. default: true
  45316. },
  45317. ]
  45318. ))
  45319. characterMakers.push(() => makeCharacter(
  45320. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45321. {
  45322. side: {
  45323. height: math.unit(42, "meters"),
  45324. name: "Side",
  45325. image: {
  45326. source: "./media/characters/flake/side.svg",
  45327. extra: 1525/1306,
  45328. bottom: 209/1734
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Normal",
  45335. height: math.unit(42, "meters"),
  45336. default: true
  45337. },
  45338. ]
  45339. ))
  45340. characterMakers.push(() => makeCharacter(
  45341. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45342. {
  45343. dressed: {
  45344. height: math.unit(6 + 4/12, "feet"),
  45345. weight: math.unit(520, "lb"),
  45346. name: "Dressed",
  45347. image: {
  45348. source: "./media/characters/someonne/dressed.svg",
  45349. extra: 1020/1010,
  45350. bottom: 178/1198
  45351. }
  45352. },
  45353. undressed: {
  45354. height: math.unit(6 + 4/12, "feet"),
  45355. weight: math.unit(520, "lb"),
  45356. name: "Undressed",
  45357. image: {
  45358. source: "./media/characters/someonne/undressed.svg",
  45359. extra: 1019/1014,
  45360. bottom: 169/1188
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Normal",
  45367. height: math.unit(6 + 4/12, "feet"),
  45368. default: true
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45374. {
  45375. front: {
  45376. height: math.unit(3, "feet"),
  45377. weight: math.unit(30, "lb"),
  45378. name: "Front",
  45379. image: {
  45380. source: "./media/characters/till/front.svg",
  45381. extra: 892/823,
  45382. bottom: 55/947
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(3, "feet"),
  45390. default: true
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45396. {
  45397. front: {
  45398. height: math.unit(9 + 8/12, "feet"),
  45399. weight: math.unit(800, "lb"),
  45400. name: "Front",
  45401. image: {
  45402. source: "./media/characters/sydney-heki/front.svg",
  45403. extra: 1360/1300,
  45404. bottom: 22/1382
  45405. }
  45406. },
  45407. back: {
  45408. height: math.unit(9 + 8/12, "feet"),
  45409. weight: math.unit(800, "lb"),
  45410. name: "Back",
  45411. image: {
  45412. source: "./media/characters/sydney-heki/back.svg",
  45413. extra: 1356/1293,
  45414. bottom: 12/1368
  45415. }
  45416. },
  45417. frontDressed: {
  45418. height: math.unit(9 + 8/12, "feet"),
  45419. weight: math.unit(800, "lb"),
  45420. name: "Front-dressed",
  45421. image: {
  45422. source: "./media/characters/sydney-heki/front-dressed.svg",
  45423. extra: 1360/1300,
  45424. bottom: 22/1382
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(9 + 8/12, "feet"),
  45432. default: true
  45433. },
  45434. {
  45435. name: "Macro",
  45436. height: math.unit(500, "feet")
  45437. },
  45438. {
  45439. name: "Megamacro",
  45440. height: math.unit(3.6, "miles")
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(200, "cm"),
  45449. weight: math.unit(250, "lb"),
  45450. name: "Front",
  45451. image: {
  45452. source: "./media/characters/fowler-karlsson/front.svg",
  45453. extra: 897/845,
  45454. bottom: 123/1020
  45455. }
  45456. },
  45457. back: {
  45458. height: math.unit(200, "cm"),
  45459. weight: math.unit(250, "lb"),
  45460. name: "Back",
  45461. image: {
  45462. source: "./media/characters/fowler-karlsson/back.svg",
  45463. extra: 999/944,
  45464. bottom: 26/1025
  45465. }
  45466. },
  45467. dick: {
  45468. height: math.unit(1.92, "feet"),
  45469. weight: math.unit(150, "lb"),
  45470. name: "Dick",
  45471. image: {
  45472. source: "./media/characters/fowler-karlsson/dick.svg"
  45473. }
  45474. },
  45475. },
  45476. [
  45477. {
  45478. name: "Normal",
  45479. height: math.unit(200, "cm"),
  45480. default: true
  45481. },
  45482. {
  45483. name: "Smaller Macro",
  45484. height: math.unit(90, "m")
  45485. },
  45486. {
  45487. name: "Macro",
  45488. height: math.unit(150, "m")
  45489. },
  45490. {
  45491. name: "Bigger Macro",
  45492. height: math.unit(300, "m")
  45493. },
  45494. ]
  45495. ))
  45496. characterMakers.push(() => makeCharacter(
  45497. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45498. {
  45499. side: {
  45500. height: math.unit(8 + 2/12, "feet"),
  45501. weight: math.unit(1, "tonne"),
  45502. name: "Side",
  45503. image: {
  45504. source: "./media/characters/rylide/side.svg",
  45505. extra: 1318/1034,
  45506. bottom: 106/1424
  45507. }
  45508. },
  45509. sitting: {
  45510. height: math.unit(303, "cm"),
  45511. weight: math.unit(1, "tonne"),
  45512. name: "Sitting",
  45513. image: {
  45514. source: "./media/characters/rylide/sitting.svg",
  45515. extra: 1303/1103,
  45516. bottom: 36/1339
  45517. }
  45518. },
  45519. },
  45520. [
  45521. {
  45522. name: "Normal",
  45523. height: math.unit(8 + 2/12, "feet"),
  45524. default: true
  45525. },
  45526. ]
  45527. ))
  45528. characterMakers.push(() => makeCharacter(
  45529. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45530. {
  45531. front: {
  45532. height: math.unit(5 + 10/12, "feet"),
  45533. weight: math.unit(160, "lb"),
  45534. name: "Front",
  45535. image: {
  45536. source: "./media/characters/pudask/front.svg",
  45537. extra: 1616/1590,
  45538. bottom: 161/1777
  45539. }
  45540. },
  45541. },
  45542. [
  45543. {
  45544. name: "Ferret Height",
  45545. height: math.unit(2 + 5/12, "feet")
  45546. },
  45547. {
  45548. name: "Canon Height",
  45549. height: math.unit(5 + 10/12, "feet"),
  45550. default: true
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45556. {
  45557. front: {
  45558. height: math.unit(3 + 6/12, "feet"),
  45559. weight: math.unit(60, "lb"),
  45560. name: "Front",
  45561. image: {
  45562. source: "./media/characters/ramita/front.svg",
  45563. extra: 1402/1232,
  45564. bottom: 62/1464
  45565. }
  45566. },
  45567. dressed: {
  45568. height: math.unit(3 + 6/12, "feet"),
  45569. weight: math.unit(60, "lb"),
  45570. name: "Dressed",
  45571. image: {
  45572. source: "./media/characters/ramita/dressed.svg",
  45573. extra: 1534/1249,
  45574. bottom: 50/1584
  45575. }
  45576. },
  45577. },
  45578. [
  45579. {
  45580. name: "Normal",
  45581. height: math.unit(3 + 6/12, "feet"),
  45582. default: true
  45583. },
  45584. ]
  45585. ))
  45586. characterMakers.push(() => makeCharacter(
  45587. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45588. {
  45589. front: {
  45590. height: math.unit(8, "feet"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/ark/front.svg",
  45594. extra: 772/693,
  45595. bottom: 45/817
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Normal",
  45602. height: math.unit(8, "feet"),
  45603. default: true
  45604. },
  45605. ]
  45606. ))
  45607. characterMakers.push(() => makeCharacter(
  45608. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45609. {
  45610. front: {
  45611. height: math.unit(6, "feet"),
  45612. weight: math.unit(250, "lb"),
  45613. volume: math.unit(5/8, "gallons"),
  45614. name: "Front",
  45615. image: {
  45616. source: "./media/characters/ludwig-horn/front.svg",
  45617. extra: 1782/1635,
  45618. bottom: 96/1878
  45619. }
  45620. },
  45621. back: {
  45622. height: math.unit(6, "feet"),
  45623. weight: math.unit(250, "lb"),
  45624. volume: math.unit(5/8, "gallons"),
  45625. name: "Back",
  45626. image: {
  45627. source: "./media/characters/ludwig-horn/back.svg",
  45628. extra: 1874/1729,
  45629. bottom: 27/1901
  45630. }
  45631. },
  45632. dick: {
  45633. height: math.unit(1.05, "feet"),
  45634. weight: math.unit(15, "lb"),
  45635. volume: math.unit(5/8, "gallons"),
  45636. name: "Dick",
  45637. image: {
  45638. source: "./media/characters/ludwig-horn/dick.svg"
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Small",
  45645. height: math.unit(6, "feet")
  45646. },
  45647. {
  45648. name: "Typical",
  45649. height: math.unit(12, "feet"),
  45650. default: true
  45651. },
  45652. {
  45653. name: "Building",
  45654. height: math.unit(80, "feet")
  45655. },
  45656. {
  45657. name: "Town",
  45658. height: math.unit(800, "feet")
  45659. },
  45660. {
  45661. name: "Kingdom",
  45662. height: math.unit(80000, "feet")
  45663. },
  45664. {
  45665. name: "Planet",
  45666. height: math.unit(8000000, "feet")
  45667. },
  45668. {
  45669. name: "Universe",
  45670. height: math.unit(8000000000, "feet")
  45671. },
  45672. {
  45673. name: "Transcended",
  45674. height: math.unit(8e27, "feet")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45680. {
  45681. front: {
  45682. height: math.unit(5, "feet"),
  45683. weight: math.unit(50, "kg"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/biot-avery/front.svg",
  45687. extra: 1295/1232,
  45688. bottom: 86/1381
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(5, "feet"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45702. {
  45703. front: {
  45704. height: math.unit(6, "feet"),
  45705. name: "Front",
  45706. image: {
  45707. source: "./media/characters/kitsune-kiro/front.svg",
  45708. extra: 1270/1158,
  45709. bottom: 42/1312
  45710. }
  45711. },
  45712. frontAlt: {
  45713. height: math.unit(6, "feet"),
  45714. name: "Front-alt",
  45715. image: {
  45716. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45717. extra: 1130/1081,
  45718. bottom: 36/1166
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Smol",
  45725. height: math.unit(3, "feet")
  45726. },
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(6, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(6, "feet"),
  45739. weight: math.unit(125, "lb"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/jack-thatcher/front.svg",
  45743. extra: 1474/1370,
  45744. bottom: 26/1500
  45745. }
  45746. },
  45747. back: {
  45748. height: math.unit(6, "feet"),
  45749. weight: math.unit(125, "lb"),
  45750. name: "Back",
  45751. image: {
  45752. source: "./media/characters/jack-thatcher/back.svg",
  45753. extra: 1489/1384,
  45754. bottom: 18/1507
  45755. }
  45756. },
  45757. },
  45758. [
  45759. {
  45760. name: "Normal",
  45761. height: math.unit(6, "feet"),
  45762. default: true
  45763. },
  45764. {
  45765. name: "Macro",
  45766. height: math.unit(75, "feet")
  45767. },
  45768. {
  45769. name: "Macro-er",
  45770. height: math.unit(250, "feet")
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(7, "feet"),
  45779. weight: math.unit(110, "kg"),
  45780. name: "Front",
  45781. image: {
  45782. source: "./media/characters/max-hyper/front.svg",
  45783. extra: 1969/1881,
  45784. bottom: 49/2018
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(7, "feet"),
  45792. default: true
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45798. {
  45799. front: {
  45800. height: math.unit(5 + 5/12, "feet"),
  45801. weight: math.unit(160, "lb"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/spook/front.svg",
  45805. extra: 794/791,
  45806. bottom: 54/848
  45807. }
  45808. },
  45809. back: {
  45810. height: math.unit(5 + 5/12, "feet"),
  45811. weight: math.unit(160, "lb"),
  45812. name: "Back",
  45813. image: {
  45814. source: "./media/characters/spook/back.svg",
  45815. extra: 812/798,
  45816. bottom: 32/844
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(5 + 5/12, "feet"),
  45824. default: true
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(18, "feet"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/xeaduulix/front.svg",
  45836. extra: 1380/1166,
  45837. bottom: 110/1490
  45838. }
  45839. },
  45840. back: {
  45841. height: math.unit(18, "feet"),
  45842. name: "Back",
  45843. image: {
  45844. source: "./media/characters/xeaduulix/back.svg",
  45845. extra: 1592/1170,
  45846. bottom: 128/1720
  45847. }
  45848. },
  45849. frontNsfw: {
  45850. height: math.unit(18, "feet"),
  45851. name: "Front (NSFW)",
  45852. image: {
  45853. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45854. extra: 1380/1166,
  45855. bottom: 110/1490
  45856. }
  45857. },
  45858. backNsfw: {
  45859. height: math.unit(18, "feet"),
  45860. name: "Back (NSFW)",
  45861. image: {
  45862. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45863. extra: 1592/1170,
  45864. bottom: 128/1720
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Normal",
  45871. height: math.unit(18, "feet"),
  45872. default: true
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45878. {
  45879. spreadWings: {
  45880. height: math.unit(20, "feet"),
  45881. name: "Spread Wings",
  45882. image: {
  45883. source: "./media/characters/fledge/spread-wings.svg",
  45884. extra: 693/635,
  45885. bottom: 26/719
  45886. }
  45887. },
  45888. front: {
  45889. height: math.unit(20, "feet"),
  45890. name: "Front",
  45891. image: {
  45892. source: "./media/characters/fledge/front.svg",
  45893. extra: 684/637,
  45894. bottom: 18/702
  45895. }
  45896. },
  45897. frontAlt: {
  45898. height: math.unit(20, "feet"),
  45899. name: "Front (Alt)",
  45900. image: {
  45901. source: "./media/characters/fledge/front-alt.svg",
  45902. extra: 708/664,
  45903. bottom: 13/721
  45904. }
  45905. },
  45906. back: {
  45907. height: math.unit(20, "feet"),
  45908. name: "Back",
  45909. image: {
  45910. source: "./media/characters/fledge/back.svg",
  45911. extra: 718/634,
  45912. bottom: 22/740
  45913. }
  45914. },
  45915. head: {
  45916. height: math.unit(5.55, "feet"),
  45917. name: "Head",
  45918. image: {
  45919. source: "./media/characters/fledge/head.svg"
  45920. }
  45921. },
  45922. headAlt: {
  45923. height: math.unit(5.1, "feet"),
  45924. name: "Head (Alt)",
  45925. image: {
  45926. source: "./media/characters/fledge/head-alt.svg"
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Small",
  45933. height: math.unit(6 + 2/12, "feet")
  45934. },
  45935. {
  45936. name: "Big",
  45937. height: math.unit(20, "feet"),
  45938. default: true
  45939. },
  45940. {
  45941. name: "Giant",
  45942. height: math.unit(100, "feet")
  45943. },
  45944. {
  45945. name: "Macro",
  45946. height: math.unit(200, "feet")
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45952. {
  45953. front: {
  45954. height: math.unit(1, "meter"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/atlas-morenai/front.svg",
  45958. extra: 1275/1043,
  45959. bottom: 19/1294
  45960. }
  45961. },
  45962. back: {
  45963. height: math.unit(1, "meter"),
  45964. name: "Back",
  45965. image: {
  45966. source: "./media/characters/atlas-morenai/back.svg",
  45967. extra: 1141/1001,
  45968. bottom: 25/1166
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "Normal",
  45975. height: math.unit(1, "meter"),
  45976. default: true
  45977. },
  45978. {
  45979. name: "Magic-Infused",
  45980. height: math.unit(5, "meters")
  45981. },
  45982. ]
  45983. ))
  45984. characterMakers.push(() => makeCharacter(
  45985. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45986. {
  45987. front: {
  45988. height: math.unit(5, "meters"),
  45989. name: "Front",
  45990. image: {
  45991. source: "./media/characters/cintia/front.svg",
  45992. extra: 1312/1228,
  45993. bottom: 38/1350
  45994. }
  45995. },
  45996. back: {
  45997. height: math.unit(5, "meters"),
  45998. name: "Back",
  45999. image: {
  46000. source: "./media/characters/cintia/back.svg",
  46001. extra: 1260/1166,
  46002. bottom: 98/1358
  46003. }
  46004. },
  46005. frontDick: {
  46006. height: math.unit(5, "meters"),
  46007. name: "Front (Dick)",
  46008. image: {
  46009. source: "./media/characters/cintia/front-dick.svg",
  46010. extra: 1312/1228,
  46011. bottom: 38/1350
  46012. }
  46013. },
  46014. backDick: {
  46015. height: math.unit(5, "meters"),
  46016. name: "Back (Dick)",
  46017. image: {
  46018. source: "./media/characters/cintia/back-dick.svg",
  46019. extra: 1260/1166,
  46020. bottom: 98/1358
  46021. }
  46022. },
  46023. bust: {
  46024. height: math.unit(1.97, "meters"),
  46025. name: "Bust",
  46026. image: {
  46027. source: "./media/characters/cintia/bust.svg",
  46028. extra: 617/565,
  46029. bottom: 0/617
  46030. }
  46031. },
  46032. },
  46033. [
  46034. {
  46035. name: "Normal",
  46036. height: math.unit(5, "meters"),
  46037. default: true
  46038. },
  46039. ]
  46040. ))
  46041. characterMakers.push(() => makeCharacter(
  46042. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46043. {
  46044. side: {
  46045. height: math.unit(100, "feet"),
  46046. name: "Side",
  46047. image: {
  46048. source: "./media/characters/denora/side.svg",
  46049. extra: 875/803,
  46050. bottom: 9/884
  46051. }
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Standard",
  46057. height: math.unit(100, "feet"),
  46058. default: true
  46059. },
  46060. {
  46061. name: "Grand",
  46062. height: math.unit(1000, "feet")
  46063. },
  46064. {
  46065. name: "Conquering",
  46066. height: math.unit(10000, "feet")
  46067. },
  46068. ]
  46069. ))
  46070. characterMakers.push(() => makeCharacter(
  46071. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46072. {
  46073. dressed: {
  46074. height: math.unit(8 + 5/12, "feet"),
  46075. weight: math.unit(700, "lb"),
  46076. name: "Dressed",
  46077. image: {
  46078. source: "./media/characters/kiva/dressed.svg",
  46079. extra: 1102/1055,
  46080. bottom: 60/1162
  46081. }
  46082. },
  46083. nude: {
  46084. height: math.unit(8 + 5/12, "feet"),
  46085. weight: math.unit(700, "lb"),
  46086. name: "Nude",
  46087. image: {
  46088. source: "./media/characters/kiva/nude.svg",
  46089. extra: 1102/1055,
  46090. bottom: 60/1162
  46091. }
  46092. },
  46093. },
  46094. [
  46095. {
  46096. name: "Base Height",
  46097. height: math.unit(8 + 5/12, "feet"),
  46098. default: true
  46099. },
  46100. {
  46101. name: "Macro",
  46102. height: math.unit(100, "feet")
  46103. },
  46104. {
  46105. name: "Max",
  46106. height: math.unit(3280, "feet")
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(6 + 8/12, "feet"),
  46115. weight: math.unit(250, "lb"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/ztragon/front.svg",
  46119. extra: 1825/1684,
  46120. bottom: 98/1923
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(6 + 8/12, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Macro",
  46132. height: math.unit(80, "feet")
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46138. {
  46139. front: {
  46140. height: math.unit(10.4, "feet"),
  46141. weight: math.unit(2, "tons"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/yesenia/front.svg",
  46145. extra: 1479/1474,
  46146. bottom: 233/1712
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Normal",
  46153. height: math.unit(10.4, "feet"),
  46154. default: true
  46155. },
  46156. ]
  46157. ))
  46158. characterMakers.push(() => makeCharacter(
  46159. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46160. {
  46161. normal: {
  46162. height: math.unit(6 + 1/12, "feet"),
  46163. weight: math.unit(180, "lb"),
  46164. name: "Normal",
  46165. image: {
  46166. source: "./media/characters/leanne-lycheborne/normal.svg",
  46167. extra: 1748/1660,
  46168. bottom: 98/1846
  46169. }
  46170. },
  46171. were: {
  46172. height: math.unit(12, "feet"),
  46173. weight: math.unit(1600, "lb"),
  46174. name: "Were",
  46175. image: {
  46176. source: "./media/characters/leanne-lycheborne/were.svg",
  46177. extra: 1485/1432,
  46178. bottom: 66/1551
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(6 + 1/12, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46192. {
  46193. side: {
  46194. height: math.unit(13, "feet"),
  46195. name: "Side",
  46196. image: {
  46197. source: "./media/characters/kira-tyler/side.svg",
  46198. extra: 693/393,
  46199. bottom: 58/751
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(13, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(10.3, "feet"),
  46216. weight: math.unit(150, "lb"),
  46217. name: "Front",
  46218. image: {
  46219. source: "./media/characters/blaze/front.svg",
  46220. extra: 1378/1286,
  46221. bottom: 172/1550
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(10.3, "feet"),
  46229. default: true
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46235. {
  46236. side: {
  46237. height: math.unit(2, "meters"),
  46238. weight: math.unit(400, "kg"),
  46239. name: "Side",
  46240. image: {
  46241. source: "./media/characters/anu/side.svg",
  46242. extra: 506/394,
  46243. bottom: 18/524
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Humanoid",
  46250. height: math.unit(2, "meters")
  46251. },
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(5, "meters"),
  46255. default: true
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46261. {
  46262. front: {
  46263. height: math.unit(5 + 5/12, "feet"),
  46264. weight: math.unit(170, "lb"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/synx-the-lynx/front.svg",
  46268. extra: 1893/1745,
  46269. bottom: 17/1910
  46270. }
  46271. },
  46272. side: {
  46273. height: math.unit(5 + 5/12, "feet"),
  46274. weight: math.unit(170, "lb"),
  46275. name: "Side",
  46276. image: {
  46277. source: "./media/characters/synx-the-lynx/side.svg",
  46278. extra: 1884/1740,
  46279. bottom: 39/1923
  46280. }
  46281. },
  46282. back: {
  46283. height: math.unit(5 + 5/12, "feet"),
  46284. weight: math.unit(170, "lb"),
  46285. name: "Back",
  46286. image: {
  46287. source: "./media/characters/synx-the-lynx/back.svg",
  46288. extra: 1903/1755,
  46289. bottom: 14/1917
  46290. }
  46291. },
  46292. },
  46293. [
  46294. {
  46295. name: "Normal",
  46296. height: math.unit(5 + 5/12, "feet"),
  46297. default: true
  46298. },
  46299. ]
  46300. ))
  46301. characterMakers.push(() => makeCharacter(
  46302. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46303. {
  46304. back: {
  46305. height: math.unit(15, "feet"),
  46306. name: "Back",
  46307. image: {
  46308. source: "./media/characters/nadezda-fex/back.svg",
  46309. extra: 1695/1481,
  46310. bottom: 25/1720
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Normal",
  46317. height: math.unit(15, "feet"),
  46318. default: true
  46319. },
  46320. {
  46321. name: "Macro",
  46322. height: math.unit(2.5, "miles")
  46323. },
  46324. {
  46325. name: "Goddess",
  46326. height: math.unit(2, "multiverses")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(216, "cm"),
  46335. name: "Front",
  46336. image: {
  46337. source: "./media/characters/lev/front.svg",
  46338. extra: 1728/1670,
  46339. bottom: 82/1810
  46340. }
  46341. },
  46342. back: {
  46343. height: math.unit(216, "cm"),
  46344. name: "Back",
  46345. image: {
  46346. source: "./media/characters/lev/back.svg",
  46347. extra: 1738/1675,
  46348. bottom: 24/1762
  46349. }
  46350. },
  46351. dressed: {
  46352. height: math.unit(216, "cm"),
  46353. name: "Dressed",
  46354. image: {
  46355. source: "./media/characters/lev/dressed.svg",
  46356. extra: 1397/1351,
  46357. bottom: 73/1470
  46358. }
  46359. },
  46360. head: {
  46361. height: math.unit(0.51, "meter"),
  46362. name: "Head",
  46363. image: {
  46364. source: "./media/characters/lev/head.svg"
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(216, "cm"),
  46372. default: true
  46373. },
  46374. {
  46375. name: "Relatively Macro",
  46376. height: math.unit(80, "meters")
  46377. },
  46378. {
  46379. name: "Megamacro",
  46380. height: math.unit(21600, "meters")
  46381. },
  46382. {
  46383. name: "Megamacro+",
  46384. height: math.unit(64800, "meters")
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46390. {
  46391. front: {
  46392. height: math.unit(2, "meters"),
  46393. weight: math.unit(80, "kg"),
  46394. name: "Front",
  46395. image: {
  46396. source: "./media/characters/moka/front.svg",
  46397. extra: 1337/1255,
  46398. bottom: 58/1395
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Micro",
  46405. height: math.unit(15, "cm")
  46406. },
  46407. {
  46408. name: "Normal",
  46409. height: math.unit(2, "meters"),
  46410. default: true
  46411. },
  46412. {
  46413. name: "Macro",
  46414. height: math.unit(20, "meters"),
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46420. {
  46421. front: {
  46422. height: math.unit(9, "feet"),
  46423. weight: math.unit(240, "lb"),
  46424. name: "Front",
  46425. image: {
  46426. source: "./media/characters/kuzco/front.svg",
  46427. extra: 1593/1487,
  46428. bottom: 32/1625
  46429. }
  46430. },
  46431. side: {
  46432. height: math.unit(9, "feet"),
  46433. weight: math.unit(240, "lb"),
  46434. name: "Side",
  46435. image: {
  46436. source: "./media/characters/kuzco/side.svg",
  46437. extra: 1575/1485,
  46438. bottom: 30/1605
  46439. }
  46440. },
  46441. back: {
  46442. height: math.unit(9, "feet"),
  46443. weight: math.unit(240, "lb"),
  46444. name: "Back",
  46445. image: {
  46446. source: "./media/characters/kuzco/back.svg",
  46447. extra: 1603/1514,
  46448. bottom: 14/1617
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Normal",
  46455. height: math.unit(9, "feet"),
  46456. default: true
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46462. {
  46463. side: {
  46464. height: math.unit(2, "meters"),
  46465. weight: math.unit(300, "kg"),
  46466. name: "Side",
  46467. image: {
  46468. source: "./media/characters/ceruleus/side.svg",
  46469. extra: 1068/974,
  46470. bottom: 126/1194
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Normal",
  46477. height: math.unit(16, "meters"),
  46478. default: true
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46484. {
  46485. front: {
  46486. height: math.unit(9, "feet"),
  46487. weight: math.unit(500, "kg"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/acouya/front.svg",
  46491. extra: 1660/1473,
  46492. bottom: 28/1688
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(9, "feet"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(5 + 6/12, "feet"),
  46509. weight: math.unit(195, "lb"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/vant/front.svg",
  46513. extra: 1396/1320,
  46514. bottom: 20/1416
  46515. }
  46516. },
  46517. back: {
  46518. height: math.unit(5 + 6/12, "feet"),
  46519. weight: math.unit(195, "lb"),
  46520. name: "Back",
  46521. image: {
  46522. source: "./media/characters/vant/back.svg",
  46523. extra: 1396/1320,
  46524. bottom: 20/1416
  46525. }
  46526. },
  46527. maw: {
  46528. height: math.unit(0.75, "feet"),
  46529. name: "Maw",
  46530. image: {
  46531. source: "./media/characters/vant/maw.svg"
  46532. }
  46533. },
  46534. paw: {
  46535. height: math.unit(1.07, "feet"),
  46536. name: "Paw",
  46537. image: {
  46538. source: "./media/characters/vant/paw.svg"
  46539. }
  46540. },
  46541. },
  46542. [
  46543. {
  46544. name: "Micro",
  46545. height: math.unit(0.25, "inches")
  46546. },
  46547. {
  46548. name: "Normal",
  46549. height: math.unit(5 + 6/12, "feet"),
  46550. default: true
  46551. },
  46552. {
  46553. name: "Macro",
  46554. height: math.unit(75, "feet")
  46555. },
  46556. ]
  46557. ))
  46558. characterMakers.push(() => makeCharacter(
  46559. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46560. {
  46561. front: {
  46562. height: math.unit(30, "meters"),
  46563. weight: math.unit(363, "tons"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/ahra/front.svg",
  46567. extra: 1914/1814,
  46568. bottom: 46/1960
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Macro",
  46575. height: math.unit(30, "meters"),
  46576. default: true
  46577. },
  46578. ]
  46579. ))
  46580. characterMakers.push(() => makeCharacter(
  46581. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46582. {
  46583. undressed: {
  46584. height: math.unit(2, "m"),
  46585. weight: math.unit(250, "kg"),
  46586. name: "Undressed",
  46587. image: {
  46588. source: "./media/characters/coriander/undressed.svg",
  46589. extra: 1757/1606,
  46590. bottom: 107/1864
  46591. }
  46592. },
  46593. dressed: {
  46594. height: math.unit(2, "m"),
  46595. weight: math.unit(250, "kg"),
  46596. name: "Dressed",
  46597. image: {
  46598. source: "./media/characters/coriander/dressed.svg",
  46599. extra: 1757/1606,
  46600. bottom: 107/1864
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(4, "meters"),
  46608. default: true
  46609. },
  46610. {
  46611. name: "XL",
  46612. height: math.unit(6, "meters")
  46613. },
  46614. {
  46615. name: "XXL",
  46616. height: math.unit(8, "meters")
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(6, "feet"),
  46625. name: "Front",
  46626. image: {
  46627. source: "./media/characters/syrinx/front.svg",
  46628. extra: 1557/1259,
  46629. bottom: 171/1728
  46630. }
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Normal",
  46636. height: math.unit(6 + 3/12, "feet"),
  46637. default: true
  46638. },
  46639. ]
  46640. ))
  46641. characterMakers.push(() => makeCharacter(
  46642. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46643. {
  46644. front: {
  46645. height: math.unit(11 + 6/12, "feet"),
  46646. weight: math.unit(1.5, "tons"),
  46647. name: "Front",
  46648. image: {
  46649. source: "./media/characters/bor/front.svg",
  46650. extra: 1189/1109,
  46651. bottom: 170/1359
  46652. }
  46653. },
  46654. },
  46655. [
  46656. {
  46657. name: "Normal",
  46658. height: math.unit(11 + 6/12, "feet"),
  46659. default: true
  46660. },
  46661. {
  46662. name: "Macro",
  46663. height: math.unit(32 + 9/12, "feet")
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46669. {
  46670. anthro: {
  46671. height: math.unit(9, "feet"),
  46672. weight: math.unit(2076, "lb"),
  46673. name: "Anthro",
  46674. image: {
  46675. source: "./media/characters/abacus/anthro.svg",
  46676. extra: 1540/1494,
  46677. bottom: 233/1773
  46678. }
  46679. },
  46680. pigeon: {
  46681. height: math.unit(1, "feet"),
  46682. name: "Pigeon",
  46683. image: {
  46684. source: "./media/characters/abacus/pigeon.svg",
  46685. extra: 528/525,
  46686. bottom: 46/574
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Normal",
  46693. height: math.unit(9, "feet"),
  46694. default: true
  46695. },
  46696. ]
  46697. ))
  46698. characterMakers.push(() => makeCharacter(
  46699. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46700. {
  46701. side: {
  46702. height: math.unit(6, "feet"),
  46703. name: "Side",
  46704. image: {
  46705. source: "./media/characters/delkhan/side.svg",
  46706. extra: 1884/1786,
  46707. bottom: 308/2192
  46708. }
  46709. },
  46710. head: {
  46711. height: math.unit(3.38, "feet"),
  46712. name: "Head",
  46713. image: {
  46714. source: "./media/characters/delkhan/head.svg"
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Normal",
  46721. height: math.unit(72, "feet"),
  46722. default: true
  46723. },
  46724. {
  46725. name: "Giant",
  46726. height: math.unit(172, "feet")
  46727. },
  46728. ]
  46729. ))
  46730. characterMakers.push(() => makeCharacter(
  46731. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46732. {
  46733. standing: {
  46734. height: math.unit(6, "feet"),
  46735. name: "Standing",
  46736. image: {
  46737. source: "./media/characters/euchidat/standing.svg",
  46738. extra: 1612/1553,
  46739. bottom: 116/1728
  46740. }
  46741. },
  46742. leaning: {
  46743. height: math.unit(6, "feet"),
  46744. name: "Leaning",
  46745. image: {
  46746. source: "./media/characters/euchidat/leaning.svg",
  46747. extra: 1719/1674,
  46748. bottom: 27/1746
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Normal",
  46755. height: math.unit(175, "feet"),
  46756. default: true
  46757. },
  46758. {
  46759. name: "Megamacro",
  46760. height: math.unit(190, "miles")
  46761. },
  46762. {
  46763. name: "Gigamacro",
  46764. height: math.unit(190000, "miles")
  46765. },
  46766. ]
  46767. ))
  46768. characterMakers.push(() => makeCharacter(
  46769. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46770. {
  46771. front: {
  46772. height: math.unit(6, "feet"),
  46773. weight: math.unit(150, "lb"),
  46774. name: "Front",
  46775. image: {
  46776. source: "./media/characters/rebecca-stack/front.svg",
  46777. extra: 1256/1201,
  46778. bottom: 18/1274
  46779. }
  46780. },
  46781. },
  46782. [
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(5 + 8/12, "feet"),
  46786. default: true
  46787. },
  46788. {
  46789. name: "Demolitionist",
  46790. height: math.unit(200, "feet")
  46791. },
  46792. {
  46793. name: "Out of Control",
  46794. height: math.unit(2, "miles")
  46795. },
  46796. {
  46797. name: "Giga",
  46798. height: math.unit(7200, "miles")
  46799. },
  46800. ]
  46801. ))
  46802. characterMakers.push(() => makeCharacter(
  46803. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46804. {
  46805. front: {
  46806. height: math.unit(6, "feet"),
  46807. weight: math.unit(150, "lb"),
  46808. name: "Front",
  46809. image: {
  46810. source: "./media/characters/jenny-cartwright/front.svg",
  46811. extra: 1384/1376,
  46812. bottom: 58/1442
  46813. }
  46814. },
  46815. },
  46816. [
  46817. {
  46818. name: "Normal",
  46819. height: math.unit(6 + 7/12, "feet"),
  46820. default: true
  46821. },
  46822. {
  46823. name: "Librarian",
  46824. height: math.unit(55, "feet")
  46825. },
  46826. {
  46827. name: "Sightseer",
  46828. height: math.unit(50, "miles")
  46829. },
  46830. {
  46831. name: "Giga",
  46832. height: math.unit(30000, "miles")
  46833. },
  46834. ]
  46835. ))
  46836. characterMakers.push(() => makeCharacter(
  46837. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46838. {
  46839. nude: {
  46840. height: math.unit(8, "feet"),
  46841. weight: math.unit(225, "lb"),
  46842. name: "Nude",
  46843. image: {
  46844. source: "./media/characters/marvy/nude.svg",
  46845. extra: 1900/1683,
  46846. bottom: 89/1989
  46847. }
  46848. },
  46849. dressed: {
  46850. height: math.unit(8, "feet"),
  46851. weight: math.unit(225, "lb"),
  46852. name: "Dressed",
  46853. image: {
  46854. source: "./media/characters/marvy/dressed.svg",
  46855. extra: 1900/1683,
  46856. bottom: 89/1989
  46857. }
  46858. },
  46859. head: {
  46860. height: math.unit(2.85, "feet"),
  46861. name: "Head",
  46862. image: {
  46863. source: "./media/characters/marvy/head.svg"
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(8, "feet"),
  46871. default: true
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46877. {
  46878. front: {
  46879. height: math.unit(8, "feet"),
  46880. weight: math.unit(250, "lb"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/leah/front.svg",
  46884. extra: 1257/1149,
  46885. bottom: 109/1366
  46886. }
  46887. },
  46888. },
  46889. [
  46890. {
  46891. name: "Normal",
  46892. height: math.unit(8, "feet"),
  46893. default: true
  46894. },
  46895. {
  46896. name: "Minimacro",
  46897. height: math.unit(40, "feet")
  46898. },
  46899. {
  46900. name: "Macro",
  46901. height: math.unit(124, "feet")
  46902. },
  46903. {
  46904. name: "Megamacro",
  46905. height: math.unit(850, "feet")
  46906. },
  46907. ]
  46908. ))
  46909. characterMakers.push(() => makeCharacter(
  46910. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46911. {
  46912. side: {
  46913. height: math.unit(13 + 6/12, "feet"),
  46914. weight: math.unit(3200, "lb"),
  46915. name: "Side",
  46916. image: {
  46917. source: "./media/characters/alvir/side.svg",
  46918. extra: 896/589,
  46919. bottom: 26/922
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(13 + 6/12, "feet"),
  46927. default: true
  46928. },
  46929. ]
  46930. ))
  46931. characterMakers.push(() => makeCharacter(
  46932. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46933. {
  46934. front: {
  46935. height: math.unit(5 + 4/12, "feet"),
  46936. weight: math.unit(236, "lb"),
  46937. name: "Front",
  46938. image: {
  46939. source: "./media/characters/zaina-khalil/front.svg",
  46940. extra: 1533/1485,
  46941. bottom: 94/1627
  46942. }
  46943. },
  46944. side: {
  46945. height: math.unit(5 + 4/12, "feet"),
  46946. weight: math.unit(236, "lb"),
  46947. name: "Side",
  46948. image: {
  46949. source: "./media/characters/zaina-khalil/side.svg",
  46950. extra: 1537/1498,
  46951. bottom: 66/1603
  46952. }
  46953. },
  46954. back: {
  46955. height: math.unit(5 + 4/12, "feet"),
  46956. weight: math.unit(236, "lb"),
  46957. name: "Back",
  46958. image: {
  46959. source: "./media/characters/zaina-khalil/back.svg",
  46960. extra: 1546/1494,
  46961. bottom: 89/1635
  46962. }
  46963. },
  46964. },
  46965. [
  46966. {
  46967. name: "Normal",
  46968. height: math.unit(5 + 4/12, "feet"),
  46969. default: true
  46970. },
  46971. ]
  46972. ))
  46973. characterMakers.push(() => makeCharacter(
  46974. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46975. {
  46976. side: {
  46977. height: math.unit(12, "feet"),
  46978. weight: math.unit(4000, "lb"),
  46979. name: "Side",
  46980. image: {
  46981. source: "./media/characters/terry/side.svg",
  46982. extra: 1518/1439,
  46983. bottom: 149/1667
  46984. }
  46985. },
  46986. },
  46987. [
  46988. {
  46989. name: "Normal",
  46990. height: math.unit(12, "feet"),
  46991. default: true
  46992. },
  46993. ]
  46994. ))
  46995. characterMakers.push(() => makeCharacter(
  46996. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46997. {
  46998. front: {
  46999. height: math.unit(12, "feet"),
  47000. weight: math.unit(1500, "lb"),
  47001. name: "Front",
  47002. image: {
  47003. source: "./media/characters/kahea/front.svg",
  47004. extra: 1722/1617,
  47005. bottom: 179/1901
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Normal",
  47012. height: math.unit(12, "feet"),
  47013. default: true
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47019. {
  47020. demonFront: {
  47021. height: math.unit(36, "feet"),
  47022. name: "Front",
  47023. image: {
  47024. source: "./media/characters/alex-xuria/demon-front.svg",
  47025. extra: 1705/1673,
  47026. bottom: 198/1903
  47027. },
  47028. form: "demon",
  47029. default: true
  47030. },
  47031. demonBack: {
  47032. height: math.unit(36, "feet"),
  47033. name: "Back",
  47034. image: {
  47035. source: "./media/characters/alex-xuria/demon-back.svg",
  47036. extra: 1725/1693,
  47037. bottom: 70/1795
  47038. },
  47039. form: "demon"
  47040. },
  47041. demonHead: {
  47042. height: math.unit(2.14, "meters"),
  47043. name: "Head",
  47044. image: {
  47045. source: "./media/characters/alex-xuria/demon-head.svg"
  47046. },
  47047. form: "demon"
  47048. },
  47049. demonHand: {
  47050. height: math.unit(1.61, "meters"),
  47051. name: "Hand",
  47052. image: {
  47053. source: "./media/characters/alex-xuria/demon-hand.svg"
  47054. },
  47055. form: "demon"
  47056. },
  47057. demonPaw: {
  47058. height: math.unit(1.35, "meters"),
  47059. name: "Paw",
  47060. image: {
  47061. source: "./media/characters/alex-xuria/demon-paw.svg"
  47062. },
  47063. form: "demon"
  47064. },
  47065. demonFoot: {
  47066. height: math.unit(2.2, "meters"),
  47067. name: "Foot",
  47068. image: {
  47069. source: "./media/characters/alex-xuria/demon-foot.svg"
  47070. },
  47071. form: "demon"
  47072. },
  47073. demonCock: {
  47074. height: math.unit(1.74, "meters"),
  47075. name: "Cock",
  47076. image: {
  47077. source: "./media/characters/alex-xuria/demon-cock.svg"
  47078. },
  47079. form: "demon"
  47080. },
  47081. demonTailClosed: {
  47082. height: math.unit(1.47, "meters"),
  47083. name: "Tail (Closed)",
  47084. image: {
  47085. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47086. },
  47087. form: "demon"
  47088. },
  47089. demonTailOpen: {
  47090. height: math.unit(2.85, "meters"),
  47091. name: "Tail (Open)",
  47092. image: {
  47093. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47094. },
  47095. form: "demon"
  47096. },
  47097. incubusFront: {
  47098. height: math.unit(12, "feet"),
  47099. name: "Front",
  47100. image: {
  47101. source: "./media/characters/alex-xuria/incubus-front.svg",
  47102. extra: 1754/1677,
  47103. bottom: 125/1879
  47104. },
  47105. form: "incubus",
  47106. default: true
  47107. },
  47108. incubusBack: {
  47109. height: math.unit(12, "feet"),
  47110. name: "Back",
  47111. image: {
  47112. source: "./media/characters/alex-xuria/incubus-back.svg",
  47113. extra: 1702/1647,
  47114. bottom: 30/1732
  47115. },
  47116. form: "incubus"
  47117. },
  47118. incubusHead: {
  47119. height: math.unit(3.45, "feet"),
  47120. name: "Head",
  47121. image: {
  47122. source: "./media/characters/alex-xuria/incubus-head.svg"
  47123. },
  47124. form: "incubus"
  47125. },
  47126. rabbitFront: {
  47127. height: math.unit(6, "feet"),
  47128. name: "Front",
  47129. image: {
  47130. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47131. extra: 1369/1349,
  47132. bottom: 45/1414
  47133. },
  47134. form: "rabbit",
  47135. default: true
  47136. },
  47137. rabbitSide: {
  47138. height: math.unit(6, "feet"),
  47139. name: "Side",
  47140. image: {
  47141. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47142. extra: 1370/1356,
  47143. bottom: 37/1407
  47144. },
  47145. form: "rabbit"
  47146. },
  47147. rabbitBack: {
  47148. height: math.unit(6, "feet"),
  47149. name: "Back",
  47150. image: {
  47151. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47152. extra: 1375/1358,
  47153. bottom: 43/1418
  47154. },
  47155. form: "rabbit"
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(6, "feet"),
  47162. default: true,
  47163. form: "rabbit"
  47164. },
  47165. {
  47166. name: "Incubus",
  47167. height: math.unit(12, "feet"),
  47168. default: true,
  47169. form: "incubus"
  47170. },
  47171. {
  47172. name: "Demon",
  47173. height: math.unit(36, "feet"),
  47174. default: true,
  47175. form: "demon"
  47176. }
  47177. ],
  47178. {
  47179. "demon": {
  47180. name: "Demon",
  47181. default: true
  47182. },
  47183. "incubus": {
  47184. name: "Incubus",
  47185. },
  47186. "rabbit": {
  47187. name: "Rabbit"
  47188. }
  47189. }
  47190. ))
  47191. characterMakers.push(() => makeCharacter(
  47192. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47193. {
  47194. front: {
  47195. height: math.unit(7 + 5/12, "feet"),
  47196. weight: math.unit(510, "lb"),
  47197. name: "Front",
  47198. image: {
  47199. source: "./media/characters/syrup/front.svg",
  47200. extra: 932/916,
  47201. bottom: 26/958
  47202. }
  47203. },
  47204. },
  47205. [
  47206. {
  47207. name: "Normal",
  47208. height: math.unit(7 + 5/12, "feet"),
  47209. default: true
  47210. },
  47211. {
  47212. name: "Big",
  47213. height: math.unit(50, "feet")
  47214. },
  47215. {
  47216. name: "Macro",
  47217. height: math.unit(300, "feet")
  47218. },
  47219. {
  47220. name: "Megamacro",
  47221. height: math.unit(1, "mile")
  47222. },
  47223. ]
  47224. ))
  47225. characterMakers.push(() => makeCharacter(
  47226. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47227. {
  47228. front: {
  47229. height: math.unit(6 + 9/12, "feet"),
  47230. name: "Front",
  47231. image: {
  47232. source: "./media/characters/zeimne/front.svg",
  47233. extra: 1969/1806,
  47234. bottom: 53/2022
  47235. }
  47236. },
  47237. },
  47238. [
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(6 + 9/12, "feet"),
  47242. default: true
  47243. },
  47244. {
  47245. name: "Giant",
  47246. height: math.unit(550, "feet")
  47247. },
  47248. {
  47249. name: "Mega",
  47250. height: math.unit(3, "miles")
  47251. },
  47252. {
  47253. name: "Giga",
  47254. height: math.unit(250, "miles")
  47255. },
  47256. {
  47257. name: "Tera",
  47258. height: math.unit(1, "AU")
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(5 + 2/12, "feet"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/grar/front.svg",
  47270. extra: 1331/1119,
  47271. bottom: 60/1391
  47272. }
  47273. },
  47274. back: {
  47275. height: math.unit(5 + 2/12, "feet"),
  47276. name: "Back",
  47277. image: {
  47278. source: "./media/characters/grar/back.svg",
  47279. extra: 1385/1169,
  47280. bottom: 23/1408
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(5 + 2/12, "feet"),
  47288. default: true
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47294. {
  47295. front: {
  47296. height: math.unit(13 + 7/12, "feet"),
  47297. weight: math.unit(2200, "lb"),
  47298. name: "Front",
  47299. image: {
  47300. source: "./media/characters/endraya/front.svg",
  47301. extra: 1289/1215,
  47302. bottom: 50/1339
  47303. }
  47304. },
  47305. nude: {
  47306. height: math.unit(13 + 7/12, "feet"),
  47307. weight: math.unit(2200, "lb"),
  47308. name: "Nude",
  47309. image: {
  47310. source: "./media/characters/endraya/nude.svg",
  47311. extra: 1247/1171,
  47312. bottom: 40/1287
  47313. }
  47314. },
  47315. head: {
  47316. height: math.unit(2.6, "feet"),
  47317. name: "Head",
  47318. image: {
  47319. source: "./media/characters/endraya/head.svg"
  47320. }
  47321. },
  47322. slit: {
  47323. height: math.unit(3.4, "feet"),
  47324. name: "Slit",
  47325. image: {
  47326. source: "./media/characters/endraya/slit.svg"
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(13 + 7/12, "feet"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Macro",
  47338. height: math.unit(200, "feet")
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(1.81, "meters"),
  47347. weight: math.unit(69, "kg"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/rodryana/front.svg",
  47351. extra: 2002/1921,
  47352. bottom: 53/2055
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(1.81, "meters"),
  47357. weight: math.unit(69, "kg"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/rodryana/back.svg",
  47361. extra: 1993/1926,
  47362. bottom: 48/2041
  47363. }
  47364. },
  47365. maw: {
  47366. height: math.unit(0.19769417475, "meters"),
  47367. name: "Maw",
  47368. image: {
  47369. source: "./media/characters/rodryana/maw.svg"
  47370. }
  47371. },
  47372. slit: {
  47373. height: math.unit(0.31631067961, "meters"),
  47374. name: "Slit",
  47375. image: {
  47376. source: "./media/characters/rodryana/slit.svg"
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(1.81, "meters")
  47384. },
  47385. {
  47386. name: "Mini Macro",
  47387. height: math.unit(181, "meters")
  47388. },
  47389. {
  47390. name: "Macro",
  47391. height: math.unit(452, "meters"),
  47392. default: true
  47393. },
  47394. {
  47395. name: "Mega Macro",
  47396. height: math.unit(1.375, "km")
  47397. },
  47398. {
  47399. name: "Giga Macro",
  47400. height: math.unit(13.575, "km")
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(6, "feet"),
  47409. weight: math.unit(1000, "lb"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/asaya/front.svg",
  47413. extra: 1460/1200,
  47414. bottom: 71/1531
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Normal",
  47421. height: math.unit(8, "km"),
  47422. default: true
  47423. },
  47424. ]
  47425. ))
  47426. characterMakers.push(() => makeCharacter(
  47427. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47428. {
  47429. front: {
  47430. height: math.unit(3.5, "meters"),
  47431. name: "Front",
  47432. image: {
  47433. source: "./media/characters/sarzu-and-israz/front.svg",
  47434. extra: 1570/1558,
  47435. bottom: 150/1720
  47436. },
  47437. },
  47438. back: {
  47439. height: math.unit(3.5, "meters"),
  47440. name: "Back",
  47441. image: {
  47442. source: "./media/characters/sarzu-and-israz/back.svg",
  47443. extra: 1523/1509,
  47444. bottom: 132/1655
  47445. },
  47446. },
  47447. frontFemale: {
  47448. height: math.unit(3.5, "meters"),
  47449. name: "Front (Female)",
  47450. image: {
  47451. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47452. extra: 1570/1558,
  47453. bottom: 150/1720
  47454. },
  47455. },
  47456. frontHerm: {
  47457. height: math.unit(3.5, "meters"),
  47458. name: "Front (Herm)",
  47459. image: {
  47460. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47461. extra: 1570/1558,
  47462. bottom: 150/1720
  47463. },
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(3.5, "meters"),
  47470. default: true,
  47471. },
  47472. {
  47473. name: "Macro",
  47474. height: math.unit(65.5, "meters"),
  47475. },
  47476. ],
  47477. ))
  47478. characterMakers.push(() => makeCharacter(
  47479. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47480. {
  47481. front: {
  47482. height: math.unit(6, "feet"),
  47483. weight: math.unit(250, "lb"),
  47484. name: "Front",
  47485. image: {
  47486. source: "./media/characters/zenimma/front.svg",
  47487. extra: 1346/1320,
  47488. bottom: 58/1404
  47489. }
  47490. },
  47491. back: {
  47492. height: math.unit(6, "feet"),
  47493. weight: math.unit(250, "lb"),
  47494. name: "Back",
  47495. image: {
  47496. source: "./media/characters/zenimma/back.svg",
  47497. extra: 1324/1308,
  47498. bottom: 44/1368
  47499. }
  47500. },
  47501. dick: {
  47502. height: math.unit(1.44, "feet"),
  47503. name: "Dick",
  47504. image: {
  47505. source: "./media/characters/zenimma/dick.svg"
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Canon Height",
  47512. height: math.unit(66, "miles"),
  47513. default: true
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47519. {
  47520. nude: {
  47521. height: math.unit(6, "feet"),
  47522. weight: math.unit(150, "lb"),
  47523. name: "Nude",
  47524. image: {
  47525. source: "./media/characters/shavon/nude.svg",
  47526. extra: 1242/1096,
  47527. bottom: 98/1340
  47528. }
  47529. },
  47530. dressed: {
  47531. height: math.unit(6, "feet"),
  47532. weight: math.unit(150, "lb"),
  47533. name: "Dressed",
  47534. image: {
  47535. source: "./media/characters/shavon/dressed.svg",
  47536. extra: 1242/1096,
  47537. bottom: 98/1340
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Macro",
  47544. height: math.unit(255, "feet"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(6, "feet"),
  47554. name: "Front",
  47555. image: {
  47556. source: "./media/characters/steph/front.svg",
  47557. extra: 1430/1330,
  47558. bottom: 54/1484
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(6, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47572. {
  47573. front: {
  47574. height: math.unit(9, "feet"),
  47575. weight: math.unit(400, "lb"),
  47576. name: "Front",
  47577. image: {
  47578. source: "./media/characters/kil'aman/front.svg",
  47579. extra: 1210/1159,
  47580. bottom: 109/1319
  47581. }
  47582. },
  47583. head: {
  47584. height: math.unit(2.14, "feet"),
  47585. name: "Head",
  47586. image: {
  47587. source: "./media/characters/kil'aman/head.svg"
  47588. }
  47589. },
  47590. maw: {
  47591. height: math.unit(1.21, "feet"),
  47592. name: "Maw",
  47593. image: {
  47594. source: "./media/characters/kil'aman/maw.svg"
  47595. }
  47596. },
  47597. foot: {
  47598. height: math.unit(1.7, "feet"),
  47599. name: "Foot",
  47600. image: {
  47601. source: "./media/characters/kil'aman/foot.svg"
  47602. }
  47603. },
  47604. dick: {
  47605. height: math.unit(2.1, "feet"),
  47606. name: "Dick",
  47607. image: {
  47608. source: "./media/characters/kil'aman/dick.svg"
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(9, "feet")
  47616. },
  47617. {
  47618. name: "Canon Height",
  47619. height: math.unit(10, "miles"),
  47620. default: true
  47621. },
  47622. {
  47623. name: "Maximum",
  47624. height: math.unit(6e9, "miles")
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47630. {
  47631. front: {
  47632. height: math.unit(90, "feet"),
  47633. weight: math.unit(675000, "lb"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/qadan/front.svg",
  47637. extra: 1012/1004,
  47638. bottom: 78/1090
  47639. }
  47640. },
  47641. back: {
  47642. height: math.unit(90, "feet"),
  47643. weight: math.unit(675000, "lb"),
  47644. name: "Back",
  47645. image: {
  47646. source: "./media/characters/qadan/back.svg",
  47647. extra: 1042/1031,
  47648. bottom: 55/1097
  47649. }
  47650. },
  47651. armored: {
  47652. height: math.unit(90, "feet"),
  47653. weight: math.unit(675000, "lb"),
  47654. name: "Armored",
  47655. image: {
  47656. source: "./media/characters/qadan/armored.svg",
  47657. extra: 1047/1037,
  47658. bottom: 48/1095
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Normal",
  47665. height: math.unit(90, "feet"),
  47666. default: true
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(6, "feet"),
  47675. weight: math.unit(225, "lb"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/brooke/front.svg",
  47679. extra: 1050/1010,
  47680. bottom: 66/1116
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(6, "feet"),
  47685. weight: math.unit(225, "lb"),
  47686. name: "Back",
  47687. image: {
  47688. source: "./media/characters/brooke/back.svg",
  47689. extra: 1053/1013,
  47690. bottom: 41/1094
  47691. }
  47692. },
  47693. dressed: {
  47694. height: math.unit(6, "feet"),
  47695. weight: math.unit(225, "lb"),
  47696. name: "Dressed",
  47697. image: {
  47698. source: "./media/characters/brooke/dressed.svg",
  47699. extra: 1050/1010,
  47700. bottom: 66/1116
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Canon Height",
  47707. height: math.unit(500, "miles"),
  47708. default: true
  47709. },
  47710. ]
  47711. ))
  47712. characterMakers.push(() => makeCharacter(
  47713. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47714. {
  47715. front: {
  47716. height: math.unit(6 + 2/12, "feet"),
  47717. weight: math.unit(210, "lb"),
  47718. name: "Front",
  47719. image: {
  47720. source: "./media/characters/wubs/front.svg",
  47721. extra: 1345/1325,
  47722. bottom: 70/1415
  47723. }
  47724. },
  47725. back: {
  47726. height: math.unit(6 + 2/12, "feet"),
  47727. weight: math.unit(210, "lb"),
  47728. name: "Back",
  47729. image: {
  47730. source: "./media/characters/wubs/back.svg",
  47731. extra: 1296/1275,
  47732. bottom: 58/1354
  47733. }
  47734. },
  47735. },
  47736. [
  47737. {
  47738. name: "Normal",
  47739. height: math.unit(6 + 2/12, "feet"),
  47740. default: true
  47741. },
  47742. {
  47743. name: "Macro",
  47744. height: math.unit(1000, "feet")
  47745. },
  47746. {
  47747. name: "Megamacro",
  47748. height: math.unit(1, "mile")
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(4, "feet"),
  47757. weight: math.unit(120, "lb"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/blue/front.svg",
  47761. extra: 1636/1525,
  47762. bottom: 43/1679
  47763. }
  47764. },
  47765. back: {
  47766. height: math.unit(4, "feet"),
  47767. weight: math.unit(120, "lb"),
  47768. name: "Back",
  47769. image: {
  47770. source: "./media/characters/blue/back.svg",
  47771. extra: 1660/1560,
  47772. bottom: 57/1717
  47773. }
  47774. },
  47775. paws: {
  47776. height: math.unit(0.826, "feet"),
  47777. name: "Paws",
  47778. image: {
  47779. source: "./media/characters/blue/paws.svg"
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Micro",
  47786. height: math.unit(3, "inches")
  47787. },
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(4, "feet"),
  47791. default: true
  47792. },
  47793. {
  47794. name: "Femenine Form",
  47795. height: math.unit(14, "feet")
  47796. },
  47797. {
  47798. name: "Werebat Form",
  47799. height: math.unit(18, "feet")
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47805. {
  47806. female: {
  47807. height: math.unit(7 + 4/12, "feet"),
  47808. weight: math.unit(243, "lb"),
  47809. name: "Female",
  47810. image: {
  47811. source: "./media/characters/kaya/female.svg",
  47812. extra: 975/898,
  47813. bottom: 34/1009
  47814. }
  47815. },
  47816. herm: {
  47817. height: math.unit(7 + 4/12, "feet"),
  47818. weight: math.unit(243, "lb"),
  47819. name: "Herm",
  47820. image: {
  47821. source: "./media/characters/kaya/herm.svg",
  47822. extra: 975/898,
  47823. bottom: 34/1009
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Normal",
  47830. height: math.unit(7 + 4/12, "feet"),
  47831. default: true
  47832. },
  47833. ]
  47834. ))
  47835. characterMakers.push(() => makeCharacter(
  47836. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47837. {
  47838. female: {
  47839. height: math.unit(9 + 4/12, "feet"),
  47840. weight: math.unit(398, "lb"),
  47841. name: "Female",
  47842. image: {
  47843. source: "./media/characters/kassandra/female.svg",
  47844. extra: 908/839,
  47845. bottom: 61/969
  47846. }
  47847. },
  47848. intersex: {
  47849. height: math.unit(9 + 4/12, "feet"),
  47850. weight: math.unit(398, "lb"),
  47851. name: "Intersex",
  47852. image: {
  47853. source: "./media/characters/kassandra/intersex.svg",
  47854. extra: 908/839,
  47855. bottom: 61/969
  47856. }
  47857. },
  47858. },
  47859. [
  47860. {
  47861. name: "Normal",
  47862. height: math.unit(9 + 4/12, "feet"),
  47863. default: true
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(3, "meters"),
  47872. name: "Front",
  47873. image: {
  47874. source: "./media/characters/amy/front.svg",
  47875. extra: 1380/1343,
  47876. bottom: 70/1450
  47877. }
  47878. },
  47879. back: {
  47880. height: math.unit(3, "meters"),
  47881. name: "Back",
  47882. image: {
  47883. source: "./media/characters/amy/back.svg",
  47884. extra: 1380/1347,
  47885. bottom: 66/1446
  47886. }
  47887. },
  47888. },
  47889. [
  47890. {
  47891. name: "Normal",
  47892. height: math.unit(3, "meters"),
  47893. default: true
  47894. },
  47895. ]
  47896. ))
  47897. characterMakers.push(() => makeCharacter(
  47898. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47899. {
  47900. side: {
  47901. height: math.unit(47, "cm"),
  47902. weight: math.unit(10.8, "kg"),
  47903. name: "Side",
  47904. image: {
  47905. source: "./media/characters/alphaschakal/side.svg",
  47906. extra: 1058/568,
  47907. bottom: 62/1120
  47908. }
  47909. },
  47910. back: {
  47911. height: math.unit(78, "cm"),
  47912. weight: math.unit(10.8, "kg"),
  47913. name: "Back",
  47914. image: {
  47915. source: "./media/characters/alphaschakal/back.svg",
  47916. extra: 1102/942,
  47917. bottom: 185/1287
  47918. }
  47919. },
  47920. head: {
  47921. height: math.unit(28, "cm"),
  47922. name: "Head",
  47923. image: {
  47924. source: "./media/characters/alphaschakal/head.svg",
  47925. extra: 696/508,
  47926. bottom: 0/696
  47927. }
  47928. },
  47929. paw: {
  47930. height: math.unit(16, "cm"),
  47931. name: "Paw",
  47932. image: {
  47933. source: "./media/characters/alphaschakal/paw.svg"
  47934. }
  47935. },
  47936. },
  47937. [
  47938. {
  47939. name: "Normal",
  47940. height: math.unit(47, "cm"),
  47941. default: true
  47942. },
  47943. {
  47944. name: "Macro",
  47945. height: math.unit(340, "cm")
  47946. },
  47947. ]
  47948. ))
  47949. characterMakers.push(() => makeCharacter(
  47950. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47951. {
  47952. front: {
  47953. height: math.unit(36, "earths"),
  47954. name: "Front",
  47955. image: {
  47956. source: "./media/characters/ecobyss/front.svg",
  47957. extra: 1282/1215,
  47958. bottom: 11/1293
  47959. }
  47960. },
  47961. back: {
  47962. height: math.unit(36, "earths"),
  47963. name: "Back",
  47964. image: {
  47965. source: "./media/characters/ecobyss/back.svg",
  47966. extra: 1291/1222,
  47967. bottom: 8/1299
  47968. }
  47969. },
  47970. },
  47971. [
  47972. {
  47973. name: "Normal",
  47974. height: math.unit(36, "earths"),
  47975. default: true
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47981. {
  47982. front: {
  47983. height: math.unit(12, "feet"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/vasuk/front.svg",
  47987. extra: 1326/1207,
  47988. bottom: 64/1390
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Normal",
  47995. height: math.unit(12, "feet"),
  47996. default: true
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48002. {
  48003. side: {
  48004. height: math.unit(100, "feet"),
  48005. name: "Side",
  48006. image: {
  48007. source: "./media/characters/linneaus/side.svg",
  48008. extra: 987/807,
  48009. bottom: 47/1034
  48010. }
  48011. },
  48012. },
  48013. [
  48014. {
  48015. name: "Macro",
  48016. height: math.unit(100, "feet"),
  48017. default: true
  48018. },
  48019. ]
  48020. ))
  48021. characterMakers.push(() => makeCharacter(
  48022. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48023. {
  48024. front: {
  48025. height: math.unit(8, "feet"),
  48026. weight: math.unit(1200, "lb"),
  48027. name: "Front",
  48028. image: {
  48029. source: "./media/characters/nyterious-daligdig/front.svg",
  48030. extra: 1284/1094,
  48031. bottom: 84/1368
  48032. }
  48033. },
  48034. back: {
  48035. height: math.unit(8, "feet"),
  48036. weight: math.unit(1200, "lb"),
  48037. name: "Back",
  48038. image: {
  48039. source: "./media/characters/nyterious-daligdig/back.svg",
  48040. extra: 1301/1121,
  48041. bottom: 129/1430
  48042. }
  48043. },
  48044. mouth: {
  48045. height: math.unit(1.464, "feet"),
  48046. name: "Mouth",
  48047. image: {
  48048. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48049. }
  48050. },
  48051. },
  48052. [
  48053. {
  48054. name: "Small",
  48055. height: math.unit(8, "feet"),
  48056. default: true
  48057. },
  48058. {
  48059. name: "Normal",
  48060. height: math.unit(15, "feet")
  48061. },
  48062. {
  48063. name: "Macro",
  48064. height: math.unit(90, "feet")
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48070. {
  48071. front: {
  48072. height: math.unit(7 + 4/12, "feet"),
  48073. weight: math.unit(252, "lb"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/bandel/front.svg",
  48077. extra: 1946/1775,
  48078. bottom: 26/1972
  48079. }
  48080. },
  48081. back: {
  48082. height: math.unit(7 + 4/12, "feet"),
  48083. weight: math.unit(252, "lb"),
  48084. name: "Back",
  48085. image: {
  48086. source: "./media/characters/bandel/back.svg",
  48087. extra: 1940/1770,
  48088. bottom: 25/1965
  48089. }
  48090. },
  48091. maw: {
  48092. height: math.unit(2.15, "feet"),
  48093. name: "Maw",
  48094. image: {
  48095. source: "./media/characters/bandel/maw.svg"
  48096. }
  48097. },
  48098. stomach: {
  48099. height: math.unit(1.95, "feet"),
  48100. name: "Stomach",
  48101. image: {
  48102. source: "./media/characters/bandel/stomach.svg"
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(7 + 4/12, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(10 + 5/12, "feet"),
  48119. weight: math.unit(773.5, "kg"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/zed/front.svg",
  48123. extra: 987/941,
  48124. bottom: 52/1039
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Short",
  48131. height: math.unit(5 + 4/12, "feet")
  48132. },
  48133. {
  48134. name: "Average",
  48135. height: math.unit(10 + 5/12, "feet"),
  48136. default: true
  48137. },
  48138. {
  48139. name: "Mini-Macro",
  48140. height: math.unit(24 + 9/12, "feet")
  48141. },
  48142. {
  48143. name: "Macro",
  48144. height: math.unit(249, "feet")
  48145. },
  48146. {
  48147. name: "Mega-Macro",
  48148. height: math.unit(12490, "feet")
  48149. },
  48150. {
  48151. name: "Giga-Macro",
  48152. height: math.unit(24.9, "miles")
  48153. },
  48154. {
  48155. name: "Tera-Macro",
  48156. height: math.unit(24900, "miles")
  48157. },
  48158. {
  48159. name: "Cosmic Scale",
  48160. height: math.unit(38.9, "lightyears")
  48161. },
  48162. {
  48163. name: "Universal Scale",
  48164. height: math.unit(138e12, "lightyears")
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48170. {
  48171. front: {
  48172. height: math.unit(1561, "inches"),
  48173. name: "Front",
  48174. image: {
  48175. source: "./media/characters/ivan/front.svg",
  48176. extra: 1126/1071,
  48177. bottom: 26/1152
  48178. }
  48179. },
  48180. back: {
  48181. height: math.unit(1561, "inches"),
  48182. name: "Back",
  48183. image: {
  48184. source: "./media/characters/ivan/back.svg",
  48185. extra: 1134/1079,
  48186. bottom: 30/1164
  48187. }
  48188. },
  48189. },
  48190. [
  48191. {
  48192. name: "Normal",
  48193. height: math.unit(1561, "inches"),
  48194. default: true
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48200. {
  48201. front: {
  48202. height: math.unit(5 + 7/12, "feet"),
  48203. weight: math.unit(150, "lb"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/robin-arctic-hare/front.svg",
  48207. extra: 1148/974,
  48208. bottom: 20/1168
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(5 + 7/12, "feet"),
  48216. default: true
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48222. {
  48223. side: {
  48224. height: math.unit(5, "feet"),
  48225. name: "Side",
  48226. image: {
  48227. source: "./media/characters/birch/side.svg",
  48228. extra: 985/796,
  48229. bottom: 111/1096
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(5, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(4, "feet"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/rasp/front.svg",
  48249. extra: 561/478,
  48250. bottom: 74/635
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(4, "feet"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(4 + 6/12, "feet"),
  48267. name: "Front",
  48268. image: {
  48269. source: "./media/characters/agatha/front.svg",
  48270. extra: 947/933,
  48271. bottom: 42/989
  48272. }
  48273. },
  48274. back: {
  48275. height: math.unit(4 + 6/12, "feet"),
  48276. name: "Back",
  48277. image: {
  48278. source: "./media/characters/agatha/back.svg",
  48279. extra: 935/922,
  48280. bottom: 48/983
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(4 + 6 /12, "feet"),
  48288. default: true
  48289. },
  48290. {
  48291. name: "Max Size",
  48292. height: math.unit(500, "feet")
  48293. },
  48294. ]
  48295. ))
  48296. characterMakers.push(() => makeCharacter(
  48297. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48298. {
  48299. side: {
  48300. height: math.unit(30, "feet"),
  48301. name: "Side",
  48302. image: {
  48303. source: "./media/characters/roggy/side.svg",
  48304. extra: 909/643,
  48305. bottom: 63/972
  48306. }
  48307. },
  48308. lounging: {
  48309. height: math.unit(20, "feet"),
  48310. name: "Lounging",
  48311. image: {
  48312. source: "./media/characters/roggy/lounging.svg",
  48313. extra: 643/479,
  48314. bottom: 145/788
  48315. }
  48316. },
  48317. handpaw: {
  48318. height: math.unit(13.1, "feet"),
  48319. name: "Handpaw",
  48320. image: {
  48321. source: "./media/characters/roggy/handpaw.svg"
  48322. }
  48323. },
  48324. footpaw: {
  48325. height: math.unit(15.8, "feet"),
  48326. name: "Footpaw",
  48327. image: {
  48328. source: "./media/characters/roggy/footpaw.svg"
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Menacing",
  48335. height: math.unit(30, "feet"),
  48336. default: true
  48337. },
  48338. ]
  48339. ))
  48340. characterMakers.push(() => makeCharacter(
  48341. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48342. {
  48343. front: {
  48344. height: math.unit(5 + 7/12, "feet"),
  48345. weight: math.unit(135, "lb"),
  48346. name: "Front",
  48347. image: {
  48348. source: "./media/characters/naomi/front.svg",
  48349. extra: 1209/1154,
  48350. bottom: 129/1338
  48351. }
  48352. },
  48353. back: {
  48354. height: math.unit(5 + 7/12, "feet"),
  48355. weight: math.unit(135, "lb"),
  48356. name: "Back",
  48357. image: {
  48358. source: "./media/characters/naomi/back.svg",
  48359. extra: 1252/1190,
  48360. bottom: 23/1275
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(5 + 7 /12, "feet"),
  48368. default: true
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48374. {
  48375. side: {
  48376. height: math.unit(35, "meters"),
  48377. name: "Side",
  48378. image: {
  48379. source: "./media/characters/kimpi/side.svg",
  48380. extra: 419/382,
  48381. bottom: 63/482
  48382. }
  48383. },
  48384. hand: {
  48385. height: math.unit(8.96, "meters"),
  48386. name: "Hand",
  48387. image: {
  48388. source: "./media/characters/kimpi/hand.svg"
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(35, "meters"),
  48396. default: true
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(4 + 4/12, "feet"),
  48405. name: "Front",
  48406. image: {
  48407. source: "./media/characters/pepper-purrloin/front.svg",
  48408. extra: 1141/1024,
  48409. bottom: 21/1162
  48410. }
  48411. },
  48412. },
  48413. [
  48414. {
  48415. name: "Normal",
  48416. height: math.unit(4 + 4/12, "feet"),
  48417. default: true
  48418. },
  48419. ]
  48420. ))
  48421. characterMakers.push(() => makeCharacter(
  48422. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48423. {
  48424. front: {
  48425. height: math.unit(6 + 2/12, "feet"),
  48426. name: "Front",
  48427. image: {
  48428. source: "./media/characters/raphael/front.svg",
  48429. extra: 1101/962,
  48430. bottom: 59/1160
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(6 + 2/12, "feet"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(6, "feet"),
  48447. weight: math.unit(150, "lb"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/victor-williams/front.svg",
  48451. extra: 1894/1825,
  48452. bottom: 67/1961
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(6, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48466. {
  48467. front: {
  48468. height: math.unit(5 + 8/12, "feet"),
  48469. weight: math.unit(150, "lb"),
  48470. name: "Front",
  48471. image: {
  48472. source: "./media/characters/rachel/front.svg",
  48473. extra: 1902/1787,
  48474. bottom: 46/1948
  48475. }
  48476. },
  48477. },
  48478. [
  48479. {
  48480. name: "Base Height",
  48481. height: math.unit(5 + 8/12, "feet"),
  48482. default: true
  48483. },
  48484. {
  48485. name: "Macro",
  48486. height: math.unit(200, "feet")
  48487. },
  48488. {
  48489. name: "Mega Macro",
  48490. height: math.unit(1, "mile")
  48491. },
  48492. {
  48493. name: "Giga Macro",
  48494. height: math.unit(1500, "miles")
  48495. },
  48496. {
  48497. name: "Tera Macro",
  48498. height: math.unit(8000, "miles")
  48499. },
  48500. {
  48501. name: "Tera Macro+",
  48502. height: math.unit(2e5, "miles")
  48503. },
  48504. ]
  48505. ))
  48506. characterMakers.push(() => makeCharacter(
  48507. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48508. {
  48509. front: {
  48510. height: math.unit(6.5, "feet"),
  48511. name: "Front",
  48512. image: {
  48513. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48514. extra: 860/819,
  48515. bottom: 307/1167
  48516. }
  48517. },
  48518. back: {
  48519. height: math.unit(6.5, "feet"),
  48520. name: "Back",
  48521. image: {
  48522. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48523. extra: 880/837,
  48524. bottom: 395/1275
  48525. }
  48526. },
  48527. sleeping: {
  48528. height: math.unit(2.79, "feet"),
  48529. name: "Sleeping",
  48530. image: {
  48531. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48532. extra: 465/383,
  48533. bottom: 263/728
  48534. }
  48535. },
  48536. maw: {
  48537. height: math.unit(2.52, "feet"),
  48538. name: "Maw",
  48539. image: {
  48540. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48541. }
  48542. },
  48543. },
  48544. [
  48545. {
  48546. name: "Normal",
  48547. height: math.unit(6.5, "feet"),
  48548. default: true
  48549. },
  48550. ]
  48551. ))
  48552. characterMakers.push(() => makeCharacter(
  48553. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48554. {
  48555. front: {
  48556. height: math.unit(5, "feet"),
  48557. name: "Front",
  48558. image: {
  48559. source: "./media/characters/nova-nerium/front.svg",
  48560. extra: 1548/1392,
  48561. bottom: 374/1922
  48562. }
  48563. },
  48564. back: {
  48565. height: math.unit(5, "feet"),
  48566. name: "Back",
  48567. image: {
  48568. source: "./media/characters/nova-nerium/back.svg",
  48569. extra: 1658/1468,
  48570. bottom: 257/1915
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(5, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(5 + 4/12, "feet"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/ashe-pyriph/front.svg",
  48590. extra: 1935/1747,
  48591. bottom: 60/1995
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(5 + 4/12, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(8.7, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/flicker-wisp/front.svg",
  48611. extra: 1835/1613,
  48612. bottom: 449/2284
  48613. }
  48614. },
  48615. side: {
  48616. height: math.unit(8.7, "feet"),
  48617. name: "Side",
  48618. image: {
  48619. source: "./media/characters/flicker-wisp/side.svg",
  48620. extra: 1841/1642,
  48621. bottom: 336/2177
  48622. },
  48623. default: true
  48624. },
  48625. maw: {
  48626. height: math.unit(3.35, "feet"),
  48627. name: "Maw",
  48628. image: {
  48629. source: "./media/characters/flicker-wisp/maw.svg",
  48630. extra: 2338/1506,
  48631. bottom: 0/2338
  48632. }
  48633. },
  48634. ovipositor: {
  48635. height: math.unit(4.95, "feet"),
  48636. name: "Ovipositor",
  48637. image: {
  48638. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48639. }
  48640. },
  48641. egg: {
  48642. height: math.unit(0.385, "feet"),
  48643. weight: math.unit(2, "lb"),
  48644. name: "Egg",
  48645. image: {
  48646. source: "./media/characters/flicker-wisp/egg.svg"
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(8.7, "feet"),
  48654. default: true
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48660. {
  48661. side: {
  48662. height: math.unit(11, "feet"),
  48663. name: "Side",
  48664. image: {
  48665. source: "./media/characters/faefnul/side.svg",
  48666. extra: 1100/1007,
  48667. bottom: 0/1100
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(11, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(6 + 2/12, "feet"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/shady/front.svg",
  48687. extra: 502/461,
  48688. bottom: 9/511
  48689. }
  48690. },
  48691. kneeling: {
  48692. height: math.unit(4.6, "feet"),
  48693. name: "Kneeling",
  48694. image: {
  48695. source: "./media/characters/shady/kneeling.svg",
  48696. extra: 1328/1219,
  48697. bottom: 117/1445
  48698. }
  48699. },
  48700. maw: {
  48701. height: math.unit(2, "feet"),
  48702. name: "Maw",
  48703. image: {
  48704. source: "./media/characters/shady/maw.svg"
  48705. }
  48706. },
  48707. },
  48708. [
  48709. {
  48710. name: "Nano",
  48711. height: math.unit(1, "mm")
  48712. },
  48713. {
  48714. name: "Micro",
  48715. height: math.unit(12, "mm")
  48716. },
  48717. {
  48718. name: "Tiny",
  48719. height: math.unit(3, "inches")
  48720. },
  48721. {
  48722. name: "Normal",
  48723. height: math.unit(6 + 2/12, "feet"),
  48724. default: true
  48725. },
  48726. {
  48727. name: "Big",
  48728. height: math.unit(15, "feet")
  48729. },
  48730. {
  48731. name: "Macro",
  48732. height: math.unit(150, "feet")
  48733. },
  48734. {
  48735. name: "Titanic",
  48736. height: math.unit(500, "feet")
  48737. },
  48738. ]
  48739. ))
  48740. characterMakers.push(() => makeCharacter(
  48741. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48742. {
  48743. front: {
  48744. height: math.unit(12, "feet"),
  48745. name: "Front",
  48746. image: {
  48747. source: "./media/characters/fenrir/front.svg",
  48748. extra: 968/875,
  48749. bottom: 22/990
  48750. }
  48751. },
  48752. },
  48753. [
  48754. {
  48755. name: "Big",
  48756. height: math.unit(12, "feet"),
  48757. default: true
  48758. },
  48759. ]
  48760. ))
  48761. characterMakers.push(() => makeCharacter(
  48762. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48763. {
  48764. front: {
  48765. height: math.unit(5 + 4/12, "feet"),
  48766. name: "Front",
  48767. image: {
  48768. source: "./media/characters/makar/front.svg",
  48769. extra: 1181/1112,
  48770. bottom: 78/1259
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(5 + 4/12, "feet"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(5 + 7/12, "feet"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/callow/front.svg",
  48790. extra: 1482/1304,
  48791. bottom: 23/1505
  48792. }
  48793. },
  48794. back: {
  48795. height: math.unit(5 + 7/12, "feet"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/callow/back.svg",
  48799. extra: 1484/1296,
  48800. bottom: 25/1509
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Micro",
  48807. height: math.unit(3, "inches"),
  48808. default: true
  48809. },
  48810. {
  48811. name: "Normal",
  48812. height: math.unit(5 + 7/12, "feet")
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(6 + 2/12, "feet"),
  48821. name: "Front",
  48822. image: {
  48823. source: "./media/characters/natel/front.svg",
  48824. extra: 1833/1692,
  48825. bottom: 166/1999
  48826. }
  48827. },
  48828. },
  48829. [
  48830. {
  48831. name: "Normal",
  48832. height: math.unit(6 + 2/12, "feet"),
  48833. default: true
  48834. },
  48835. ]
  48836. ))
  48837. characterMakers.push(() => makeCharacter(
  48838. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48839. {
  48840. front: {
  48841. height: math.unit(1.75, "meters"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/misu/front.svg",
  48845. extra: 1690/1558,
  48846. bottom: 234/1924
  48847. }
  48848. },
  48849. back: {
  48850. height: math.unit(1.75, "meters"),
  48851. name: "Back",
  48852. image: {
  48853. source: "./media/characters/misu/back.svg",
  48854. extra: 1762/1618,
  48855. bottom: 146/1908
  48856. }
  48857. },
  48858. frontNude: {
  48859. height: math.unit(1.75, "meters"),
  48860. name: "Front (Nude)",
  48861. image: {
  48862. source: "./media/characters/misu/front-nude.svg",
  48863. extra: 1690/1558,
  48864. bottom: 234/1924
  48865. }
  48866. },
  48867. backNude: {
  48868. height: math.unit(1.75, "meters"),
  48869. name: "Back (Nude)",
  48870. image: {
  48871. source: "./media/characters/misu/back-nude.svg",
  48872. extra: 1762/1618,
  48873. bottom: 146/1908
  48874. }
  48875. },
  48876. frontErect: {
  48877. height: math.unit(1.75, "meters"),
  48878. name: "Front (Erect)",
  48879. image: {
  48880. source: "./media/characters/misu/front-erect.svg",
  48881. extra: 1690/1558,
  48882. bottom: 234/1924
  48883. }
  48884. },
  48885. maw: {
  48886. height: math.unit(0.47, "meters"),
  48887. name: "Maw",
  48888. image: {
  48889. source: "./media/characters/misu/maw.svg"
  48890. }
  48891. },
  48892. head: {
  48893. height: math.unit(0.35, "meters"),
  48894. name: "Head",
  48895. image: {
  48896. source: "./media/characters/misu/head.svg"
  48897. }
  48898. },
  48899. rear: {
  48900. height: math.unit(0.47, "meters"),
  48901. name: "Rear",
  48902. image: {
  48903. source: "./media/characters/misu/rear.svg"
  48904. }
  48905. },
  48906. },
  48907. [
  48908. {
  48909. name: "Normal",
  48910. height: math.unit(1.75, "meters")
  48911. },
  48912. {
  48913. name: "Not good for the people",
  48914. height: math.unit(42, "meters")
  48915. },
  48916. {
  48917. name: "Not good for the neighborhood",
  48918. height: math.unit(135, "meters")
  48919. },
  48920. {
  48921. name: "Bit bigger problem",
  48922. height: math.unit(380, "meters"),
  48923. default: true
  48924. },
  48925. {
  48926. name: "Not good for the city",
  48927. height: math.unit(1.5, "km")
  48928. },
  48929. {
  48930. name: "Not good for the county",
  48931. height: math.unit(5.5, "km")
  48932. },
  48933. {
  48934. name: "Not good for the state",
  48935. height: math.unit(25, "km")
  48936. },
  48937. {
  48938. name: "Not good for the country",
  48939. height: math.unit(125, "km")
  48940. },
  48941. {
  48942. name: "Not good for the continent",
  48943. height: math.unit(2100, "km")
  48944. },
  48945. {
  48946. name: "Not good for the planet",
  48947. height: math.unit(35000, "km")
  48948. },
  48949. {
  48950. name: "Just no",
  48951. height: math.unit(8.5e18, "km")
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(6.5, "feet"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/poppy/front.svg",
  48963. extra: 1878/1812,
  48964. bottom: 43/1921
  48965. }
  48966. },
  48967. feet: {
  48968. height: math.unit(1.06, "feet"),
  48969. name: "Feet",
  48970. image: {
  48971. source: "./media/characters/poppy/feet.svg",
  48972. extra: 1083/1083,
  48973. bottom: 87/1170
  48974. }
  48975. },
  48976. },
  48977. [
  48978. {
  48979. name: "Human",
  48980. height: math.unit(6.5, "feet")
  48981. },
  48982. {
  48983. name: "Default",
  48984. height: math.unit(300, "feet"),
  48985. default: true
  48986. },
  48987. {
  48988. name: "Huge",
  48989. height: math.unit(850, "feet")
  48990. },
  48991. {
  48992. name: "Mega",
  48993. height: math.unit(8000, "feet")
  48994. },
  48995. {
  48996. name: "Giga",
  48997. height: math.unit(300, "miles")
  48998. },
  48999. ]
  49000. ))
  49001. characterMakers.push(() => makeCharacter(
  49002. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49003. {
  49004. bipedal: {
  49005. height: math.unit(7, "feet"),
  49006. name: "Bipedal",
  49007. image: {
  49008. source: "./media/characters/zener/bipedal.svg",
  49009. extra: 874/805,
  49010. bottom: 109/983
  49011. }
  49012. },
  49013. quadrupedal: {
  49014. height: math.unit(4.64, "feet"),
  49015. name: "Quadrupedal",
  49016. image: {
  49017. source: "./media/characters/zener/quadrupedal.svg",
  49018. extra: 638/507,
  49019. bottom: 190/828
  49020. }
  49021. },
  49022. cock: {
  49023. height: math.unit(18, "inches"),
  49024. name: "Cock",
  49025. image: {
  49026. source: "./media/characters/zener/cock.svg"
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Normal",
  49033. height: math.unit(7, "feet"),
  49034. default: true
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49040. {
  49041. nude: {
  49042. height: math.unit(5 + 6/12, "feet"),
  49043. name: "Nude",
  49044. image: {
  49045. source: "./media/characters/charlie-dog/nude.svg",
  49046. extra: 768/734,
  49047. bottom: 26/794
  49048. }
  49049. },
  49050. dressed: {
  49051. height: math.unit(5 + 6/12, "feet"),
  49052. name: "Dressed",
  49053. image: {
  49054. source: "./media/characters/charlie-dog/dressed.svg",
  49055. extra: 768/734,
  49056. bottom: 26/794
  49057. }
  49058. },
  49059. },
  49060. [
  49061. {
  49062. name: "Normal",
  49063. height: math.unit(5 + 6/12, "feet"),
  49064. default: true
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49070. {
  49071. front: {
  49072. height: math.unit(6 + 4/12, "feet"),
  49073. name: "Front",
  49074. image: {
  49075. source: "./media/characters/ir'istrasz/front.svg",
  49076. extra: 1014/977,
  49077. bottom: 65/1079
  49078. }
  49079. },
  49080. back: {
  49081. height: math.unit(6 + 4/12, "feet"),
  49082. name: "Back",
  49083. image: {
  49084. source: "./media/characters/ir'istrasz/back.svg",
  49085. extra: 1024/992,
  49086. bottom: 34/1058
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(6 + 4/12, "feet"),
  49094. default: true
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49100. {
  49101. front: {
  49102. height: math.unit(5 + 8/12, "feet"),
  49103. name: "Front",
  49104. image: {
  49105. source: "./media/characters/dee-ditto/front.svg",
  49106. extra: 1874/1785,
  49107. bottom: 68/1942
  49108. }
  49109. },
  49110. back: {
  49111. height: math.unit(5 + 8/12, "feet"),
  49112. name: "Back",
  49113. image: {
  49114. source: "./media/characters/dee-ditto/back.svg",
  49115. extra: 1870/1783,
  49116. bottom: 77/1947
  49117. }
  49118. },
  49119. },
  49120. [
  49121. {
  49122. name: "Normal",
  49123. height: math.unit(5 + 8/12, "feet"),
  49124. default: true
  49125. },
  49126. ]
  49127. ))
  49128. characterMakers.push(() => makeCharacter(
  49129. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49130. {
  49131. front: {
  49132. height: math.unit(7 + 6/12, "feet"),
  49133. name: "Front",
  49134. image: {
  49135. source: "./media/characters/fey/front.svg",
  49136. extra: 995/979,
  49137. bottom: 30/1025
  49138. }
  49139. },
  49140. back: {
  49141. height: math.unit(7 + 6/12, "feet"),
  49142. name: "Back",
  49143. image: {
  49144. source: "./media/characters/fey/back.svg",
  49145. extra: 1079/1008,
  49146. bottom: 5/1084
  49147. }
  49148. },
  49149. dressed: {
  49150. height: math.unit(7 + 6/12, "feet"),
  49151. name: "Dressed",
  49152. image: {
  49153. source: "./media/characters/fey/dressed.svg",
  49154. extra: 995/979,
  49155. bottom: 30/1025
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Normal",
  49162. height: math.unit(7 + 6/12, "feet"),
  49163. default: true
  49164. },
  49165. ]
  49166. ))
  49167. characterMakers.push(() => makeCharacter(
  49168. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49169. {
  49170. standing: {
  49171. height: math.unit(17, "feet"),
  49172. name: "Standing",
  49173. image: {
  49174. source: "./media/characters/aster/standing.svg",
  49175. extra: 1798/1598,
  49176. bottom: 117/1915
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Normal",
  49183. height: math.unit(17, "feet"),
  49184. default: true
  49185. },
  49186. {
  49187. name: "Homewrecker",
  49188. height: math.unit(95, "feet")
  49189. },
  49190. {
  49191. name: "Planet Devourer",
  49192. height: math.unit(1008000, "miles")
  49193. },
  49194. ]
  49195. ))
  49196. characterMakers.push(() => makeCharacter(
  49197. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49198. {
  49199. front: {
  49200. height: math.unit(6 + 5/12, "feet"),
  49201. weight: math.unit(265, "lb"),
  49202. name: "Front",
  49203. image: {
  49204. source: "./media/characters/devon-childs/front.svg",
  49205. extra: 1795/1721,
  49206. bottom: 41/1836
  49207. }
  49208. },
  49209. side: {
  49210. height: math.unit(6 + 5/12, "feet"),
  49211. weight: math.unit(265, "lb"),
  49212. name: "Side",
  49213. image: {
  49214. source: "./media/characters/devon-childs/side.svg",
  49215. extra: 1812/1738,
  49216. bottom: 30/1842
  49217. }
  49218. },
  49219. back: {
  49220. height: math.unit(6 + 5/12, "feet"),
  49221. weight: math.unit(265, "lb"),
  49222. name: "Back",
  49223. image: {
  49224. source: "./media/characters/devon-childs/back.svg",
  49225. extra: 1808/1735,
  49226. bottom: 23/1831
  49227. }
  49228. },
  49229. hand: {
  49230. height: math.unit(1.464, "feet"),
  49231. name: "Hand",
  49232. image: {
  49233. source: "./media/characters/devon-childs/hand.svg"
  49234. }
  49235. },
  49236. foot: {
  49237. height: math.unit(1.6, "feet"),
  49238. name: "Foot",
  49239. image: {
  49240. source: "./media/characters/devon-childs/foot.svg"
  49241. }
  49242. },
  49243. },
  49244. [
  49245. {
  49246. name: "Micro",
  49247. height: math.unit(7, "cm")
  49248. },
  49249. {
  49250. name: "Normal",
  49251. height: math.unit(6 + 5/12, "feet"),
  49252. default: true
  49253. },
  49254. {
  49255. name: "Macro",
  49256. height: math.unit(154, "feet")
  49257. },
  49258. ]
  49259. ))
  49260. characterMakers.push(() => makeCharacter(
  49261. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49262. {
  49263. front: {
  49264. height: math.unit(6, "feet"),
  49265. weight: math.unit(180, "lb"),
  49266. name: "Front",
  49267. image: {
  49268. source: "./media/characters/lydemox-vir/front.svg",
  49269. extra: 1632/1435,
  49270. bottom: 58/1690
  49271. }
  49272. },
  49273. frontSFW: {
  49274. height: math.unit(6, "feet"),
  49275. weight: math.unit(180, "lb"),
  49276. name: "Front (SFW)",
  49277. image: {
  49278. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49279. extra: 1632/1435,
  49280. bottom: 58/1690
  49281. }
  49282. },
  49283. back: {
  49284. height: math.unit(6, "feet"),
  49285. weight: math.unit(180, "lb"),
  49286. name: "Back",
  49287. image: {
  49288. source: "./media/characters/lydemox-vir/back.svg",
  49289. extra: 1593/1408,
  49290. bottom: 31/1624
  49291. }
  49292. },
  49293. paw: {
  49294. height: math.unit(1.85, "feet"),
  49295. name: "Paw",
  49296. image: {
  49297. source: "./media/characters/lydemox-vir/paw.svg"
  49298. }
  49299. },
  49300. dick: {
  49301. height: math.unit(1.8, "feet"),
  49302. name: "Dick",
  49303. image: {
  49304. source: "./media/characters/lydemox-vir/dick.svg"
  49305. }
  49306. },
  49307. },
  49308. [
  49309. {
  49310. name: "Macro",
  49311. height: math.unit(100, "feet"),
  49312. default: true
  49313. },
  49314. {
  49315. name: "Teramacro",
  49316. height: math.unit(1, "earth")
  49317. },
  49318. {
  49319. name: "Planetary",
  49320. height: math.unit(20, "earths")
  49321. },
  49322. ]
  49323. ))
  49324. characterMakers.push(() => makeCharacter(
  49325. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49326. {
  49327. front: {
  49328. height: math.unit(15 + 8/12, "feet"),
  49329. weight: math.unit(1237, "kg"),
  49330. name: "Front",
  49331. image: {
  49332. source: "./media/characters/mia/front.svg",
  49333. extra: 1573/1446,
  49334. bottom: 58/1631
  49335. }
  49336. },
  49337. },
  49338. [
  49339. {
  49340. name: "Small",
  49341. height: math.unit(9 + 5/12, "feet")
  49342. },
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(15 + 8/12, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49352. {
  49353. front: {
  49354. height: math.unit(10 + 6/12, "feet"),
  49355. weight: math.unit(1.3, "tons"),
  49356. name: "Front",
  49357. image: {
  49358. source: "./media/characters/mr-graves/front.svg",
  49359. extra: 1779/1695,
  49360. bottom: 198/1977
  49361. }
  49362. },
  49363. },
  49364. [
  49365. {
  49366. name: "Normal",
  49367. height: math.unit(10 + 6 /12, "feet"),
  49368. default: true
  49369. },
  49370. ]
  49371. ))
  49372. characterMakers.push(() => makeCharacter(
  49373. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49374. {
  49375. dressedFront: {
  49376. height: math.unit(5 + 8/12, "feet"),
  49377. weight: math.unit(125, "lb"),
  49378. name: "Dressed (Front)",
  49379. image: {
  49380. source: "./media/characters/jess/dressed-front.svg",
  49381. extra: 1176/1152,
  49382. bottom: 42/1218
  49383. }
  49384. },
  49385. dressedSide: {
  49386. height: math.unit(5 + 8/12, "feet"),
  49387. weight: math.unit(125, "lb"),
  49388. name: "Dressed (Side)",
  49389. image: {
  49390. source: "./media/characters/jess/dressed-side.svg",
  49391. extra: 1204/1190,
  49392. bottom: 6/1210
  49393. }
  49394. },
  49395. nudeFront: {
  49396. height: math.unit(5 + 8/12, "feet"),
  49397. weight: math.unit(125, "lb"),
  49398. name: "Nude (Front)",
  49399. image: {
  49400. source: "./media/characters/jess/nude-front.svg",
  49401. extra: 1176/1152,
  49402. bottom: 42/1218
  49403. }
  49404. },
  49405. nudeSide: {
  49406. height: math.unit(5 + 8/12, "feet"),
  49407. weight: math.unit(125, "lb"),
  49408. name: "Nude (Side)",
  49409. image: {
  49410. source: "./media/characters/jess/nude-side.svg",
  49411. extra: 1204/1190,
  49412. bottom: 6/1210
  49413. }
  49414. },
  49415. organsFront: {
  49416. height: math.unit(2.83799342105, "feet"),
  49417. name: "Organs (Front)",
  49418. image: {
  49419. source: "./media/characters/jess/organs-front.svg"
  49420. }
  49421. },
  49422. organsSide: {
  49423. height: math.unit(2.64225290474, "feet"),
  49424. name: "Organs (Side)",
  49425. image: {
  49426. source: "./media/characters/jess/organs-side.svg"
  49427. }
  49428. },
  49429. digestiveTractFront: {
  49430. height: math.unit(2.8106580871, "feet"),
  49431. name: "Digestive Tract (Front)",
  49432. image: {
  49433. source: "./media/characters/jess/digestive-tract-front.svg"
  49434. }
  49435. },
  49436. digestiveTractSide: {
  49437. height: math.unit(2.54365045014, "feet"),
  49438. name: "Digestive Tract (Side)",
  49439. image: {
  49440. source: "./media/characters/jess/digestive-tract-side.svg"
  49441. }
  49442. },
  49443. respiratorySystemFront: {
  49444. height: math.unit(1.11196233456, "feet"),
  49445. name: "Respiratory System (Front)",
  49446. image: {
  49447. source: "./media/characters/jess/respiratory-system-front.svg"
  49448. }
  49449. },
  49450. respiratorySystemSide: {
  49451. height: math.unit(0.89327966297, "feet"),
  49452. name: "Respiratory System (Side)",
  49453. image: {
  49454. source: "./media/characters/jess/respiratory-system-side.svg"
  49455. }
  49456. },
  49457. urinaryTractFront: {
  49458. height: math.unit(1.16126356186, "feet"),
  49459. name: "Urinary Tract (Front)",
  49460. image: {
  49461. source: "./media/characters/jess/urinary-tract-front.svg"
  49462. }
  49463. },
  49464. urinaryTractSide: {
  49465. height: math.unit(1.20910039627, "feet"),
  49466. name: "Urinary Tract (Side)",
  49467. image: {
  49468. source: "./media/characters/jess/urinary-tract-side.svg"
  49469. }
  49470. },
  49471. reproductiveOrgansFront: {
  49472. height: math.unit(0.48422591566, "feet"),
  49473. name: "Reproductive Organs (Front)",
  49474. image: {
  49475. source: "./media/characters/jess/reproductive-organs-front.svg"
  49476. }
  49477. },
  49478. reproductiveOrgansSide: {
  49479. height: math.unit(0.61553314481, "feet"),
  49480. name: "Reproductive Organs (Side)",
  49481. image: {
  49482. source: "./media/characters/jess/reproductive-organs-side.svg"
  49483. }
  49484. },
  49485. breastsFront: {
  49486. height: math.unit(0.47690395121, "feet"),
  49487. name: "Breasts (Front)",
  49488. image: {
  49489. source: "./media/characters/jess/breasts-front.svg"
  49490. }
  49491. },
  49492. breastsSide: {
  49493. height: math.unit(0.30556998307, "feet"),
  49494. name: "Breasts (Side)",
  49495. image: {
  49496. source: "./media/characters/jess/breasts-side.svg"
  49497. }
  49498. },
  49499. heartFront: {
  49500. height: math.unit(0.53011022622, "feet"),
  49501. name: "Heart (Front)",
  49502. image: {
  49503. source: "./media/characters/jess/heart-front.svg"
  49504. }
  49505. },
  49506. heartSide: {
  49507. height: math.unit(0.51790695213, "feet"),
  49508. name: "Heart (Side)",
  49509. image: {
  49510. source: "./media/characters/jess/heart-side.svg"
  49511. }
  49512. },
  49513. earsAndNoseFront: {
  49514. height: math.unit(0.29385483995, "feet"),
  49515. name: "Ears and Nose (Front)",
  49516. image: {
  49517. source: "./media/characters/jess/ears-and-nose-front.svg"
  49518. }
  49519. },
  49520. earsAndNoseSide: {
  49521. height: math.unit(0.18109658741, "feet"),
  49522. name: "Ears and Nose (Side)",
  49523. image: {
  49524. source: "./media/characters/jess/ears-and-nose-side.svg"
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Normal",
  49531. height: math.unit(5 + 8/12, "feet"),
  49532. default: true
  49533. },
  49534. ]
  49535. ))
  49536. characterMakers.push(() => makeCharacter(
  49537. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49538. {
  49539. front: {
  49540. height: math.unit(6, "feet"),
  49541. weight: math.unit(6.64467e-7, "grams"),
  49542. name: "Front",
  49543. image: {
  49544. source: "./media/characters/wimpering/front.svg",
  49545. extra: 597/587,
  49546. bottom: 34/631
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Micro",
  49553. height: math.unit(0.4, "mm"),
  49554. default: true
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49560. {
  49561. front: {
  49562. height: math.unit(5 + 2/12, "feet"),
  49563. weight: math.unit(110, "lb"),
  49564. name: "Front",
  49565. image: {
  49566. source: "./media/characters/keltre/front.svg",
  49567. extra: 1099/1057,
  49568. bottom: 22/1121
  49569. }
  49570. },
  49571. back: {
  49572. height: math.unit(5 + 2/12, "feet"),
  49573. weight: math.unit(110, "lb"),
  49574. name: "Back",
  49575. image: {
  49576. source: "./media/characters/keltre/back.svg",
  49577. extra: 1095/1053,
  49578. bottom: 17/1112
  49579. }
  49580. },
  49581. dressed: {
  49582. height: math.unit(5 + 2/12, "feet"),
  49583. weight: math.unit(110, "lb"),
  49584. name: "Dressed",
  49585. image: {
  49586. source: "./media/characters/keltre/dressed.svg",
  49587. extra: 1099/1057,
  49588. bottom: 22/1121
  49589. }
  49590. },
  49591. winter: {
  49592. height: math.unit(5 + 2/12, "feet"),
  49593. weight: math.unit(110, "lb"),
  49594. name: "Winter",
  49595. image: {
  49596. source: "./media/characters/keltre/winter.svg",
  49597. extra: 1099/1057,
  49598. bottom: 22/1121
  49599. }
  49600. },
  49601. head: {
  49602. height: math.unit(1.61 * 0.86, "feet"),
  49603. name: "Head",
  49604. image: {
  49605. source: "./media/characters/keltre/head.svg",
  49606. extra: 534/421,
  49607. bottom: 0/534
  49608. }
  49609. },
  49610. hand: {
  49611. height: math.unit(1.3 * 0.86, "feet"),
  49612. name: "Hand",
  49613. image: {
  49614. source: "./media/characters/keltre/hand.svg"
  49615. }
  49616. },
  49617. foot: {
  49618. height: math.unit(1.8 * 0.86, "feet"),
  49619. name: "Foot",
  49620. image: {
  49621. source: "./media/characters/keltre/foot.svg"
  49622. }
  49623. },
  49624. },
  49625. [
  49626. {
  49627. name: "Fine",
  49628. height: math.unit(1, "inch")
  49629. },
  49630. {
  49631. name: "Dimnutive",
  49632. height: math.unit(4, "inches")
  49633. },
  49634. {
  49635. name: "Tiny",
  49636. height: math.unit(1, "foot")
  49637. },
  49638. {
  49639. name: "Small",
  49640. height: math.unit(3, "feet")
  49641. },
  49642. {
  49643. name: "Normal",
  49644. height: math.unit(5 + 2/12, "feet"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49651. {
  49652. front: {
  49653. height: math.unit(6 + 2/12, "feet"),
  49654. name: "Front",
  49655. image: {
  49656. source: "./media/characters/nox/front.svg",
  49657. extra: 1917/1830,
  49658. bottom: 74/1991
  49659. }
  49660. },
  49661. back: {
  49662. height: math.unit(6 + 2/12, "feet"),
  49663. name: "Back",
  49664. image: {
  49665. source: "./media/characters/nox/back.svg",
  49666. extra: 1896/1815,
  49667. bottom: 21/1917
  49668. }
  49669. },
  49670. head: {
  49671. height: math.unit(1.1, "feet"),
  49672. name: "Head",
  49673. image: {
  49674. source: "./media/characters/nox/head.svg",
  49675. extra: 874/704,
  49676. bottom: 0/874
  49677. }
  49678. },
  49679. tattoo: {
  49680. height: math.unit(0.729, "feet"),
  49681. name: "Tattoo",
  49682. image: {
  49683. source: "./media/characters/nox/tattoo.svg"
  49684. }
  49685. },
  49686. },
  49687. [
  49688. {
  49689. name: "Normal",
  49690. height: math.unit(6 + 2/12, "feet")
  49691. },
  49692. {
  49693. name: "Gigamacro",
  49694. height: math.unit(2, "earths"),
  49695. default: true
  49696. },
  49697. {
  49698. name: "Cosmic",
  49699. height: math.unit(867, "yottameters")
  49700. },
  49701. ]
  49702. ))
  49703. characterMakers.push(() => makeCharacter(
  49704. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49705. {
  49706. front: {
  49707. height: math.unit(6, "feet"),
  49708. weight: math.unit(150, "lb"),
  49709. name: "Front",
  49710. image: {
  49711. source: "./media/characters/caspian/front.svg",
  49712. extra: 1443/1359,
  49713. bottom: 0/1443
  49714. }
  49715. },
  49716. back: {
  49717. height: math.unit(6, "feet"),
  49718. weight: math.unit(150, "lb"),
  49719. name: "Back",
  49720. image: {
  49721. source: "./media/characters/caspian/back.svg",
  49722. extra: 1379/1309,
  49723. bottom: 0/1379
  49724. }
  49725. },
  49726. head: {
  49727. height: math.unit(0.9, "feet"),
  49728. name: "Head",
  49729. image: {
  49730. source: "./media/characters/caspian/head.svg",
  49731. extra: 692/492,
  49732. bottom: 0/692
  49733. }
  49734. },
  49735. headAlt: {
  49736. height: math.unit(0.95, "feet"),
  49737. name: "Head (Alt)",
  49738. image: {
  49739. source: "./media/characters/caspian/head-alt.svg",
  49740. extra: 668/508,
  49741. bottom: 0/668
  49742. }
  49743. },
  49744. hand: {
  49745. height: math.unit(0.8, "feet"),
  49746. name: "Hand",
  49747. image: {
  49748. source: "./media/characters/caspian/hand.svg"
  49749. }
  49750. },
  49751. paw: {
  49752. height: math.unit(0.95, "feet"),
  49753. name: "Paw",
  49754. image: {
  49755. source: "./media/characters/caspian/paw.svg"
  49756. }
  49757. },
  49758. },
  49759. [
  49760. {
  49761. name: "Normal",
  49762. height: math.unit(162, "feet"),
  49763. default: true
  49764. },
  49765. ]
  49766. ))
  49767. characterMakers.push(() => makeCharacter(
  49768. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49769. {
  49770. front: {
  49771. height: math.unit(6, "feet"),
  49772. name: "Front",
  49773. image: {
  49774. source: "./media/characters/myra-aisling/front.svg",
  49775. extra: 1268/1166,
  49776. bottom: 73/1341
  49777. }
  49778. },
  49779. back: {
  49780. height: math.unit(6, "feet"),
  49781. name: "Back",
  49782. image: {
  49783. source: "./media/characters/myra-aisling/back.svg",
  49784. extra: 1249/1149,
  49785. bottom: 79/1328
  49786. }
  49787. },
  49788. dressed: {
  49789. height: math.unit(6, "feet"),
  49790. name: "Dressed",
  49791. image: {
  49792. source: "./media/characters/myra-aisling/dressed.svg",
  49793. extra: 1290/1189,
  49794. bottom: 47/1337
  49795. }
  49796. },
  49797. hand: {
  49798. height: math.unit(1.1, "feet"),
  49799. name: "Hand",
  49800. image: {
  49801. source: "./media/characters/myra-aisling/hand.svg"
  49802. }
  49803. },
  49804. paw: {
  49805. height: math.unit(1.23, "feet"),
  49806. name: "Paw",
  49807. image: {
  49808. source: "./media/characters/myra-aisling/paw.svg"
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(160, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(6, "feet"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/tenley-sidero/front.svg",
  49828. extra: 1365/1276,
  49829. bottom: 47/1412
  49830. }
  49831. },
  49832. back: {
  49833. height: math.unit(6, "feet"),
  49834. name: "Back",
  49835. image: {
  49836. source: "./media/characters/tenley-sidero/back.svg",
  49837. extra: 1383/1283,
  49838. bottom: 35/1418
  49839. }
  49840. },
  49841. dressed: {
  49842. height: math.unit(6, "feet"),
  49843. name: "Dressed",
  49844. image: {
  49845. source: "./media/characters/tenley-sidero/dressed.svg",
  49846. extra: 1364/1275,
  49847. bottom: 42/1406
  49848. }
  49849. },
  49850. head: {
  49851. height: math.unit(1.47, "feet"),
  49852. name: "Head",
  49853. image: {
  49854. source: "./media/characters/tenley-sidero/head.svg",
  49855. extra: 610/490,
  49856. bottom: 0/610
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(154, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(5, "inches"),
  49873. name: "Front",
  49874. image: {
  49875. source: "./media/characters/mallory/front.svg",
  49876. extra: 1919/1678,
  49877. bottom: 29/1948
  49878. }
  49879. },
  49880. hand: {
  49881. height: math.unit(0.73, "inches"),
  49882. name: "Hand",
  49883. image: {
  49884. source: "./media/characters/mallory/hand.svg"
  49885. }
  49886. },
  49887. paw: {
  49888. height: math.unit(0.68, "inches"),
  49889. name: "Paw",
  49890. image: {
  49891. source: "./media/characters/mallory/paw.svg"
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Small",
  49898. height: math.unit(5, "inches"),
  49899. default: true
  49900. },
  49901. ]
  49902. ))
  49903. characterMakers.push(() => makeCharacter(
  49904. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49905. {
  49906. naked: {
  49907. height: math.unit(6, "feet"),
  49908. name: "Naked",
  49909. image: {
  49910. source: "./media/characters/mab/naked.svg",
  49911. extra: 1855/1757,
  49912. bottom: 208/2063
  49913. }
  49914. },
  49915. outside: {
  49916. height: math.unit(6, "feet"),
  49917. name: "Outside",
  49918. image: {
  49919. source: "./media/characters/mab/outside.svg",
  49920. extra: 1855/1757,
  49921. bottom: 208/2063
  49922. }
  49923. },
  49924. party: {
  49925. height: math.unit(6, "feet"),
  49926. name: "Party",
  49927. image: {
  49928. source: "./media/characters/mab/party.svg",
  49929. extra: 1855/1757,
  49930. bottom: 208/2063
  49931. }
  49932. },
  49933. },
  49934. [
  49935. {
  49936. name: "Normal",
  49937. height: math.unit(165, "feet"),
  49938. default: true
  49939. },
  49940. ]
  49941. ))
  49942. characterMakers.push(() => makeCharacter(
  49943. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49944. {
  49945. feral: {
  49946. height: math.unit(12, "feet"),
  49947. weight: math.unit(20000, "lb"),
  49948. name: "Side",
  49949. image: {
  49950. source: "./media/characters/winter/feral.svg",
  49951. extra: 1286/943,
  49952. bottom: 112/1398
  49953. },
  49954. form: "feral",
  49955. default: true
  49956. },
  49957. feralNsfw: {
  49958. height: math.unit(12, "feet"),
  49959. weight: math.unit(20000, "lb"),
  49960. name: "Side (NSFW)",
  49961. image: {
  49962. source: "./media/characters/winter/feral-nsfw.svg",
  49963. extra: 1286/943,
  49964. bottom: 112/1398
  49965. },
  49966. form: "feral"
  49967. },
  49968. dick: {
  49969. height: math.unit(3.79, "feet"),
  49970. name: "Dick",
  49971. image: {
  49972. source: "./media/characters/winter/dick.svg"
  49973. },
  49974. form: "feral"
  49975. },
  49976. anthro: {
  49977. height: math.unit(12, "feet"),
  49978. weight: math.unit(10, "tons"),
  49979. name: "Anthro",
  49980. image: {
  49981. source: "./media/characters/winter/anthro.svg",
  49982. extra: 1701/1553,
  49983. bottom: 64/1765
  49984. },
  49985. form: "anthro",
  49986. default: true
  49987. },
  49988. },
  49989. [
  49990. {
  49991. name: "Big",
  49992. height: math.unit(12, "feet"),
  49993. default: true,
  49994. form: "feral"
  49995. },
  49996. {
  49997. name: "Big",
  49998. height: math.unit(12, "feet"),
  49999. default: true,
  50000. form: "anthro"
  50001. },
  50002. ],
  50003. {
  50004. "feral": {
  50005. name: "Feral",
  50006. default: true
  50007. },
  50008. "anthro": {
  50009. name: "Anthro"
  50010. }
  50011. }
  50012. ))
  50013. characterMakers.push(() => makeCharacter(
  50014. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50015. {
  50016. front: {
  50017. height: math.unit(4.1, "inches"),
  50018. name: "Front",
  50019. image: {
  50020. source: "./media/characters/alto/front.svg",
  50021. extra: 736/627,
  50022. bottom: 90/826
  50023. }
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Normal",
  50029. height: math.unit(4.1, "inches"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50036. {
  50037. sitting: {
  50038. height: math.unit(3, "feet"),
  50039. name: "Sitting",
  50040. image: {
  50041. source: "./media/characters/ratstrid-v/sitting.svg",
  50042. extra: 355/310,
  50043. bottom: 136/491
  50044. }
  50045. },
  50046. },
  50047. [
  50048. {
  50049. name: "Normal",
  50050. height: math.unit(3, "feet"),
  50051. default: true
  50052. },
  50053. ]
  50054. ))
  50055. characterMakers.push(() => makeCharacter(
  50056. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50057. {
  50058. back: {
  50059. height: math.unit(6, "feet"),
  50060. weight: math.unit(350, "lb"),
  50061. name: "Back",
  50062. image: {
  50063. source: "./media/characters/siz/back.svg",
  50064. extra: 1449/1274,
  50065. bottom: 13/1462
  50066. }
  50067. },
  50068. },
  50069. [
  50070. {
  50071. name: "Over-Overcompressed",
  50072. height: math.unit(8, "feet")
  50073. },
  50074. {
  50075. name: "Overcompressed",
  50076. height: math.unit(32, "feet")
  50077. },
  50078. {
  50079. name: "Compressed",
  50080. height: math.unit(128, "feet"),
  50081. default: true
  50082. },
  50083. {
  50084. name: "Half-Compressed",
  50085. height: math.unit(512, "feet")
  50086. },
  50087. {
  50088. name: "Quarter-Compressed",
  50089. height: math.unit(2048, "feet")
  50090. },
  50091. {
  50092. name: "Uncompressed?",
  50093. height: math.unit(8192, "feet")
  50094. },
  50095. ]
  50096. ))
  50097. characterMakers.push(() => makeCharacter(
  50098. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50099. {
  50100. front: {
  50101. height: math.unit(5 + 9/12, "feet"),
  50102. weight: math.unit(150, "lb"),
  50103. name: "Front",
  50104. image: {
  50105. source: "./media/characters/ven/front.svg",
  50106. extra: 1372/1320,
  50107. bottom: 73/1445
  50108. }
  50109. },
  50110. side: {
  50111. height: math.unit(5 + 9/12, "feet"),
  50112. weight: math.unit(1150, "lb"),
  50113. name: "Side",
  50114. image: {
  50115. source: "./media/characters/ven/side.svg",
  50116. extra: 1119/1070,
  50117. bottom: 42/1161
  50118. },
  50119. default: true
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Normal",
  50125. height: math.unit(5 + 9/12, "feet"),
  50126. default: true
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50132. {
  50133. front: {
  50134. height: math.unit(12, "feet"),
  50135. weight: math.unit(1000, "kg"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/maple/front.svg",
  50139. extra: 1193/1081,
  50140. bottom: 22/1215
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Compressed",
  50147. height: math.unit(7, "feet")
  50148. },
  50149. {
  50150. name: "Normal",
  50151. height: math.unit(12, "feet"),
  50152. default: true
  50153. },
  50154. ]
  50155. ))
  50156. characterMakers.push(() => makeCharacter(
  50157. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50158. {
  50159. front: {
  50160. height: math.unit(9, "feet"),
  50161. weight: math.unit(1500, "lb"),
  50162. name: "Front",
  50163. image: {
  50164. source: "./media/characters/nora/front.svg",
  50165. extra: 1348/1286,
  50166. bottom: 218/1566
  50167. }
  50168. },
  50169. erect: {
  50170. height: math.unit(9, "feet"),
  50171. weight: math.unit(11500, "lb"),
  50172. name: "Erect",
  50173. image: {
  50174. source: "./media/characters/nora/erect.svg",
  50175. extra: 1488/1433,
  50176. bottom: 133/1621
  50177. }
  50178. },
  50179. },
  50180. [
  50181. {
  50182. name: "Normal",
  50183. height: math.unit(9, "feet"),
  50184. default: true
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50190. {
  50191. front: {
  50192. height: math.unit(25, "feet"),
  50193. weight: math.unit(27500, "lb"),
  50194. name: "Front",
  50195. image: {
  50196. source: "./media/characters/north-caudin/front.svg",
  50197. extra: 1184/1082,
  50198. bottom: 23/1207
  50199. }
  50200. },
  50201. },
  50202. [
  50203. {
  50204. name: "Compressed",
  50205. height: math.unit(10, "feet")
  50206. },
  50207. {
  50208. name: "Normal",
  50209. height: math.unit(25, "feet"),
  50210. default: true
  50211. },
  50212. ]
  50213. ))
  50214. characterMakers.push(() => makeCharacter(
  50215. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50216. {
  50217. front: {
  50218. height: math.unit(9, "feet"),
  50219. weight: math.unit(1250, "lb"),
  50220. name: "Front",
  50221. image: {
  50222. source: "./media/characters/merrian/front.svg",
  50223. extra: 2393/2304,
  50224. bottom: 40/2433
  50225. }
  50226. },
  50227. },
  50228. [
  50229. {
  50230. name: "Normal",
  50231. height: math.unit(9, "feet"),
  50232. default: true
  50233. },
  50234. ]
  50235. ))
  50236. characterMakers.push(() => makeCharacter(
  50237. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50238. {
  50239. front: {
  50240. height: math.unit(9, "feet"),
  50241. weight: math.unit(1000, "lb"),
  50242. name: "Front",
  50243. image: {
  50244. source: "./media/characters/hazel/front.svg",
  50245. extra: 2351/2298,
  50246. bottom: 38/2389
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Normal",
  50253. height: math.unit(9, "feet"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50260. {
  50261. front: {
  50262. height: math.unit(13, "feet"),
  50263. weight: math.unit(3200, "lb"),
  50264. name: "Front",
  50265. image: {
  50266. source: "./media/characters/emma/front.svg",
  50267. extra: 2263/2029,
  50268. bottom: 68/2331
  50269. }
  50270. },
  50271. },
  50272. [
  50273. {
  50274. name: "Normal",
  50275. height: math.unit(13, "feet"),
  50276. default: true
  50277. },
  50278. ]
  50279. ))
  50280. characterMakers.push(() => makeCharacter(
  50281. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50282. {
  50283. front: {
  50284. height: math.unit(11 + 9/12, "feet"),
  50285. weight: math.unit(2500, "lb"),
  50286. name: "Front",
  50287. image: {
  50288. source: "./media/characters/ilumina/front.svg",
  50289. extra: 2248/2209,
  50290. bottom: 164/2412
  50291. }
  50292. },
  50293. },
  50294. [
  50295. {
  50296. name: "Normal",
  50297. height: math.unit(11 + 9/12, "feet"),
  50298. default: true
  50299. },
  50300. ]
  50301. ))
  50302. characterMakers.push(() => makeCharacter(
  50303. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50304. {
  50305. front: {
  50306. height: math.unit(8 + 10/12, "feet"),
  50307. weight: math.unit(1350, "lb"),
  50308. name: "Front",
  50309. image: {
  50310. source: "./media/characters/moonshine/front.svg",
  50311. extra: 2395/2288,
  50312. bottom: 40/2435
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(8 + 10/12, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50326. {
  50327. front: {
  50328. height: math.unit(14, "feet"),
  50329. weight: math.unit(3400, "lb"),
  50330. name: "Front",
  50331. image: {
  50332. source: "./media/characters/aletia/front.svg",
  50333. extra: 1185/1052,
  50334. bottom: 21/1206
  50335. }
  50336. },
  50337. },
  50338. [
  50339. {
  50340. name: "Compressed",
  50341. height: math.unit(8, "feet")
  50342. },
  50343. {
  50344. name: "Normal",
  50345. height: math.unit(14, "feet"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50352. {
  50353. front: {
  50354. height: math.unit(17, "feet"),
  50355. weight: math.unit(6500, "lb"),
  50356. name: "Front",
  50357. image: {
  50358. source: "./media/characters/deidra/front.svg",
  50359. extra: 1201/1081,
  50360. bottom: 16/1217
  50361. }
  50362. },
  50363. },
  50364. [
  50365. {
  50366. name: "Compressed",
  50367. height: math.unit(9 + 6/12, "feet")
  50368. },
  50369. {
  50370. name: "Normal",
  50371. height: math.unit(17, "feet"),
  50372. default: true
  50373. },
  50374. ]
  50375. ))
  50376. characterMakers.push(() => makeCharacter(
  50377. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50378. {
  50379. front: {
  50380. height: math.unit(7 + 4/12, "feet"),
  50381. weight: math.unit(280, "lb"),
  50382. name: "Front",
  50383. image: {
  50384. source: "./media/characters/freki-yrmori/front.svg",
  50385. extra: 1286/1182,
  50386. bottom: 29/1315
  50387. }
  50388. },
  50389. maw: {
  50390. height: math.unit(0.9, "feet"),
  50391. name: "Maw",
  50392. image: {
  50393. source: "./media/characters/freki-yrmori/maw.svg"
  50394. }
  50395. },
  50396. },
  50397. [
  50398. {
  50399. name: "Normal",
  50400. height: math.unit(7 + 4/12, "feet"),
  50401. default: true
  50402. },
  50403. {
  50404. name: "Macro",
  50405. height: math.unit(38.5, "meters")
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50411. {
  50412. side: {
  50413. height: math.unit(47.2, "meters"),
  50414. weight: math.unit(10000, "tons"),
  50415. name: "Side",
  50416. image: {
  50417. source: "./media/characters/aetherios/side.svg",
  50418. extra: 2363/642,
  50419. bottom: 221/2584
  50420. }
  50421. },
  50422. top: {
  50423. height: math.unit(240, "meters"),
  50424. weight: math.unit(10000, "tons"),
  50425. name: "Top",
  50426. image: {
  50427. source: "./media/characters/aetherios/top.svg"
  50428. }
  50429. },
  50430. bottom: {
  50431. height: math.unit(240, "meters"),
  50432. weight: math.unit(10000, "tons"),
  50433. name: "Bottom",
  50434. image: {
  50435. source: "./media/characters/aetherios/bottom.svg"
  50436. }
  50437. },
  50438. head: {
  50439. height: math.unit(38.6, "meters"),
  50440. name: "Head",
  50441. image: {
  50442. source: "./media/characters/aetherios/head.svg",
  50443. extra: 1335/1112,
  50444. bottom: 0/1335
  50445. }
  50446. },
  50447. front: {
  50448. height: math.unit(29, "meters"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/aetherios/front.svg",
  50452. extra: 1266/953,
  50453. bottom: 158/1424
  50454. }
  50455. },
  50456. maw: {
  50457. height: math.unit(16.37, "meters"),
  50458. name: "Maw",
  50459. image: {
  50460. source: "./media/characters/aetherios/maw.svg",
  50461. extra: 748/637,
  50462. bottom: 0/748
  50463. },
  50464. extraAttributes: {
  50465. preyCapacity: {
  50466. name: "Capacity",
  50467. power: 3,
  50468. type: "volume",
  50469. base: math.unit(1000, "people")
  50470. },
  50471. tongueSize: {
  50472. name: "Tongue Size",
  50473. power: 2,
  50474. type: "area",
  50475. base: math.unit(21, "m^2")
  50476. }
  50477. }
  50478. },
  50479. forepaw: {
  50480. height: math.unit(18, "meters"),
  50481. name: "Forepaw",
  50482. image: {
  50483. source: "./media/characters/aetherios/forepaw.svg"
  50484. }
  50485. },
  50486. hindpaw: {
  50487. height: math.unit(23, "meters"),
  50488. name: "Hindpaw",
  50489. image: {
  50490. source: "./media/characters/aetherios/hindpaw.svg"
  50491. }
  50492. },
  50493. genitals: {
  50494. height: math.unit(42, "meters"),
  50495. name: "Genitals",
  50496. image: {
  50497. source: "./media/characters/aetherios/genitals.svg"
  50498. }
  50499. },
  50500. },
  50501. [
  50502. {
  50503. name: "Normal",
  50504. height: math.unit(47.2, "meters"),
  50505. default: true
  50506. },
  50507. {
  50508. name: "Macro",
  50509. height: math.unit(160, "meters")
  50510. },
  50511. {
  50512. name: "Mega",
  50513. height: math.unit(1.87, "km")
  50514. },
  50515. {
  50516. name: "Giga",
  50517. height: math.unit(40000, "km")
  50518. },
  50519. {
  50520. name: "Stellar",
  50521. height: math.unit(158000000, "km")
  50522. },
  50523. {
  50524. name: "Cosmic",
  50525. height: math.unit(9.46e12, "km")
  50526. },
  50527. ]
  50528. ))
  50529. characterMakers.push(() => makeCharacter(
  50530. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50531. {
  50532. front: {
  50533. height: math.unit(5 + 4/12, "feet"),
  50534. weight: math.unit(80, "lb"),
  50535. name: "Front",
  50536. image: {
  50537. source: "./media/characters/mizu-gieeg/front.svg",
  50538. extra: 850/709,
  50539. bottom: 52/902
  50540. }
  50541. },
  50542. back: {
  50543. height: math.unit(5 + 4/12, "feet"),
  50544. weight: math.unit(80, "lb"),
  50545. name: "Back",
  50546. image: {
  50547. source: "./media/characters/mizu-gieeg/back.svg",
  50548. extra: 882/745,
  50549. bottom: 25/907
  50550. }
  50551. },
  50552. },
  50553. [
  50554. {
  50555. name: "Normal",
  50556. height: math.unit(5 + 4/12, "feet"),
  50557. default: true
  50558. },
  50559. ]
  50560. ))
  50561. characterMakers.push(() => makeCharacter(
  50562. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50563. {
  50564. front: {
  50565. height: math.unit(6, "feet"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/roselle-st-papier/front.svg",
  50569. extra: 1430/1280,
  50570. bottom: 37/1467
  50571. }
  50572. },
  50573. back: {
  50574. height: math.unit(6, "feet"),
  50575. name: "Back",
  50576. image: {
  50577. source: "./media/characters/roselle-st-papier/back.svg",
  50578. extra: 1491/1296,
  50579. bottom: 23/1514
  50580. }
  50581. },
  50582. ear: {
  50583. height: math.unit(1.26, "feet"),
  50584. name: "Ear",
  50585. image: {
  50586. source: "./media/characters/roselle-st-papier/ear.svg"
  50587. }
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Normal",
  50593. height: math.unit(150, "feet"),
  50594. default: true
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50600. {
  50601. front: {
  50602. height: math.unit(1, "inches"),
  50603. name: "Front",
  50604. image: {
  50605. source: "./media/characters/valargent/front.svg",
  50606. extra: 1825/1694,
  50607. bottom: 62/1887
  50608. }
  50609. },
  50610. back: {
  50611. height: math.unit(1, "inches"),
  50612. name: "Back",
  50613. image: {
  50614. source: "./media/characters/valargent/back.svg",
  50615. extra: 1775/1682,
  50616. bottom: 88/1863
  50617. }
  50618. },
  50619. },
  50620. [
  50621. {
  50622. name: "Micro",
  50623. height: math.unit(1, "inch"),
  50624. default: true
  50625. },
  50626. ]
  50627. ))
  50628. characterMakers.push(() => makeCharacter(
  50629. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50630. {
  50631. front: {
  50632. height: math.unit(3.4, "meters"),
  50633. name: "Front",
  50634. image: {
  50635. source: "./media/characters/zarina/front.svg",
  50636. extra: 1733/1425,
  50637. bottom: 93/1826
  50638. }
  50639. },
  50640. squatting: {
  50641. height: math.unit(2.14, "meters"),
  50642. name: "Squatting",
  50643. image: {
  50644. source: "./media/characters/zarina/squatting.svg",
  50645. extra: 1073/788,
  50646. bottom: 63/1136
  50647. }
  50648. },
  50649. back: {
  50650. height: math.unit(2.14, "meters"),
  50651. name: "Back",
  50652. image: {
  50653. source: "./media/characters/zarina/back.svg",
  50654. extra: 1128/885,
  50655. bottom: 0/1128
  50656. }
  50657. },
  50658. },
  50659. [
  50660. {
  50661. name: "Normal",
  50662. height: math.unit(3.4, "meters"),
  50663. default: true
  50664. },
  50665. {
  50666. name: "Big",
  50667. height: math.unit(5, "meters")
  50668. },
  50669. {
  50670. name: "Macro",
  50671. height: math.unit(110, "meters")
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50677. {
  50678. front: {
  50679. height: math.unit(7, "feet"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/ventus-astro-fox/front.svg",
  50683. extra: 1792/1623,
  50684. bottom: 28/1820
  50685. }
  50686. },
  50687. back: {
  50688. height: math.unit(7, "feet"),
  50689. name: "Back",
  50690. image: {
  50691. source: "./media/characters/ventus-astro-fox/back.svg",
  50692. extra: 1789/1620,
  50693. bottom: 31/1820
  50694. }
  50695. },
  50696. outfit: {
  50697. height: math.unit(7, "feet"),
  50698. name: "Outfit",
  50699. image: {
  50700. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50701. extra: 1054/925,
  50702. bottom: 15/1069
  50703. }
  50704. },
  50705. head: {
  50706. height: math.unit(1.12, "feet"),
  50707. name: "Head",
  50708. image: {
  50709. source: "./media/characters/ventus-astro-fox/head.svg",
  50710. extra: 866/504,
  50711. bottom: 0/866
  50712. }
  50713. },
  50714. hand: {
  50715. height: math.unit(1, "feet"),
  50716. name: "Hand",
  50717. image: {
  50718. source: "./media/characters/ventus-astro-fox/hand.svg"
  50719. }
  50720. },
  50721. paw: {
  50722. height: math.unit(1.5, "feet"),
  50723. name: "Paw",
  50724. image: {
  50725. source: "./media/characters/ventus-astro-fox/paw.svg"
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Normal",
  50732. height: math.unit(7, "feet"),
  50733. default: true
  50734. },
  50735. {
  50736. name: "Macro",
  50737. height: math.unit(200, "feet")
  50738. },
  50739. {
  50740. name: "Cosmic",
  50741. height: math.unit(3, "universes")
  50742. },
  50743. ]
  50744. ))
  50745. characterMakers.push(() => makeCharacter(
  50746. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50747. {
  50748. front: {
  50749. height: math.unit(3, "meters"),
  50750. weight: math.unit(7000, "lb"),
  50751. name: "Front",
  50752. image: {
  50753. source: "./media/characters/core-t/front.svg",
  50754. extra: 5729/4941,
  50755. bottom: 1129/6858
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Big",
  50762. height: math.unit(3, "meters"),
  50763. default: true
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50769. {
  50770. normal: {
  50771. height: math.unit(6 + 6/12, "feet"),
  50772. weight: math.unit(275, "lb"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/cadbunny/normal.svg",
  50776. extra: 1129/947,
  50777. bottom: 93/1222
  50778. },
  50779. default: true,
  50780. form: "normal"
  50781. },
  50782. gigantamax: {
  50783. height: math.unit(26, "feet"),
  50784. weight: math.unit(16000, "lb"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/cadbunny/gigantamax.svg",
  50788. extra: 1133/944,
  50789. bottom: 90/1223
  50790. },
  50791. default: true,
  50792. form: "gigantamax"
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Normal",
  50798. height: math.unit(6 + 6/12, "feet"),
  50799. default: true,
  50800. form: "normal"
  50801. },
  50802. {
  50803. name: "Small",
  50804. height: math.unit(26, "feet"),
  50805. default: true,
  50806. form: "gigantamax"
  50807. },
  50808. {
  50809. name: "Large",
  50810. height: math.unit(78, "feet"),
  50811. form: "gigantamax"
  50812. },
  50813. ],
  50814. {
  50815. "normal": {
  50816. name: "Normal",
  50817. default: true
  50818. },
  50819. "gigantamax": {
  50820. name: "Gigantamax"
  50821. }
  50822. }
  50823. ))
  50824. characterMakers.push(() => makeCharacter(
  50825. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50826. {
  50827. anthroFront: {
  50828. height: math.unit(8, "feet"),
  50829. weight: math.unit(300, "lb"),
  50830. name: "Front",
  50831. image: {
  50832. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50833. extra: 1272/1176,
  50834. bottom: 53/1325
  50835. },
  50836. form: "anthro",
  50837. default: true
  50838. },
  50839. feralSide: {
  50840. height: math.unit(4, "feet"),
  50841. weight: math.unit(250, "lb"),
  50842. name: "Side",
  50843. image: {
  50844. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50845. extra: 731/621,
  50846. bottom: 0/731
  50847. },
  50848. form: "feral",
  50849. default: true
  50850. },
  50851. },
  50852. [
  50853. {
  50854. name: "Regular",
  50855. height: math.unit(8, "feet"),
  50856. form: "anthro"
  50857. },
  50858. {
  50859. name: "Macro",
  50860. height: math.unit(250, "feet"),
  50861. form: "anthro",
  50862. default: true
  50863. },
  50864. {
  50865. name: "Regular",
  50866. height: math.unit(4, "feet"),
  50867. form: "feral"
  50868. },
  50869. {
  50870. name: "Macro",
  50871. height: math.unit(125, "feet"),
  50872. form: "feral",
  50873. default: true
  50874. },
  50875. ],
  50876. {
  50877. "anthro": {
  50878. name: "Anthro",
  50879. default: true
  50880. },
  50881. "feral": {
  50882. name: "Feral",
  50883. },
  50884. }
  50885. ))
  50886. characterMakers.push(() => makeCharacter(
  50887. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50888. {
  50889. front: {
  50890. height: math.unit(11 + 10/12, "feet"),
  50891. weight: math.unit(1587, "kg"),
  50892. name: "Front",
  50893. image: {
  50894. source: "./media/characters/maple-javira-dragon/front.svg",
  50895. extra: 1136/744,
  50896. bottom: 73/1209
  50897. }
  50898. },
  50899. side: {
  50900. height: math.unit(11 + 10/12, "feet"),
  50901. weight: math.unit(1587, "kg"),
  50902. name: "Side",
  50903. image: {
  50904. source: "./media/characters/maple-javira-dragon/side.svg",
  50905. extra: 712/505,
  50906. bottom: 17/729
  50907. }
  50908. },
  50909. head: {
  50910. height: math.unit(8.05, "feet"),
  50911. name: "Head",
  50912. image: {
  50913. source: "./media/characters/maple-javira-dragon/head.svg",
  50914. extra: 1420/1344,
  50915. bottom: 0/1420
  50916. }
  50917. },
  50918. },
  50919. [
  50920. {
  50921. name: "Normal",
  50922. height: math.unit(11 + 10/12, "feet"),
  50923. default: true
  50924. },
  50925. ]
  50926. ))
  50927. characterMakers.push(() => makeCharacter(
  50928. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50929. {
  50930. front: {
  50931. height: math.unit(117, "cm"),
  50932. weight: math.unit(50, "kg"),
  50933. name: "Front",
  50934. image: {
  50935. source: "./media/characters/sonia-wyverntail/front.svg",
  50936. extra: 708/592,
  50937. bottom: 25/733
  50938. }
  50939. },
  50940. },
  50941. [
  50942. {
  50943. name: "Normal",
  50944. height: math.unit(117, "cm"),
  50945. default: true
  50946. },
  50947. ]
  50948. ))
  50949. characterMakers.push(() => makeCharacter(
  50950. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50951. {
  50952. front: {
  50953. height: math.unit(6 + 5/12, "feet"),
  50954. name: "Front",
  50955. image: {
  50956. source: "./media/characters/micah/front.svg",
  50957. extra: 1758/1546,
  50958. bottom: 214/1972
  50959. }
  50960. },
  50961. },
  50962. [
  50963. {
  50964. name: "Normal",
  50965. height: math.unit(6 + 5/12, "feet"),
  50966. default: true
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50972. {
  50973. front: {
  50974. height: math.unit(5 + 10/12, "feet"),
  50975. weight: math.unit(220, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/zarya/front.svg",
  50979. extra: 593/572,
  50980. bottom: 50/643
  50981. }
  50982. },
  50983. back: {
  50984. height: math.unit(5 + 10/12, "feet"),
  50985. weight: math.unit(220, "lb"),
  50986. name: "Back",
  50987. image: {
  50988. source: "./media/characters/zarya/back.svg",
  50989. extra: 603/582,
  50990. bottom: 38/641
  50991. }
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Normal",
  50997. height: math.unit(5 + 10/12, "feet"),
  50998. default: true
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51004. {
  51005. front: {
  51006. height: math.unit(7.5, "feet"),
  51007. name: "Front",
  51008. image: {
  51009. source: "./media/characters/sven-hatisson/front.svg",
  51010. extra: 917/857,
  51011. bottom: 42/959
  51012. }
  51013. },
  51014. back: {
  51015. height: math.unit(7.5, "feet"),
  51016. name: "Back",
  51017. image: {
  51018. source: "./media/characters/sven-hatisson/back.svg",
  51019. extra: 903/856,
  51020. bottom: 15/918
  51021. }
  51022. },
  51023. },
  51024. [
  51025. {
  51026. name: "Base Height",
  51027. height: math.unit(7.5, "feet")
  51028. },
  51029. {
  51030. name: "Usual Height",
  51031. height: math.unit(13.5, "feet"),
  51032. default: true
  51033. },
  51034. {
  51035. name: "Smaller Macro",
  51036. height: math.unit(85, "feet")
  51037. },
  51038. {
  51039. name: "Moderate Macro",
  51040. height: math.unit(320, "feet")
  51041. },
  51042. {
  51043. name: "Large Macro",
  51044. height: math.unit(1000, "feet")
  51045. },
  51046. {
  51047. name: "Largest Size",
  51048. height: math.unit(2, "miles")
  51049. },
  51050. ]
  51051. ))
  51052. characterMakers.push(() => makeCharacter(
  51053. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51054. {
  51055. side: {
  51056. height: math.unit(1.8, "meters"),
  51057. weight: math.unit(275, "kg"),
  51058. name: "Side",
  51059. image: {
  51060. source: "./media/characters/terra/side.svg",
  51061. extra: 1273/1147,
  51062. bottom: 0/1273
  51063. }
  51064. },
  51065. },
  51066. [
  51067. {
  51068. name: "Normal",
  51069. height: math.unit(16.2, "meters"),
  51070. default: true
  51071. },
  51072. ]
  51073. ))
  51074. characterMakers.push(() => makeCharacter(
  51075. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51076. {
  51077. borzoiFront: {
  51078. height: math.unit(6 + 9/12, "feet"),
  51079. name: "Front",
  51080. image: {
  51081. source: "./media/characters/rae/borzoi-front.svg",
  51082. extra: 1161/1098,
  51083. bottom: 31/1192
  51084. },
  51085. form: "borzoi",
  51086. default: true
  51087. },
  51088. werewolfFront: {
  51089. height: math.unit(8 + 7/12, "feet"),
  51090. name: "Front",
  51091. image: {
  51092. source: "./media/characters/rae/werewolf-front.svg",
  51093. extra: 1411/1334,
  51094. bottom: 127/1538
  51095. },
  51096. form: "werewolf",
  51097. default: true
  51098. },
  51099. },
  51100. [
  51101. {
  51102. name: "Normal",
  51103. height: math.unit(6 + 9/12, "feet"),
  51104. default: true,
  51105. form: "borzoi"
  51106. },
  51107. {
  51108. name: "Normal",
  51109. height: math.unit(8 + 7/12, "feet"),
  51110. default: true,
  51111. form: "werewolf"
  51112. },
  51113. ],
  51114. {
  51115. "borzoi": {
  51116. name: "Borzoi",
  51117. default: true
  51118. },
  51119. "werewolf": {
  51120. name: "Werewolf",
  51121. },
  51122. }
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51126. {
  51127. front: {
  51128. height: math.unit(8 + 7/12, "feet"),
  51129. weight: math.unit(482, "lb"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/kit/front.svg",
  51133. extra: 1247/1103,
  51134. bottom: 41/1288
  51135. }
  51136. },
  51137. back: {
  51138. height: math.unit(8 + 7/12, "feet"),
  51139. weight: math.unit(482, "lb"),
  51140. name: "Back",
  51141. image: {
  51142. source: "./media/characters/kit/back.svg",
  51143. extra: 1252/1123,
  51144. bottom: 21/1273
  51145. }
  51146. },
  51147. paw: {
  51148. height: math.unit(1.46, "feet"),
  51149. name: "Paw",
  51150. image: {
  51151. source: "./media/characters/kit/paw.svg"
  51152. }
  51153. },
  51154. },
  51155. [
  51156. {
  51157. name: "Normal",
  51158. height: math.unit(2.61, "meters"),
  51159. default: true
  51160. },
  51161. {
  51162. name: "\"Tall\"",
  51163. height: math.unit(8.21, "meters")
  51164. },
  51165. {
  51166. name: "Tall",
  51167. height: math.unit(19.6, "meters")
  51168. },
  51169. {
  51170. name: "Very Tall",
  51171. height: math.unit(57.91, "meters")
  51172. },
  51173. {
  51174. name: "Semi-Macro",
  51175. height: math.unit(138.64, "meters")
  51176. },
  51177. {
  51178. name: "Macro",
  51179. height: math.unit(831.99, "meters")
  51180. },
  51181. {
  51182. name: "EX-Macro",
  51183. height: math.unit(96451121, "meters")
  51184. },
  51185. {
  51186. name: "S1-Omnipotent",
  51187. height: math.unit(4.42074e+9, "meters")
  51188. },
  51189. {
  51190. name: "S2-Omnipotent",
  51191. height: math.unit(9.42074e+17, "meters")
  51192. },
  51193. {
  51194. name: "Omnipotent",
  51195. height: math.unit(4.23112e+24, "meters")
  51196. },
  51197. {
  51198. name: "Hypergod",
  51199. height: math.unit(5.05176e+27, "meters")
  51200. },
  51201. {
  51202. name: "Hypergod-EX",
  51203. height: math.unit(9.45532e+49, "meters")
  51204. },
  51205. {
  51206. name: "Hypergod-SP",
  51207. height: math.unit(9.45532e+195, "meters")
  51208. },
  51209. ]
  51210. ))
  51211. characterMakers.push(() => makeCharacter(
  51212. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51213. {
  51214. side: {
  51215. height: math.unit(0.6, "meters"),
  51216. weight: math.unit(24, "kg"),
  51217. name: "Side",
  51218. image: {
  51219. source: "./media/characters/celeste/side.svg",
  51220. extra: 810/517,
  51221. bottom: 53/863
  51222. }
  51223. },
  51224. },
  51225. [
  51226. {
  51227. name: "Velociraptor",
  51228. height: math.unit(0.6, "meters"),
  51229. default: true
  51230. },
  51231. {
  51232. name: "Utahraptor",
  51233. height: math.unit(1.8, "meters")
  51234. },
  51235. {
  51236. name: "Gallimimus",
  51237. height: math.unit(4.0, "meters")
  51238. },
  51239. {
  51240. name: "Large",
  51241. height: math.unit(20, "meters")
  51242. },
  51243. {
  51244. name: "Planetary",
  51245. height: math.unit(50, "megameters")
  51246. },
  51247. {
  51248. name: "Stellar",
  51249. height: math.unit(1.5, "gigameters")
  51250. },
  51251. {
  51252. name: "Galactic",
  51253. height: math.unit(100, "exameters")
  51254. },
  51255. ]
  51256. ))
  51257. characterMakers.push(() => makeCharacter(
  51258. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51259. {
  51260. front: {
  51261. height: math.unit(6, "feet"),
  51262. weight: math.unit(210, "lb"),
  51263. name: "Front",
  51264. image: {
  51265. source: "./media/characters/glacia/front.svg",
  51266. extra: 958/901,
  51267. bottom: 45/1003
  51268. }
  51269. },
  51270. },
  51271. [
  51272. {
  51273. name: "Macro",
  51274. height: math.unit(1000, "meters"),
  51275. default: true
  51276. },
  51277. ]
  51278. ))
  51279. characterMakers.push(() => makeCharacter(
  51280. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51281. {
  51282. front: {
  51283. height: math.unit(4, "meters"),
  51284. name: "Front",
  51285. image: {
  51286. source: "./media/characters/giri/front.svg",
  51287. extra: 966/894,
  51288. bottom: 21/987
  51289. }
  51290. },
  51291. },
  51292. [
  51293. {
  51294. name: "Normal",
  51295. height: math.unit(4, "meters"),
  51296. default: true
  51297. },
  51298. ]
  51299. ))
  51300. characterMakers.push(() => makeCharacter(
  51301. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51302. {
  51303. back: {
  51304. height: math.unit(4, "feet"),
  51305. weight: math.unit(37, "lb"),
  51306. name: "Back",
  51307. image: {
  51308. source: "./media/characters/tin/back.svg",
  51309. extra: 845/780,
  51310. bottom: 28/873
  51311. }
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Normal",
  51317. height: math.unit(4, "feet"),
  51318. default: true
  51319. },
  51320. ]
  51321. ))
  51322. characterMakers.push(() => makeCharacter(
  51323. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51324. {
  51325. front: {
  51326. height: math.unit(25, "feet"),
  51327. name: "Front",
  51328. image: {
  51329. source: "./media/characters/cadenza-vivace/front.svg",
  51330. extra: 1842/1578,
  51331. bottom: 30/1872
  51332. }
  51333. },
  51334. },
  51335. [
  51336. {
  51337. name: "Macro",
  51338. height: math.unit(25, "feet"),
  51339. default: true
  51340. },
  51341. ]
  51342. ))
  51343. characterMakers.push(() => makeCharacter(
  51344. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51345. {
  51346. front: {
  51347. height: math.unit(10, "feet"),
  51348. weight: math.unit(625, "kg"),
  51349. name: "Front",
  51350. image: {
  51351. source: "./media/characters/zain/front.svg",
  51352. extra: 1682/1498,
  51353. bottom: 223/1905
  51354. }
  51355. },
  51356. back: {
  51357. height: math.unit(10, "feet"),
  51358. weight: math.unit(625, "kg"),
  51359. name: "Back",
  51360. image: {
  51361. source: "./media/characters/zain/back.svg",
  51362. extra: 1814/1657,
  51363. bottom: 152/1966
  51364. }
  51365. },
  51366. head: {
  51367. height: math.unit(10, "feet"),
  51368. weight: math.unit(625, "kg"),
  51369. name: "Head",
  51370. image: {
  51371. source: "./media/characters/zain/head.svg",
  51372. extra: 1059/762,
  51373. bottom: 0/1059
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Normal",
  51380. height: math.unit(10, "feet"),
  51381. default: true
  51382. },
  51383. ]
  51384. ))
  51385. characterMakers.push(() => makeCharacter(
  51386. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51387. {
  51388. front: {
  51389. height: math.unit(6 + 5/12, "feet"),
  51390. weight: math.unit(750, "lb"),
  51391. name: "Front",
  51392. image: {
  51393. source: "./media/characters/ruchex/front.svg",
  51394. extra: 877/820,
  51395. bottom: 17/894
  51396. },
  51397. extraAttributes: {
  51398. "width": {
  51399. name: "Width",
  51400. power: 1,
  51401. type: "length",
  51402. base: math.unit(4.757, "feet")
  51403. },
  51404. }
  51405. },
  51406. },
  51407. [
  51408. {
  51409. name: "Normal",
  51410. height: math.unit(6 + 5/12, "feet"),
  51411. default: true
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51417. {
  51418. dressedFront: {
  51419. height: math.unit(191, "cm"),
  51420. weight: math.unit(80, "kg"),
  51421. name: "Front",
  51422. image: {
  51423. source: "./media/characters/buster/dressed-front.svg",
  51424. extra: 1022/973,
  51425. bottom: 69/1091
  51426. }
  51427. },
  51428. dressedBack: {
  51429. height: math.unit(191, "cm"),
  51430. weight: math.unit(80, "kg"),
  51431. name: "Back",
  51432. image: {
  51433. source: "./media/characters/buster/dressed-back.svg",
  51434. extra: 1018/970,
  51435. bottom: 55/1073
  51436. }
  51437. },
  51438. nudeFront: {
  51439. height: math.unit(191, "cm"),
  51440. weight: math.unit(80, "kg"),
  51441. name: "Front (Nude)",
  51442. image: {
  51443. source: "./media/characters/buster/nude-front.svg",
  51444. extra: 1022/973,
  51445. bottom: 69/1091
  51446. }
  51447. },
  51448. nudeBack: {
  51449. height: math.unit(191, "cm"),
  51450. weight: math.unit(80, "kg"),
  51451. name: "Back (Nude)",
  51452. image: {
  51453. source: "./media/characters/buster/nude-back.svg",
  51454. extra: 1018/970,
  51455. bottom: 55/1073
  51456. }
  51457. },
  51458. dick: {
  51459. height: math.unit(2.59, "feet"),
  51460. name: "Dick",
  51461. image: {
  51462. source: "./media/characters/buster/dick.svg"
  51463. }
  51464. },
  51465. ass: {
  51466. height: math.unit(1.2, "feet"),
  51467. name: "Ass",
  51468. image: {
  51469. source: "./media/characters/buster/ass.svg"
  51470. }
  51471. },
  51472. },
  51473. [
  51474. {
  51475. name: "Normal",
  51476. height: math.unit(191, "cm"),
  51477. default: true
  51478. },
  51479. ]
  51480. ))
  51481. characterMakers.push(() => makeCharacter(
  51482. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51483. {
  51484. side: {
  51485. height: math.unit(8.1, "feet"),
  51486. weight: math.unit(3500, "lb"),
  51487. name: "Side",
  51488. image: {
  51489. source: "./media/characters/sonya/side.svg",
  51490. extra: 1730/1317,
  51491. bottom: 86/1816
  51492. }
  51493. },
  51494. },
  51495. [
  51496. {
  51497. name: "Normal",
  51498. height: math.unit(8.1, "feet"),
  51499. default: true
  51500. },
  51501. ]
  51502. ))
  51503. characterMakers.push(() => makeCharacter(
  51504. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51505. {
  51506. front: {
  51507. height: math.unit(6, "feet"),
  51508. weight: math.unit(150, "lb"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/cadence-andrysiak/front.svg",
  51512. extra: 1164/1121,
  51513. bottom: 60/1224
  51514. }
  51515. },
  51516. back: {
  51517. height: math.unit(6, "feet"),
  51518. weight: math.unit(150, "lb"),
  51519. name: "Back",
  51520. image: {
  51521. source: "./media/characters/cadence-andrysiak/back.svg",
  51522. extra: 1200/1165,
  51523. bottom: 9/1209
  51524. }
  51525. },
  51526. dressed: {
  51527. height: math.unit(6, "feet"),
  51528. weight: math.unit(150, "lb"),
  51529. name: "Dressed",
  51530. image: {
  51531. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51532. extra: 1164/1121,
  51533. bottom: 60/1224
  51534. }
  51535. },
  51536. },
  51537. [
  51538. {
  51539. name: "Micro",
  51540. height: math.unit(1, "mm")
  51541. },
  51542. {
  51543. name: "Normal",
  51544. height: math.unit(6, "feet"),
  51545. default: true
  51546. },
  51547. ]
  51548. ))
  51549. characterMakers.push(() => makeCharacter(
  51550. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51551. {
  51552. front: {
  51553. height: math.unit(60, "inches"),
  51554. weight: math.unit(16, "lb"),
  51555. preyCapacity: math.unit(80, "liters"),
  51556. name: "Front",
  51557. image: {
  51558. source: "./media/characters/penny-lynx/front.svg",
  51559. extra: 1959/1769,
  51560. bottom: 49/2008
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Nokia",
  51567. height: math.unit(2, "inches")
  51568. },
  51569. {
  51570. name: "Desktop",
  51571. height: math.unit(24, "inches")
  51572. },
  51573. {
  51574. name: "TV",
  51575. height: math.unit(60, "inches")
  51576. },
  51577. {
  51578. name: "Jumbotron",
  51579. height: math.unit(12, "feet")
  51580. },
  51581. {
  51582. name: "Billboard",
  51583. height: math.unit(48, "feet"),
  51584. default: true
  51585. },
  51586. {
  51587. name: "IMAX",
  51588. height: math.unit(96, "feet")
  51589. },
  51590. {
  51591. name: "SINGULARITY",
  51592. height: math.unit(864938, "miles")
  51593. },
  51594. ]
  51595. ))
  51596. characterMakers.push(() => makeCharacter(
  51597. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51598. {
  51599. front: {
  51600. height: math.unit(5 + 4/12, "feet"),
  51601. weight: math.unit(230, "lb"),
  51602. name: "Front",
  51603. image: {
  51604. source: "./media/characters/sukebe/front.svg",
  51605. extra: 2130/2038,
  51606. bottom: 90/2220
  51607. }
  51608. },
  51609. back: {
  51610. height: math.unit(3.48, "feet"),
  51611. weight: math.unit(230, "lb"),
  51612. name: "Back",
  51613. image: {
  51614. source: "./media/characters/sukebe/back.svg",
  51615. extra: 1670/1604,
  51616. bottom: 0/1670
  51617. }
  51618. },
  51619. },
  51620. [
  51621. {
  51622. name: "Normal",
  51623. height: math.unit(5 + 4/12, "feet"),
  51624. default: true
  51625. },
  51626. ]
  51627. ))
  51628. characterMakers.push(() => makeCharacter(
  51629. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51630. {
  51631. front: {
  51632. height: math.unit(6, "feet"),
  51633. name: "Front",
  51634. image: {
  51635. source: "./media/characters/nylla/front.svg",
  51636. extra: 1868/1699,
  51637. bottom: 97/1965
  51638. }
  51639. },
  51640. back: {
  51641. height: math.unit(6, "feet"),
  51642. name: "Back",
  51643. image: {
  51644. source: "./media/characters/nylla/back.svg",
  51645. extra: 1889/1712,
  51646. bottom: 93/1982
  51647. }
  51648. },
  51649. frontNsfw: {
  51650. height: math.unit(6, "feet"),
  51651. name: "Front (NSFW)",
  51652. image: {
  51653. source: "./media/characters/nylla/front-nsfw.svg",
  51654. extra: 1868/1699,
  51655. bottom: 97/1965
  51656. },
  51657. extraAttributes: {
  51658. "dickLength": {
  51659. name: "Dick Length",
  51660. power: 1,
  51661. type: "length",
  51662. base: math.unit(1.4, "feet")
  51663. },
  51664. "cumVolume": {
  51665. name: "Cum Volume",
  51666. power: 3,
  51667. type: "volume",
  51668. base: math.unit(100, "mL")
  51669. },
  51670. }
  51671. },
  51672. backNsfw: {
  51673. height: math.unit(6, "feet"),
  51674. name: "Back (NSFW)",
  51675. image: {
  51676. source: "./media/characters/nylla/back-nsfw.svg",
  51677. extra: 1889/1712,
  51678. bottom: 93/1982
  51679. }
  51680. },
  51681. maw: {
  51682. height: math.unit(2.10, "feet"),
  51683. name: "Maw",
  51684. image: {
  51685. source: "./media/characters/nylla/maw.svg"
  51686. }
  51687. },
  51688. paws: {
  51689. height: math.unit(2.06, "feet"),
  51690. name: "Paws",
  51691. image: {
  51692. source: "./media/characters/nylla/paws.svg"
  51693. }
  51694. },
  51695. muzzle: {
  51696. height: math.unit(0.61, "feet"),
  51697. name: "Muzzle",
  51698. image: {
  51699. source: "./media/characters/nylla/muzzle.svg"
  51700. }
  51701. },
  51702. sheath: {
  51703. height: math.unit(1.305, "feet"),
  51704. name: "Sheath",
  51705. image: {
  51706. source: "./media/characters/nylla/sheath.svg"
  51707. }
  51708. },
  51709. },
  51710. [
  51711. {
  51712. name: "Micro",
  51713. height: math.unit(7.5, "inches")
  51714. },
  51715. {
  51716. name: "Normal",
  51717. height: math.unit(7, "feet"),
  51718. default: true
  51719. },
  51720. {
  51721. name: "Macro",
  51722. height: math.unit(60, "feet")
  51723. },
  51724. {
  51725. name: "Mega",
  51726. height: math.unit(200, "feet")
  51727. },
  51728. ]
  51729. ))
  51730. characterMakers.push(() => makeCharacter(
  51731. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51732. {
  51733. front: {
  51734. height: math.unit(10, "feet"),
  51735. weight: math.unit(2300, "lb"),
  51736. name: "Front",
  51737. image: {
  51738. source: "./media/characters/hunt3r/front.svg",
  51739. extra: 1909/1742,
  51740. bottom: 46/1955
  51741. }
  51742. },
  51743. },
  51744. [
  51745. {
  51746. name: "Normal",
  51747. height: math.unit(10, "feet"),
  51748. default: true
  51749. },
  51750. ]
  51751. ))
  51752. characterMakers.push(() => makeCharacter(
  51753. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51754. {
  51755. dressed: {
  51756. height: math.unit(11, "feet"),
  51757. weight: math.unit(18500, "lb"),
  51758. preyCapacity: math.unit(9, "people"),
  51759. name: "Dressed",
  51760. image: {
  51761. source: "./media/characters/cylphis/dressed.svg",
  51762. extra: 1028/1003,
  51763. bottom: 75/1103
  51764. },
  51765. },
  51766. undressed: {
  51767. height: math.unit(11, "feet"),
  51768. weight: math.unit(18500, "lb"),
  51769. preyCapacity: math.unit(9, "people"),
  51770. name: "Undressed",
  51771. image: {
  51772. source: "./media/characters/cylphis/undressed.svg",
  51773. extra: 1028/1003,
  51774. bottom: 75/1103
  51775. }
  51776. },
  51777. full: {
  51778. height: math.unit(11, "feet"),
  51779. weight: math.unit(18500 + 150*9, "lb"),
  51780. preyCapacity: math.unit(9, "people"),
  51781. name: "Full",
  51782. image: {
  51783. source: "./media/characters/cylphis/full.svg",
  51784. extra: 1028/1003,
  51785. bottom: 75/1103
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Small",
  51792. height: math.unit(8, "feet")
  51793. },
  51794. {
  51795. name: "Normal",
  51796. height: math.unit(11, "feet"),
  51797. default: true
  51798. },
  51799. ]
  51800. ))
  51801. characterMakers.push(() => makeCharacter(
  51802. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51803. {
  51804. front: {
  51805. height: math.unit(2 + 7/12, "feet"),
  51806. name: "Front",
  51807. image: {
  51808. source: "./media/characters/orishan/front.svg",
  51809. extra: 1058/1023,
  51810. bottom: 23/1081
  51811. }
  51812. },
  51813. back: {
  51814. height: math.unit(2 + 7/12, "feet"),
  51815. name: "Back",
  51816. image: {
  51817. source: "./media/characters/orishan/back.svg",
  51818. extra: 1058/1023,
  51819. bottom: 23/1081
  51820. }
  51821. },
  51822. },
  51823. [
  51824. {
  51825. name: "Micro",
  51826. height: math.unit(2, "cm")
  51827. },
  51828. {
  51829. name: "Normal",
  51830. height: math.unit(2 + 7/12, "feet"),
  51831. default: true
  51832. },
  51833. ]
  51834. ))
  51835. characterMakers.push(() => makeCharacter(
  51836. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51837. {
  51838. front: {
  51839. height: math.unit(3, "meters"),
  51840. weight: math.unit(508, "kg"),
  51841. name: "Front",
  51842. image: {
  51843. source: "./media/characters/seranis/front.svg",
  51844. extra: 1478/1454,
  51845. bottom: 41/1519
  51846. }
  51847. },
  51848. },
  51849. [
  51850. {
  51851. name: "Normal",
  51852. height: math.unit(3, "meters"),
  51853. default: true
  51854. },
  51855. {
  51856. name: "Macro",
  51857. height: math.unit(108, "meters")
  51858. },
  51859. {
  51860. name: "Megamacro",
  51861. height: math.unit(1250, "meters")
  51862. },
  51863. ]
  51864. ))
  51865. characterMakers.push(() => makeCharacter(
  51866. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51867. {
  51868. undressed: {
  51869. height: math.unit(5 + 3/12, "feet"),
  51870. name: "Undressed",
  51871. image: {
  51872. source: "./media/characters/ankou/undressed.svg",
  51873. extra: 1301/1213,
  51874. bottom: 87/1388
  51875. }
  51876. },
  51877. dressed: {
  51878. height: math.unit(5 + 3/12, "feet"),
  51879. name: "Dressed",
  51880. image: {
  51881. source: "./media/characters/ankou/dressed.svg",
  51882. extra: 1301/1213,
  51883. bottom: 87/1388
  51884. }
  51885. },
  51886. head: {
  51887. height: math.unit(1.61, "feet"),
  51888. name: "Head",
  51889. image: {
  51890. source: "./media/characters/ankou/head.svg"
  51891. }
  51892. },
  51893. },
  51894. [
  51895. {
  51896. name: "Normal",
  51897. height: math.unit(5 + 3/12, "feet"),
  51898. default: true
  51899. },
  51900. ]
  51901. ))
  51902. characterMakers.push(() => makeCharacter(
  51903. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51904. {
  51905. side: {
  51906. height: math.unit(6 + 3/12, "feet"),
  51907. weight: math.unit(200, "kg"),
  51908. name: "Side",
  51909. image: {
  51910. source: "./media/characters/juniper-skunktaur/side.svg",
  51911. extra: 1574/1229,
  51912. bottom: 38/1612
  51913. }
  51914. },
  51915. front: {
  51916. height: math.unit(6 + 3/12, "feet"),
  51917. weight: math.unit(200, "kg"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/juniper-skunktaur/front.svg",
  51921. extra: 1337/1278,
  51922. bottom: 22/1359
  51923. }
  51924. },
  51925. back: {
  51926. height: math.unit(6 + 3/12, "feet"),
  51927. weight: math.unit(200, "kg"),
  51928. name: "Back",
  51929. image: {
  51930. source: "./media/characters/juniper-skunktaur/back.svg",
  51931. extra: 1618/1273,
  51932. bottom: 13/1631
  51933. }
  51934. },
  51935. top: {
  51936. height: math.unit(2.62, "feet"),
  51937. weight: math.unit(200, "kg"),
  51938. name: "Top",
  51939. image: {
  51940. source: "./media/characters/juniper-skunktaur/top.svg"
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(6 + 3/12, "feet"),
  51948. default: true
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(20.5, "feet"),
  51957. name: "Front",
  51958. image: {
  51959. source: "./media/characters/rei/front.svg",
  51960. extra: 1349/1195,
  51961. bottom: 31/1380
  51962. }
  51963. },
  51964. back: {
  51965. height: math.unit(20.5, "feet"),
  51966. name: "Back",
  51967. image: {
  51968. source: "./media/characters/rei/back.svg",
  51969. extra: 1358/1204,
  51970. bottom: 22/1380
  51971. }
  51972. },
  51973. pawsDigi: {
  51974. height: math.unit(3.45, "feet"),
  51975. name: "Paws (Digi)",
  51976. image: {
  51977. source: "./media/characters/rei/paws-digi.svg"
  51978. }
  51979. },
  51980. pawsPlanti: {
  51981. height: math.unit(3.45, "feet"),
  51982. name: "Paws (Planti)",
  51983. image: {
  51984. source: "./media/characters/rei/paws-planti.svg"
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(20.5, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(5 + 11/12, "feet"),
  52001. name: "Front",
  52002. image: {
  52003. source: "./media/characters/carina/front.svg",
  52004. extra: 1720/1449,
  52005. bottom: 14/1734
  52006. }
  52007. },
  52008. back: {
  52009. height: math.unit(5 + 11/12, "feet"),
  52010. name: "Back",
  52011. image: {
  52012. source: "./media/characters/carina/back.svg",
  52013. extra: 1493/1445,
  52014. bottom: 17/1510
  52015. }
  52016. },
  52017. paw: {
  52018. height: math.unit(0.92, "feet"),
  52019. name: "Paw",
  52020. image: {
  52021. source: "./media/characters/carina/paw.svg"
  52022. }
  52023. },
  52024. },
  52025. [
  52026. {
  52027. name: "Normal",
  52028. height: math.unit(5 + 11/12, "feet"),
  52029. default: true
  52030. },
  52031. ]
  52032. ))
  52033. characterMakers.push(() => makeCharacter(
  52034. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52035. {
  52036. front: {
  52037. height: math.unit(4.88, "meters"),
  52038. name: "Front",
  52039. image: {
  52040. source: "./media/characters/maya/front.svg",
  52041. extra: 1222/1145,
  52042. bottom: 57/1279
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Normal",
  52049. height: math.unit(4.88, "meters"),
  52050. default: true
  52051. },
  52052. {
  52053. name: "Macro",
  52054. height: math.unit(38.1, "meters")
  52055. },
  52056. {
  52057. name: "Macro+",
  52058. height: math.unit(152.4, "meters")
  52059. },
  52060. {
  52061. name: "Macro++",
  52062. height: math.unit(16.09, "km")
  52063. },
  52064. {
  52065. name: "Mega-macro",
  52066. height: math.unit(700, "megameters")
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52072. {
  52073. front: {
  52074. height: math.unit(6 + 2/12, "feet"),
  52075. weight: math.unit(500, "lb"),
  52076. preyCapacity: math.unit(4, "people"),
  52077. name: "Front",
  52078. image: {
  52079. source: "./media/characters/yepir/front.svg"
  52080. }
  52081. },
  52082. side: {
  52083. height: math.unit(6 + 2/12, "feet"),
  52084. weight: math.unit(500, "lb"),
  52085. preyCapacity: math.unit(4, "people"),
  52086. name: "Side",
  52087. image: {
  52088. source: "./media/characters/yepir/side.svg"
  52089. }
  52090. },
  52091. paw: {
  52092. height: math.unit(1.05, "feet"),
  52093. name: "Paw",
  52094. image: {
  52095. source: "./media/characters/yepir/paw.svg"
  52096. }
  52097. },
  52098. },
  52099. [
  52100. {
  52101. name: "Normal",
  52102. height: math.unit(6 + 2/12, "feet"),
  52103. default: true
  52104. },
  52105. ]
  52106. ))
  52107. characterMakers.push(() => makeCharacter(
  52108. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52109. {
  52110. front: {
  52111. height: math.unit(5 + 4/12, "feet"),
  52112. name: "Front",
  52113. image: {
  52114. source: "./media/characters/russec/front.svg",
  52115. extra: 1926/1626,
  52116. bottom: 72/1998
  52117. }
  52118. },
  52119. back: {
  52120. height: math.unit(5 + 4/12, "feet"),
  52121. name: "Back",
  52122. image: {
  52123. source: "./media/characters/russec/back.svg",
  52124. extra: 1910/1591,
  52125. bottom: 48/1958
  52126. }
  52127. },
  52128. },
  52129. [
  52130. {
  52131. name: "Small",
  52132. height: math.unit(5 + 4/12, "feet")
  52133. },
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(72, "feet"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52143. {
  52144. side: {
  52145. height: math.unit(12, "feet"),
  52146. name: "Side",
  52147. image: {
  52148. source: "./media/characters/cianus/side.svg",
  52149. extra: 808/526,
  52150. bottom: 61/869
  52151. }
  52152. },
  52153. },
  52154. [
  52155. {
  52156. name: "Normal",
  52157. height: math.unit(12, "feet"),
  52158. default: true
  52159. },
  52160. ]
  52161. ))
  52162. characterMakers.push(() => makeCharacter(
  52163. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52164. {
  52165. front: {
  52166. height: math.unit(9 + 6/12, "feet"),
  52167. weight: math.unit(300, "lb"),
  52168. name: "Front",
  52169. image: {
  52170. source: "./media/characters/ahab/front.svg",
  52171. extra: 1897/1868,
  52172. bottom: 121/2018
  52173. }
  52174. },
  52175. frontNsfw: {
  52176. height: math.unit(9 + 6/12, "feet"),
  52177. weight: math.unit(300, "lb"),
  52178. name: "Front-nsfw",
  52179. image: {
  52180. source: "./media/characters/ahab/front-nsfw.svg",
  52181. extra: 1897/1868,
  52182. bottom: 121/2018
  52183. }
  52184. },
  52185. },
  52186. [
  52187. {
  52188. name: "Normal",
  52189. height: math.unit(9 + 6/12, "feet")
  52190. },
  52191. {
  52192. name: "Macro",
  52193. height: math.unit(657, "feet"),
  52194. default: true
  52195. },
  52196. ]
  52197. ))
  52198. characterMakers.push(() => makeCharacter(
  52199. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52200. {
  52201. front: {
  52202. height: math.unit(2.69, "meters"),
  52203. weight: math.unit(132, "kg"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/aarkus/front.svg",
  52207. extra: 1400/1231,
  52208. bottom: 34/1434
  52209. }
  52210. },
  52211. back: {
  52212. height: math.unit(2.69, "meters"),
  52213. weight: math.unit(132, "kg"),
  52214. name: "Back",
  52215. image: {
  52216. source: "./media/characters/aarkus/back.svg",
  52217. extra: 1381/1218,
  52218. bottom: 30/1411
  52219. }
  52220. },
  52221. frontNsfw: {
  52222. height: math.unit(2.69, "meters"),
  52223. weight: math.unit(132, "kg"),
  52224. name: "Front (NSFW)",
  52225. image: {
  52226. source: "./media/characters/aarkus/front-nsfw.svg",
  52227. extra: 1400/1231,
  52228. bottom: 34/1434
  52229. }
  52230. },
  52231. foot: {
  52232. height: math.unit(1.45, "feet"),
  52233. name: "Foot",
  52234. image: {
  52235. source: "./media/characters/aarkus/foot.svg"
  52236. }
  52237. },
  52238. head: {
  52239. height: math.unit(2.85, "feet"),
  52240. name: "Head",
  52241. image: {
  52242. source: "./media/characters/aarkus/head.svg"
  52243. }
  52244. },
  52245. headAlt: {
  52246. height: math.unit(3.07, "feet"),
  52247. name: "Head (Alt)",
  52248. image: {
  52249. source: "./media/characters/aarkus/head-alt.svg"
  52250. }
  52251. },
  52252. mouth: {
  52253. height: math.unit(1.25, "feet"),
  52254. name: "Mouth",
  52255. image: {
  52256. source: "./media/characters/aarkus/mouth.svg"
  52257. }
  52258. },
  52259. dick: {
  52260. height: math.unit(1.77, "feet"),
  52261. name: "Dick",
  52262. image: {
  52263. source: "./media/characters/aarkus/dick.svg"
  52264. }
  52265. },
  52266. },
  52267. [
  52268. {
  52269. name: "Normal",
  52270. height: math.unit(2.69, "meters"),
  52271. default: true
  52272. },
  52273. {
  52274. name: "Macro",
  52275. height: math.unit(269, "meters")
  52276. },
  52277. {
  52278. name: "Macro+",
  52279. height: math.unit(672.5, "meters")
  52280. },
  52281. {
  52282. name: "Megamacro",
  52283. height: math.unit(2.017, "km")
  52284. },
  52285. ]
  52286. ))
  52287. characterMakers.push(() => makeCharacter(
  52288. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52289. {
  52290. front: {
  52291. height: math.unit(23.47, "cm"),
  52292. weight: math.unit(600, "grams"),
  52293. name: "Front",
  52294. image: {
  52295. source: "./media/characters/diode/front.svg",
  52296. extra: 1778/1396,
  52297. bottom: 95/1873
  52298. }
  52299. },
  52300. side: {
  52301. height: math.unit(23.47, "cm"),
  52302. weight: math.unit(600, "grams"),
  52303. name: "Side",
  52304. image: {
  52305. source: "./media/characters/diode/side.svg",
  52306. extra: 1831/1404,
  52307. bottom: 86/1917
  52308. }
  52309. },
  52310. wings: {
  52311. height: math.unit(0.683, "feet"),
  52312. name: "Wings",
  52313. image: {
  52314. source: "./media/characters/diode/wings.svg"
  52315. }
  52316. },
  52317. },
  52318. [
  52319. {
  52320. name: "Normal",
  52321. height: math.unit(23.47, "cm"),
  52322. default: true
  52323. },
  52324. ]
  52325. ))
  52326. characterMakers.push(() => makeCharacter(
  52327. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52328. {
  52329. front: {
  52330. height: math.unit(6 + 3/12, "feet"),
  52331. weight: math.unit(250, "lb"),
  52332. name: "Front",
  52333. image: {
  52334. source: "./media/characters/reika/front.svg",
  52335. extra: 1120/1078,
  52336. bottom: 86/1206
  52337. }
  52338. },
  52339. },
  52340. [
  52341. {
  52342. name: "Normal",
  52343. height: math.unit(6 + 3/12, "feet"),
  52344. default: true
  52345. },
  52346. ]
  52347. ))
  52348. characterMakers.push(() => makeCharacter(
  52349. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52350. {
  52351. front: {
  52352. height: math.unit(16 + 8/12, "feet"),
  52353. weight: math.unit(9000, "lb"),
  52354. name: "Front",
  52355. image: {
  52356. source: "./media/characters/lokuto-takama/front.svg",
  52357. extra: 1774/1632,
  52358. bottom: 147/1921
  52359. },
  52360. extraAttributes: {
  52361. "bustWidth": {
  52362. name: "Bust Width",
  52363. power: 1,
  52364. type: "length",
  52365. base: math.unit(2.4, "meters")
  52366. },
  52367. "breastWeight": {
  52368. name: "Breast Weight",
  52369. power: 3,
  52370. type: "mass",
  52371. base: math.unit(1000, "kg")
  52372. },
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(16 + 8/12, "feet"),
  52380. default: true
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(10, "cm"),
  52389. weight: math.unit(850, "grams"),
  52390. name: "Front",
  52391. image: {
  52392. source: "./media/characters/owak-bone/front.svg",
  52393. extra: 1965/1801,
  52394. bottom: 31/1996
  52395. }
  52396. },
  52397. },
  52398. [
  52399. {
  52400. name: "Normal",
  52401. height: math.unit(10, "cm"),
  52402. default: true
  52403. },
  52404. ]
  52405. ))
  52406. characterMakers.push(() => makeCharacter(
  52407. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52408. {
  52409. front: {
  52410. height: math.unit(2 + 6/12, "feet"),
  52411. weight: math.unit(9, "lb"),
  52412. name: "Front",
  52413. image: {
  52414. source: "./media/characters/muffin/front.svg",
  52415. extra: 1220/1195,
  52416. bottom: 84/1304
  52417. }
  52418. },
  52419. },
  52420. [
  52421. {
  52422. name: "Normal",
  52423. height: math.unit(2 + 6/12, "feet"),
  52424. default: true
  52425. },
  52426. ]
  52427. ))
  52428. characterMakers.push(() => makeCharacter(
  52429. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52430. {
  52431. front: {
  52432. height: math.unit(7, "feet"),
  52433. name: "Front",
  52434. image: {
  52435. source: "./media/characters/chimera/front.svg",
  52436. extra: 1752/1614,
  52437. bottom: 68/1820
  52438. }
  52439. },
  52440. },
  52441. [
  52442. {
  52443. name: "Normal",
  52444. height: math.unit(7, "feet")
  52445. },
  52446. {
  52447. name: "Gigamacro",
  52448. height: math.unit(2.9, "gigameters"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Universal",
  52453. height: math.unit(1.56e26, "yottameters")
  52454. },
  52455. ]
  52456. ))
  52457. characterMakers.push(() => makeCharacter(
  52458. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52459. {
  52460. front: {
  52461. height: math.unit(3, "feet"),
  52462. weight: math.unit(20, "lb"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/kit-fennec-fox/front.svg",
  52466. extra: 1027/932,
  52467. bottom: 16/1043
  52468. }
  52469. },
  52470. back: {
  52471. height: math.unit(3, "feet"),
  52472. weight: math.unit(20, "lb"),
  52473. name: "Back",
  52474. image: {
  52475. source: "./media/characters/kit-fennec-fox/back.svg",
  52476. extra: 1027/932,
  52477. bottom: 16/1043
  52478. }
  52479. },
  52480. },
  52481. [
  52482. {
  52483. name: "Normal",
  52484. height: math.unit(3, "feet"),
  52485. default: true
  52486. },
  52487. ]
  52488. ))
  52489. characterMakers.push(() => makeCharacter(
  52490. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52491. {
  52492. front: {
  52493. height: math.unit(167, "cm"),
  52494. name: "Front",
  52495. image: {
  52496. source: "./media/characters/blue-otter/front.svg",
  52497. extra: 1951/1920,
  52498. bottom: 31/1982
  52499. }
  52500. },
  52501. },
  52502. [
  52503. {
  52504. name: "Otter-Sized",
  52505. height: math.unit(100, "cm")
  52506. },
  52507. {
  52508. name: "Normal",
  52509. height: math.unit(167, "cm"),
  52510. default: true
  52511. },
  52512. ]
  52513. ))
  52514. characterMakers.push(() => makeCharacter(
  52515. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52516. {
  52517. front: {
  52518. height: math.unit(4 + 4/12, "feet"),
  52519. name: "Front",
  52520. image: {
  52521. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52522. extra: 1072/1067,
  52523. bottom: 117/1189
  52524. }
  52525. },
  52526. back: {
  52527. height: math.unit(4 + 4/12, "feet"),
  52528. name: "Back",
  52529. image: {
  52530. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52531. extra: 1135/1129,
  52532. bottom: 57/1192
  52533. }
  52534. },
  52535. head: {
  52536. height: math.unit(1.77, "feet"),
  52537. name: "Head",
  52538. image: {
  52539. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52540. }
  52541. },
  52542. },
  52543. [
  52544. {
  52545. name: "Normal",
  52546. height: math.unit(4 + 4/12, "feet"),
  52547. default: true
  52548. },
  52549. ]
  52550. ))
  52551. characterMakers.push(() => makeCharacter(
  52552. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52553. {
  52554. front: {
  52555. height: math.unit(2, "inches"),
  52556. name: "Front",
  52557. image: {
  52558. source: "./media/characters/carley-hartford/front.svg",
  52559. extra: 1035/988,
  52560. bottom: 23/1058
  52561. }
  52562. },
  52563. back: {
  52564. height: math.unit(2, "inches"),
  52565. name: "Back",
  52566. image: {
  52567. source: "./media/characters/carley-hartford/back.svg",
  52568. extra: 1035/988,
  52569. bottom: 23/1058
  52570. }
  52571. },
  52572. dressed: {
  52573. height: math.unit(2, "inches"),
  52574. name: "Dressed",
  52575. image: {
  52576. source: "./media/characters/carley-hartford/dressed.svg",
  52577. extra: 651/620,
  52578. bottom: 0/651
  52579. }
  52580. },
  52581. },
  52582. [
  52583. {
  52584. name: "Micro",
  52585. height: math.unit(2, "inches"),
  52586. default: true
  52587. },
  52588. {
  52589. name: "Macro",
  52590. height: math.unit(6 + 3/12, "feet")
  52591. },
  52592. ]
  52593. ))
  52594. characterMakers.push(() => makeCharacter(
  52595. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52596. {
  52597. front: {
  52598. height: math.unit(2 + 3/12, "feet"),
  52599. weight: math.unit(15 + 7/16, "lb"),
  52600. name: "Front",
  52601. image: {
  52602. source: "./media/characters/duke/front.svg",
  52603. extra: 910/815,
  52604. bottom: 30/940
  52605. }
  52606. },
  52607. },
  52608. [
  52609. {
  52610. name: "Normal",
  52611. height: math.unit(2 + 3/12, "feet"),
  52612. default: true
  52613. },
  52614. ]
  52615. ))
  52616. characterMakers.push(() => makeCharacter(
  52617. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52618. {
  52619. front: {
  52620. height: math.unit(5 + 4/12, "feet"),
  52621. weight: math.unit(156, "lb"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/dein/front.svg",
  52625. extra: 855/815,
  52626. bottom: 48/903
  52627. }
  52628. },
  52629. side: {
  52630. height: math.unit(5 + 4/12, "feet"),
  52631. weight: math.unit(156, "lb"),
  52632. name: "side",
  52633. image: {
  52634. source: "./media/characters/dein/side.svg",
  52635. extra: 846/803,
  52636. bottom: 25/871
  52637. }
  52638. },
  52639. maw: {
  52640. height: math.unit(1.45, "feet"),
  52641. name: "Maw",
  52642. image: {
  52643. source: "./media/characters/dein/maw.svg"
  52644. }
  52645. },
  52646. },
  52647. [
  52648. {
  52649. name: "Ferret Sized",
  52650. height: math.unit(2 + 5/12, "feet")
  52651. },
  52652. {
  52653. name: "Normal",
  52654. height: math.unit(5 + 4/12, "feet"),
  52655. default: true
  52656. },
  52657. ]
  52658. ))
  52659. characterMakers.push(() => makeCharacter(
  52660. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52661. {
  52662. front: {
  52663. height: math.unit(84 + 8/12, "feet"),
  52664. weight: math.unit(942180, "lb"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/daurine-arima/front.svg",
  52668. extra: 1989/1782,
  52669. bottom: 37/2026
  52670. }
  52671. },
  52672. side: {
  52673. height: math.unit(84 + 8/12, "feet"),
  52674. weight: math.unit(942180, "lb"),
  52675. name: "Side",
  52676. image: {
  52677. source: "./media/characters/daurine-arima/side.svg",
  52678. extra: 1997/1790,
  52679. bottom: 21/2018
  52680. }
  52681. },
  52682. back: {
  52683. height: math.unit(84 + 8/12, "feet"),
  52684. weight: math.unit(942180, "lb"),
  52685. name: "Back",
  52686. image: {
  52687. source: "./media/characters/daurine-arima/back.svg",
  52688. extra: 1992/1800,
  52689. bottom: 12/2004
  52690. }
  52691. },
  52692. head: {
  52693. height: math.unit(15.5, "feet"),
  52694. name: "Head",
  52695. image: {
  52696. source: "./media/characters/daurine-arima/head.svg"
  52697. }
  52698. },
  52699. headAlt: {
  52700. height: math.unit(19.19, "feet"),
  52701. name: "Head (Alt)",
  52702. image: {
  52703. source: "./media/characters/daurine-arima/head-alt.svg"
  52704. }
  52705. },
  52706. },
  52707. [
  52708. {
  52709. name: "Minimum height",
  52710. height: math.unit(8 + 10/12, "feet")
  52711. },
  52712. {
  52713. name: "Comfort height",
  52714. height: math.unit(19 + 6 /12, "feet")
  52715. },
  52716. {
  52717. name: "\"Normal\" height",
  52718. height: math.unit(28 + 10/12, "feet")
  52719. },
  52720. {
  52721. name: "Base height",
  52722. height: math.unit(84 + 8/12, "feet"),
  52723. default: true
  52724. },
  52725. {
  52726. name: "Mini-macro",
  52727. height: math.unit(2360, "feet")
  52728. },
  52729. {
  52730. name: "Macro",
  52731. height: math.unit(10, "miles")
  52732. },
  52733. {
  52734. name: "Goddess",
  52735. height: math.unit(9.99e40, "yottameters")
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52741. {
  52742. front: {
  52743. height: math.unit(2.3, "meters"),
  52744. name: "Front",
  52745. image: {
  52746. source: "./media/characters/cilenomon/front.svg",
  52747. extra: 1963/1778,
  52748. bottom: 54/2017
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(2.3, "meters"),
  52756. default: true
  52757. },
  52758. {
  52759. name: "Big",
  52760. height: math.unit(5, "meters")
  52761. },
  52762. {
  52763. name: "Macro",
  52764. height: math.unit(30, "meters")
  52765. },
  52766. {
  52767. name: "True",
  52768. height: math.unit(1, "universe")
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(5, "feet"),
  52777. name: "Front",
  52778. image: {
  52779. source: "./media/characters/sen-mink/front.svg",
  52780. extra: 1727/1675,
  52781. bottom: 35/1762
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Normal",
  52788. height: math.unit(5, "feet"),
  52789. default: true
  52790. },
  52791. ]
  52792. ))
  52793. characterMakers.push(() => makeCharacter(
  52794. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52795. {
  52796. front: {
  52797. height: math.unit(5.42999, "feet"),
  52798. weight: math.unit(100, "lb"),
  52799. name: "Front",
  52800. image: {
  52801. source: "./media/characters/ophois/front.svg",
  52802. extra: 1429/1286,
  52803. bottom: 60/1489
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Normal",
  52810. height: math.unit(5.42999, "feet"),
  52811. default: true
  52812. },
  52813. ]
  52814. ))
  52815. characterMakers.push(() => makeCharacter(
  52816. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52817. {
  52818. front: {
  52819. height: math.unit(2, "meters"),
  52820. name: "Front",
  52821. image: {
  52822. source: "./media/characters/riley/front.svg",
  52823. extra: 1779/1754,
  52824. bottom: 139/1918
  52825. }
  52826. },
  52827. },
  52828. [
  52829. {
  52830. name: "Normal",
  52831. height: math.unit(2, "meters"),
  52832. default: true
  52833. },
  52834. ]
  52835. ))
  52836. characterMakers.push(() => makeCharacter(
  52837. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52838. {
  52839. front: {
  52840. height: math.unit(6 + 2/12, "feet"),
  52841. weight: math.unit(195, "lb"),
  52842. preyCapacity: math.unit(6, "people"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/shuken-flash/front.svg",
  52846. extra: 1905/1739,
  52847. bottom: 65/1970
  52848. }
  52849. },
  52850. back: {
  52851. height: math.unit(6 + 2/12, "feet"),
  52852. weight: math.unit(195, "lb"),
  52853. preyCapacity: math.unit(6, "people"),
  52854. name: "Back",
  52855. image: {
  52856. source: "./media/characters/shuken-flash/back.svg",
  52857. extra: 1912/1751,
  52858. bottom: 13/1925
  52859. }
  52860. },
  52861. },
  52862. [
  52863. {
  52864. name: "Normal",
  52865. height: math.unit(6 + 2/12, "feet"),
  52866. default: true
  52867. },
  52868. ]
  52869. ))
  52870. characterMakers.push(() => makeCharacter(
  52871. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52872. {
  52873. front: {
  52874. height: math.unit(5 + 9/12, "feet"),
  52875. weight: math.unit(150, "lb"),
  52876. name: "Front",
  52877. image: {
  52878. source: "./media/characters/plat/front.svg",
  52879. extra: 1816/1703,
  52880. bottom: 43/1859
  52881. }
  52882. },
  52883. side: {
  52884. height: math.unit(5 + 9/12, "feet"),
  52885. weight: math.unit(300, "lb"),
  52886. name: "Side",
  52887. image: {
  52888. source: "./media/characters/plat/side.svg",
  52889. extra: 1824/1699,
  52890. bottom: 18/1842
  52891. }
  52892. },
  52893. },
  52894. [
  52895. {
  52896. name: "Normal",
  52897. height: math.unit(5 + 9/12, "feet"),
  52898. default: true
  52899. },
  52900. ]
  52901. ))
  52902. characterMakers.push(() => makeCharacter(
  52903. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52904. {
  52905. front: {
  52906. height: math.unit(9, "feet"),
  52907. weight: math.unit(1800, "lb"),
  52908. name: "Front",
  52909. image: {
  52910. source: "./media/characters/elaine/front.svg",
  52911. extra: 1833/1354,
  52912. bottom: 25/1858
  52913. }
  52914. },
  52915. back: {
  52916. height: math.unit(8.8, "feet"),
  52917. weight: math.unit(1800, "lb"),
  52918. name: "Back",
  52919. image: {
  52920. source: "./media/characters/elaine/back.svg",
  52921. extra: 1641/1233,
  52922. bottom: 53/1694
  52923. }
  52924. },
  52925. },
  52926. [
  52927. {
  52928. name: "Normal",
  52929. height: math.unit(9, "feet"),
  52930. default: true
  52931. },
  52932. ]
  52933. ))
  52934. characterMakers.push(() => makeCharacter(
  52935. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52936. {
  52937. front: {
  52938. height: math.unit(17 + 9/12, "feet"),
  52939. weight: math.unit(8000, "lb"),
  52940. name: "Front",
  52941. image: {
  52942. source: "./media/characters/vera-raven/front.svg",
  52943. extra: 1457/1412,
  52944. bottom: 121/1578
  52945. }
  52946. },
  52947. side: {
  52948. height: math.unit(17 + 9/12, "feet"),
  52949. weight: math.unit(8000, "lb"),
  52950. name: "Side",
  52951. image: {
  52952. source: "./media/characters/vera-raven/side.svg",
  52953. extra: 1510/1464,
  52954. bottom: 54/1564
  52955. }
  52956. },
  52957. },
  52958. [
  52959. {
  52960. name: "Normal",
  52961. height: math.unit(17 + 9/12, "feet"),
  52962. default: true
  52963. },
  52964. ]
  52965. ))
  52966. characterMakers.push(() => makeCharacter(
  52967. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52968. {
  52969. dressed: {
  52970. height: math.unit(6 + 9/12, "feet"),
  52971. name: "Dressed",
  52972. image: {
  52973. source: "./media/characters/nakisha/dressed.svg",
  52974. extra: 1909/1757,
  52975. bottom: 48/1957
  52976. }
  52977. },
  52978. nude: {
  52979. height: math.unit(6 + 9/12, "feet"),
  52980. name: "Nude",
  52981. image: {
  52982. source: "./media/characters/nakisha/nude.svg",
  52983. extra: 1917/1765,
  52984. bottom: 34/1951
  52985. }
  52986. },
  52987. },
  52988. [
  52989. {
  52990. name: "Normal",
  52991. height: math.unit(6 + 9/12, "feet"),
  52992. default: true
  52993. },
  52994. ]
  52995. ))
  52996. characterMakers.push(() => makeCharacter(
  52997. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52998. {
  52999. front: {
  53000. height: math.unit(87, "meters"),
  53001. name: "Front",
  53002. image: {
  53003. source: "./media/characters/serafin/front.svg",
  53004. extra: 1919/1776,
  53005. bottom: 65/1984
  53006. }
  53007. },
  53008. },
  53009. [
  53010. {
  53011. name: "Normal",
  53012. height: math.unit(87, "meters"),
  53013. default: true
  53014. },
  53015. ]
  53016. ))
  53017. characterMakers.push(() => makeCharacter(
  53018. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53019. {
  53020. front: {
  53021. height: math.unit(6, "feet"),
  53022. weight: math.unit(200, "lb"),
  53023. name: "Front",
  53024. image: {
  53025. source: "./media/characters/poptart/front.svg",
  53026. extra: 615/583,
  53027. bottom: 23/638
  53028. }
  53029. },
  53030. back: {
  53031. height: math.unit(6, "feet"),
  53032. weight: math.unit(200, "lb"),
  53033. name: "Back",
  53034. image: {
  53035. source: "./media/characters/poptart/back.svg",
  53036. extra: 617/584,
  53037. bottom: 22/639
  53038. }
  53039. },
  53040. frontNsfw: {
  53041. height: math.unit(6, "feet"),
  53042. weight: math.unit(200, "lb"),
  53043. name: "Front (NSFW)",
  53044. image: {
  53045. source: "./media/characters/poptart/front-nsfw.svg",
  53046. extra: 615/583,
  53047. bottom: 23/638
  53048. }
  53049. },
  53050. backNsfw: {
  53051. height: math.unit(6, "feet"),
  53052. weight: math.unit(200, "lb"),
  53053. name: "Back (NSFW)",
  53054. image: {
  53055. source: "./media/characters/poptart/back-nsfw.svg",
  53056. extra: 617/584,
  53057. bottom: 22/639
  53058. }
  53059. },
  53060. hand: {
  53061. height: math.unit(1.14, "feet"),
  53062. name: "Hand",
  53063. image: {
  53064. source: "./media/characters/poptart/hand.svg"
  53065. }
  53066. },
  53067. foot: {
  53068. height: math.unit(1.5, "feet"),
  53069. name: "Foot",
  53070. image: {
  53071. source: "./media/characters/poptart/foot.svg"
  53072. }
  53073. },
  53074. },
  53075. [
  53076. {
  53077. name: "Normal",
  53078. height: math.unit(6, "feet"),
  53079. default: true
  53080. },
  53081. {
  53082. name: "Grande",
  53083. height: math.unit(350, "feet")
  53084. },
  53085. {
  53086. name: "Massif",
  53087. height: math.unit(967, "feet")
  53088. },
  53089. ]
  53090. ))
  53091. characterMakers.push(() => makeCharacter(
  53092. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53093. {
  53094. hyenaSide: {
  53095. height: math.unit(120, "cm"),
  53096. weight: math.unit(120, "lb"),
  53097. name: "Side",
  53098. image: {
  53099. source: "./media/characters/trance/hyena-side.svg",
  53100. extra: 998/904,
  53101. bottom: 76/1074
  53102. }
  53103. },
  53104. },
  53105. [
  53106. {
  53107. name: "Normal",
  53108. height: math.unit(120, "cm"),
  53109. default: true
  53110. },
  53111. {
  53112. name: "Dire",
  53113. height: math.unit(230, "cm")
  53114. },
  53115. {
  53116. name: "Macro",
  53117. height: math.unit(37, "feet")
  53118. },
  53119. ]
  53120. ))
  53121. characterMakers.push(() => makeCharacter(
  53122. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53123. {
  53124. front: {
  53125. height: math.unit(6 + 3/12, "feet"),
  53126. name: "Front",
  53127. image: {
  53128. source: "./media/characters/michael-berretta/front.svg",
  53129. extra: 515/494,
  53130. bottom: 20/535
  53131. }
  53132. },
  53133. back: {
  53134. height: math.unit(6 + 3/12, "feet"),
  53135. name: "Back",
  53136. image: {
  53137. source: "./media/characters/michael-berretta/back.svg",
  53138. extra: 520/497,
  53139. bottom: 21/541
  53140. }
  53141. },
  53142. frontNsfw: {
  53143. height: math.unit(6 + 3/12, "feet"),
  53144. name: "Front (NSFW)",
  53145. image: {
  53146. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53147. extra: 515/494,
  53148. bottom: 20/535
  53149. }
  53150. },
  53151. dick: {
  53152. height: math.unit(1, "feet"),
  53153. name: "Dick",
  53154. image: {
  53155. source: "./media/characters/michael-berretta/dick.svg"
  53156. }
  53157. },
  53158. },
  53159. [
  53160. {
  53161. name: "Normal",
  53162. height: math.unit(6 + 3/12, "feet"),
  53163. default: true
  53164. },
  53165. {
  53166. name: "Big",
  53167. height: math.unit(12, "feet")
  53168. },
  53169. {
  53170. name: "Macro",
  53171. height: math.unit(187.5, "feet")
  53172. },
  53173. ]
  53174. ))
  53175. characterMakers.push(() => makeCharacter(
  53176. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53177. {
  53178. front: {
  53179. height: math.unit(9 + 9/12, "feet"),
  53180. weight: math.unit(1244, "lb"),
  53181. name: "Front",
  53182. image: {
  53183. source: "./media/characters/stella-edgecomb/front.svg",
  53184. extra: 1835/1706,
  53185. bottom: 49/1884
  53186. }
  53187. },
  53188. pen: {
  53189. height: math.unit(0.95, "feet"),
  53190. name: "Pen",
  53191. image: {
  53192. source: "./media/characters/stella-edgecomb/pen.svg"
  53193. }
  53194. },
  53195. },
  53196. [
  53197. {
  53198. name: "Cozy Bear",
  53199. height: math.unit(0.5, "inches")
  53200. },
  53201. {
  53202. name: "Normal",
  53203. height: math.unit(9 + 9/12, "feet"),
  53204. default: true
  53205. },
  53206. {
  53207. name: "Giga Bear",
  53208. height: math.unit(1, "mile")
  53209. },
  53210. {
  53211. name: "Great Bear",
  53212. height: math.unit(53, "miles")
  53213. },
  53214. {
  53215. name: "Goddess Bear",
  53216. height: math.unit(40000, "miles")
  53217. },
  53218. {
  53219. name: "Sun Bear",
  53220. height: math.unit(900000, "miles")
  53221. },
  53222. ]
  53223. ))
  53224. characterMakers.push(() => makeCharacter(
  53225. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53226. {
  53227. anthroFront: {
  53228. height: math.unit(556, "cm"),
  53229. weight: math.unit(2650, "kg"),
  53230. preyCapacity: math.unit(3, "people"),
  53231. name: "Front",
  53232. image: {
  53233. source: "./media/characters/ash´iika/front.svg",
  53234. extra: 710/673,
  53235. bottom: 15/725
  53236. },
  53237. form: "anthro",
  53238. default: true
  53239. },
  53240. anthroSide: {
  53241. height: math.unit(556, "cm"),
  53242. weight: math.unit(2650, "kg"),
  53243. preyCapacity: math.unit(3, "people"),
  53244. name: "Side",
  53245. image: {
  53246. source: "./media/characters/ash´iika/side.svg",
  53247. extra: 696/676,
  53248. bottom: 13/709
  53249. },
  53250. form: "anthro"
  53251. },
  53252. anthroDressed: {
  53253. height: math.unit(556, "cm"),
  53254. weight: math.unit(2650, "kg"),
  53255. preyCapacity: math.unit(3, "people"),
  53256. name: "Dressed",
  53257. image: {
  53258. source: "./media/characters/ash´iika/dressed.svg",
  53259. extra: 710/673,
  53260. bottom: 15/725
  53261. },
  53262. form: "anthro"
  53263. },
  53264. anthroHead: {
  53265. height: math.unit(3.5, "feet"),
  53266. name: "Head",
  53267. image: {
  53268. source: "./media/characters/ash´iika/head.svg",
  53269. extra: 348/291,
  53270. bottom: 45/393
  53271. },
  53272. form: "anthro"
  53273. },
  53274. feralSide: {
  53275. height: math.unit(870, "cm"),
  53276. weight: math.unit(17500, "kg"),
  53277. preyCapacity: math.unit(15, "people"),
  53278. name: "Side",
  53279. image: {
  53280. source: "./media/characters/ash´iika/feral.svg",
  53281. extra: 595/199,
  53282. bottom: 7/602
  53283. },
  53284. form: "feral",
  53285. default: true,
  53286. },
  53287. },
  53288. [
  53289. {
  53290. name: "Normal",
  53291. height: math.unit(556, "cm"),
  53292. default: true,
  53293. form: "anthro"
  53294. },
  53295. {
  53296. name: "Macro",
  53297. height: math.unit(88, "meters"),
  53298. form: "anthro"
  53299. },
  53300. {
  53301. name: "Normal",
  53302. height: math.unit(870, "cm"),
  53303. default: true,
  53304. form: "feral"
  53305. },
  53306. {
  53307. name: "Large",
  53308. height: math.unit(25, "meters"),
  53309. form: "feral"
  53310. },
  53311. ],
  53312. {
  53313. "anthro": {
  53314. name: "Anthro",
  53315. default: true
  53316. },
  53317. "feral": {
  53318. name: "Feral",
  53319. },
  53320. }
  53321. ))
  53322. characterMakers.push(() => makeCharacter(
  53323. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53324. {
  53325. front: {
  53326. height: math.unit(10, "feet"),
  53327. weight: math.unit(800, "lb"),
  53328. name: "Front",
  53329. image: {
  53330. source: "./media/characters/yen/front.svg",
  53331. extra: 443/411,
  53332. bottom: 6/449
  53333. }
  53334. },
  53335. sleeping: {
  53336. height: math.unit(10, "feet"),
  53337. weight: math.unit(800, "lb"),
  53338. name: "Sleeping",
  53339. image: {
  53340. source: "./media/characters/yen/sleeping.svg",
  53341. extra: 470/422,
  53342. bottom: 0/470
  53343. }
  53344. },
  53345. head: {
  53346. height: math.unit(2.2, "feet"),
  53347. name: "Head",
  53348. image: {
  53349. source: "./media/characters/yen/head.svg"
  53350. }
  53351. },
  53352. headAlt: {
  53353. height: math.unit(2.1, "feet"),
  53354. name: "Head (Alt)",
  53355. image: {
  53356. source: "./media/characters/yen/head-alt.svg"
  53357. }
  53358. },
  53359. },
  53360. [
  53361. {
  53362. name: "Normal",
  53363. height: math.unit(10, "feet"),
  53364. default: true
  53365. },
  53366. ]
  53367. ))
  53368. characterMakers.push(() => makeCharacter(
  53369. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53370. {
  53371. front: {
  53372. height: math.unit(12, "feet"),
  53373. name: "Front",
  53374. image: {
  53375. source: "./media/characters/citra/front.svg",
  53376. extra: 1950/1710,
  53377. bottom: 47/1997
  53378. }
  53379. },
  53380. },
  53381. [
  53382. {
  53383. name: "Normal",
  53384. height: math.unit(12, "feet"),
  53385. default: true
  53386. },
  53387. ]
  53388. ))
  53389. characterMakers.push(() => makeCharacter(
  53390. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53391. {
  53392. side: {
  53393. height: math.unit(7 + 10/12, "feet"),
  53394. name: "Side",
  53395. image: {
  53396. source: "./media/characters/sholstim/side.svg",
  53397. extra: 786/682,
  53398. bottom: 40/826
  53399. }
  53400. },
  53401. },
  53402. [
  53403. {
  53404. name: "Normal",
  53405. height: math.unit(7 + 10/12, "feet"),
  53406. default: true
  53407. },
  53408. ]
  53409. ))
  53410. characterMakers.push(() => makeCharacter(
  53411. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53412. {
  53413. front: {
  53414. height: math.unit(3.10, "meters"),
  53415. name: "Front",
  53416. image: {
  53417. source: "./media/characters/aggyn/front.svg",
  53418. extra: 1188/963,
  53419. bottom: 24/1212
  53420. }
  53421. },
  53422. },
  53423. [
  53424. {
  53425. name: "Normal",
  53426. height: math.unit(3.10, "meters"),
  53427. default: true
  53428. },
  53429. ]
  53430. ))
  53431. characterMakers.push(() => makeCharacter(
  53432. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53433. {
  53434. front: {
  53435. height: math.unit(7 + 5/12, "feet"),
  53436. weight: math.unit(687, "lb"),
  53437. name: "Front",
  53438. image: {
  53439. source: "./media/characters/alsandair-hergenroether/front.svg",
  53440. extra: 1251/1186,
  53441. bottom: 75/1326
  53442. }
  53443. },
  53444. back: {
  53445. height: math.unit(7 + 5/12, "feet"),
  53446. weight: math.unit(687, "lb"),
  53447. name: "Back",
  53448. image: {
  53449. source: "./media/characters/alsandair-hergenroether/back.svg",
  53450. extra: 1290/1229,
  53451. bottom: 17/1307
  53452. }
  53453. },
  53454. },
  53455. [
  53456. {
  53457. name: "Max Compression",
  53458. height: math.unit(7 + 5/12, "feet"),
  53459. default: true
  53460. },
  53461. {
  53462. name: "\"Normal\"",
  53463. height: math.unit(2, "universes")
  53464. },
  53465. ]
  53466. ))
  53467. characterMakers.push(() => makeCharacter(
  53468. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53469. {
  53470. front: {
  53471. height: math.unit(4 + 1/12, "feet"),
  53472. weight: math.unit(92, "lb"),
  53473. name: "Front",
  53474. image: {
  53475. source: "./media/characters/ie/front.svg",
  53476. extra: 1585/1352,
  53477. bottom: 91/1676
  53478. }
  53479. },
  53480. },
  53481. [
  53482. {
  53483. name: "Normal",
  53484. height: math.unit(4 + 1/12, "feet"),
  53485. default: true
  53486. },
  53487. ]
  53488. ))
  53489. characterMakers.push(() => makeCharacter(
  53490. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53491. {
  53492. anthro: {
  53493. height: math.unit(6, "feet"),
  53494. weight: math.unit(150, "lb"),
  53495. name: "Front",
  53496. image: {
  53497. source: "./media/characters/willow/anthro.svg",
  53498. extra: 1073/986,
  53499. bottom: 34/1107
  53500. },
  53501. form: "anthro",
  53502. default: true
  53503. },
  53504. taur: {
  53505. height: math.unit(6, "feet"),
  53506. weight: math.unit(150, "lb"),
  53507. name: "Side",
  53508. image: {
  53509. source: "./media/characters/willow/taur.svg",
  53510. extra: 647/512,
  53511. bottom: 136/783
  53512. },
  53513. form: "taur",
  53514. default: true
  53515. },
  53516. },
  53517. [
  53518. {
  53519. name: "Humanoid",
  53520. height: math.unit(2.7, "meters"),
  53521. form: "anthro"
  53522. },
  53523. {
  53524. name: "Normal",
  53525. height: math.unit(9, "meters"),
  53526. form: "anthro",
  53527. default: true
  53528. },
  53529. {
  53530. name: "Humanoid",
  53531. height: math.unit(2.1, "meters"),
  53532. form: "taur"
  53533. },
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(7, "meters"),
  53537. form: "taur",
  53538. default: true
  53539. },
  53540. ],
  53541. {
  53542. "anthro": {
  53543. name: "Anthro",
  53544. default: true
  53545. },
  53546. "taur": {
  53547. name: "Taur",
  53548. },
  53549. }
  53550. ))
  53551. characterMakers.push(() => makeCharacter(
  53552. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53553. {
  53554. front: {
  53555. height: math.unit(2 + 5/12, "feet"),
  53556. name: "Front",
  53557. image: {
  53558. source: "./media/characters/kyan/front.svg",
  53559. extra: 460/334,
  53560. bottom: 23/483
  53561. },
  53562. extraAttributes: {
  53563. "toeLength": {
  53564. name: "Toe Length",
  53565. power: 1,
  53566. type: "length",
  53567. base: math.unit(7, "cm")
  53568. },
  53569. "toeclawLength": {
  53570. name: "Toeclaw Length",
  53571. power: 1,
  53572. type: "length",
  53573. base: math.unit(4.7, "cm")
  53574. },
  53575. "earHeight": {
  53576. name: "Ear Height",
  53577. power: 1,
  53578. type: "length",
  53579. base: math.unit(14.1, "cm")
  53580. },
  53581. }
  53582. },
  53583. paws: {
  53584. height: math.unit(0.45, "feet"),
  53585. name: "Paws",
  53586. image: {
  53587. source: "./media/characters/kyan/paws.svg",
  53588. extra: 581/581,
  53589. bottom: 114/695
  53590. }
  53591. },
  53592. },
  53593. [
  53594. {
  53595. name: "Normal",
  53596. height: math.unit(2 + 5/12, "feet"),
  53597. default: true
  53598. },
  53599. ]
  53600. ))
  53601. characterMakers.push(() => makeCharacter(
  53602. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53603. {
  53604. front: {
  53605. height: math.unit(2 + 2/3, "feet"),
  53606. name: "Front",
  53607. image: {
  53608. source: "./media/characters/xazzon/front.svg",
  53609. extra: 1109/984,
  53610. bottom: 42/1151
  53611. }
  53612. },
  53613. back: {
  53614. height: math.unit(2 + 2/3, "feet"),
  53615. name: "Back",
  53616. image: {
  53617. source: "./media/characters/xazzon/back.svg",
  53618. extra: 1095/971,
  53619. bottom: 23/1118
  53620. }
  53621. },
  53622. },
  53623. [
  53624. {
  53625. name: "Normal",
  53626. height: math.unit(2 + 2/3, "feet"),
  53627. default: true
  53628. },
  53629. ]
  53630. ))
  53631. characterMakers.push(() => makeCharacter(
  53632. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53633. {
  53634. dressed: {
  53635. height: math.unit(5 + 7/12, "feet"),
  53636. weight: math.unit(173, "lb"),
  53637. name: "Dressed",
  53638. image: {
  53639. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53640. extra: 3262/2862,
  53641. bottom: 188/3450
  53642. }
  53643. },
  53644. undressed: {
  53645. height: math.unit(5 + 7/12, "feet"),
  53646. weight: math.unit(173, "lb"),
  53647. name: "Undressed",
  53648. image: {
  53649. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53650. extra: 3262/2862,
  53651. bottom: 188/3450
  53652. }
  53653. },
  53654. },
  53655. [
  53656. {
  53657. name: "The void",
  53658. height: math.unit(7.29193e-34, "angstroms")
  53659. },
  53660. {
  53661. name: "Uh-Oh.",
  53662. height: math.unit(5.734e-7, "angstroms")
  53663. },
  53664. {
  53665. name: "Pico",
  53666. height: math.unit(0.876, "angstroms")
  53667. },
  53668. {
  53669. name: "Nano",
  53670. height: math.unit(0.000134200, "mm")
  53671. },
  53672. {
  53673. name: "Micro",
  53674. height: math.unit(0.0673020, "mm")
  53675. },
  53676. {
  53677. name: "Tiny",
  53678. height: math.unit(2.4, "mm")
  53679. },
  53680. {
  53681. name: "Actual Normal",
  53682. height: math.unit(3, "inches"),
  53683. default: true
  53684. },
  53685. {
  53686. name: "Normal",
  53687. height: math.unit(5 + 8/12, "feet")
  53688. },
  53689. {
  53690. name: "Giant",
  53691. height: math.unit(12, "feet")
  53692. },
  53693. {
  53694. name: "City Ruler",
  53695. height: math.unit(270, "meters")
  53696. },
  53697. {
  53698. name: "Giga",
  53699. height: math.unit(1117.6, "km")
  53700. },
  53701. {
  53702. name: "All-Powerful Queen",
  53703. height: math.unit(70.8, "gigameters")
  53704. },
  53705. {
  53706. name: "'Goddess'",
  53707. height: math.unit(600, "yottameters")
  53708. },
  53709. {
  53710. name: "Biggest!",
  53711. height: math.unit(4.23e5, "yottameters")
  53712. },
  53713. ]
  53714. ))
  53715. characterMakers.push(() => makeCharacter(
  53716. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53717. {
  53718. front: {
  53719. height: math.unit(8, "feet"),
  53720. weight: math.unit(300, "lb"),
  53721. name: "Front",
  53722. image: {
  53723. source: "./media/characters/khyla-shadowsong/front.svg",
  53724. extra: 861/798,
  53725. bottom: 32/893
  53726. }
  53727. },
  53728. side: {
  53729. height: math.unit(8, "feet"),
  53730. weight: math.unit(300, "lb"),
  53731. name: "Side",
  53732. image: {
  53733. source: "./media/characters/khyla-shadowsong/side.svg",
  53734. extra: 790/750,
  53735. bottom: 87/877
  53736. }
  53737. },
  53738. back: {
  53739. height: math.unit(8, "feet"),
  53740. weight: math.unit(300, "lb"),
  53741. name: "Back",
  53742. image: {
  53743. source: "./media/characters/khyla-shadowsong/back.svg",
  53744. extra: 855/808,
  53745. bottom: 14/869
  53746. }
  53747. },
  53748. head: {
  53749. height: math.unit(2.7, "feet"),
  53750. name: "Head",
  53751. image: {
  53752. source: "./media/characters/khyla-shadowsong/head.svg"
  53753. }
  53754. },
  53755. },
  53756. [
  53757. {
  53758. name: "Micro",
  53759. height: math.unit(6, "inches")
  53760. },
  53761. {
  53762. name: "Normal",
  53763. height: math.unit(8, "feet"),
  53764. default: true
  53765. },
  53766. ]
  53767. ))
  53768. characterMakers.push(() => makeCharacter(
  53769. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53770. {
  53771. hyperFront: {
  53772. height: math.unit(9 + 4/12, "feet"),
  53773. weight: math.unit(2000, "lb"),
  53774. name: "Front",
  53775. image: {
  53776. source: "./media/characters/tiden/hyper-front.svg",
  53777. extra: 400/382,
  53778. bottom: 6/406
  53779. },
  53780. form: "hyper",
  53781. },
  53782. regularFront: {
  53783. height: math.unit(7 + 10/12, "feet"),
  53784. weight: math.unit(470, "lb"),
  53785. name: "Front",
  53786. image: {
  53787. source: "./media/characters/tiden/regular-front.svg",
  53788. extra: 468/442,
  53789. bottom: 6/474
  53790. },
  53791. form: "regular",
  53792. },
  53793. },
  53794. [
  53795. {
  53796. name: "Normal",
  53797. height: math.unit(9 + 4/12, "feet"),
  53798. default: true,
  53799. form: "hyper"
  53800. },
  53801. {
  53802. name: "Normal",
  53803. height: math.unit(7 + 10/12, "feet"),
  53804. default: true,
  53805. form: "regular"
  53806. },
  53807. ],
  53808. {
  53809. "hyper": {
  53810. name: "Hyper",
  53811. default: true
  53812. },
  53813. "regular": {
  53814. name: "Regular",
  53815. },
  53816. }
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53820. {
  53821. side: {
  53822. height: math.unit(6, "feet"),
  53823. weight: math.unit(150, "lb"),
  53824. name: "Side",
  53825. image: {
  53826. source: "./media/characters/jason-crowe/side.svg",
  53827. extra: 1771/766,
  53828. bottom: 219/1990
  53829. }
  53830. },
  53831. },
  53832. [
  53833. {
  53834. name: "Pocket Gryphon",
  53835. height: math.unit(6, "cm")
  53836. },
  53837. {
  53838. name: "Raven",
  53839. height: math.unit(60, "cm")
  53840. },
  53841. {
  53842. name: "Normal",
  53843. height: math.unit(1, "meter"),
  53844. default: true
  53845. },
  53846. ]
  53847. ))
  53848. characterMakers.push(() => makeCharacter(
  53849. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53850. {
  53851. front: {
  53852. height: math.unit(9 + 6/12, "feet"),
  53853. weight: math.unit(1100, "lb"),
  53854. name: "Front",
  53855. image: {
  53856. source: "./media/characters/django/front.svg",
  53857. extra: 1231/1136,
  53858. bottom: 34/1265
  53859. }
  53860. },
  53861. side: {
  53862. height: math.unit(9 + 6/12, "feet"),
  53863. weight: math.unit(1100, "lb"),
  53864. name: "Side",
  53865. image: {
  53866. source: "./media/characters/django/side.svg",
  53867. extra: 1267/1174,
  53868. bottom: 9/1276
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(9 + 6/12, "feet"),
  53876. default: true
  53877. },
  53878. {
  53879. name: "Macro 1",
  53880. height: math.unit(50, "feet")
  53881. },
  53882. {
  53883. name: "Macro 2",
  53884. height: math.unit(500, "feet")
  53885. },
  53886. {
  53887. name: "Mega Macro",
  53888. height: math.unit(5300, "feet")
  53889. },
  53890. ]
  53891. ))
  53892. characterMakers.push(() => makeCharacter(
  53893. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53894. {
  53895. frontSfw: {
  53896. height: math.unit(120, "cm"),
  53897. weight: math.unit(15, "kg"),
  53898. name: "Front (SFW)",
  53899. image: {
  53900. source: "./media/characters/eri/front-sfw.svg",
  53901. extra: 1014/939,
  53902. bottom: 37/1051
  53903. },
  53904. form: "moth",
  53905. },
  53906. frontNsfw: {
  53907. height: math.unit(120, "cm"),
  53908. weight: math.unit(15, "kg"),
  53909. name: "Front (NSFW)",
  53910. image: {
  53911. source: "./media/characters/eri/front-nsfw.svg",
  53912. extra: 1014/939,
  53913. bottom: 37/1051
  53914. },
  53915. form: "moth",
  53916. default: true
  53917. },
  53918. egg: {
  53919. height: math.unit(10, "cm"),
  53920. name: "Egg",
  53921. image: {
  53922. source: "./media/characters/eri/egg.svg"
  53923. },
  53924. form: "egg",
  53925. default: true
  53926. },
  53927. },
  53928. [
  53929. {
  53930. name: "Normal",
  53931. height: math.unit(120, "cm"),
  53932. default: true,
  53933. form: "moth"
  53934. },
  53935. {
  53936. name: "Normal",
  53937. height: math.unit(10, "cm"),
  53938. default: true,
  53939. form: "egg"
  53940. },
  53941. ],
  53942. {
  53943. "moth": {
  53944. name: "Moth",
  53945. default: true
  53946. },
  53947. "egg": {
  53948. name: "Egg",
  53949. },
  53950. }
  53951. ))
  53952. characterMakers.push(() => makeCharacter(
  53953. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53954. {
  53955. front: {
  53956. height: math.unit(200, "feet"),
  53957. name: "Front",
  53958. image: {
  53959. source: "./media/characters/bishop-dowser/front.svg",
  53960. extra: 933/868,
  53961. bottom: 106/1039
  53962. }
  53963. },
  53964. },
  53965. [
  53966. {
  53967. name: "Giant",
  53968. height: math.unit(200, "feet"),
  53969. default: true
  53970. },
  53971. ]
  53972. ))
  53973. characterMakers.push(() => makeCharacter(
  53974. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53975. {
  53976. front: {
  53977. height: math.unit(2, "meters"),
  53978. preyCapacity: math.unit(3, "people"),
  53979. name: "Front",
  53980. image: {
  53981. source: "./media/characters/fryra/front.svg",
  53982. extra: 1025/948,
  53983. bottom: 30/1055
  53984. },
  53985. extraAttributes: {
  53986. "breastVolume": {
  53987. name: "Breast Volume",
  53988. power: 3,
  53989. type: "volume",
  53990. base: math.unit(8, "liters")
  53991. },
  53992. }
  53993. },
  53994. back: {
  53995. height: math.unit(2, "meters"),
  53996. preyCapacity: math.unit(3, "people"),
  53997. name: "Back",
  53998. image: {
  53999. source: "./media/characters/fryra/back.svg",
  54000. extra: 993/938,
  54001. bottom: 38/1031
  54002. },
  54003. extraAttributes: {
  54004. "breastVolume": {
  54005. name: "Breast Volume",
  54006. power: 3,
  54007. type: "volume",
  54008. base: math.unit(8, "liters")
  54009. },
  54010. }
  54011. },
  54012. head: {
  54013. height: math.unit(1.33, "feet"),
  54014. name: "Head",
  54015. image: {
  54016. source: "./media/characters/fryra/head.svg"
  54017. }
  54018. },
  54019. maw: {
  54020. height: math.unit(0.56, "feet"),
  54021. name: "Maw",
  54022. image: {
  54023. source: "./media/characters/fryra/maw.svg"
  54024. }
  54025. },
  54026. },
  54027. [
  54028. {
  54029. name: "Micro",
  54030. height: math.unit(5, "cm")
  54031. },
  54032. {
  54033. name: "Normal",
  54034. height: math.unit(2, "meters"),
  54035. default: true
  54036. },
  54037. {
  54038. name: "Small Macro",
  54039. height: math.unit(8, "meters")
  54040. },
  54041. {
  54042. name: "Macro",
  54043. height: math.unit(50, "meters")
  54044. },
  54045. {
  54046. name: "Megamacro",
  54047. height: math.unit(1, "km")
  54048. },
  54049. {
  54050. name: "Planetary",
  54051. height: math.unit(300000, "km")
  54052. },
  54053. {
  54054. name: "Universal",
  54055. height: math.unit(250, "lightyears")
  54056. },
  54057. {
  54058. name: "Fabric of Reality",
  54059. height: math.unit(1000, "multiverses")
  54060. },
  54061. ]
  54062. ))
  54063. characterMakers.push(() => makeCharacter(
  54064. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54065. {
  54066. frontDressed: {
  54067. height: math.unit(6 + 2/12, "feet"),
  54068. name: "Front (Dressed)",
  54069. image: {
  54070. source: "./media/characters/fiera/front-dressed.svg",
  54071. extra: 1883/1793,
  54072. bottom: 70/1953
  54073. }
  54074. },
  54075. backDressed: {
  54076. height: math.unit(6 + 2/12, "feet"),
  54077. name: "Back (Dressed)",
  54078. image: {
  54079. source: "./media/characters/fiera/back-dressed.svg",
  54080. extra: 1847/1780,
  54081. bottom: 70/1917
  54082. }
  54083. },
  54084. frontNude: {
  54085. height: math.unit(6 + 2/12, "feet"),
  54086. name: "Front (Nude)",
  54087. image: {
  54088. source: "./media/characters/fiera/front-nude.svg",
  54089. extra: 1875/1785,
  54090. bottom: 66/1941
  54091. }
  54092. },
  54093. backNude: {
  54094. height: math.unit(6 + 2/12, "feet"),
  54095. name: "Back (Nude)",
  54096. image: {
  54097. source: "./media/characters/fiera/back-nude.svg",
  54098. extra: 1855/1788,
  54099. bottom: 44/1899
  54100. }
  54101. },
  54102. maw: {
  54103. height: math.unit(1.3, "feet"),
  54104. name: "Maw",
  54105. image: {
  54106. source: "./media/characters/fiera/maw.svg"
  54107. }
  54108. },
  54109. paw: {
  54110. height: math.unit(1, "feet"),
  54111. name: "Paw",
  54112. image: {
  54113. source: "./media/characters/fiera/paw.svg"
  54114. }
  54115. },
  54116. shoe: {
  54117. height: math.unit(1.05, "feet"),
  54118. name: "Shoe",
  54119. image: {
  54120. source: "./media/characters/fiera/shoe.svg"
  54121. }
  54122. },
  54123. },
  54124. [
  54125. {
  54126. name: "Normal",
  54127. height: math.unit(6 + 2/12, "feet"),
  54128. default: true
  54129. },
  54130. {
  54131. name: "Size Difference",
  54132. height: math.unit(13, "feet")
  54133. },
  54134. {
  54135. name: "Macro",
  54136. height: math.unit(60, "feet")
  54137. },
  54138. {
  54139. name: "Mega Macro",
  54140. height: math.unit(200, "feet")
  54141. },
  54142. ]
  54143. ))
  54144. characterMakers.push(() => makeCharacter(
  54145. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54146. {
  54147. back: {
  54148. height: math.unit(6, "feet"),
  54149. name: "Back",
  54150. image: {
  54151. source: "./media/characters/flare/back.svg",
  54152. extra: 1883/1765,
  54153. bottom: 32/1915
  54154. }
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(6 + 2/12, "feet"),
  54161. default: true
  54162. },
  54163. {
  54164. name: "Size Difference",
  54165. height: math.unit(13, "feet")
  54166. },
  54167. {
  54168. name: "Macro",
  54169. height: math.unit(60, "feet")
  54170. },
  54171. {
  54172. name: "Macro 2",
  54173. height: math.unit(100, "feet")
  54174. },
  54175. {
  54176. name: "Mega Macro",
  54177. height: math.unit(200, "feet")
  54178. },
  54179. ]
  54180. ))
  54181. characterMakers.push(() => makeCharacter(
  54182. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54183. {
  54184. front: {
  54185. height: math.unit(2.2, "m"),
  54186. weight: math.unit(300, "kg"),
  54187. name: "Front",
  54188. image: {
  54189. source: "./media/characters/hanna/front.svg",
  54190. extra: 1696/1502,
  54191. bottom: 206/1902
  54192. }
  54193. },
  54194. },
  54195. [
  54196. {
  54197. name: "Humanoid",
  54198. height: math.unit(2.2, "meters")
  54199. },
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(4.8, "meters"),
  54203. default: true
  54204. },
  54205. ]
  54206. ))
  54207. characterMakers.push(() => makeCharacter(
  54208. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54209. {
  54210. front: {
  54211. height: math.unit(2.8, "meters"),
  54212. name: "Front",
  54213. image: {
  54214. source: "./media/characters/argo/front.svg",
  54215. extra: 731/518,
  54216. bottom: 84/815
  54217. }
  54218. },
  54219. },
  54220. [
  54221. {
  54222. name: "Normal",
  54223. height: math.unit(3, "meters"),
  54224. default: true
  54225. },
  54226. ]
  54227. ))
  54228. characterMakers.push(() => makeCharacter(
  54229. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54230. {
  54231. side: {
  54232. height: math.unit(3.8, "meters"),
  54233. name: "Side",
  54234. image: {
  54235. source: "./media/characters/sybil/side.svg",
  54236. extra: 382/361,
  54237. bottom: 25/407
  54238. }
  54239. },
  54240. },
  54241. [
  54242. {
  54243. name: "Normal",
  54244. height: math.unit(3.8, "meters"),
  54245. default: true
  54246. },
  54247. ]
  54248. ))
  54249. characterMakers.push(() => makeCharacter(
  54250. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54251. {
  54252. side: {
  54253. height: math.unit(6, "meters"),
  54254. name: "Side",
  54255. image: {
  54256. source: "./media/characters/plum/side.svg",
  54257. extra: 858/755,
  54258. bottom: 45/903
  54259. },
  54260. form: "taur",
  54261. default: true
  54262. },
  54263. back: {
  54264. height: math.unit(6.3, "meters"),
  54265. name: "Back",
  54266. image: {
  54267. source: "./media/characters/plum/back.svg",
  54268. extra: 887/813,
  54269. bottom: 32/919
  54270. },
  54271. form: "taur",
  54272. },
  54273. feral: {
  54274. height: math.unit(5.5, "meter"),
  54275. name: "Front",
  54276. image: {
  54277. source: "./media/characters/plum/feral.svg",
  54278. extra: 568/403,
  54279. bottom: 51/619
  54280. },
  54281. form: "feral",
  54282. default: true
  54283. },
  54284. head: {
  54285. height: math.unit(1.46, "meter"),
  54286. name: "Head",
  54287. image: {
  54288. source: "./media/characters/plum/head.svg"
  54289. },
  54290. form: "taur"
  54291. },
  54292. tailTop: {
  54293. height: math.unit(5.6, "meter"),
  54294. name: "Tail (Top)",
  54295. image: {
  54296. source: "./media/characters/plum/tail-top.svg"
  54297. },
  54298. form: "taur",
  54299. },
  54300. tailBottom: {
  54301. height: math.unit(5.6, "meter"),
  54302. name: "Tail (Bottom)",
  54303. image: {
  54304. source: "./media/characters/plum/tail-bottom.svg"
  54305. },
  54306. form: "taur",
  54307. },
  54308. feralHead: {
  54309. height: math.unit(2.56549521, "meter"),
  54310. name: "Head",
  54311. image: {
  54312. source: "./media/characters/plum/head.svg"
  54313. },
  54314. form: "feral"
  54315. },
  54316. feralTailTop: {
  54317. height: math.unit(5.44728435, "meter"),
  54318. name: "Tail (Top)",
  54319. image: {
  54320. source: "./media/characters/plum/tail-top.svg"
  54321. },
  54322. form: "feral",
  54323. },
  54324. feralTailBottom: {
  54325. height: math.unit(5.44728435, "meter"),
  54326. name: "Tail (Bottom)",
  54327. image: {
  54328. source: "./media/characters/plum/tail-bottom.svg"
  54329. },
  54330. form: "feral",
  54331. },
  54332. },
  54333. [
  54334. {
  54335. name: "Normal",
  54336. height: math.unit(6, "meters"),
  54337. default: true,
  54338. form: "taur"
  54339. },
  54340. {
  54341. name: "Normal",
  54342. height: math.unit(5.5, "meters"),
  54343. default: true,
  54344. form: "feral"
  54345. },
  54346. ],
  54347. {
  54348. "taur": {
  54349. name: "Taur",
  54350. default: true
  54351. },
  54352. "feral": {
  54353. name: "Feral",
  54354. },
  54355. }
  54356. ))
  54357. characterMakers.push(() => makeCharacter(
  54358. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54359. {
  54360. front: {
  54361. height: math.unit(6, "feet"),
  54362. weight: math.unit(115, "lb"),
  54363. name: "Front",
  54364. image: {
  54365. source: "./media/characters/celeste-kitsune/front.svg",
  54366. extra: 393/366,
  54367. bottom: 7/400
  54368. }
  54369. },
  54370. side: {
  54371. height: math.unit(6, "feet"),
  54372. weight: math.unit(115, "lb"),
  54373. name: "Side",
  54374. image: {
  54375. source: "./media/characters/celeste-kitsune/side.svg",
  54376. extra: 818/765,
  54377. bottom: 40/858
  54378. }
  54379. },
  54380. },
  54381. [
  54382. {
  54383. name: "Megamacro",
  54384. height: math.unit(1500, "miles"),
  54385. default: true
  54386. },
  54387. ]
  54388. ))
  54389. //characters
  54390. function makeCharacters() {
  54391. const results = [];
  54392. characterMakers.forEach(character => {
  54393. results.push(character());
  54394. });
  54395. return results;
  54396. }