less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

61446 líneas
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. }
  2270. //species
  2271. function getSpeciesInfo(speciesList) {
  2272. let result = new Set();
  2273. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2274. result.add(entry)
  2275. });
  2276. return Array.from(result);
  2277. };
  2278. function getSpeciesInfoHelper(species) {
  2279. if (!speciesData[species]) {
  2280. console.warn(species + " doesn't exist");
  2281. return [];
  2282. }
  2283. if (speciesData[species].parents) {
  2284. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2285. } else {
  2286. return [species];
  2287. }
  2288. }
  2289. characterMakers.push(() => makeCharacter(
  2290. {
  2291. name: "Fen",
  2292. species: ["crux"],
  2293. description: {
  2294. title: "Bio",
  2295. text: "Very furry. Sheds on everything."
  2296. },
  2297. tags: [
  2298. "anthro",
  2299. "goo"
  2300. ]
  2301. },
  2302. {
  2303. front: {
  2304. height: math.unit(12, "feet"),
  2305. weight: math.unit(2400, "lb"),
  2306. preyCapacity: math.unit(1, "people"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/fen/front.svg",
  2310. extra: 1804/1562,
  2311. bottom: 205/2009
  2312. },
  2313. extraAttributes: {
  2314. pawSize: {
  2315. name: "Paw Size",
  2316. power: 2,
  2317. type: "area",
  2318. base: math.unit(0.35, "m^2")
  2319. }
  2320. }
  2321. },
  2322. diving: {
  2323. height: math.unit(4.9, "meters"),
  2324. weight: math.unit(2400, "lb"),
  2325. name: "Diving",
  2326. image: {
  2327. source: "./media/characters/fen/diving.svg"
  2328. }
  2329. },
  2330. sleeby: {
  2331. height: math.unit(3.45, "meters"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Sleeby",
  2334. image: {
  2335. source: "./media/characters/fen/sleeby.svg"
  2336. }
  2337. },
  2338. goo: {
  2339. height: math.unit(12, "feet"),
  2340. weight: math.unit(3600, "lb"),
  2341. volume: math.unit(1000, "liters"),
  2342. preyCapacity: math.unit(6, "people"),
  2343. name: "Goo",
  2344. image: {
  2345. source: "./media/characters/fen/goo.svg",
  2346. extra: 1307/1071,
  2347. bottom: 134/1441
  2348. }
  2349. },
  2350. horror: {
  2351. height: math.unit(13.6, "feet"),
  2352. weight: math.unit(2400, "lb"),
  2353. preyCapacity: math.unit(1, "people"),
  2354. name: "Horror",
  2355. image: {
  2356. source: "./media/characters/fen/horror.svg",
  2357. extra: 893/797,
  2358. bottom: 0/893
  2359. }
  2360. },
  2361. gooNsfw: {
  2362. height: math.unit(12, "feet"),
  2363. weight: math.unit(3750, "lb"),
  2364. volume: math.unit(1000, "liters"),
  2365. preyCapacity: math.unit(6, "people"),
  2366. name: "Goo (NSFW)",
  2367. image: {
  2368. source: "./media/characters/fen/goo-nsfw.svg",
  2369. extra: 1875/1734,
  2370. bottom: 122/1997
  2371. }
  2372. },
  2373. maw: {
  2374. height: math.unit(5.03, "feet"),
  2375. name: "Maw",
  2376. image: {
  2377. source: "./media/characters/fen/maw.svg"
  2378. }
  2379. },
  2380. gooCeiling: {
  2381. height: math.unit(6.6, "feet"),
  2382. weight: math.unit(3000, "lb"),
  2383. volume: math.unit(1000, "liters"),
  2384. preyCapacity: math.unit(6, "people"),
  2385. name: "Maw (Goo)",
  2386. image: {
  2387. source: "./media/characters/fen/goo-maw.svg"
  2388. }
  2389. },
  2390. paw: {
  2391. height: math.unit(3.77, "feet"),
  2392. name: "Paw",
  2393. image: {
  2394. source: "./media/characters/fen/paw.svg"
  2395. },
  2396. extraAttributes: {
  2397. "toeSize": {
  2398. name: "Toe Size",
  2399. power: 2,
  2400. type: "area",
  2401. base: math.unit(0.02875, "m^2")
  2402. },
  2403. "pawSize": {
  2404. name: "Paw Size",
  2405. power: 2,
  2406. type: "area",
  2407. base: math.unit(0.378, "m^2")
  2408. },
  2409. }
  2410. },
  2411. tail: {
  2412. height: math.unit(12.1, "feet"),
  2413. name: "Tail",
  2414. image: {
  2415. source: "./media/characters/fen/tail.svg"
  2416. }
  2417. },
  2418. tailFull: {
  2419. height: math.unit(12.1, "feet"),
  2420. name: "Full Tail",
  2421. image: {
  2422. source: "./media/characters/fen/tail-full.svg"
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(12, "feet"),
  2427. weight: math.unit(2400, "lb"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/fen/back.svg",
  2431. },
  2432. info: {
  2433. description: {
  2434. mode: "append",
  2435. text: "\n\nHe is not currently looking at you."
  2436. }
  2437. }
  2438. },
  2439. full: {
  2440. height: math.unit(1.85, "meter"),
  2441. weight: math.unit(3200, "lb"),
  2442. name: "Full",
  2443. image: {
  2444. source: "./media/characters/fen/full.svg",
  2445. extra: 1133/859,
  2446. bottom: 145/1278
  2447. },
  2448. info: {
  2449. description: {
  2450. mode: "append",
  2451. text: "\n\nMunch."
  2452. }
  2453. }
  2454. },
  2455. gooLounging: {
  2456. height: math.unit(4.53, "feet"),
  2457. weight: math.unit(3000, "lb"),
  2458. preyCapacity: math.unit(6, "people"),
  2459. name: "Goo (Lounging)",
  2460. image: {
  2461. source: "./media/characters/fen/goo-lounging.svg",
  2462. bottom: 116 / 613
  2463. }
  2464. },
  2465. lounging: {
  2466. height: math.unit(10.52, "feet"),
  2467. weight: math.unit(2400, "lb"),
  2468. name: "Lounging",
  2469. image: {
  2470. source: "./media/characters/fen/lounging.svg"
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Small",
  2477. height: math.unit(2.2428, "meter")
  2478. },
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(12, "feet"),
  2482. default: true,
  2483. },
  2484. {
  2485. name: "Big",
  2486. height: math.unit(20, "feet")
  2487. },
  2488. {
  2489. name: "Minimacro",
  2490. height: math.unit(40, "feet"),
  2491. info: {
  2492. description: {
  2493. mode: "append",
  2494. text: "\n\nTOO DAMN BIG"
  2495. }
  2496. }
  2497. },
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(100, "feet"),
  2501. info: {
  2502. description: {
  2503. mode: "append",
  2504. text: "\n\nTOO DAMN BIG"
  2505. }
  2506. }
  2507. },
  2508. {
  2509. name: "Megamacro",
  2510. height: math.unit(2, "miles")
  2511. },
  2512. {
  2513. name: "Gigamacro",
  2514. height: math.unit(10, "earths")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(183, "cm"),
  2523. weight: math.unit(80, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/sofia-fluttertail/front.svg",
  2527. bottom: 0.01,
  2528. extra: 2154 / 2081
  2529. }
  2530. },
  2531. frontAlt: {
  2532. height: math.unit(183, "cm"),
  2533. weight: math.unit(80, "kg"),
  2534. name: "Front (alt)",
  2535. image: {
  2536. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2537. }
  2538. },
  2539. back: {
  2540. height: math.unit(183, "cm"),
  2541. weight: math.unit(80, "kg"),
  2542. name: "Back",
  2543. image: {
  2544. source: "./media/characters/sofia-fluttertail/back.svg"
  2545. }
  2546. },
  2547. kneeling: {
  2548. height: math.unit(125, "cm"),
  2549. weight: math.unit(80, "kg"),
  2550. name: "Kneeling",
  2551. image: {
  2552. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2553. extra: 1033 / 977,
  2554. bottom: 23.7 / 1057
  2555. }
  2556. },
  2557. maw: {
  2558. height: math.unit(183 / 5, "cm"),
  2559. name: "Maw",
  2560. image: {
  2561. source: "./media/characters/sofia-fluttertail/maw.svg"
  2562. }
  2563. },
  2564. mawcloseup: {
  2565. height: math.unit(183 / 5 * 0.41, "cm"),
  2566. name: "Maw (Closeup)",
  2567. image: {
  2568. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2569. }
  2570. },
  2571. paws: {
  2572. height: math.unit(1.17, "feet"),
  2573. name: "Paws",
  2574. image: {
  2575. source: "./media/characters/sofia-fluttertail/paws.svg",
  2576. extra: 851 / 851,
  2577. bottom: 17 / 868
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Normal",
  2584. height: math.unit(1.83, "meter")
  2585. },
  2586. {
  2587. name: "Size Thief",
  2588. height: math.unit(18, "feet")
  2589. },
  2590. {
  2591. name: "50 Foot Collie",
  2592. height: math.unit(50, "feet")
  2593. },
  2594. {
  2595. name: "Macro",
  2596. height: math.unit(96, "feet"),
  2597. default: true
  2598. },
  2599. {
  2600. name: "Megamerger",
  2601. height: math.unit(650, "feet")
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2607. {
  2608. front: {
  2609. height: math.unit(7, "feet"),
  2610. weight: math.unit(100, "kg"),
  2611. name: "Front",
  2612. image: {
  2613. source: "./media/characters/march/front.svg",
  2614. extra: 1992/1851,
  2615. bottom: 39/2031
  2616. }
  2617. },
  2618. foot: {
  2619. height: math.unit(0.9, "feet"),
  2620. name: "Foot",
  2621. image: {
  2622. source: "./media/characters/march/foot.svg"
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Normal",
  2629. height: math.unit(7.9, "feet")
  2630. },
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(220, "meters")
  2634. },
  2635. {
  2636. name: "Megamacro",
  2637. height: math.unit(2.98, "km"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Gigamacro",
  2642. height: math.unit(15963, "km")
  2643. },
  2644. {
  2645. name: "Teramacro",
  2646. height: math.unit(2980000000, "km")
  2647. },
  2648. {
  2649. name: "Examacro",
  2650. height: math.unit(250, "parsecs")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(6, "feet"),
  2659. weight: math.unit(60, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/noir/front.svg",
  2663. extra: 1,
  2664. bottom: 0.032
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(6.6, "feet")
  2672. },
  2673. {
  2674. name: "Macro",
  2675. height: math.unit(500, "feet")
  2676. },
  2677. {
  2678. name: "Megamacro",
  2679. height: math.unit(2.5, "km"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(22500, "km")
  2685. },
  2686. {
  2687. name: "Teramacro",
  2688. height: math.unit(2500000000, "km")
  2689. },
  2690. {
  2691. name: "Examacro",
  2692. height: math.unit(200, "parsecs")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(7, "feet"),
  2701. weight: math.unit(100, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/okuri/front.svg",
  2705. extra: 739/665,
  2706. bottom: 39/778
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(7, "feet"),
  2711. weight: math.unit(100, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/okuri/back.svg",
  2715. extra: 734/653,
  2716. bottom: 13/747
  2717. }
  2718. },
  2719. sitting: {
  2720. height: math.unit(2.95, "feet"),
  2721. weight: math.unit(100, "kg"),
  2722. name: "Sitting",
  2723. image: {
  2724. source: "./media/characters/okuri/sitting.svg",
  2725. extra: 370/318,
  2726. bottom: 99/469
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Smallest",
  2733. height: math.unit(5 + 2/12, "feet")
  2734. },
  2735. {
  2736. name: "Smaller",
  2737. height: math.unit(300, "feet")
  2738. },
  2739. {
  2740. name: "Small",
  2741. height: math.unit(1000, "feet")
  2742. },
  2743. {
  2744. name: "Macro",
  2745. height: math.unit(1, "mile")
  2746. },
  2747. {
  2748. name: "Mega Macro (Small)",
  2749. height: math.unit(20, "km")
  2750. },
  2751. {
  2752. name: "Mega Macro (Large)",
  2753. height: math.unit(600, "km")
  2754. },
  2755. {
  2756. name: "Giga Macro",
  2757. height: math.unit(10000, "km")
  2758. },
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(577560, "km"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Large",
  2766. height: math.unit(4, "galaxies")
  2767. },
  2768. {
  2769. name: "Largest",
  2770. height: math.unit(15, "multiverses")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/manny/front.svg",
  2783. extra: 1,
  2784. bottom: 0.06
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(7, "feet"),
  2789. weight: math.unit(100, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/manny/back.svg",
  2793. extra: 1,
  2794. bottom: 0.014
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(7, "feet"),
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(78, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(300, "meters")
  2811. },
  2812. {
  2813. name: "Macro++",
  2814. height: math.unit(2400, "meters")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(5167, "meters")
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(41769, "miles")
  2823. },
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(7, "feet"),
  2831. weight: math.unit(100, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/adake/front-1.svg"
  2835. }
  2836. },
  2837. frontAlt: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Front (Alt)",
  2841. image: {
  2842. source: "./media/characters/adake/front-2.svg",
  2843. extra: 1,
  2844. bottom: 0.01
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(7, "feet"),
  2849. weight: math.unit(100, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/adake/back.svg",
  2853. }
  2854. },
  2855. kneel: {
  2856. height: math.unit(5.385, "feet"),
  2857. weight: math.unit(100, "kg"),
  2858. name: "Kneeling",
  2859. image: {
  2860. source: "./media/characters/adake/kneel.svg",
  2861. bottom: 0.052
  2862. }
  2863. },
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(7, "feet"),
  2869. },
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(78, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro+",
  2877. height: math.unit(300, "meters")
  2878. },
  2879. {
  2880. name: "Macro++",
  2881. height: math.unit(2400, "meters")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(5167, "meters")
  2886. },
  2887. {
  2888. name: "Gigamacro",
  2889. height: math.unit(41769, "miles")
  2890. },
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2895. {
  2896. front: {
  2897. height: math.unit(1.65, "meters"),
  2898. weight: math.unit(50, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/elijah/front.svg",
  2902. extra: 858 / 830,
  2903. bottom: 95.5 / 953.8559
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(1.65, "meters"),
  2908. weight: math.unit(50, "kg"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/elijah/back.svg",
  2912. extra: 895 / 850,
  2913. bottom: 5.3 / 897.956
  2914. }
  2915. },
  2916. frontNsfw: {
  2917. height: math.unit(1.65, "meters"),
  2918. weight: math.unit(50, "kg"),
  2919. name: "Front (NSFW)",
  2920. image: {
  2921. source: "./media/characters/elijah/front-nsfw.svg",
  2922. extra: 858 / 830,
  2923. bottom: 95.5 / 953.8559
  2924. }
  2925. },
  2926. backNsfw: {
  2927. height: math.unit(1.65, "meters"),
  2928. weight: math.unit(50, "kg"),
  2929. name: "Back (NSFW)",
  2930. image: {
  2931. source: "./media/characters/elijah/back-nsfw.svg",
  2932. extra: 895 / 850,
  2933. bottom: 5.3 / 897.956
  2934. }
  2935. },
  2936. dick: {
  2937. height: math.unit(1, "feet"),
  2938. name: "Dick",
  2939. image: {
  2940. source: "./media/characters/elijah/dick.svg"
  2941. }
  2942. },
  2943. beakOpen: {
  2944. height: math.unit(1.25, "feet"),
  2945. name: "Beak (Open)",
  2946. image: {
  2947. source: "./media/characters/elijah/beak-open.svg"
  2948. }
  2949. },
  2950. beakShut: {
  2951. height: math.unit(1.25, "feet"),
  2952. name: "Beak (Shut)",
  2953. image: {
  2954. source: "./media/characters/elijah/beak-shut.svg"
  2955. }
  2956. },
  2957. footFlexing: {
  2958. height: math.unit(1.61, "feet"),
  2959. name: "Foot (Flexing)",
  2960. image: {
  2961. source: "./media/characters/elijah/foot-flexing.svg"
  2962. }
  2963. },
  2964. footStepping: {
  2965. height: math.unit(1.44, "feet"),
  2966. name: "Foot (Stepping)",
  2967. image: {
  2968. source: "./media/characters/elijah/foot-stepping.svg"
  2969. }
  2970. },
  2971. plantigradeLeg: {
  2972. height: math.unit(2.34, "feet"),
  2973. name: "Plantigrade Leg",
  2974. image: {
  2975. source: "./media/characters/elijah/plantigrade-leg.svg"
  2976. }
  2977. },
  2978. plantigradeFootLeft: {
  2979. height: math.unit(0.9, "feet"),
  2980. name: "Plantigrade Foot (Left)",
  2981. image: {
  2982. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2983. }
  2984. },
  2985. plantigradeFootRight: {
  2986. height: math.unit(0.9, "feet"),
  2987. name: "Plantigrade Foot (Right)",
  2988. image: {
  2989. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2990. }
  2991. },
  2992. },
  2993. [
  2994. {
  2995. name: "Normal",
  2996. height: math.unit(1.65, "meters")
  2997. },
  2998. {
  2999. name: "Macro",
  3000. height: math.unit(55, "meters"),
  3001. default: true
  3002. },
  3003. {
  3004. name: "Macro+",
  3005. height: math.unit(105, "meters")
  3006. },
  3007. ]
  3008. ))
  3009. characterMakers.push(() => makeCharacter(
  3010. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3011. {
  3012. front: {
  3013. height: math.unit(7 + 2/12, "feet"),
  3014. weight: math.unit(320, "kg"),
  3015. preyCapacity: math.unit(0.276549935, "people"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/rai/front.svg",
  3019. extra: 1802/1696,
  3020. bottom: 68/1870
  3021. },
  3022. form: "anthro",
  3023. default: true
  3024. },
  3025. frontDressed: {
  3026. height: math.unit(7 + 2/12, "feet"),
  3027. weight: math.unit(320, "kg"),
  3028. preyCapacity: math.unit(0.276549935, "people"),
  3029. name: "Front (Dressed)",
  3030. image: {
  3031. source: "./media/characters/rai/front-dressed.svg",
  3032. extra: 1802/1696,
  3033. bottom: 68/1870
  3034. },
  3035. form: "anthro"
  3036. },
  3037. side: {
  3038. height: math.unit(7 + 2/12, "feet"),
  3039. weight: math.unit(320, "kg"),
  3040. preyCapacity: math.unit(0.276549935, "people"),
  3041. name: "Side",
  3042. image: {
  3043. source: "./media/characters/rai/side.svg",
  3044. extra: 1789/1710,
  3045. bottom: 115/1904
  3046. },
  3047. form: "anthro"
  3048. },
  3049. back: {
  3050. height: math.unit(7 + 2/12, "feet"),
  3051. weight: math.unit(320, "kg"),
  3052. preyCapacity: math.unit(0.276549935, "people"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/rai/back.svg",
  3056. extra: 1770/1707,
  3057. bottom: 28/1798
  3058. },
  3059. form: "anthro"
  3060. },
  3061. feral: {
  3062. height: math.unit(9.5, "feet"),
  3063. weight: math.unit(640, "kg"),
  3064. preyCapacity: math.unit(4, "people"),
  3065. name: "Feral",
  3066. image: {
  3067. source: "./media/characters/rai/feral.svg",
  3068. extra: 945/553,
  3069. bottom: 176/1121
  3070. },
  3071. form: "feral",
  3072. default: true
  3073. },
  3074. dragon: {
  3075. height: math.unit(23, "feet"),
  3076. weight: math.unit(50000, "lb"),
  3077. name: "Dragon",
  3078. image: {
  3079. source: "./media/characters/rai/dragon.svg",
  3080. extra: 2498 / 2030,
  3081. bottom: 85.2 / 2584
  3082. },
  3083. form: "dragon",
  3084. default: true
  3085. },
  3086. maw: {
  3087. height: math.unit(1.69, "feet"),
  3088. name: "Maw",
  3089. image: {
  3090. source: "./media/characters/rai/maw.svg"
  3091. },
  3092. form: "anthro"
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(7 + 2/12, "feet"),
  3099. form: "anthro"
  3100. },
  3101. {
  3102. name: "Big",
  3103. height: math.unit(11, "feet"),
  3104. form: "anthro"
  3105. },
  3106. {
  3107. name: "Minimacro",
  3108. height: math.unit(77, "feet"),
  3109. form: "anthro"
  3110. },
  3111. {
  3112. name: "Macro",
  3113. height: math.unit(302, "feet"),
  3114. default: true,
  3115. form: "anthro"
  3116. },
  3117. {
  3118. name: "Normal",
  3119. height: math.unit(9.5, "feet"),
  3120. form: "feral",
  3121. default: true
  3122. },
  3123. {
  3124. name: "Normal",
  3125. height: math.unit(23, "feet"),
  3126. form: "dragon",
  3127. default: true
  3128. }
  3129. ],
  3130. {
  3131. "anthro": {
  3132. name: "Anthro",
  3133. default: true
  3134. },
  3135. "feral": {
  3136. name: "Feral",
  3137. },
  3138. "dragon": {
  3139. name: "Dragon",
  3140. },
  3141. }
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3145. {
  3146. frontDressed: {
  3147. height: math.unit(216, "feet"),
  3148. weight: math.unit(7000000, "lb"),
  3149. preyCapacity: math.unit(1321, "people"),
  3150. name: "Front (Dressed)",
  3151. image: {
  3152. source: "./media/characters/jazzy/front-dressed.svg",
  3153. extra: 2738 / 2651,
  3154. bottom: 41.8 / 2786
  3155. }
  3156. },
  3157. backDressed: {
  3158. height: math.unit(216, "feet"),
  3159. weight: math.unit(7000000, "lb"),
  3160. preyCapacity: math.unit(1321, "people"),
  3161. name: "Back (Dressed)",
  3162. image: {
  3163. source: "./media/characters/jazzy/back-dressed.svg",
  3164. extra: 2775 / 2673,
  3165. bottom: 36.8 / 2817
  3166. }
  3167. },
  3168. front: {
  3169. height: math.unit(216, "feet"),
  3170. weight: math.unit(7000000, "lb"),
  3171. preyCapacity: math.unit(1321, "people"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/jazzy/front.svg",
  3175. extra: 2738 / 2651,
  3176. bottom: 41.8 / 2786
  3177. }
  3178. },
  3179. back: {
  3180. height: math.unit(216, "feet"),
  3181. weight: math.unit(7000000, "lb"),
  3182. preyCapacity: math.unit(1321, "people"),
  3183. name: "Back",
  3184. image: {
  3185. source: "./media/characters/jazzy/back.svg",
  3186. extra: 2775 / 2673,
  3187. bottom: 36.8 / 2817
  3188. }
  3189. },
  3190. maw: {
  3191. height: math.unit(20, "feet"),
  3192. name: "Maw",
  3193. image: {
  3194. source: "./media/characters/jazzy/maw.svg"
  3195. }
  3196. },
  3197. paws: {
  3198. height: math.unit(27.5, "feet"),
  3199. name: "Paws",
  3200. image: {
  3201. source: "./media/characters/jazzy/paws.svg"
  3202. }
  3203. },
  3204. eye: {
  3205. height: math.unit(4.4, "feet"),
  3206. name: "Eye",
  3207. image: {
  3208. source: "./media/characters/jazzy/eye.svg"
  3209. }
  3210. },
  3211. droneOffense: {
  3212. height: math.unit(9.5, "inches"),
  3213. name: "Drone (Offense)",
  3214. image: {
  3215. source: "./media/characters/jazzy/drone-offense.svg"
  3216. }
  3217. },
  3218. droneRecon: {
  3219. height: math.unit(9.5, "inches"),
  3220. name: "Drone (Recon)",
  3221. image: {
  3222. source: "./media/characters/jazzy/drone-recon.svg"
  3223. }
  3224. },
  3225. droneDefense: {
  3226. height: math.unit(9.5, "inches"),
  3227. name: "Drone (Defense)",
  3228. image: {
  3229. source: "./media/characters/jazzy/drone-defense.svg"
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Macro",
  3236. height: math.unit(216, "feet"),
  3237. default: true
  3238. },
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(9 + 6/12, "feet"),
  3246. weight: math.unit(700, "lb"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/flamm/front.svg",
  3250. extra: 1736/1596,
  3251. bottom: 93/1829
  3252. }
  3253. },
  3254. buff: {
  3255. height: math.unit(9 + 6/12, "feet"),
  3256. weight: math.unit(950, "lb"),
  3257. name: "Buff",
  3258. image: {
  3259. source: "./media/characters/flamm/buff.svg",
  3260. extra: 3018/2874,
  3261. bottom: 221/3239
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(9.5, "feet")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(200, "feet"),
  3273. default: true
  3274. },
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(5 + 3/12, "feet"),
  3282. weight: math.unit(60, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/zephiro/front.svg",
  3286. extra: 1873/1761,
  3287. bottom: 147/2020
  3288. }
  3289. },
  3290. side: {
  3291. height: math.unit(5 + 3/12, "feet"),
  3292. weight: math.unit(60, "kg"),
  3293. name: "Side",
  3294. image: {
  3295. source: "./media/characters/zephiro/side.svg",
  3296. extra: 1929/1827,
  3297. bottom: 65/1994
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(5 + 3/12, "feet"),
  3302. weight: math.unit(60, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/zephiro/back.svg",
  3306. extra: 1926/1816,
  3307. bottom: 41/1967
  3308. }
  3309. },
  3310. hand: {
  3311. height: math.unit(0.68, "feet"),
  3312. name: "Hand",
  3313. image: {
  3314. source: "./media/characters/zephiro/hand.svg"
  3315. }
  3316. },
  3317. paw: {
  3318. height: math.unit(1, "feet"),
  3319. name: "Paw",
  3320. image: {
  3321. source: "./media/characters/zephiro/paw.svg"
  3322. }
  3323. },
  3324. beans: {
  3325. height: math.unit(0.93, "feet"),
  3326. name: "Beans",
  3327. image: {
  3328. source: "./media/characters/zephiro/beans.svg"
  3329. }
  3330. },
  3331. },
  3332. [
  3333. {
  3334. name: "Micro",
  3335. height: math.unit(3, "inches")
  3336. },
  3337. {
  3338. name: "Normal",
  3339. height: math.unit(5 + 3 / 12, "feet"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(118, "feet")
  3345. },
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(5, "feet"),
  3353. weight: math.unit(90, "kg"),
  3354. preyCapacity: math.unit(14, "people"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/fory/front.svg",
  3358. extra: 2862 / 2674,
  3359. bottom: 180 / 3043.8
  3360. },
  3361. form: "weaselbun",
  3362. default: true,
  3363. extraAttributes: {
  3364. "pawSize": {
  3365. name: "Paw Size",
  3366. power: 2,
  3367. type: "area",
  3368. base: math.unit(0.1596, "m^2")
  3369. },
  3370. "pawLength": {
  3371. name: "Paw Length",
  3372. power: 1,
  3373. type: "length",
  3374. base: math.unit(0.7, "m")
  3375. }
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(5, "feet"),
  3380. weight: math.unit(90, "kg"),
  3381. preyCapacity: math.unit(14, "people"),
  3382. name: "Back",
  3383. image: {
  3384. source: "./media/characters/fory/back.svg",
  3385. extra: 1790/1672,
  3386. bottom: 84/1874
  3387. },
  3388. form: "weaselbun",
  3389. extraAttributes: {
  3390. "pawSize": {
  3391. name: "Paw Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.1596, "m^2")
  3395. },
  3396. "pawLength": {
  3397. name: "Paw Length",
  3398. power: 1,
  3399. type: "length",
  3400. base: math.unit(0.7, "m")
  3401. }
  3402. }
  3403. },
  3404. paw: {
  3405. height: math.unit(2.14, "feet"),
  3406. name: "Paw",
  3407. image: {
  3408. source: "./media/characters/fory/paw.svg"
  3409. },
  3410. form: "weaselbun",
  3411. extraAttributes: {
  3412. "pawSize": {
  3413. name: "Paw Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.1596, "m^2")
  3417. },
  3418. "pawLength": {
  3419. name: "Paw Length",
  3420. power: 1,
  3421. type: "length",
  3422. base: math.unit(0.48, "m")
  3423. }
  3424. }
  3425. },
  3426. bunBack: {
  3427. height: math.unit(3, "feet"),
  3428. weight: math.unit(20, "kg"),
  3429. preyCapacity: math.unit(3, "people"),
  3430. name: "Back",
  3431. image: {
  3432. source: "./media/characters/fory/bun-back.svg",
  3433. extra: 1749/1564,
  3434. bottom: 246/1995
  3435. },
  3436. form: "bun",
  3437. default: true,
  3438. extraAttributes: {
  3439. "pawSize": {
  3440. name: "Paw Size",
  3441. power: 2,
  3442. type: "area",
  3443. base: math.unit(0.072, "m^2")
  3444. },
  3445. "pawLength": {
  3446. name: "Paw Length",
  3447. power: 1,
  3448. type: "length",
  3449. base: math.unit(0.45, "m")
  3450. }
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(5, "feet"),
  3458. form: "weaselbun"
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(50, "feet"),
  3463. default: true,
  3464. form: "weaselbun"
  3465. },
  3466. {
  3467. name: "Megamacro",
  3468. height: math.unit(10, "miles"),
  3469. form: "weaselbun"
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(5, "earths"),
  3474. form: "weaselbun"
  3475. },
  3476. {
  3477. name: "Normal",
  3478. height: math.unit(3, "feet"),
  3479. default: true,
  3480. form: "bun"
  3481. },
  3482. {
  3483. name: "Fun-Size",
  3484. height: math.unit(12, "feet"),
  3485. form: "bun"
  3486. },
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(100, "feet"),
  3490. form: "bun"
  3491. },
  3492. {
  3493. name: "Planetary",
  3494. height: math.unit(3, "earths"),
  3495. form: "bun"
  3496. },
  3497. ],
  3498. {
  3499. "weaselbun": {
  3500. name: "Weaselbun",
  3501. default: true
  3502. },
  3503. "bun": {
  3504. name: "Bun",
  3505. },
  3506. }
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(7, "feet"),
  3513. weight: math.unit(90, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/kurrikage/front.svg",
  3517. extra: 1845/1733,
  3518. bottom: 119/1964
  3519. }
  3520. },
  3521. back: {
  3522. height: math.unit(7, "feet"),
  3523. weight: math.unit(90, "kg"),
  3524. name: "Back",
  3525. image: {
  3526. source: "./media/characters/kurrikage/back.svg",
  3527. extra: 1790/1677,
  3528. bottom: 61/1851
  3529. }
  3530. },
  3531. dressed: {
  3532. height: math.unit(7, "feet"),
  3533. weight: math.unit(90, "kg"),
  3534. name: "Dressed",
  3535. image: {
  3536. source: "./media/characters/kurrikage/dressed.svg",
  3537. extra: 1845/1733,
  3538. bottom: 119/1964
  3539. }
  3540. },
  3541. foot: {
  3542. height: math.unit(1.5, "feet"),
  3543. name: "Foot",
  3544. image: {
  3545. source: "./media/characters/kurrikage/foot.svg"
  3546. }
  3547. },
  3548. staff: {
  3549. height: math.unit(6.7, "feet"),
  3550. name: "Staff",
  3551. image: {
  3552. source: "./media/characters/kurrikage/staff.svg"
  3553. }
  3554. },
  3555. peek: {
  3556. height: math.unit(1.05, "feet"),
  3557. name: "Peeking",
  3558. image: {
  3559. source: "./media/characters/kurrikage/peek.svg",
  3560. bottom: 0.08
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(12, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Big",
  3572. height: math.unit(20, "feet")
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(500, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(20, "miles")
  3581. },
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(75, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/shingo/front.svg",
  3593. extra: 1900/1825,
  3594. bottom: 82/1982
  3595. }
  3596. },
  3597. side: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/shingo/side.svg",
  3603. extra: 1930/1865,
  3604. bottom: 16/1946
  3605. }
  3606. },
  3607. back: {
  3608. height: math.unit(6, "feet"),
  3609. weight: math.unit(75, "kg"),
  3610. name: "Back",
  3611. image: {
  3612. source: "./media/characters/shingo/back.svg",
  3613. extra: 1922/1852,
  3614. bottom: 16/1938
  3615. }
  3616. },
  3617. frontDressed: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(150, "lb"),
  3620. name: "Front-dressed",
  3621. image: {
  3622. source: "./media/characters/shingo/front-dressed.svg",
  3623. extra: 1900/1825,
  3624. bottom: 82/1982
  3625. }
  3626. },
  3627. paw: {
  3628. height: math.unit(1.29, "feet"),
  3629. name: "Paw",
  3630. image: {
  3631. source: "./media/characters/shingo/paw.svg"
  3632. }
  3633. },
  3634. hand: {
  3635. height: math.unit(1.07, "feet"),
  3636. name: "Hand",
  3637. image: {
  3638. source: "./media/characters/shingo/hand.svg"
  3639. }
  3640. },
  3641. frontAlt: {
  3642. height: math.unit(6, "feet"),
  3643. weight: math.unit(75, "kg"),
  3644. name: "Front (Alt)",
  3645. image: {
  3646. source: "./media/characters/shingo/front-alt.svg",
  3647. extra: 3511 / 3338,
  3648. bottom: 0.005
  3649. }
  3650. },
  3651. frontAlt2: {
  3652. height: math.unit(6, "feet"),
  3653. weight: math.unit(75, "kg"),
  3654. name: "Front (Alt 2)",
  3655. image: {
  3656. source: "./media/characters/shingo/front-alt-2.svg",
  3657. extra: 706/681,
  3658. bottom: 11/717
  3659. }
  3660. },
  3661. pawAlt: {
  3662. height: math.unit(1, "feet"),
  3663. name: "Paw (Alt)",
  3664. image: {
  3665. source: "./media/characters/shingo/paw-alt.svg"
  3666. }
  3667. },
  3668. },
  3669. [
  3670. {
  3671. name: "Micro",
  3672. height: math.unit(4, "inches")
  3673. },
  3674. {
  3675. name: "Normal",
  3676. height: math.unit(6, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(108, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(1500, "feet")
  3686. },
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3691. {
  3692. side: {
  3693. height: math.unit(6, "feet"),
  3694. weight: math.unit(75, "kg"),
  3695. name: "Side",
  3696. image: {
  3697. source: "./media/characters/aigey/side.svg"
  3698. }
  3699. },
  3700. },
  3701. [
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(200, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "Megamacro",
  3709. height: math.unit(100, "miles")
  3710. },
  3711. ]
  3712. )
  3713. )
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(5 + 5 / 12, "feet"),
  3719. weight: math.unit(75, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/natasha/front.svg",
  3723. extra: 859 / 824,
  3724. bottom: 23 / 879.6
  3725. }
  3726. },
  3727. frontNsfw: {
  3728. height: math.unit(5 + 5 / 12, "feet"),
  3729. weight: math.unit(75, "kg"),
  3730. name: "Front (NSFW)",
  3731. image: {
  3732. source: "./media/characters/natasha/front-nsfw.svg",
  3733. extra: 859 / 824,
  3734. bottom: 23 / 879.6
  3735. }
  3736. },
  3737. frontErect: {
  3738. height: math.unit(5 + 5 / 12, "feet"),
  3739. weight: math.unit(75, "kg"),
  3740. name: "Front (Erect)",
  3741. image: {
  3742. source: "./media/characters/natasha/front-erect.svg",
  3743. extra: 859 / 824,
  3744. bottom: 23 / 879.6
  3745. }
  3746. },
  3747. back: {
  3748. height: math.unit(5 + 5 / 12, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Back",
  3751. image: {
  3752. source: "./media/characters/natasha/back.svg",
  3753. extra: 887.9 / 852.6,
  3754. bottom: 9.7 / 896.4
  3755. }
  3756. },
  3757. backAlt: {
  3758. height: math.unit(5 + 5 / 12, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back (Alt)",
  3761. image: {
  3762. source: "./media/characters/natasha/back-alt.svg",
  3763. extra: 1236.7 / 1192,
  3764. bottom: 22.3 / 1258.2
  3765. }
  3766. },
  3767. dick: {
  3768. height: math.unit(1.772, "feet"),
  3769. name: "Dick",
  3770. image: {
  3771. source: "./media/characters/natasha/dick.svg"
  3772. }
  3773. },
  3774. paw: {
  3775. height: math.unit(0.250, "meters"),
  3776. name: "Paw",
  3777. image: {
  3778. source: "./media/characters/natasha/paw.svg"
  3779. },
  3780. extraAttributes: {
  3781. "toeSize": {
  3782. name: "Toe Size",
  3783. power: 2,
  3784. type: "area",
  3785. base: math.unit(0.0024, "m^2")
  3786. },
  3787. "padSize": {
  3788. name: "Pad Size",
  3789. power: 2,
  3790. type: "area",
  3791. base: math.unit(0.00889, "m^2")
  3792. },
  3793. "pawSize": {
  3794. name: "Paw Size",
  3795. power: 2,
  3796. type: "area",
  3797. base: math.unit(0.023667, "m^2")
  3798. },
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Shortstack",
  3805. height: math.unit(3, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Normal",
  3810. height: math.unit(5 + 5 / 12, "feet")
  3811. },
  3812. {
  3813. name: "Large",
  3814. height: math.unit(12, "feet")
  3815. },
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(100, "feet")
  3819. },
  3820. {
  3821. name: "Macro+",
  3822. height: math.unit(260, "feet")
  3823. },
  3824. {
  3825. name: "Macro++",
  3826. height: math.unit(1, "mile")
  3827. },
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/malik/front.svg",
  3839. extra: 1750/1561,
  3840. bottom: 80/1830
  3841. },
  3842. extraAttributes: {
  3843. "toeSize": {
  3844. name: "Toe Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.0159, "m^2")
  3848. },
  3849. "pawSize": {
  3850. name: "Paw Size",
  3851. power: 2,
  3852. type: "area",
  3853. base: math.unit(0.09834, "m^2")
  3854. },
  3855. }
  3856. },
  3857. side: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(75, "kg"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/malik/side.svg",
  3863. extra: 1802/1685,
  3864. bottom: 42/1844
  3865. },
  3866. extraAttributes: {
  3867. "toeSize": {
  3868. name: "Toe Size",
  3869. power: 2,
  3870. type: "area",
  3871. base: math.unit(0.0159, "m^2")
  3872. },
  3873. "pawSize": {
  3874. name: "Paw Size",
  3875. power: 2,
  3876. type: "area",
  3877. base: math.unit(0.09834, "m^2")
  3878. },
  3879. }
  3880. },
  3881. back: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(75, "kg"),
  3884. name: "Back",
  3885. image: {
  3886. source: "./media/characters/malik/back.svg",
  3887. extra: 1803/1607,
  3888. bottom: 33/1836
  3889. },
  3890. extraAttributes: {
  3891. "toeSize": {
  3892. name: "Toe Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.0159, "m^2")
  3896. },
  3897. "pawSize": {
  3898. name: "Paw Size",
  3899. power: 2,
  3900. type: "area",
  3901. base: math.unit(0.09834, "m^2")
  3902. },
  3903. }
  3904. },
  3905. },
  3906. [
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(156, "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Macro+",
  3914. height: math.unit(1188, "feet")
  3915. },
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(75, "kg"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/sefer/front.svg",
  3927. extra: 848 / 659,
  3928. bottom: 28.3 / 876.442
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/sefer/back.svg",
  3937. extra: 864 / 695,
  3938. bottom: 10 / 871
  3939. }
  3940. },
  3941. frontDressed: {
  3942. height: math.unit(6, "feet"),
  3943. weight: math.unit(75, "kg"),
  3944. name: "Dressed",
  3945. image: {
  3946. source: "./media/characters/sefer/dressed.svg",
  3947. extra: 839 / 653,
  3948. bottom: 37.6 / 878
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(6, "feet"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Big",
  3960. height: math.unit(8, "meters")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3966. {
  3967. body: {
  3968. height: math.unit(2.2428, "meter"),
  3969. weight: math.unit(124.738, "kg"),
  3970. name: "Body",
  3971. image: {
  3972. extra: 1225 / 1050,
  3973. source: "./media/characters/north/front.svg"
  3974. }
  3975. }
  3976. },
  3977. [
  3978. {
  3979. name: "Micro",
  3980. height: math.unit(4, "inches")
  3981. },
  3982. {
  3983. name: "Macro",
  3984. height: math.unit(63, "meters")
  3985. },
  3986. {
  3987. name: "Megamacro",
  3988. height: math.unit(101, "miles"),
  3989. default: true
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3995. {
  3996. angled: {
  3997. height: math.unit(4, "meter"),
  3998. weight: math.unit(150, "kg"),
  3999. name: "Angled",
  4000. image: {
  4001. source: "./media/characters/talan/angled-sfw.svg",
  4002. bottom: 29 / 3734
  4003. }
  4004. },
  4005. angledNsfw: {
  4006. height: math.unit(4, "meter"),
  4007. weight: math.unit(150, "kg"),
  4008. name: "Angled (NSFW)",
  4009. image: {
  4010. source: "./media/characters/talan/angled-nsfw.svg",
  4011. bottom: 29 / 3734
  4012. }
  4013. },
  4014. frontNsfw: {
  4015. height: math.unit(4, "meter"),
  4016. weight: math.unit(150, "kg"),
  4017. name: "Front (NSFW)",
  4018. image: {
  4019. source: "./media/characters/talan/front-nsfw.svg",
  4020. bottom: 29 / 3734
  4021. }
  4022. },
  4023. sideNsfw: {
  4024. height: math.unit(4, "meter"),
  4025. weight: math.unit(150, "kg"),
  4026. name: "Side (NSFW)",
  4027. image: {
  4028. source: "./media/characters/talan/side-nsfw.svg",
  4029. bottom: 29 / 3734
  4030. }
  4031. },
  4032. back: {
  4033. height: math.unit(4, "meter"),
  4034. weight: math.unit(150, "kg"),
  4035. name: "Back",
  4036. image: {
  4037. source: "./media/characters/talan/back.svg"
  4038. }
  4039. },
  4040. dickBottom: {
  4041. height: math.unit(0.621, "meter"),
  4042. name: "Dick (Bottom)",
  4043. image: {
  4044. source: "./media/characters/talan/dick-bottom.svg"
  4045. }
  4046. },
  4047. dickTop: {
  4048. height: math.unit(0.621, "meter"),
  4049. name: "Dick (Top)",
  4050. image: {
  4051. source: "./media/characters/talan/dick-top.svg"
  4052. }
  4053. },
  4054. dickSide: {
  4055. height: math.unit(0.305, "meter"),
  4056. name: "Dick (Side)",
  4057. image: {
  4058. source: "./media/characters/talan/dick-side.svg"
  4059. }
  4060. },
  4061. dickFront: {
  4062. height: math.unit(0.305, "meter"),
  4063. name: "Dick (Front)",
  4064. image: {
  4065. source: "./media/characters/talan/dick-front.svg"
  4066. }
  4067. },
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(4, "meters")
  4073. },
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(100, "meters")
  4077. },
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(2, "miles"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(5000, "miles")
  4086. },
  4087. {
  4088. name: "Teramacro",
  4089. height: math.unit(100, "parsecs")
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(90, "kg"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/gael'rathus/front.svg"
  4102. }
  4103. },
  4104. frontAlt: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(90, "kg"),
  4107. name: "Front (alt)",
  4108. image: {
  4109. source: "./media/characters/gael'rathus/front-alt.svg"
  4110. }
  4111. },
  4112. frontAlt2: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(90, "kg"),
  4115. name: "Front (alt 2)",
  4116. image: {
  4117. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4118. }
  4119. }
  4120. },
  4121. [
  4122. {
  4123. name: "Normal",
  4124. height: math.unit(9, "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Large",
  4129. height: math.unit(25, "feet")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(0.25, "miles")
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(10, "miles")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4143. {
  4144. side: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(140, "kg"),
  4147. name: "Side",
  4148. image: {
  4149. source: "./media/characters/sosha/side.svg",
  4150. extra: 1170/1006,
  4151. bottom: 94/1264
  4152. }
  4153. },
  4154. maw: {
  4155. height: math.unit(2.87, "feet"),
  4156. name: "Maw",
  4157. image: {
  4158. source: "./media/characters/sosha/maw.svg",
  4159. extra: 966/865,
  4160. bottom: 0/966
  4161. }
  4162. },
  4163. cooch: {
  4164. height: math.unit(5.6, "feet"),
  4165. name: "Cooch",
  4166. image: {
  4167. source: "./media/characters/sosha/cooch.svg"
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(12, "feet"),
  4175. default: true
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4181. {
  4182. side: {
  4183. height: math.unit(5 + 5 / 12, "feet"),
  4184. weight: math.unit(170, "kg"),
  4185. name: "Side",
  4186. image: {
  4187. source: "./media/characters/runnola/side.svg",
  4188. extra: 741 / 448,
  4189. bottom: 0.05
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Small",
  4196. height: math.unit(3, "feet")
  4197. },
  4198. {
  4199. name: "Normal",
  4200. height: math.unit(5 + 5 / 12, "feet"),
  4201. default: true
  4202. },
  4203. {
  4204. name: "Big",
  4205. height: math.unit(10, "feet")
  4206. },
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(50, "kg"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/kurribird/front.svg",
  4218. bottom: 0.015
  4219. }
  4220. },
  4221. frontAlt: {
  4222. height: math.unit(1.5, "meter"),
  4223. weight: math.unit(50, "kg"),
  4224. name: "Front (Alt)",
  4225. image: {
  4226. source: "./media/characters/kurribird/front-alt.svg",
  4227. extra: 1.45
  4228. }
  4229. },
  4230. },
  4231. [
  4232. {
  4233. name: "Normal",
  4234. height: math.unit(7, "feet")
  4235. },
  4236. {
  4237. name: "Big",
  4238. height: math.unit(12, "feet"),
  4239. default: true
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(1500, "feet")
  4244. },
  4245. {
  4246. name: "Megamacro",
  4247. height: math.unit(2, "miles")
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(80, "kg"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/elbial/front.svg",
  4260. extra: 1643 / 1556,
  4261. bottom: 60.2 / 1696
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(80, "kg"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/elbial/side.svg",
  4270. extra: 1601/1528,
  4271. bottom: 97/1698
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(2, "meter"),
  4276. weight: math.unit(80, "kg"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/elbial/back.svg",
  4280. extra: 1653/1569,
  4281. bottom: 20/1673
  4282. }
  4283. },
  4284. frontDressed: {
  4285. height: math.unit(2, "meter"),
  4286. weight: math.unit(80, "kg"),
  4287. name: "Front (Dressed)",
  4288. image: {
  4289. source: "./media/characters/elbial/front-dressed.svg",
  4290. extra: 1638/1569,
  4291. bottom: 70/1708
  4292. }
  4293. },
  4294. genitals: {
  4295. height: math.unit(2 / 3.367, "meter"),
  4296. name: "Genitals",
  4297. image: {
  4298. source: "./media/characters/elbial/genitals.svg"
  4299. }
  4300. },
  4301. },
  4302. [
  4303. {
  4304. name: "Large",
  4305. height: math.unit(100, "feet")
  4306. },
  4307. {
  4308. name: "Macro",
  4309. height: math.unit(500, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Megamacro",
  4314. height: math.unit(10, "miles")
  4315. },
  4316. {
  4317. name: "Gigamacro",
  4318. height: math.unit(25000, "miles")
  4319. },
  4320. {
  4321. name: "Full-Size",
  4322. height: math.unit(8000000, "gigaparsecs")
  4323. }
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4328. {
  4329. front: {
  4330. height: math.unit(2, "meter"),
  4331. weight: math.unit(60, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/noah/front.svg"
  4335. }
  4336. },
  4337. talons: {
  4338. height: math.unit(0.315, "meter"),
  4339. name: "Talons",
  4340. image: {
  4341. source: "./media/characters/noah/talons.svg"
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Large",
  4348. height: math.unit(50, "feet")
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(750, "feet"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Megamacro",
  4357. height: math.unit(50, "miles")
  4358. },
  4359. {
  4360. name: "Gigamacro",
  4361. height: math.unit(100000, "miles")
  4362. },
  4363. {
  4364. name: "Full-Size",
  4365. height: math.unit(3000000000, "miles")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/natalya/front.svg"
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/natalya/back.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(150, "feet"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(5, "miles")
  4398. },
  4399. {
  4400. name: "Full-Size",
  4401. height: math.unit(600, "kiloparsecs")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(2, "meter"),
  4410. weight: math.unit(50, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/erestrebah/front.svg",
  4414. extra: 1262/1162,
  4415. bottom: 96/1358
  4416. }
  4417. },
  4418. back: {
  4419. height: math.unit(2, "meter"),
  4420. weight: math.unit(50, "kg"),
  4421. name: "Back",
  4422. image: {
  4423. source: "./media/characters/erestrebah/back.svg",
  4424. extra: 1257/1139,
  4425. bottom: 13/1270
  4426. }
  4427. },
  4428. wing: {
  4429. height: math.unit(2, "meter"),
  4430. weight: math.unit(50, "kg"),
  4431. name: "Wing",
  4432. image: {
  4433. source: "./media/characters/erestrebah/wing.svg",
  4434. extra: 1262/1162,
  4435. bottom: 96/1358
  4436. }
  4437. },
  4438. mouth: {
  4439. height: math.unit(0.39, "feet"),
  4440. name: "Mouth",
  4441. image: {
  4442. source: "./media/characters/erestrebah/mouth.svg"
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(10, "feet")
  4450. },
  4451. {
  4452. name: "Large",
  4453. height: math.unit(50, "feet"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(300, "feet")
  4459. },
  4460. {
  4461. name: "Macro+",
  4462. height: math.unit(750, "feet")
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(3, "miles")
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4472. {
  4473. front: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(80, "kg"),
  4476. name: "Front",
  4477. image: {
  4478. source: "./media/characters/jennifer/front.svg",
  4479. bottom: 0.11,
  4480. extra: 1.16
  4481. }
  4482. },
  4483. frontAlt: {
  4484. height: math.unit(2, "meter"),
  4485. weight: math.unit(80, "kg"),
  4486. name: "Front (Alt)",
  4487. image: {
  4488. source: "./media/characters/jennifer/front-alt.svg"
  4489. }
  4490. }
  4491. },
  4492. [
  4493. {
  4494. name: "Canon Height",
  4495. height: math.unit(120, "feet"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Macro+",
  4500. height: math.unit(300, "feet")
  4501. },
  4502. {
  4503. name: "Megamacro",
  4504. height: math.unit(20000, "feet")
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(2, "meter"),
  4513. weight: math.unit(50, "kg"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/kalista/front.svg",
  4517. extra: 1314/1145,
  4518. bottom: 101/1415
  4519. }
  4520. },
  4521. back: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(50, "kg"),
  4524. name: "Back",
  4525. image: {
  4526. source: "./media/characters/kalista/back.svg",
  4527. extra: 1366 / 1156,
  4528. bottom: 33.9 / 1362.78
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Uncomfortably Small",
  4535. height: math.unit(10, "feet")
  4536. },
  4537. {
  4538. name: "Small",
  4539. height: math.unit(30, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(100, "feet"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Macro+",
  4548. height: math.unit(2000, "feet")
  4549. },
  4550. {
  4551. name: "True Form",
  4552. height: math.unit(8924, "miles")
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(2, "meter"),
  4561. weight: math.unit(120, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/ggv/front.svg"
  4565. }
  4566. },
  4567. side: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(120, "kg"),
  4570. name: "Side",
  4571. image: {
  4572. source: "./media/characters/ggv/side.svg"
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Extremely Puny",
  4579. height: math.unit(9 + 5 / 12, "feet")
  4580. },
  4581. {
  4582. name: "Horribly Small",
  4583. height: math.unit(47.7, "miles"),
  4584. default: true
  4585. },
  4586. {
  4587. name: "Reasonably Sized",
  4588. height: math.unit(25000, "parsecs")
  4589. },
  4590. {
  4591. name: "Slightly Uncompressed",
  4592. height: math.unit(7.77e31, "parsecs")
  4593. },
  4594. {
  4595. name: "Omniversal",
  4596. height: math.unit(1e300, "meters")
  4597. },
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(2, "meter"),
  4605. weight: math.unit(75, "lb"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/napalm/front.svg"
  4609. }
  4610. },
  4611. back: {
  4612. height: math.unit(2, "meter"),
  4613. weight: math.unit(75, "lb"),
  4614. name: "Back",
  4615. image: {
  4616. source: "./media/characters/napalm/back.svg"
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Standard",
  4623. height: math.unit(55, "feet"),
  4624. default: true
  4625. }
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4630. {
  4631. front: {
  4632. height: math.unit(7 + 5 / 6, "feet"),
  4633. weight: math.unit(325, "lb"),
  4634. name: "Front",
  4635. image: {
  4636. source: "./media/characters/asana/front.svg",
  4637. extra: 1133 / 1060,
  4638. bottom: 15.2 / 1148.6
  4639. }
  4640. },
  4641. back: {
  4642. height: math.unit(7 + 5 / 6, "feet"),
  4643. weight: math.unit(325, "lb"),
  4644. name: "Back",
  4645. image: {
  4646. source: "./media/characters/asana/back.svg",
  4647. extra: 1114 / 1043,
  4648. bottom: 5 / 1120
  4649. }
  4650. },
  4651. dressedDark: {
  4652. height: math.unit(7 + 5 / 6, "feet"),
  4653. weight: math.unit(325, "lb"),
  4654. name: "Dressed (Dark)",
  4655. image: {
  4656. source: "./media/characters/asana/dressed-dark.svg",
  4657. extra: 1133 / 1060,
  4658. bottom: 15.2 / 1148.6
  4659. }
  4660. },
  4661. dressedLight: {
  4662. height: math.unit(7 + 5 / 6, "feet"),
  4663. weight: math.unit(325, "lb"),
  4664. name: "Dressed (Light)",
  4665. image: {
  4666. source: "./media/characters/asana/dressed-light.svg",
  4667. extra: 1133 / 1060,
  4668. bottom: 15.2 / 1148.6
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "Standard",
  4675. height: math.unit(7 + 5 / 6, "feet"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "Large",
  4680. height: math.unit(10, "meters")
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(2500, "meters")
  4685. },
  4686. {
  4687. name: "Megamacro",
  4688. height: math.unit(5e6, "meters")
  4689. },
  4690. {
  4691. name: "Examacro",
  4692. height: math.unit(5e12, "lightyears")
  4693. },
  4694. {
  4695. name: "Max Size",
  4696. height: math.unit(1e31, "lightyears")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meter"),
  4705. weight: math.unit(60, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/ebony/front.svg",
  4709. bottom: 0.03,
  4710. extra: 1045 / 810 + 0.03
  4711. }
  4712. },
  4713. side: {
  4714. height: math.unit(2, "meter"),
  4715. weight: math.unit(60, "kg"),
  4716. name: "Side",
  4717. image: {
  4718. source: "./media/characters/ebony/side.svg",
  4719. bottom: 0.03,
  4720. extra: 1045 / 810 + 0.03
  4721. }
  4722. },
  4723. back: {
  4724. height: math.unit(2, "meter"),
  4725. weight: math.unit(60, "kg"),
  4726. name: "Back",
  4727. image: {
  4728. source: "./media/characters/ebony/back.svg",
  4729. bottom: 0.01,
  4730. extra: 1045 / 810 + 0.01
  4731. }
  4732. },
  4733. },
  4734. [
  4735. // TODO check why I did this lol
  4736. {
  4737. name: "Standard",
  4738. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(200, "feet")
  4744. },
  4745. {
  4746. name: "Gigamacro",
  4747. height: math.unit(13000, "km")
  4748. }
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4753. {
  4754. front: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(175, "lb"),
  4757. name: "Front",
  4758. image: {
  4759. source: "./media/characters/mountain/front.svg",
  4760. extra: 972 / 955,
  4761. bottom: 64 / 1036.6
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(175, "lb"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/mountain/back.svg",
  4770. extra: 970 / 950,
  4771. bottom: 28.25 / 999
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Large",
  4778. height: math.unit(20, "meters")
  4779. },
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(300, "meters")
  4783. },
  4784. {
  4785. name: "Gigamacro",
  4786. height: math.unit(10000, "km"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Examacro",
  4791. height: math.unit(10e9, "lightyears")
  4792. }
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4797. {
  4798. front: {
  4799. height: math.unit(8, "feet"),
  4800. weight: math.unit(500, "lb"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/rick/front.svg"
  4804. }
  4805. }
  4806. },
  4807. [
  4808. {
  4809. name: "Normal",
  4810. height: math.unit(8, "feet"),
  4811. default: true
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(5, "km")
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4821. {
  4822. front: {
  4823. height: math.unit(8, "feet"),
  4824. weight: math.unit(120, "lb"),
  4825. name: "Front",
  4826. image: {
  4827. source: "./media/characters/ona/front.svg"
  4828. }
  4829. },
  4830. frontAlt: {
  4831. height: math.unit(8, "feet"),
  4832. weight: math.unit(120, "lb"),
  4833. name: "Front (Alt)",
  4834. image: {
  4835. source: "./media/characters/ona/front-alt.svg"
  4836. }
  4837. },
  4838. back: {
  4839. height: math.unit(8, "feet"),
  4840. weight: math.unit(120, "lb"),
  4841. name: "Back",
  4842. image: {
  4843. source: "./media/characters/ona/back.svg"
  4844. }
  4845. },
  4846. foot: {
  4847. height: math.unit(1.1, "feet"),
  4848. name: "Foot",
  4849. image: {
  4850. source: "./media/characters/ona/foot.svg"
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Megamacro",
  4857. height: math.unit(70, "km"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Gigamacro",
  4862. height: math.unit(681818, "miles")
  4863. },
  4864. {
  4865. name: "Examacro",
  4866. height: math.unit(3800000, "lightyears")
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4872. {
  4873. front: {
  4874. height: math.unit(12, "feet"),
  4875. weight: math.unit(3000, "lb"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/mech/front.svg",
  4879. extra: 2900 / 2770,
  4880. bottom: 110 / 3010
  4881. }
  4882. },
  4883. back: {
  4884. height: math.unit(12, "feet"),
  4885. weight: math.unit(3000, "lb"),
  4886. name: "Back",
  4887. image: {
  4888. source: "./media/characters/mech/back.svg",
  4889. extra: 3011 / 2890,
  4890. bottom: 94 / 3105
  4891. }
  4892. },
  4893. maw: {
  4894. height: math.unit(3.07, "feet"),
  4895. name: "Maw",
  4896. image: {
  4897. source: "./media/characters/mech/maw.svg"
  4898. }
  4899. },
  4900. head: {
  4901. height: math.unit(3.07, "feet"),
  4902. name: "Head",
  4903. image: {
  4904. source: "./media/characters/mech/head.svg"
  4905. }
  4906. },
  4907. dick: {
  4908. height: math.unit(1.43, "feet"),
  4909. name: "Dick",
  4910. image: {
  4911. source: "./media/characters/mech/dick.svg"
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(12, "feet")
  4919. },
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(300, "feet"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Macro+",
  4927. height: math.unit(1500, "feet")
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(1.3, "meter"),
  4936. weight: math.unit(30, "kg"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/gregory/front.svg",
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(1.3, "meter"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(20, "meter")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(2.8, "meter"),
  4960. weight: math.unit(200, "kg"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/elory/front.svg",
  4964. }
  4965. }
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(2.8, "meter"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(38, "meter")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(470, "feet"),
  4984. weight: math.unit(924, "tons"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/angelpatamon/front.svg",
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(470, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Deity Size I",
  4999. height: math.unit(28651.2, "km")
  5000. },
  5001. {
  5002. name: "Deity Size II",
  5003. height: math.unit(171907.2, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5009. {
  5010. side: {
  5011. height: math.unit(7.2, "meter"),
  5012. weight: math.unit(8.2, "tons"),
  5013. name: "Side",
  5014. image: {
  5015. source: "./media/characters/cryae/side.svg",
  5016. extra: 3500 / 1500
  5017. }
  5018. }
  5019. },
  5020. [
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(7.2, "meter"),
  5024. default: true
  5025. }
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(175, "lb"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/xera/front.svg",
  5037. extra: 2377 / 1972,
  5038. bottom: 75.5 / 2452
  5039. }
  5040. },
  5041. side: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(175, "lb"),
  5044. name: "Side",
  5045. image: {
  5046. source: "./media/characters/xera/side.svg",
  5047. extra: 2345 / 2019,
  5048. bottom: 39.7 / 2384
  5049. }
  5050. },
  5051. back: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(175, "lb"),
  5054. name: "Back",
  5055. image: {
  5056. source: "./media/characters/xera/back.svg",
  5057. extra: 2095 / 1984,
  5058. bottom: 67 / 2166
  5059. }
  5060. },
  5061. },
  5062. [
  5063. {
  5064. name: "Small",
  5065. height: math.unit(10, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(500, "meters"),
  5070. default: true
  5071. },
  5072. {
  5073. name: "Macro+",
  5074. height: math.unit(10, "km")
  5075. },
  5076. {
  5077. name: "Gigamacro",
  5078. height: math.unit(25000, "km")
  5079. },
  5080. {
  5081. name: "Teramacro",
  5082. height: math.unit(3e6, "km")
  5083. }
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5088. {
  5089. front: {
  5090. height: math.unit(6, "feet"),
  5091. weight: math.unit(175, "lb"),
  5092. name: "Front",
  5093. image: {
  5094. source: "./media/characters/nebula/front.svg",
  5095. extra: 2566 / 2362,
  5096. bottom: 81 / 2644
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Small",
  5103. height: math.unit(4.5, "meters")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(1500, "meters"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(150, "km")
  5113. },
  5114. {
  5115. name: "Gigamacro",
  5116. height: math.unit(27000, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(225, "lb"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/abysgar/front.svg",
  5129. extra: 1739/1614,
  5130. bottom: 71/1810
  5131. }
  5132. },
  5133. frontNsfw: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(225, "lb"),
  5136. name: "Front (NSFW)",
  5137. image: {
  5138. source: "./media/characters/abysgar/front-nsfw.svg",
  5139. extra: 1739/1614,
  5140. bottom: 71/1810
  5141. }
  5142. },
  5143. back: {
  5144. height: math.unit(4.6, "feet"),
  5145. weight: math.unit(225, "lb"),
  5146. name: "Back",
  5147. image: {
  5148. source: "./media/characters/abysgar/back.svg",
  5149. extra: 1384/1327,
  5150. bottom: 0/1384
  5151. }
  5152. },
  5153. head: {
  5154. height: math.unit(1.25, "feet"),
  5155. name: "Head",
  5156. image: {
  5157. source: "./media/characters/abysgar/head.svg",
  5158. extra: 669/569,
  5159. bottom: 0/669
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Small",
  5166. height: math.unit(4.5, "meters")
  5167. },
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(1250, "meters"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Megamacro",
  5175. height: math.unit(125, "km")
  5176. },
  5177. {
  5178. name: "Gigamacro",
  5179. height: math.unit(26000, "km")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lb"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/yakuz/front.svg"
  5192. }
  5193. }
  5194. },
  5195. [
  5196. {
  5197. name: "Small",
  5198. height: math.unit(5, "meters")
  5199. },
  5200. {
  5201. name: "Macro",
  5202. height: math.unit(1500, "meters"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Megamacro",
  5207. height: math.unit(200, "km")
  5208. },
  5209. {
  5210. name: "Gigamacro",
  5211. height: math.unit(100000, "km")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(175, "lb"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/mirova/front.svg",
  5224. extra: 3334 / 3071,
  5225. bottom: 42 / 3375.6
  5226. }
  5227. }
  5228. },
  5229. [
  5230. {
  5231. name: "Small",
  5232. height: math.unit(5, "meters")
  5233. },
  5234. {
  5235. name: "Macro",
  5236. height: math.unit(900, "meters"),
  5237. default: true
  5238. },
  5239. {
  5240. name: "Megamacro",
  5241. height: math.unit(135, "km")
  5242. },
  5243. {
  5244. name: "Gigamacro",
  5245. height: math.unit(20000, "km")
  5246. }
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5251. {
  5252. side: {
  5253. height: math.unit(28.35, "feet"),
  5254. weight: math.unit(99.75, "tons"),
  5255. name: "Side",
  5256. image: {
  5257. source: "./media/characters/asana-mech/side.svg",
  5258. extra: 923 / 699,
  5259. bottom: 50 / 975
  5260. }
  5261. },
  5262. chaingun: {
  5263. height: math.unit(7, "feet"),
  5264. weight: math.unit(2400, "lb"),
  5265. name: "Chaingun",
  5266. image: {
  5267. source: "./media/characters/asana-mech/chaingun.svg"
  5268. }
  5269. },
  5270. laser: {
  5271. height: math.unit(7.12, "feet"),
  5272. weight: math.unit(2000, "lb"),
  5273. name: "Laser",
  5274. image: {
  5275. source: "./media/characters/asana-mech/laser.svg"
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(28.35, "feet"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(2500, "feet")
  5288. },
  5289. {
  5290. name: "Megamacro",
  5291. height: math.unit(25, "miles")
  5292. },
  5293. {
  5294. name: "Examacro",
  5295. height: math.unit(6e8, "lightyears")
  5296. },
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5301. {
  5302. front: {
  5303. height: math.unit(5, "meters"),
  5304. weight: math.unit(1000, "kg"),
  5305. name: "Front",
  5306. image: {
  5307. source: "./media/characters/asche/front.svg",
  5308. extra: 1258 / 1190,
  5309. bottom: 47 / 1305
  5310. }
  5311. },
  5312. frontUnderwear: {
  5313. height: math.unit(5, "meters"),
  5314. weight: math.unit(1000, "kg"),
  5315. name: "Front (Underwear)",
  5316. image: {
  5317. source: "./media/characters/asche/front-underwear.svg",
  5318. extra: 1258 / 1190,
  5319. bottom: 47 / 1305
  5320. }
  5321. },
  5322. frontDressed: {
  5323. height: math.unit(5, "meters"),
  5324. weight: math.unit(1000, "kg"),
  5325. name: "Front (Dressed)",
  5326. image: {
  5327. source: "./media/characters/asche/front-dressed.svg",
  5328. extra: 1258 / 1190,
  5329. bottom: 47 / 1305
  5330. }
  5331. },
  5332. frontArmor: {
  5333. height: math.unit(5, "meters"),
  5334. weight: math.unit(1000, "kg"),
  5335. name: "Front (Armored)",
  5336. image: {
  5337. source: "./media/characters/asche/front-armored.svg",
  5338. extra: 1374 / 1308,
  5339. bottom: 23 / 1397
  5340. }
  5341. },
  5342. mp724: {
  5343. height: math.unit(0.96, "meters"),
  5344. weight: math.unit(38, "kg"),
  5345. name: "H&K MP724",
  5346. image: {
  5347. source: "./media/characters/asche/h&k-mp724.svg"
  5348. }
  5349. },
  5350. side: {
  5351. height: math.unit(5, "meters"),
  5352. weight: math.unit(1000, "kg"),
  5353. name: "Side",
  5354. image: {
  5355. source: "./media/characters/asche/side.svg",
  5356. extra: 1717 / 1609,
  5357. bottom: 0.005
  5358. }
  5359. },
  5360. back: {
  5361. height: math.unit(5, "meters"),
  5362. weight: math.unit(1000, "kg"),
  5363. name: "Back",
  5364. image: {
  5365. source: "./media/characters/asche/back.svg",
  5366. extra: 1570 / 1501
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "DEFCON 5",
  5373. height: math.unit(5, "meters")
  5374. },
  5375. {
  5376. name: "DEFCON 4",
  5377. height: math.unit(500, "meters"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "DEFCON 3",
  5382. height: math.unit(5, "km")
  5383. },
  5384. {
  5385. name: "DEFCON 2",
  5386. height: math.unit(500, "km")
  5387. },
  5388. {
  5389. name: "DEFCON 1",
  5390. height: math.unit(500000, "km")
  5391. },
  5392. {
  5393. name: "DEFCON 0",
  5394. height: math.unit(3, "gigaparsecs")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(7, "feet"),
  5403. weight: math.unit(92.7, "kg"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/gale/front.svg",
  5407. extra: 977/919,
  5408. bottom: 105/1082
  5409. }
  5410. },
  5411. side: {
  5412. height: math.unit(6.7, "feet"),
  5413. weight: math.unit(92.7, "kg"),
  5414. name: "Side",
  5415. image: {
  5416. source: "./media/characters/gale/side.svg",
  5417. extra: 978/922,
  5418. bottom: 140/1118
  5419. }
  5420. },
  5421. back: {
  5422. height: math.unit(7, "feet"),
  5423. weight: math.unit(92.7, "kg"),
  5424. name: "Back",
  5425. image: {
  5426. source: "./media/characters/gale/back.svg",
  5427. extra: 966/920,
  5428. bottom: 61/1027
  5429. }
  5430. },
  5431. maw: {
  5432. height: math.unit(2.23, "feet"),
  5433. name: "Maw",
  5434. image: {
  5435. source: "./media/characters/gale/maw.svg"
  5436. }
  5437. },
  5438. foot: {
  5439. height: math.unit(2.1, "feet"),
  5440. name: "Foot",
  5441. image: {
  5442. source: "./media/characters/gale/foot.svg"
  5443. }
  5444. },
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(7, "feet")
  5450. },
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(150, "feet"),
  5454. default: true
  5455. },
  5456. {
  5457. name: "Macro+",
  5458. height: math.unit(300, "feet")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5464. {
  5465. front: {
  5466. height: math.unit(5 + 10/12, "feet"),
  5467. weight: math.unit(67, "kg"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/draylen/front.svg",
  5471. extra: 832/777,
  5472. bottom: 85/917
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(5 + 10/12, "feet")
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(150, "feet"),
  5484. default: true
  5485. }
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5490. {
  5491. front: {
  5492. height: math.unit(7 + 9 / 12, "feet"),
  5493. weight: math.unit(379, "lbs"),
  5494. name: "Front",
  5495. image: {
  5496. source: "./media/characters/chez/front.svg"
  5497. }
  5498. },
  5499. side: {
  5500. height: math.unit(7 + 9 / 12, "feet"),
  5501. weight: math.unit(379, "lbs"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/chez/side.svg"
  5505. }
  5506. }
  5507. },
  5508. [
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(7 + 9 / 12, "feet"),
  5512. default: true
  5513. },
  5514. {
  5515. name: "God King",
  5516. height: math.unit(9750000, "meters")
  5517. }
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5522. {
  5523. front: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(275, "lbs"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/kaylum/front.svg",
  5529. bottom: 0.01,
  5530. extra: 1166 / 1031
  5531. }
  5532. },
  5533. frontWingless: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(275, "lbs"),
  5536. name: "Front (Wingless)",
  5537. image: {
  5538. source: "./media/characters/kaylum/front-wingless.svg",
  5539. bottom: 0.01,
  5540. extra: 1117 / 1031
  5541. }
  5542. }
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(3.05, "meters")
  5548. },
  5549. {
  5550. name: "Master",
  5551. height: math.unit(5.5, "meters")
  5552. },
  5553. {
  5554. name: "Rampage",
  5555. height: math.unit(19, "meters")
  5556. },
  5557. {
  5558. name: "Macro Lite",
  5559. height: math.unit(37, "meters")
  5560. },
  5561. {
  5562. name: "Hyper Predator",
  5563. height: math.unit(61, "meters")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(138, "meters"),
  5568. default: true
  5569. }
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(5 + 5 / 12, "feet"),
  5577. weight: math.unit(120, "lbs"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/geta/front.svg",
  5581. extra: 1003/933,
  5582. bottom: 21/1024
  5583. }
  5584. },
  5585. paw: {
  5586. height: math.unit(0.35, "feet"),
  5587. name: "Paw",
  5588. image: {
  5589. source: "./media/characters/geta/paw.svg"
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Micro",
  5596. height: math.unit(3, "inches"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(5 + 5 / 12, "feet")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/tyrnn/front.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Main Height",
  5620. height: math.unit(355, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Fave. Height",
  5625. height: math.unit(2400, "feet")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(300, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/appledectomy/front.svg"
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(2500, "feet")
  5645. },
  5646. {
  5647. name: "Megamacro",
  5648. height: math.unit(50, "miles"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Gigamacro",
  5653. height: math.unit(5000, "miles")
  5654. },
  5655. {
  5656. name: "Teramacro",
  5657. height: math.unit(250000, "miles")
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(200, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/vulpes/front.svg",
  5670. extra: 573 / 543,
  5671. bottom: 0.033
  5672. }
  5673. },
  5674. side: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(200, "lbs"),
  5677. name: "Side",
  5678. image: {
  5679. source: "./media/characters/vulpes/side.svg",
  5680. extra: 577 / 549,
  5681. bottom: 11 / 588
  5682. }
  5683. },
  5684. back: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(200, "lbs"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/vulpes/back.svg",
  5690. extra: 573 / 549,
  5691. bottom: 20 / 593
  5692. }
  5693. },
  5694. feet: {
  5695. height: math.unit(1.276, "feet"),
  5696. name: "Feet",
  5697. image: {
  5698. source: "./media/characters/vulpes/feet.svg"
  5699. }
  5700. },
  5701. maw: {
  5702. height: math.unit(1.18, "feet"),
  5703. name: "Maw",
  5704. image: {
  5705. source: "./media/characters/vulpes/maw.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Micro",
  5712. height: math.unit(2, "inches")
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(6.3, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(850, "feet")
  5721. },
  5722. {
  5723. name: "Megamacro",
  5724. height: math.unit(7500, "feet"),
  5725. default: true
  5726. },
  5727. {
  5728. name: "Gigamacro",
  5729. height: math.unit(570000, "miles")
  5730. }
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(210, "lbs"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/rain-fallen/front.svg"
  5742. }
  5743. },
  5744. side: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(210, "lbs"),
  5747. name: "Side",
  5748. image: {
  5749. source: "./media/characters/rain-fallen/side.svg"
  5750. }
  5751. },
  5752. back: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(210, "lbs"),
  5755. name: "Back",
  5756. image: {
  5757. source: "./media/characters/rain-fallen/back.svg"
  5758. }
  5759. },
  5760. feral: {
  5761. height: math.unit(9, "feet"),
  5762. weight: math.unit(700, "lbs"),
  5763. name: "Feral",
  5764. image: {
  5765. source: "./media/characters/rain-fallen/feral.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Meddling with Mortals",
  5772. height: math.unit(8 + 8/12, "feet")
  5773. },
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(5, "meter")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(150, "meter"),
  5781. default: true
  5782. },
  5783. {
  5784. name: "Megamacro",
  5785. height: math.unit(278e6, "meter")
  5786. },
  5787. {
  5788. name: "Gigamacro",
  5789. height: math.unit(2e9, "meter")
  5790. },
  5791. {
  5792. name: "Teramacro",
  5793. height: math.unit(8e12, "meter")
  5794. },
  5795. {
  5796. name: "Devourer",
  5797. height: math.unit(14, "zettameters")
  5798. },
  5799. {
  5800. name: "Scarlet King",
  5801. height: math.unit(18, "yottameters")
  5802. },
  5803. {
  5804. name: "Void",
  5805. height: math.unit(1e88, "yottameters")
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5811. {
  5812. standing: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Standing",
  5816. image: {
  5817. source: "./media/characters/zaakira/standing.svg",
  5818. extra: 1599/1504,
  5819. bottom: 39/1638
  5820. }
  5821. },
  5822. laying: {
  5823. height: math.unit(3.3, "feet"),
  5824. weight: math.unit(180, "lbs"),
  5825. name: "Laying",
  5826. image: {
  5827. source: "./media/characters/zaakira/laying.svg"
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(12, "feet")
  5835. },
  5836. {
  5837. name: "Macro",
  5838. height: math.unit(279, "feet"),
  5839. default: true
  5840. }
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5845. {
  5846. femSfw: {
  5847. height: math.unit(8, "feet"),
  5848. weight: math.unit(350, "lb"),
  5849. name: "Fem",
  5850. image: {
  5851. source: "./media/characters/sigvald/fem-sfw.svg",
  5852. extra: 182 / 164,
  5853. bottom: 8.7 / 190.5
  5854. }
  5855. },
  5856. femNsfw: {
  5857. height: math.unit(8, "feet"),
  5858. weight: math.unit(350, "lb"),
  5859. name: "Fem (NSFW)",
  5860. image: {
  5861. source: "./media/characters/sigvald/fem-nsfw.svg",
  5862. extra: 182 / 164,
  5863. bottom: 8.7 / 190.5
  5864. }
  5865. },
  5866. maleNsfw: {
  5867. height: math.unit(8, "feet"),
  5868. weight: math.unit(350, "lb"),
  5869. name: "Male (NSFW)",
  5870. image: {
  5871. source: "./media/characters/sigvald/male-nsfw.svg",
  5872. extra: 182 / 164,
  5873. bottom: 8.7 / 190.5
  5874. }
  5875. },
  5876. hermNsfw: {
  5877. height: math.unit(8, "feet"),
  5878. weight: math.unit(350, "lb"),
  5879. name: "Herm (NSFW)",
  5880. image: {
  5881. source: "./media/characters/sigvald/herm-nsfw.svg",
  5882. extra: 182 / 164,
  5883. bottom: 8.7 / 190.5
  5884. }
  5885. },
  5886. dick: {
  5887. height: math.unit(2.36, "feet"),
  5888. name: "Dick",
  5889. image: {
  5890. source: "./media/characters/sigvald/dick.svg"
  5891. }
  5892. },
  5893. eye: {
  5894. height: math.unit(0.31, "feet"),
  5895. name: "Eye",
  5896. image: {
  5897. source: "./media/characters/sigvald/eye.svg"
  5898. }
  5899. },
  5900. mouth: {
  5901. height: math.unit(0.92, "feet"),
  5902. name: "Mouth",
  5903. image: {
  5904. source: "./media/characters/sigvald/mouth.svg"
  5905. }
  5906. },
  5907. paws: {
  5908. height: math.unit(2.2, "feet"),
  5909. name: "Paws",
  5910. image: {
  5911. source: "./media/characters/sigvald/paws.svg"
  5912. }
  5913. }
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(8, "feet")
  5919. },
  5920. {
  5921. name: "Large",
  5922. height: math.unit(12, "feet")
  5923. },
  5924. {
  5925. name: "Larger",
  5926. height: math.unit(20, "feet")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(150, "feet")
  5931. },
  5932. {
  5933. name: "Macro+",
  5934. height: math.unit(200, "feet"),
  5935. default: true
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5941. {
  5942. side: {
  5943. height: math.unit(12, "feet"),
  5944. weight: math.unit(2000, "kg"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/scott/side.svg",
  5948. extra: 754 / 724,
  5949. bottom: 0.069
  5950. }
  5951. },
  5952. upright: {
  5953. height: math.unit(12, "feet"),
  5954. weight: math.unit(2000, "kg"),
  5955. name: "Upright",
  5956. image: {
  5957. source: "./media/characters/scott/upright.svg",
  5958. extra: 3881 / 3722,
  5959. bottom: 0.05
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(12, "feet"),
  5967. default: true
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5973. {
  5974. side: {
  5975. height: math.unit(8, "meters"),
  5976. weight: math.unit(84755, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/tobias/side.svg",
  5980. extra: 1474 / 1096,
  5981. bottom: 38.9 / 1513.1235
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(8, "meters"),
  5989. default: true
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5995. {
  5996. front: {
  5997. height: math.unit(5.5, "feet"),
  5998. weight: math.unit(400, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/kieran/front.svg",
  6002. extra: 2694 / 2364,
  6003. bottom: 217 / 2908
  6004. }
  6005. },
  6006. side: {
  6007. height: math.unit(5.5, "feet"),
  6008. weight: math.unit(400, "lbs"),
  6009. name: "Side",
  6010. image: {
  6011. source: "./media/characters/kieran/side.svg",
  6012. extra: 875 / 777,
  6013. bottom: 84.6 / 959
  6014. }
  6015. },
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(5.5, "feet"),
  6021. default: true
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6027. {
  6028. side: {
  6029. height: math.unit(2, "meters"),
  6030. weight: math.unit(70, "kg"),
  6031. name: "Side",
  6032. image: {
  6033. source: "./media/characters/sanya/side.svg",
  6034. bottom: 0.02,
  6035. extra: 1.02
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Small",
  6042. height: math.unit(2, "meters")
  6043. },
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(3, "meters")
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(16, "meters"),
  6051. default: true
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(2, "meters"),
  6060. weight: math.unit(120, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/miranda/front.svg",
  6064. extra: 195 / 185,
  6065. bottom: 10.9 / 206.5
  6066. }
  6067. },
  6068. back: {
  6069. height: math.unit(2, "meters"),
  6070. weight: math.unit(120, "kg"),
  6071. name: "Back",
  6072. image: {
  6073. source: "./media/characters/miranda/back.svg",
  6074. extra: 201 / 193,
  6075. bottom: 2.3 / 203.7
  6076. }
  6077. },
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(10, "feet"),
  6083. default: true
  6084. }
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "James", species: ["deer"], tags: ["anthro"] },
  6089. {
  6090. side: {
  6091. height: math.unit(2, "meters"),
  6092. weight: math.unit(100, "kg"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/james/front.svg",
  6096. extra: 10 / 8.5
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(8.5, "feet"),
  6104. default: true
  6105. }
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6110. {
  6111. side: {
  6112. height: math.unit(9.5, "feet"),
  6113. weight: math.unit(2500, "lbs"),
  6114. name: "Side",
  6115. image: {
  6116. source: "./media/characters/heather/side.svg"
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(9.5, "feet"),
  6124. default: true
  6125. }
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6130. {
  6131. side: {
  6132. height: math.unit(6.5, "feet"),
  6133. weight: math.unit(400, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/lukas/side.svg",
  6137. extra: 7.25 / 6.5
  6138. }
  6139. },
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6.5, "feet"),
  6145. default: true
  6146. }
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6151. {
  6152. side: {
  6153. height: math.unit(5, "feet"),
  6154. weight: math.unit(3000, "lbs"),
  6155. name: "Side",
  6156. image: {
  6157. source: "./media/characters/louise/side.svg"
  6158. }
  6159. },
  6160. },
  6161. [
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(5, "feet"),
  6165. default: true
  6166. }
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6171. {
  6172. side: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(150, "lbs"),
  6175. name: "Side",
  6176. image: {
  6177. source: "./media/characters/ramona/side.svg",
  6178. extra: 871/854,
  6179. bottom: 41/912
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(6 + 4/12, "feet")
  6187. },
  6188. {
  6189. name: "Minimacro",
  6190. height: math.unit(5.3, "meters"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Macro",
  6195. height: math.unit(20, "stories")
  6196. },
  6197. {
  6198. name: "Macro+",
  6199. height: math.unit(50, "stories")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6205. {
  6206. standing: {
  6207. height: math.unit(5.75, "feet"),
  6208. weight: math.unit(160, "lbs"),
  6209. name: "Standing",
  6210. image: {
  6211. source: "./media/characters/deerpuff/standing.svg",
  6212. extra: 682 / 624
  6213. }
  6214. },
  6215. sitting: {
  6216. height: math.unit(5.75 / 1.79, "feet"),
  6217. weight: math.unit(160, "lbs"),
  6218. name: "Sitting",
  6219. image: {
  6220. source: "./media/characters/deerpuff/sitting.svg",
  6221. bottom: 44 / 400,
  6222. extra: 1
  6223. }
  6224. },
  6225. taurLaying: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(400, "lbs"),
  6228. name: "Taur (Laying)",
  6229. image: {
  6230. source: "./media/characters/deerpuff/taur-laying.svg"
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Puffball",
  6237. height: math.unit(6, "inches")
  6238. },
  6239. {
  6240. name: "Normalpuff",
  6241. height: math.unit(5.75, "feet")
  6242. },
  6243. {
  6244. name: "Macropuff",
  6245. height: math.unit(1500, "feet"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Megapuff",
  6250. height: math.unit(500, "miles")
  6251. },
  6252. {
  6253. name: "Gigapuff",
  6254. height: math.unit(250000, "miles")
  6255. },
  6256. {
  6257. name: "Omegapuff",
  6258. height: math.unit(1000, "lightyears")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6264. {
  6265. stomping: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(170, "lbs"),
  6268. name: "Stomping",
  6269. image: {
  6270. source: "./media/characters/vivian/stomping.svg"
  6271. }
  6272. },
  6273. sitting: {
  6274. height: math.unit(6 / 1.75, "feet"),
  6275. weight: math.unit(170, "lbs"),
  6276. name: "Sitting",
  6277. image: {
  6278. source: "./media/characters/vivian/sitting.svg",
  6279. bottom: 1 / 6.4,
  6280. extra: 1,
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(7, "feet"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(10, "stories")
  6293. },
  6294. {
  6295. name: "Macro+",
  6296. height: math.unit(30, "stories")
  6297. },
  6298. {
  6299. name: "Megamacro",
  6300. height: math.unit(10, "miles")
  6301. },
  6302. {
  6303. name: "Megamacro+",
  6304. height: math.unit(2750000, "meters")
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(160, "lbs"),
  6314. name: "Front",
  6315. image: {
  6316. source: "./media/characters/prince/front.svg",
  6317. extra: 1938/1682,
  6318. bottom: 45/1983
  6319. }
  6320. },
  6321. back: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(160, "lbs"),
  6324. name: "Back",
  6325. image: {
  6326. source: "./media/characters/prince/back.svg",
  6327. extra: 1955/1726,
  6328. bottom: 6/1961
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(7.75, "feet"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Not cute",
  6340. height: math.unit(17, "feet")
  6341. },
  6342. {
  6343. name: "I said NOT",
  6344. height: math.unit(91, "feet")
  6345. },
  6346. {
  6347. name: "Please stop",
  6348. height: math.unit(560, "feet")
  6349. },
  6350. {
  6351. name: "What have you done",
  6352. height: math.unit(2200, "feet")
  6353. },
  6354. {
  6355. name: "Deer God",
  6356. height: math.unit(3.6, "miles")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6362. {
  6363. standing: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(300, "lbs"),
  6366. name: "Standing",
  6367. image: {
  6368. source: "./media/characters/psymon/standing.svg",
  6369. extra: 1888 / 1810,
  6370. bottom: 0.05
  6371. }
  6372. },
  6373. slithering: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(300, "lbs"),
  6376. name: "Slithering",
  6377. image: {
  6378. source: "./media/characters/psymon/slithering.svg",
  6379. extra: 1330 / 1224
  6380. }
  6381. },
  6382. slitheringAlt: {
  6383. height: math.unit(6, "feet"),
  6384. weight: math.unit(300, "lbs"),
  6385. name: "Slithering (Alt)",
  6386. image: {
  6387. source: "./media/characters/psymon/slithering-alt.svg",
  6388. extra: 1330 / 1224
  6389. }
  6390. },
  6391. },
  6392. [
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(11.25, "feet"),
  6396. default: true
  6397. },
  6398. {
  6399. name: "Large",
  6400. height: math.unit(27, "feet")
  6401. },
  6402. {
  6403. name: "Giant",
  6404. height: math.unit(87, "feet")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(365, "feet")
  6409. },
  6410. {
  6411. name: "Megamacro",
  6412. height: math.unit(3, "miles")
  6413. },
  6414. {
  6415. name: "World Serpent",
  6416. height: math.unit(8000, "miles")
  6417. },
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(180, "lbs"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/daimos/front.svg",
  6429. extra: 4160 / 3897,
  6430. bottom: 0.021
  6431. }
  6432. }
  6433. },
  6434. [
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(8, "feet"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Big Dog",
  6442. height: math.unit(22, "feet")
  6443. },
  6444. {
  6445. name: "Macro",
  6446. height: math.unit(127, "feet")
  6447. },
  6448. {
  6449. name: "Megamacro",
  6450. height: math.unit(3600, "feet")
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6456. {
  6457. side: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(180, "lbs"),
  6460. name: "Side",
  6461. image: {
  6462. source: "./media/characters/blake/side.svg",
  6463. extra: 1212 / 1120,
  6464. bottom: 0.05
  6465. }
  6466. },
  6467. crouched: {
  6468. height: math.unit(6 * 0.57, "feet"),
  6469. weight: math.unit(180, "lbs"),
  6470. name: "Crouched",
  6471. image: {
  6472. source: "./media/characters/blake/crouched.svg",
  6473. extra: 840 / 587,
  6474. bottom: 0.04
  6475. }
  6476. },
  6477. bent: {
  6478. height: math.unit(6 * 0.75, "feet"),
  6479. weight: math.unit(180, "lbs"),
  6480. name: "Bent",
  6481. image: {
  6482. source: "./media/characters/blake/bent.svg",
  6483. extra: 592 / 544,
  6484. bottom: 0.035
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(8 + 1 / 6, "feet"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Big Backside",
  6496. height: math.unit(37, "feet")
  6497. },
  6498. {
  6499. name: "Subway Shredder",
  6500. height: math.unit(72, "feet")
  6501. },
  6502. {
  6503. name: "City Carver",
  6504. height: math.unit(1675, "feet")
  6505. },
  6506. {
  6507. name: "Tectonic Tweaker",
  6508. height: math.unit(2300, "miles")
  6509. },
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(180, "lbs"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/guisetto/front.svg",
  6521. extra: 856 / 817,
  6522. bottom: 0.06
  6523. }
  6524. },
  6525. airborne: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(180, "lbs"),
  6528. name: "Airborne",
  6529. image: {
  6530. source: "./media/characters/guisetto/airborne.svg",
  6531. extra: 584 / 525
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(10 + 11 / 12, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Large",
  6543. height: math.unit(35, "feet")
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(475, "feet")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(180, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/luxor/front.svg",
  6560. extra: 2940 / 2152
  6561. }
  6562. },
  6563. back: {
  6564. height: math.unit(6, "feet"),
  6565. weight: math.unit(180, "lbs"),
  6566. name: "Back",
  6567. image: {
  6568. source: "./media/characters/luxor/back.svg",
  6569. extra: 1083 / 960
  6570. }
  6571. },
  6572. },
  6573. [
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(5 + 5 / 6, "feet"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Lamp",
  6581. height: math.unit(50, "feet")
  6582. },
  6583. {
  6584. name: "Lämp",
  6585. height: math.unit(300, "feet")
  6586. },
  6587. {
  6588. name: "The sun is a lamp",
  6589. height: math.unit(250000, "miles")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6595. {
  6596. front: {
  6597. height: math.unit(6, "feet"),
  6598. weight: math.unit(50, "lbs"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/huoyan/front.svg"
  6602. }
  6603. },
  6604. side: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(180, "lbs"),
  6607. name: "Side",
  6608. image: {
  6609. source: "./media/characters/huoyan/side.svg"
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Chef",
  6616. height: math.unit(9, "feet")
  6617. },
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(65, "feet"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(780, "feet")
  6626. },
  6627. {
  6628. name: "Flaming Mountain",
  6629. height: math.unit(4.8, "miles")
  6630. },
  6631. {
  6632. name: "Celestial",
  6633. height: math.unit(765000, "miles")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(5 + 3 / 4, "feet"),
  6642. weight: math.unit(120, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/tails/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(5 + 3 / 4, "feet"),
  6653. default: true
  6654. }
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(4, "feet"),
  6662. weight: math.unit(50, "lbs"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/rainy/front.svg"
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Macro",
  6672. height: math.unit(800, "feet"),
  6673. default: true
  6674. }
  6675. ]
  6676. ))
  6677. characterMakers.push(() => makeCharacter(
  6678. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6679. {
  6680. front: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(150, "lbs"),
  6683. name: "Front",
  6684. image: {
  6685. source: "./media/characters/rainier/front.svg"
  6686. }
  6687. }
  6688. },
  6689. [
  6690. {
  6691. name: "Micro",
  6692. height: math.unit(2, "mm"),
  6693. default: true
  6694. }
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6699. {
  6700. front: {
  6701. height: math.unit(8 + 4/12, "feet"),
  6702. weight: math.unit(450, "kilograms"),
  6703. volume: math.unit(5, "cups"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/andy-renard/front.svg",
  6707. extra: 1839/1726,
  6708. bottom: 134/1973
  6709. }
  6710. },
  6711. back: {
  6712. height: math.unit(8 + 4/12, "feet"),
  6713. weight: math.unit(450, "kilograms"),
  6714. volume: math.unit(5, "cups"),
  6715. name: "Back",
  6716. image: {
  6717. source: "./media/characters/andy-renard/back.svg",
  6718. extra: 1838/1710,
  6719. bottom: 105/1943
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Tall",
  6726. height: math.unit(8 + 4/12, "feet")
  6727. },
  6728. {
  6729. name: "Mini Macro",
  6730. height: math.unit(15, "feet"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(100, "feet")
  6736. },
  6737. {
  6738. name: "Mega Macro",
  6739. height: math.unit(1000, "feet")
  6740. },
  6741. {
  6742. name: "Giga Macro",
  6743. height: math.unit(10, "miles")
  6744. },
  6745. {
  6746. name: "God Macro",
  6747. height: math.unit(1, "multiverse")
  6748. },
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(210, "lbs"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/cimmaron/front-sfw.svg",
  6760. extra: 701 / 676,
  6761. bottom: 0.046
  6762. }
  6763. },
  6764. back: {
  6765. height: math.unit(6, "feet"),
  6766. weight: math.unit(210, "lbs"),
  6767. name: "Back",
  6768. image: {
  6769. source: "./media/characters/cimmaron/back-sfw.svg",
  6770. extra: 701 / 676,
  6771. bottom: 0.046
  6772. }
  6773. },
  6774. frontNsfw: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(210, "lbs"),
  6777. name: "Front (NSFW)",
  6778. image: {
  6779. source: "./media/characters/cimmaron/front-nsfw.svg",
  6780. extra: 701 / 676,
  6781. bottom: 0.046
  6782. }
  6783. },
  6784. backNsfw: {
  6785. height: math.unit(6, "feet"),
  6786. weight: math.unit(210, "lbs"),
  6787. name: "Back (NSFW)",
  6788. image: {
  6789. source: "./media/characters/cimmaron/back-nsfw.svg",
  6790. extra: 701 / 676,
  6791. bottom: 0.046
  6792. }
  6793. },
  6794. dick: {
  6795. height: math.unit(1.714, "feet"),
  6796. name: "Dick",
  6797. image: {
  6798. source: "./media/characters/cimmaron/dick.svg"
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Normal",
  6805. height: math.unit(6, "feet"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Macro Mayor",
  6810. height: math.unit(350, "meters")
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(200, "lbs"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/akari/front.svg",
  6823. extra: 962 / 901,
  6824. bottom: 0.04
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Micro",
  6831. height: math.unit(5, "inches"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Normal",
  6836. height: math.unit(7, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(140, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/cynosura/front.svg",
  6849. extra: 437/410,
  6850. bottom: 9/446
  6851. }
  6852. },
  6853. back: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(140, "lbs"),
  6856. name: "Back",
  6857. image: {
  6858. source: "./media/characters/cynosura/back.svg",
  6859. extra: 1304/1160,
  6860. bottom: 71/1375
  6861. }
  6862. },
  6863. },
  6864. [
  6865. {
  6866. name: "Micro",
  6867. height: math.unit(4, "inches")
  6868. },
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(5.75, "feet"),
  6872. default: true
  6873. },
  6874. {
  6875. name: "Tall",
  6876. height: math.unit(10, "feet")
  6877. },
  6878. {
  6879. name: "Big",
  6880. height: math.unit(20, "feet")
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(50, "feet")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(13 + 2/12, "feet"),
  6893. weight: math.unit(800, "kg"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/gin/front.svg",
  6897. extra: 1312/1191,
  6898. bottom: 45/1357
  6899. }
  6900. },
  6901. mouth: {
  6902. height: math.unit(2.39 * 1.8, "feet"),
  6903. name: "Mouth",
  6904. image: {
  6905. source: "./media/characters/gin/mouth.svg"
  6906. }
  6907. },
  6908. hand: {
  6909. height: math.unit(1.57 * 2.19, "feet"),
  6910. name: "Hand",
  6911. image: {
  6912. source: "./media/characters/gin/hand.svg"
  6913. }
  6914. },
  6915. foot: {
  6916. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6917. name: "Foot",
  6918. image: {
  6919. source: "./media/characters/gin/foot.svg"
  6920. }
  6921. },
  6922. sole: {
  6923. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6924. name: "Sole",
  6925. image: {
  6926. source: "./media/characters/gin/sole.svg"
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Very Small",
  6933. height: math.unit(13 + 2 / 12, "feet")
  6934. },
  6935. {
  6936. name: "Micro",
  6937. height: math.unit(600, "miles")
  6938. },
  6939. {
  6940. name: "Regular",
  6941. height: math.unit(20, "earths"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(2.2, "solarradii")
  6947. },
  6948. {
  6949. name: "Teramacro",
  6950. height: math.unit(1.2, "galaxies")
  6951. },
  6952. {
  6953. name: "Omegamacro",
  6954. height: math.unit(200, "universes")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(6 + 1 / 6, "feet"),
  6963. weight: math.unit(178, "lbs"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/guy/front.svg"
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(6 + 1 / 6, "feet"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Large",
  6978. height: math.unit(25 + 7 / 12, "feet")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(60 + 9 / 12, "feet")
  6983. },
  6984. {
  6985. name: "Macro+",
  6986. height: math.unit(246, "feet")
  6987. },
  6988. {
  6989. name: "Macro++",
  6990. height: math.unit(878, "feet")
  6991. }
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(9, "feet"),
  6999. weight: math.unit(800, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/tiberius/front.svg",
  7003. extra: 2295 / 2071
  7004. }
  7005. },
  7006. back: {
  7007. height: math.unit(9, "feet"),
  7008. weight: math.unit(800, "lbs"),
  7009. name: "Back",
  7010. image: {
  7011. source: "./media/characters/tiberius/back.svg",
  7012. extra: 2373 / 2160
  7013. }
  7014. },
  7015. },
  7016. [
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(9, "feet"),
  7020. default: true
  7021. }
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7026. {
  7027. front: {
  7028. height: math.unit(6, "feet"),
  7029. weight: math.unit(600, "lbs"),
  7030. name: "Front",
  7031. image: {
  7032. source: "./media/characters/surgo/front.svg",
  7033. extra: 3591 / 2227
  7034. }
  7035. },
  7036. back: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(600, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/surgo/back.svg",
  7042. extra: 3557 / 2228
  7043. }
  7044. },
  7045. laying: {
  7046. height: math.unit(6 * 0.85, "feet"),
  7047. weight: math.unit(600, "lbs"),
  7048. name: "Laying",
  7049. image: {
  7050. source: "./media/characters/surgo/laying.svg"
  7051. }
  7052. },
  7053. },
  7054. [
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(6, "feet"),
  7058. default: true
  7059. }
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7064. {
  7065. side: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(150, "lbs"),
  7068. name: "Side",
  7069. image: {
  7070. source: "./media/characters/cibus/side.svg",
  7071. extra: 800 / 400
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6, "feet"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(240, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/nibbles/front.svg"
  7092. }
  7093. },
  7094. side: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(240, "lbs"),
  7097. name: "Side",
  7098. image: {
  7099. source: "./media/characters/nibbles/side.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(9, "feet"),
  7107. default: true
  7108. }
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7113. {
  7114. side: {
  7115. height: math.unit(5 + 1 / 6, "feet"),
  7116. weight: math.unit(130, "lbs"),
  7117. name: "Side",
  7118. image: {
  7119. source: "./media/characters/rikky/side.svg",
  7120. extra: 851 / 801
  7121. }
  7122. },
  7123. },
  7124. [
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(5 + 1 / 6, "feet")
  7128. },
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(152, "feet"),
  7132. default: true
  7133. },
  7134. {
  7135. name: "Megamacro",
  7136. height: math.unit(7, "miles")
  7137. }
  7138. ]
  7139. ))
  7140. characterMakers.push(() => makeCharacter(
  7141. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7142. {
  7143. side: {
  7144. height: math.unit(370, "cm"),
  7145. weight: math.unit(350, "lbs"),
  7146. name: "Side",
  7147. image: {
  7148. source: "./media/characters/malfressa/side.svg"
  7149. }
  7150. },
  7151. walking: {
  7152. height: math.unit(370, "cm"),
  7153. weight: math.unit(350, "lbs"),
  7154. name: "Walking",
  7155. image: {
  7156. source: "./media/characters/malfressa/walking.svg"
  7157. }
  7158. },
  7159. feral: {
  7160. height: math.unit(2500, "cm"),
  7161. weight: math.unit(100000, "lbs"),
  7162. name: "Feral",
  7163. image: {
  7164. source: "./media/characters/malfressa/feral.svg",
  7165. extra: 2108 / 837,
  7166. bottom: 0.02
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(370, "cm")
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(300, "meters"),
  7178. default: true
  7179. }
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(60, "kg"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/jaro/front.svg",
  7191. extra: 845/817,
  7192. bottom: 45/890
  7193. }
  7194. },
  7195. back: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(60, "kg"),
  7198. name: "Back",
  7199. image: {
  7200. source: "./media/characters/jaro/back.svg",
  7201. extra: 847/817,
  7202. bottom: 34/881
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Micro",
  7209. height: math.unit(7, "inches")
  7210. },
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(5.5, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Minimacro",
  7218. height: math.unit(20, "feet")
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(200, "meters")
  7223. }
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(195, "lb"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/rogue/front.svg"
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(90, "feet"),
  7242. default: true
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7248. {
  7249. standing: {
  7250. height: math.unit(5 + 8 / 12, "feet"),
  7251. weight: math.unit(140, "lb"),
  7252. name: "Standing",
  7253. image: {
  7254. source: "./media/characters/piper/standing.svg",
  7255. extra: 1440/1284,
  7256. bottom: 66/1506
  7257. }
  7258. },
  7259. running: {
  7260. height: math.unit(5 + 8 / 12, "feet"),
  7261. weight: math.unit(140, "lb"),
  7262. name: "Running",
  7263. image: {
  7264. source: "./media/characters/piper/running.svg",
  7265. extra: 3948/3655,
  7266. bottom: 0/3948
  7267. }
  7268. },
  7269. sole: {
  7270. height: math.unit(0.81, "feet"),
  7271. weight: math.unit(2, "kg"),
  7272. name: "Sole",
  7273. image: {
  7274. source: "./media/characters/piper/sole.svg"
  7275. }
  7276. },
  7277. nipple: {
  7278. height: math.unit(0.25, "feet"),
  7279. weight: math.unit(1.5, "lb"),
  7280. name: "Nipple",
  7281. image: {
  7282. source: "./media/characters/piper/nipple.svg"
  7283. }
  7284. },
  7285. head: {
  7286. height: math.unit(1.1, "feet"),
  7287. name: "Head",
  7288. image: {
  7289. source: "./media/characters/piper/head.svg"
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Micro",
  7296. height: math.unit(2, "inches")
  7297. },
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(5 + 8 / 12, "feet")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(250, "feet"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Megamacro",
  7309. height: math.unit(7, "miles")
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(220, "lb"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/gemini/front.svg"
  7322. }
  7323. },
  7324. back: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(220, "lb"),
  7327. name: "Back",
  7328. image: {
  7329. source: "./media/characters/gemini/back.svg"
  7330. }
  7331. },
  7332. kneeling: {
  7333. height: math.unit(6 / 1.5, "feet"),
  7334. weight: math.unit(220, "lb"),
  7335. name: "Kneeling",
  7336. image: {
  7337. source: "./media/characters/gemini/kneeling.svg",
  7338. bottom: 0.02
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(300, "meters"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Megamacro",
  7350. height: math.unit(6900, "meters")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7356. {
  7357. anthro: {
  7358. height: math.unit(2.35, "meters"),
  7359. weight: math.unit(73, "kg"),
  7360. name: "Anthro",
  7361. image: {
  7362. source: "./media/characters/alicia/anthro.svg",
  7363. extra: 2571 / 2385,
  7364. bottom: 75 / 2648
  7365. }
  7366. },
  7367. paw: {
  7368. height: math.unit(1.32, "feet"),
  7369. name: "Paw",
  7370. image: {
  7371. source: "./media/characters/alicia/paw.svg"
  7372. }
  7373. },
  7374. feral: {
  7375. height: math.unit(1.69, "meters"),
  7376. weight: math.unit(73, "kg"),
  7377. name: "Feral",
  7378. image: {
  7379. source: "./media/characters/alicia/feral.svg",
  7380. extra: 2123 / 1715,
  7381. bottom: 222 / 2349
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(2.35, "meters")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(60, "meters"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Megamacro",
  7397. height: math.unit(10000, "kilometers")
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(7, "feet"),
  7406. weight: math.unit(250, "lbs"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/archy/front.svg"
  7410. }
  7411. }
  7412. },
  7413. [
  7414. {
  7415. name: "Micro",
  7416. height: math.unit(1, "inch")
  7417. },
  7418. {
  7419. name: "Shorty",
  7420. height: math.unit(5, "feet")
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(7, "feet")
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(600, "meters"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Megamacro",
  7433. height: math.unit(1, "mile")
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(1.65, "meters"),
  7442. weight: math.unit(74, "kg"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/berri/front.svg",
  7446. extra: 857 / 837,
  7447. bottom: 18 / 877
  7448. }
  7449. },
  7450. bum: {
  7451. height: math.unit(1.46, "feet"),
  7452. name: "Bum",
  7453. image: {
  7454. source: "./media/characters/berri/bum.svg"
  7455. }
  7456. },
  7457. mouth: {
  7458. height: math.unit(0.44, "feet"),
  7459. name: "Mouth",
  7460. image: {
  7461. source: "./media/characters/berri/mouth.svg"
  7462. }
  7463. },
  7464. paw: {
  7465. height: math.unit(0.826, "feet"),
  7466. name: "Paw",
  7467. image: {
  7468. source: "./media/characters/berri/paw.svg"
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(1.65, "meters")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(60, "m"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(9.213, "km")
  7485. },
  7486. {
  7487. name: "Planet Eater",
  7488. height: math.unit(489, "megameters")
  7489. },
  7490. {
  7491. name: "Teramacro",
  7492. height: math.unit(2471635000000, "meters")
  7493. },
  7494. {
  7495. name: "Examacro",
  7496. height: math.unit(8.0624e+26, "meters")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(1.72, "meters"),
  7505. weight: math.unit(68, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/lexi/front.svg"
  7509. }
  7510. }
  7511. },
  7512. [
  7513. {
  7514. name: "Very Smol",
  7515. height: math.unit(10, "mm")
  7516. },
  7517. {
  7518. name: "Micro",
  7519. height: math.unit(6.8, "cm"),
  7520. default: true
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(1.72, "m")
  7525. }
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(1.69, "meters"),
  7533. weight: math.unit(68, "kg"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/martin/front.svg",
  7537. extra: 596 / 581
  7538. }
  7539. }
  7540. },
  7541. [
  7542. {
  7543. name: "Micro",
  7544. height: math.unit(6.85, "cm"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(1.69, "m")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(1.69, "meters"),
  7558. weight: math.unit(68, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/juno/front.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(7, "cm")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(1.89, "m")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(353, "meters"),
  7577. default: true
  7578. }
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(1.93, "meters"),
  7586. weight: math.unit(83, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/samantha/front.svg"
  7590. }
  7591. },
  7592. frontClothed: {
  7593. height: math.unit(1.93, "meters"),
  7594. weight: math.unit(83, "kg"),
  7595. name: "Front (Clothed)",
  7596. image: {
  7597. source: "./media/characters/samantha/front-clothed.svg"
  7598. }
  7599. },
  7600. back: {
  7601. height: math.unit(1.93, "meters"),
  7602. weight: math.unit(83, "kg"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/samantha/back.svg"
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(1.93, "m")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(74, "meters"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro+",
  7621. height: math.unit(223, "meters"),
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(8381, "meters"),
  7626. },
  7627. {
  7628. name: "Megamacro+",
  7629. height: math.unit(12000, "kilometers")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(1.92, "meters"),
  7638. weight: math.unit(80, "kg"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/dr-clay/front.svg"
  7642. }
  7643. },
  7644. frontClothed: {
  7645. height: math.unit(1.92, "meters"),
  7646. weight: math.unit(80, "kg"),
  7647. name: "Front (Clothed)",
  7648. image: {
  7649. source: "./media/characters/dr-clay/front-clothed.svg"
  7650. }
  7651. }
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(1.92, "m")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(214, "meters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Macro+",
  7665. height: math.unit(12.237, "meters"),
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(557, "megameters"),
  7670. },
  7671. {
  7672. name: "Unimaginable",
  7673. height: math.unit(120e9, "lightyears")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(2, "meters"),
  7682. weight: math.unit(80, "kg"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7686. }
  7687. }
  7688. },
  7689. [
  7690. {
  7691. name: "Teramacro",
  7692. height: math.unit(500000, "lightyears"),
  7693. default: true
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7699. {
  7700. crux: {
  7701. height: math.unit(2, "meters"),
  7702. weight: math.unit(150, "kg"),
  7703. name: "Crux",
  7704. image: {
  7705. source: "./media/characters/vemus/crux.svg",
  7706. extra: 1074/936,
  7707. bottom: 23/1097
  7708. }
  7709. },
  7710. skunkTanuki: {
  7711. height: math.unit(2, "meters"),
  7712. weight: math.unit(150, "kg"),
  7713. name: "Skunk-Tanuki",
  7714. image: {
  7715. source: "./media/characters/vemus/skunk-tanuki.svg",
  7716. extra: 926/893,
  7717. bottom: 20/946
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(4, "meters"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Big",
  7729. height: math.unit(8, "meters")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(100, "meters")
  7734. },
  7735. {
  7736. name: "Macro+",
  7737. height: math.unit(1500, "meters")
  7738. },
  7739. {
  7740. name: "Stellar",
  7741. height: math.unit(14e8, "meters")
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7747. {
  7748. front: {
  7749. height: math.unit(2, "meters"),
  7750. weight: math.unit(70, "kg"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/beherit/front.svg",
  7754. extra: 1234/1109,
  7755. bottom: 55/1289
  7756. }
  7757. }
  7758. },
  7759. [
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(6, "feet")
  7763. },
  7764. {
  7765. name: "Lorg",
  7766. height: math.unit(25, "feet"),
  7767. default: true
  7768. },
  7769. {
  7770. name: "Lorger",
  7771. height: math.unit(75, "feet")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(200, "meters")
  7776. },
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(2, "meters"),
  7784. weight: math.unit(150, "kg"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/everett/front.svg",
  7788. extra: 1017/866,
  7789. bottom: 86/1103
  7790. }
  7791. },
  7792. paw: {
  7793. height: math.unit(2 / 3.6, "meters"),
  7794. name: "Paw",
  7795. image: {
  7796. source: "./media/characters/everett/paw.svg"
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(15, "feet"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Lorg",
  7808. height: math.unit(70, "feet"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Lorger",
  7813. height: math.unit(250, "feet")
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(500, "meters")
  7818. },
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(2, "meters"),
  7826. weight: math.unit(86, "kg"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/rose/front.svg",
  7830. extra: 1785/1636,
  7831. bottom: 30/1815
  7832. },
  7833. form: "liom",
  7834. default: true
  7835. },
  7836. frontSporty: {
  7837. height: math.unit(2, "meters"),
  7838. weight: math.unit(86, "kg"),
  7839. name: "Front (Sporty)",
  7840. image: {
  7841. source: "./media/characters/rose/front-sporty.svg",
  7842. extra: 350/335,
  7843. bottom: 10/360
  7844. },
  7845. form: "liom"
  7846. },
  7847. frontAlt: {
  7848. height: math.unit(1.6, "meters"),
  7849. weight: math.unit(86, "kg"),
  7850. name: "Front (Alt)",
  7851. image: {
  7852. source: "./media/characters/rose/front-alt.svg",
  7853. extra: 299/283,
  7854. bottom: 3/302
  7855. },
  7856. form: "liom"
  7857. },
  7858. plush: {
  7859. height: math.unit(2, "meters"),
  7860. weight: math.unit(86/3, "kg"),
  7861. name: "Plush",
  7862. image: {
  7863. source: "./media/characters/rose/plush.svg",
  7864. extra: 361/337,
  7865. bottom: 11/372
  7866. },
  7867. form: "plush",
  7868. default: true
  7869. },
  7870. faeStanding: {
  7871. height: math.unit(10, "cm"),
  7872. weight: math.unit(10, "grams"),
  7873. name: "Standing",
  7874. image: {
  7875. source: "./media/characters/rose/fae-standing.svg",
  7876. extra: 1189/1060,
  7877. bottom: 27/1216
  7878. },
  7879. form: "fae",
  7880. default: true
  7881. },
  7882. faeSitting: {
  7883. height: math.unit(5, "cm"),
  7884. weight: math.unit(10, "grams"),
  7885. name: "Sitting",
  7886. image: {
  7887. source: "./media/characters/rose/fae-sitting.svg",
  7888. extra: 737/577,
  7889. bottom: 356/1093
  7890. },
  7891. form: "fae"
  7892. },
  7893. faePaw: {
  7894. height: math.unit(1.35, "cm"),
  7895. name: "Paw",
  7896. image: {
  7897. source: "./media/characters/rose/fae-paw.svg"
  7898. },
  7899. form: "fae"
  7900. },
  7901. },
  7902. [
  7903. {
  7904. name: "True Micro",
  7905. height: math.unit(9, "cm"),
  7906. form: "liom"
  7907. },
  7908. {
  7909. name: "Micro",
  7910. height: math.unit(16, "cm"),
  7911. form: "liom"
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(1.85, "meters"),
  7916. default: true,
  7917. form: "liom"
  7918. },
  7919. {
  7920. name: "Mini-Macro",
  7921. height: math.unit(5, "meters"),
  7922. form: "liom"
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(15, "meters"),
  7927. form: "liom"
  7928. },
  7929. {
  7930. name: "True Macro",
  7931. height: math.unit(40, "meters"),
  7932. form: "liom"
  7933. },
  7934. {
  7935. name: "City Scale",
  7936. height: math.unit(1, "km"),
  7937. form: "liom"
  7938. },
  7939. {
  7940. name: "Plushie",
  7941. height: math.unit(9, "cm"),
  7942. form: "plush",
  7943. default: true
  7944. },
  7945. {
  7946. name: "Fae",
  7947. height: math.unit(10, "cm"),
  7948. form: "fae",
  7949. default: true
  7950. },
  7951. ],
  7952. {
  7953. "liom": {
  7954. name: "Liom"
  7955. },
  7956. "plush": {
  7957. name: "Plush"
  7958. },
  7959. "fae": {
  7960. name: "Fae Fox",
  7961. default: true
  7962. }
  7963. }
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(2, "meters"),
  7970. weight: math.unit(350, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/regal/front.svg"
  7974. }
  7975. },
  7976. back: {
  7977. height: math.unit(2, "meters"),
  7978. weight: math.unit(350, "lbs"),
  7979. name: "Back",
  7980. image: {
  7981. source: "./media/characters/regal/back.svg"
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(350, "feet"),
  7989. default: true
  7990. }
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(4 + 11 / 12, "feet"),
  7998. weight: math.unit(100, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/opal/front.svg"
  8002. }
  8003. },
  8004. frontAlt: {
  8005. height: math.unit(4 + 11 / 12, "feet"),
  8006. weight: math.unit(100, "lbs"),
  8007. name: "Front (Alt)",
  8008. image: {
  8009. source: "./media/characters/opal/front-alt.svg"
  8010. }
  8011. },
  8012. },
  8013. [
  8014. {
  8015. name: "Small",
  8016. height: math.unit(4 + 11 / 12, "feet")
  8017. },
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(20, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Macro",
  8025. height: math.unit(120, "feet")
  8026. },
  8027. {
  8028. name: "Megamacro",
  8029. height: math.unit(80, "miles")
  8030. },
  8031. {
  8032. name: "True Size",
  8033. height: math.unit(100000, "lightyears")
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(200, "lbs"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/vector-wuff/front.svg"
  8046. }
  8047. }
  8048. },
  8049. [
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(2.8, "meters")
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(450, "meters"),
  8057. default: true
  8058. },
  8059. {
  8060. name: "Megamacro",
  8061. height: math.unit(15, "kilometers")
  8062. }
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(6, "feet"),
  8070. weight: math.unit(256, "lbs"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/dannik/front.svg"
  8074. }
  8075. }
  8076. },
  8077. [
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(69.57, "meters"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(120, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/azura-saharah/front.svg"
  8094. }
  8095. },
  8096. back: {
  8097. height: math.unit(6, "feet"),
  8098. weight: math.unit(120, "lbs"),
  8099. name: "Back",
  8100. image: {
  8101. source: "./media/characters/azura-saharah/back.svg"
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(100, "feet"),
  8109. default: true
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8115. {
  8116. side: {
  8117. height: math.unit(5 + 4 / 12, "feet"),
  8118. weight: math.unit(163, "lbs"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/kennedy/side.svg"
  8122. }
  8123. }
  8124. },
  8125. [
  8126. {
  8127. name: "Standard Doggo",
  8128. height: math.unit(5 + 4 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Big Doggo",
  8132. height: math.unit(25 + 3 / 12, "feet"),
  8133. default: true
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(5 + 5/12, "feet"),
  8142. weight: math.unit(100, "lbs"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/odios-de-lunar/front.svg",
  8146. extra: 1468/1323,
  8147. bottom: 22/1490
  8148. }
  8149. }
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5.5, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(100, "feet")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8169. {
  8170. back: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(220, "lbs"),
  8173. name: "Back",
  8174. image: {
  8175. source: "./media/characters/mandake/back.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(7, "feet"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(78, "feet")
  8188. },
  8189. {
  8190. name: "Macro+",
  8191. height: math.unit(300, "meters")
  8192. },
  8193. {
  8194. name: "Macro++",
  8195. height: math.unit(2400, "feet")
  8196. },
  8197. {
  8198. name: "Megamacro",
  8199. height: math.unit(5167, "meters")
  8200. },
  8201. {
  8202. name: "Gigamacro",
  8203. height: math.unit(41769, "miles")
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(120, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/yozey/front.svg"
  8216. }
  8217. },
  8218. frontAlt: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(120, "lbs"),
  8221. name: "Front (Alt)",
  8222. image: {
  8223. source: "./media/characters/yozey/front-alt.svg"
  8224. }
  8225. },
  8226. side: {
  8227. height: math.unit(6, "feet"),
  8228. weight: math.unit(120, "lbs"),
  8229. name: "Side",
  8230. image: {
  8231. source: "./media/characters/yozey/side.svg"
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Micro",
  8238. height: math.unit(3, "inches"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(6, "feet")
  8244. }
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(6, "feet"),
  8252. weight: math.unit(103, "lbs"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/valeska-voss/front.svg"
  8256. }
  8257. }
  8258. },
  8259. [
  8260. {
  8261. name: "Mini-Sized Sub",
  8262. height: math.unit(3.1, "inches")
  8263. },
  8264. {
  8265. name: "Mid-Sized Sub",
  8266. height: math.unit(6.2, "inches")
  8267. },
  8268. {
  8269. name: "Full-Sized Sub",
  8270. height: math.unit(9.3, "inches")
  8271. },
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(5 + 2 / 12, "foot"),
  8275. default: true
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8281. {
  8282. front: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(160, "lbs"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/gene-zeta/front.svg",
  8288. extra: 3006 / 2826,
  8289. bottom: 182 / 3188
  8290. }
  8291. }
  8292. },
  8293. [
  8294. {
  8295. name: "Micro",
  8296. height: math.unit(6, "inches")
  8297. },
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(5 + 11 / 12, "foot"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(140, "feet")
  8306. },
  8307. {
  8308. name: "Supercharged",
  8309. height: math.unit(2500, "feet")
  8310. },
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(6, "feet"),
  8318. weight: math.unit(350, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/razinox/front.svg",
  8322. extra: 1686 / 1548,
  8323. bottom: 28.2 / 1868
  8324. }
  8325. },
  8326. back: {
  8327. height: math.unit(6, "feet"),
  8328. weight: math.unit(350, "lbs"),
  8329. name: "Back",
  8330. image: {
  8331. source: "./media/characters/razinox/back.svg",
  8332. extra: 1660 / 1590,
  8333. bottom: 15 / 1665
  8334. }
  8335. },
  8336. },
  8337. [
  8338. {
  8339. name: "Normal",
  8340. height: math.unit(10 + 8 / 12, "foot")
  8341. },
  8342. {
  8343. name: "Minimacro",
  8344. height: math.unit(15, "foot")
  8345. },
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(60, "foot"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Megamacro",
  8353. height: math.unit(5, "miles")
  8354. },
  8355. {
  8356. name: "Gigamacro",
  8357. height: math.unit(6000, "miles")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(150, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/cobalt/front.svg"
  8370. }
  8371. }
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(8 + 1 / 12, "foot")
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(111, "foot"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Supracosmic",
  8385. height: math.unit(1e42, "feet")
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8391. {
  8392. front: {
  8393. height: math.unit(5, "inches"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/amanda/front.svg",
  8397. extra: 926/791,
  8398. bottom: 38/964
  8399. }
  8400. },
  8401. back: {
  8402. height: math.unit(5, "inches"),
  8403. name: "Back",
  8404. image: {
  8405. source: "./media/characters/amanda/back.svg",
  8406. extra: 909/805,
  8407. bottom: 43/952
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Micro",
  8414. height: math.unit(5, "inches"),
  8415. default: true
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(2.75, "meters"),
  8424. weight: math.unit(1200, "lb"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/teal/front.svg",
  8428. extra: 2463 / 2320,
  8429. bottom: 166 / 2629
  8430. }
  8431. },
  8432. back: {
  8433. height: math.unit(2.75, "meters"),
  8434. weight: math.unit(1200, "lb"),
  8435. name: "Back",
  8436. image: {
  8437. source: "./media/characters/teal/back.svg",
  8438. extra: 2580 / 2489,
  8439. bottom: 151 / 2731
  8440. }
  8441. },
  8442. sitting: {
  8443. height: math.unit(1.9, "meters"),
  8444. weight: math.unit(1200, "lb"),
  8445. name: "Sitting",
  8446. image: {
  8447. source: "./media/characters/teal/sitting.svg",
  8448. extra: 623 / 590,
  8449. bottom: 121 / 744
  8450. }
  8451. },
  8452. standing: {
  8453. height: math.unit(2.75, "meters"),
  8454. weight: math.unit(1200, "lb"),
  8455. name: "Standing",
  8456. image: {
  8457. source: "./media/characters/teal/standing.svg",
  8458. extra: 923 / 893,
  8459. bottom: 60 / 983
  8460. }
  8461. },
  8462. stretching: {
  8463. height: math.unit(3.65, "meters"),
  8464. weight: math.unit(1200, "lb"),
  8465. name: "Stretching",
  8466. image: {
  8467. source: "./media/characters/teal/stretching.svg",
  8468. extra: 1276 / 1244,
  8469. bottom: 0 / 1276
  8470. }
  8471. },
  8472. legged: {
  8473. height: math.unit(1.3, "meters"),
  8474. weight: math.unit(100, "lb"),
  8475. name: "Legged",
  8476. image: {
  8477. source: "./media/characters/teal/legged.svg",
  8478. extra: 462 / 437,
  8479. bottom: 24 / 486
  8480. }
  8481. },
  8482. naga: {
  8483. height: math.unit(5.4, "meters"),
  8484. weight: math.unit(4000, "lb"),
  8485. name: "Naga",
  8486. image: {
  8487. source: "./media/characters/teal/naga.svg",
  8488. extra: 1902 / 1858,
  8489. bottom: 0 / 1902
  8490. }
  8491. },
  8492. hand: {
  8493. height: math.unit(0.52, "meters"),
  8494. name: "Hand",
  8495. image: {
  8496. source: "./media/characters/teal/hand.svg"
  8497. }
  8498. },
  8499. maw: {
  8500. height: math.unit(0.43, "meters"),
  8501. name: "Maw",
  8502. image: {
  8503. source: "./media/characters/teal/maw.svg"
  8504. }
  8505. },
  8506. slit: {
  8507. height: math.unit(0.25, "meters"),
  8508. name: "Slit",
  8509. image: {
  8510. source: "./media/characters/teal/slit.svg"
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(2.75, "meters"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(300, "feet")
  8523. },
  8524. {
  8525. name: "Macro+",
  8526. height: math.unit(2000, "feet")
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8532. {
  8533. frontCat: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(180, "lbs"),
  8536. name: "Front (Cat)",
  8537. image: {
  8538. source: "./media/characters/ravin-amulet/front-cat.svg"
  8539. }
  8540. },
  8541. frontCatAlt: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(180, "lbs"),
  8544. name: "Front (Alt, Cat)",
  8545. image: {
  8546. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8547. }
  8548. },
  8549. frontWerewolf: {
  8550. height: math.unit(6 * 1.2, "feet"),
  8551. weight: math.unit(225, "lbs"),
  8552. name: "Front (Werewolf)",
  8553. image: {
  8554. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8555. }
  8556. },
  8557. backWerewolf: {
  8558. height: math.unit(6 * 1.2, "feet"),
  8559. weight: math.unit(225, "lbs"),
  8560. name: "Back (Werewolf)",
  8561. image: {
  8562. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8563. }
  8564. },
  8565. },
  8566. [
  8567. {
  8568. name: "Nano",
  8569. height: math.unit(1, "micrometer")
  8570. },
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(1, "inch")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(6, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(60, "feet")
  8583. }
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(165, "lbs"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/fluoresce/front.svg"
  8595. }
  8596. }
  8597. },
  8598. [
  8599. {
  8600. name: "Micro",
  8601. height: math.unit(6, "cm")
  8602. },
  8603. {
  8604. name: "Normal",
  8605. height: math.unit(5 + 7 / 12, "feet"),
  8606. default: true
  8607. },
  8608. {
  8609. name: "Macro",
  8610. height: math.unit(56, "feet")
  8611. },
  8612. {
  8613. name: "Megamacro",
  8614. height: math.unit(1.9, "miles")
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(9 + 6 / 12, "feet"),
  8623. weight: math.unit(523, "lbs"),
  8624. name: "Side",
  8625. image: {
  8626. source: "./media/characters/aurora/side.svg",
  8627. extra: 474/393,
  8628. bottom: 5/479
  8629. }
  8630. }
  8631. },
  8632. [
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(9 + 6 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(96, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Macro+",
  8644. height: math.unit(243, "feet")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(194, "cm"),
  8653. weight: math.unit(90, "kg"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/ranek/front.svg",
  8657. extra: 1862/1791,
  8658. bottom: 80/1942
  8659. }
  8660. },
  8661. back: {
  8662. height: math.unit(194, "cm"),
  8663. weight: math.unit(90, "kg"),
  8664. name: "Back",
  8665. image: {
  8666. source: "./media/characters/ranek/back.svg",
  8667. extra: 1853/1787,
  8668. bottom: 74/1927
  8669. }
  8670. },
  8671. feral: {
  8672. height: math.unit(30, "cm"),
  8673. weight: math.unit(1.6, "lbs"),
  8674. name: "Feral",
  8675. image: {
  8676. source: "./media/characters/ranek/feral.svg",
  8677. extra: 990/631,
  8678. bottom: 29/1019
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(194, "cm"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(100, "meters")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(5 + 6 / 12, "feet"),
  8699. weight: math.unit(153, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/andrew-cooper/front.svg"
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Nano",
  8709. height: math.unit(1, "mm")
  8710. },
  8711. {
  8712. name: "Micro",
  8713. height: math.unit(2, "inches")
  8714. },
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(5 + 6 / 12, "feet"),
  8718. default: true
  8719. }
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(180, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/akane-sato/front.svg",
  8731. extra: 1219 / 1140
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(180, "lbs"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/akane-sato/back.svg",
  8740. extra: 1219 / 1170
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(2.5, "meters")
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(250, "meters"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Megamacro",
  8756. height: math.unit(25, "km")
  8757. },
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(65, "kg"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/rook/front.svg",
  8769. extra: 960 / 950
  8770. }
  8771. }
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(8.8, "feet")
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(88, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(8, "miles")
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(12 + 2 / 12, "feet"),
  8794. weight: math.unit(808, "lbs"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/prodigy/front.svg"
  8798. }
  8799. }
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(12 + 2 / 12, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "Macro",
  8809. height: math.unit(143, "feet")
  8810. },
  8811. {
  8812. name: "Macro+",
  8813. height: math.unit(400, "feet")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(6, "feet"),
  8822. weight: math.unit(225, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/daniel/front.svg"
  8826. }
  8827. },
  8828. leaning: {
  8829. height: math.unit(6, "feet"),
  8830. weight: math.unit(225, "lbs"),
  8831. name: "Leaning",
  8832. image: {
  8833. source: "./media/characters/daniel/leaning.svg"
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(1000, "feet"),
  8841. default: true
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(88, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/chiros/front.svg",
  8854. extra: 306 / 226
  8855. }
  8856. },
  8857. side: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(88, "lbs"),
  8860. name: "Side",
  8861. image: {
  8862. source: "./media/characters/chiros/side.svg",
  8863. extra: 306 / 226
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(6, "cm"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8877. {
  8878. front: {
  8879. height: math.unit(6, "feet"),
  8880. weight: math.unit(100, "lbs"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/selka/front.svg",
  8884. extra: 947 / 887
  8885. }
  8886. }
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(5, "cm"),
  8892. default: true
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(8 + 3 / 12, "feet"),
  8901. weight: math.unit(424, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/verin/front.svg",
  8905. extra: 1845 / 1550
  8906. }
  8907. },
  8908. frontArmored: {
  8909. height: math.unit(8 + 3 / 12, "feet"),
  8910. weight: math.unit(424, "lbs"),
  8911. name: "Front (Armored)",
  8912. image: {
  8913. source: "./media/characters/verin/front-armor.svg",
  8914. extra: 1845 / 1550,
  8915. bottom: 0.01
  8916. }
  8917. },
  8918. back: {
  8919. height: math.unit(8 + 3 / 12, "feet"),
  8920. weight: math.unit(424, "lbs"),
  8921. name: "Back",
  8922. image: {
  8923. source: "./media/characters/verin/back.svg",
  8924. bottom: 0.1,
  8925. extra: 1
  8926. }
  8927. },
  8928. foot: {
  8929. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8930. name: "Foot",
  8931. image: {
  8932. source: "./media/characters/verin/foot.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(8 + 3 / 12, "feet")
  8940. },
  8941. {
  8942. name: "Minimacro",
  8943. height: math.unit(21, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(626, "feet")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(2.718, "meters"),
  8957. weight: math.unit(150, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/sovrim-terraquian/front.svg",
  8961. extra: 1752/1689,
  8962. bottom: 36/1788
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(2.718, "meters"),
  8967. weight: math.unit(150, "lbs"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/sovrim-terraquian/back.svg",
  8971. extra: 1698/1657,
  8972. bottom: 58/1756
  8973. }
  8974. },
  8975. tongue: {
  8976. height: math.unit(2.865, "feet"),
  8977. name: "Tongue",
  8978. image: {
  8979. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8980. }
  8981. },
  8982. hand: {
  8983. height: math.unit(1.61, "feet"),
  8984. name: "Hand",
  8985. image: {
  8986. source: "./media/characters/sovrim-terraquian/hand.svg"
  8987. }
  8988. },
  8989. foot: {
  8990. height: math.unit(1.05, "feet"),
  8991. name: "Foot",
  8992. image: {
  8993. source: "./media/characters/sovrim-terraquian/foot.svg"
  8994. }
  8995. },
  8996. footAlt: {
  8997. height: math.unit(0.88, "feet"),
  8998. name: "Foot (Alt)",
  8999. image: {
  9000. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Micro",
  9007. height: math.unit(2, "inches")
  9008. },
  9009. {
  9010. name: "Small",
  9011. height: math.unit(1, "meter")
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(Math.E, "meters"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Macro",
  9020. height: math.unit(20, "meters")
  9021. },
  9022. {
  9023. name: "Macro+",
  9024. height: math.unit(400, "meters")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(7, "feet"),
  9033. weight: math.unit(489, "lbs"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/reece-silvermane/front.svg",
  9037. bottom: 0.02,
  9038. extra: 1
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(1.5, "miles"),
  9046. default: true
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(6, "feet"),
  9055. weight: math.unit(78, "kg"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/kane/front.svg",
  9059. extra: 978 / 899
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(2.1, "m"),
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(1, "km"),
  9071. default: true
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(200, "kg"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/tegon/front.svg",
  9084. bottom: 0.01,
  9085. extra: 1
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(1, "inch")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(6 + 3 / 12, "feet"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(300, "feet")
  9102. },
  9103. {
  9104. name: "Megamacro",
  9105. height: math.unit(69, "miles")
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9111. {
  9112. side: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(2304, "lbs"),
  9115. name: "Side",
  9116. image: {
  9117. source: "./media/characters/arcturax/side.svg",
  9118. extra: 790 / 376,
  9119. bottom: 0.01
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(2, "inch")
  9127. },
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(6, "feet")
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(39, "feet"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Megamacro",
  9139. height: math.unit(7, "miles")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(50, "lbs"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/sentri/front.svg",
  9152. extra: 1750 / 1570,
  9153. bottom: 0.025
  9154. }
  9155. },
  9156. frontAlt: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(50, "lbs"),
  9159. name: "Front (Alt)",
  9160. image: {
  9161. source: "./media/characters/sentri/front-alt.svg",
  9162. extra: 1750 / 1570,
  9163. bottom: 0.025
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(15, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(2500, "feet")
  9176. }
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(5 + 8 / 12, "feet"),
  9184. weight: math.unit(130, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/corvin/front.svg",
  9188. extra: 1803 / 1629
  9189. }
  9190. },
  9191. frontShirt: {
  9192. height: math.unit(5 + 8 / 12, "feet"),
  9193. weight: math.unit(130, "lbs"),
  9194. name: "Front (Shirt)",
  9195. image: {
  9196. source: "./media/characters/corvin/front-shirt.svg",
  9197. extra: 1803 / 1629
  9198. }
  9199. },
  9200. frontPoncho: {
  9201. height: math.unit(5 + 8 / 12, "feet"),
  9202. weight: math.unit(130, "lbs"),
  9203. name: "Front (Poncho)",
  9204. image: {
  9205. source: "./media/characters/corvin/front-poncho.svg",
  9206. extra: 1803 / 1629
  9207. }
  9208. },
  9209. side: {
  9210. height: math.unit(5 + 8 / 12, "feet"),
  9211. weight: math.unit(130, "lbs"),
  9212. name: "Side",
  9213. image: {
  9214. source: "./media/characters/corvin/side.svg",
  9215. extra: 1012 / 945
  9216. }
  9217. },
  9218. back: {
  9219. height: math.unit(5 + 8 / 12, "feet"),
  9220. weight: math.unit(130, "lbs"),
  9221. name: "Back",
  9222. image: {
  9223. source: "./media/characters/corvin/back.svg",
  9224. extra: 1803 / 1629
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Micro",
  9231. height: math.unit(3, "inches")
  9232. },
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(5 + 8 / 12, "feet")
  9236. },
  9237. {
  9238. name: "Macro",
  9239. height: math.unit(300, "feet"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Megamacro",
  9244. height: math.unit(500, "miles")
  9245. }
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(6, "feet"),
  9253. weight: math.unit(135, "lbs"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/q/front.svg",
  9257. extra: 854 / 752,
  9258. bottom: 0.005
  9259. }
  9260. },
  9261. back: {
  9262. height: math.unit(6, "feet"),
  9263. weight: math.unit(130, "lbs"),
  9264. name: "Back",
  9265. image: {
  9266. source: "./media/characters/q/back.svg",
  9267. extra: 854 / 752
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(90, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Extra Macro",
  9279. height: math.unit(300, "feet"),
  9280. },
  9281. {
  9282. name: "BIG WALF",
  9283. height: math.unit(750, "feet"),
  9284. },
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9289. {
  9290. front: {
  9291. height: math.unit(3, "feet"),
  9292. weight: math.unit(28, "lbs"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/citrine/front.svg"
  9296. }
  9297. }
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(3, "feet"),
  9303. default: true
  9304. }
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9309. {
  9310. front: {
  9311. height: math.unit(14, "feet"),
  9312. weight: math.unit(1450, "kg"),
  9313. preyCapacity: math.unit(15, "people"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/aura-starwind/front.svg",
  9317. extra: 1440/1327,
  9318. bottom: 11/1451
  9319. }
  9320. },
  9321. side: {
  9322. height: math.unit(14, "feet"),
  9323. weight: math.unit(1450, "kg"),
  9324. preyCapacity: math.unit(15, "people"),
  9325. name: "Side",
  9326. image: {
  9327. source: "./media/characters/aura-starwind/side.svg",
  9328. extra: 1654 / 1497
  9329. }
  9330. },
  9331. taur: {
  9332. height: math.unit(18, "feet"),
  9333. weight: math.unit(5500, "kg"),
  9334. preyCapacity: math.unit(50, "people"),
  9335. name: "Taur",
  9336. image: {
  9337. source: "./media/characters/aura-starwind/taur.svg",
  9338. extra: 1760 / 1650
  9339. }
  9340. },
  9341. feral: {
  9342. height: math.unit(46, "feet"),
  9343. weight: math.unit(25000, "kg"),
  9344. preyCapacity: math.unit(120, "people"),
  9345. name: "Feral",
  9346. image: {
  9347. source: "./media/characters/aura-starwind/feral.svg"
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Normal",
  9354. height: math.unit(14, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(50, "meters")
  9360. },
  9361. {
  9362. name: "Megamacro",
  9363. height: math.unit(5000, "meters")
  9364. },
  9365. {
  9366. name: "Gigamacro",
  9367. height: math.unit(100000, "kilometers")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(2 + 7 / 12, "feet"),
  9376. weight: math.unit(32, "lbs"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/rivet/front.svg",
  9380. extra: 1716 / 1658,
  9381. bottom: 0.03
  9382. }
  9383. },
  9384. foot: {
  9385. height: math.unit(0.551, "feet"),
  9386. name: "Rivet's Foot",
  9387. image: {
  9388. source: "./media/characters/rivet/foot.svg"
  9389. },
  9390. rename: true
  9391. }
  9392. },
  9393. [
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(1.5, "inches"),
  9397. },
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(2 + 7 / 12, "feet"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "Macro",
  9405. height: math.unit(85, "feet")
  9406. },
  9407. {
  9408. name: "Megamacro",
  9409. height: math.unit(2.2, "km")
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(5 + 9 / 12, "feet"),
  9418. weight: math.unit(150, "lbs"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/coffee/front.svg",
  9422. extra: 946/880,
  9423. bottom: 66/1012
  9424. }
  9425. },
  9426. foot: {
  9427. height: math.unit(1.29, "feet"),
  9428. name: "Foot",
  9429. image: {
  9430. source: "./media/characters/coffee/foot.svg"
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(2, "inches"),
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(5 + 9 / 12, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Macro",
  9446. height: math.unit(800, "feet")
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(25, "miles")
  9451. }
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(200, "lbs"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/chari-gal/front.svg",
  9463. extra: 735/649,
  9464. bottom: 55/790
  9465. },
  9466. form: "normal",
  9467. default: true
  9468. },
  9469. back: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(200, "lb"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/chari-gal/back.svg",
  9475. extra: 762/666,
  9476. bottom: 31/793
  9477. },
  9478. form: "normal"
  9479. },
  9480. mouth: {
  9481. height: math.unit(1.35, "feet"),
  9482. name: "Mouth",
  9483. image: {
  9484. source: "./media/characters/chari-gal/mouth.svg"
  9485. },
  9486. form: "normal"
  9487. },
  9488. gigantamax: {
  9489. height: math.unit(6 * 16, "feet"),
  9490. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9491. name: "Gigantamax",
  9492. image: {
  9493. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9494. extra: 1507/1149,
  9495. bottom: 254/1761
  9496. },
  9497. form: "gigantamax",
  9498. default: true
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(5 + 7 / 12, "feet"),
  9505. form: "normal",
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(200, "feet"),
  9510. default: true,
  9511. form: "normal"
  9512. },
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9516. form: "gigantamax",
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(16 * 200, "feet"),
  9521. default: true,
  9522. form: "gigantamax"
  9523. },
  9524. ],
  9525. {
  9526. "normal": {
  9527. name: "Normal",
  9528. default: true
  9529. },
  9530. "gigantamax": {
  9531. name: "Gigantamax",
  9532. },
  9533. }
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(6, "feet"),
  9540. weight: math.unit(150, "lbs"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/nova/front.svg",
  9544. extra: 5000 / 4722,
  9545. bottom: 0.02
  9546. }
  9547. }
  9548. },
  9549. [
  9550. {
  9551. name: "Micro-",
  9552. height: math.unit(0.8, "inches")
  9553. },
  9554. {
  9555. name: "Micro",
  9556. height: math.unit(2, "inches"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9563. {
  9564. koboldFront: {
  9565. height: math.unit(3 + 1 / 12, "feet"),
  9566. weight: math.unit(21.7, "lbs"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/argent/kobold-front.svg",
  9570. extra: 1471 / 1331,
  9571. bottom: 100.8 / 1575.5
  9572. },
  9573. form: "kobold",
  9574. default: true
  9575. },
  9576. dragonFront: {
  9577. height: math.unit(75, "inches"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/argent/dragon-front.svg",
  9581. extra: 1389/1248,
  9582. bottom: 54/1443
  9583. },
  9584. form: "dragon",
  9585. },
  9586. dragonBack: {
  9587. height: math.unit(75, "inches"),
  9588. name: "Back",
  9589. image: {
  9590. source: "./media/characters/argent/dragon-back.svg",
  9591. extra: 1399/1271,
  9592. bottom: 23/1422
  9593. },
  9594. form: "dragon",
  9595. },
  9596. dragonDressed: {
  9597. height: math.unit(75, "inches"),
  9598. name: "Dressed",
  9599. image: {
  9600. source: "./media/characters/argent/dragon-dressed.svg",
  9601. extra: 1350/1215,
  9602. bottom: 26/1376
  9603. },
  9604. form: "dragon"
  9605. },
  9606. dragonHead: {
  9607. height: math.unit(23.5, "inches"),
  9608. name: "Head",
  9609. image: {
  9610. source: "./media/characters/argent/dragon-head.svg"
  9611. },
  9612. form: "dragon",
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(2, "inches"),
  9619. form: "kobold",
  9620. },
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(3 + 1 / 12, "feet"),
  9624. form: "kobold",
  9625. default: true
  9626. },
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(120, "feet"),
  9630. form: "kobold",
  9631. },
  9632. {
  9633. name: "Speck",
  9634. height: math.unit(1, "mm"),
  9635. form: "dragon",
  9636. },
  9637. {
  9638. name: "Tiny",
  9639. height: math.unit(1, "cm"),
  9640. form: "dragon",
  9641. },
  9642. {
  9643. name: "Micro",
  9644. height: math.unit(5, "cm"),
  9645. form: "dragon",
  9646. },
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(75, "inches"),
  9650. form: "dragon",
  9651. default: true
  9652. },
  9653. {
  9654. name: "Extra Tall",
  9655. height: math.unit(9, "feet"),
  9656. form: "dragon",
  9657. },
  9658. {
  9659. name: "Inconvenient",
  9660. height: math.unit(5, "meters"),
  9661. form: "dragon",
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(70, "meters"),
  9666. form: "dragon",
  9667. },
  9668. {
  9669. name: "Macro+",
  9670. height: math.unit(250, "meters"),
  9671. form: "dragon",
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(20, "km"),
  9676. form: "dragon",
  9677. },
  9678. {
  9679. name: "Mountainous",
  9680. height: math.unit(100, "km"),
  9681. form: "dragon",
  9682. },
  9683. {
  9684. name: "Continental",
  9685. height: math.unit(2, "megameters"),
  9686. form: "dragon",
  9687. },
  9688. {
  9689. name: "Too Big",
  9690. height: math.unit(900, "megameters"),
  9691. form: "dragon",
  9692. },
  9693. ],
  9694. {
  9695. "kobold": {
  9696. name: "Kobold",
  9697. default: true
  9698. },
  9699. "dragon": {
  9700. name: "Dragon",
  9701. },
  9702. }
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9706. {
  9707. lamp: {
  9708. height: math.unit(7 * 1559 / 989, "feet"),
  9709. name: "Magic Lamp",
  9710. image: {
  9711. source: "./media/characters/mira-al-cul/lamp.svg",
  9712. extra: 1617 / 1559
  9713. }
  9714. },
  9715. front: {
  9716. height: math.unit(7, "feet"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/mira-al-cul/front.svg",
  9720. extra: 1044 / 990
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Heavily Restricted",
  9727. height: math.unit(7 * 1559 / 989, "feet")
  9728. },
  9729. {
  9730. name: "Freshly Freed",
  9731. height: math.unit(50 * 1559 / 989, "feet")
  9732. },
  9733. {
  9734. name: "World Encompassing",
  9735. height: math.unit(10000 * 1559 / 989, "miles")
  9736. },
  9737. {
  9738. name: "Galactic",
  9739. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9740. },
  9741. {
  9742. name: "Palmed Universe",
  9743. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Multiversal Matriarch",
  9748. height: math.unit(8.87e10, "yottameters")
  9749. },
  9750. {
  9751. name: "Void Mother",
  9752. height: math.unit(3.14e110, "yottaparsecs")
  9753. },
  9754. {
  9755. name: "Toying with Transcendence",
  9756. height: math.unit(1e307, "meters")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9762. {
  9763. front: {
  9764. height: math.unit(17 + 1 / 12, "feet"),
  9765. weight: math.unit(476.2 * 5, "lbs"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/kuro-shi-uchū/front.svg",
  9769. extra: 2329 / 1835,
  9770. bottom: 0.02
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(2, "inches")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(12, "meters")
  9782. },
  9783. {
  9784. name: "Planetary",
  9785. height: math.unit(0.00929, "AU"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Universal",
  9790. height: math.unit(20, "gigaparsecs")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5 + 2 / 12, "feet"),
  9799. weight: math.unit(120, "lbs"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/katherine/front.svg",
  9803. extra: 2075 / 1969
  9804. }
  9805. },
  9806. dress: {
  9807. height: math.unit(5 + 2 / 12, "feet"),
  9808. weight: math.unit(120, "lbs"),
  9809. name: "Dress",
  9810. image: {
  9811. source: "./media/characters/katherine/dress.svg",
  9812. extra: 2258 / 2064
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Micro",
  9819. height: math.unit(1, "inches"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 2 / 12, "feet")
  9825. },
  9826. {
  9827. name: "Macro",
  9828. height: math.unit(100, "meters")
  9829. },
  9830. {
  9831. name: "Megamacro",
  9832. height: math.unit(80, "miles")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(7 + 8 / 12, "feet"),
  9841. weight: math.unit(250, "lbs"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/yevis/front.svg",
  9845. extra: 1938 / 1755
  9846. }
  9847. }
  9848. },
  9849. [
  9850. {
  9851. name: "Mortal",
  9852. height: math.unit(7 + 8 / 12, "feet")
  9853. },
  9854. {
  9855. name: "Battle",
  9856. height: math.unit(25 + 11 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Wrath",
  9860. height: math.unit(1654 + 11 / 12, "feet")
  9861. },
  9862. {
  9863. name: "Planet Destroyer",
  9864. height: math.unit(12000, "miles")
  9865. },
  9866. {
  9867. name: "Galaxy Conqueror",
  9868. height: math.unit(1.45, "zettameters"),
  9869. default: true
  9870. },
  9871. {
  9872. name: "Universal War",
  9873. height: math.unit(184, "gigaparsecs")
  9874. },
  9875. {
  9876. name: "Eternity War",
  9877. height: math.unit(1.98e55, "yottaparsecs")
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9883. {
  9884. front: {
  9885. height: math.unit(5 + 8 / 12, "feet"),
  9886. weight: math.unit(63, "kg"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/xavier/front.svg",
  9890. extra: 944 / 883
  9891. }
  9892. },
  9893. frontStretch: {
  9894. height: math.unit(5 + 8 / 12, "feet"),
  9895. weight: math.unit(63, "kg"),
  9896. name: "Stretching",
  9897. image: {
  9898. source: "./media/characters/xavier/front-stretch.svg",
  9899. extra: 962 / 820
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(5 + 8 / 12, "feet")
  9907. },
  9908. {
  9909. name: "Macro",
  9910. height: math.unit(100, "meters"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "McLargeHuge",
  9915. height: math.unit(10, "miles")
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(5 + 5 / 12, "feet"),
  9924. weight: math.unit(150, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/joshii/front.svg",
  9928. extra: 765 / 653,
  9929. bottom: 51 / 816
  9930. }
  9931. },
  9932. foot: {
  9933. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9934. name: "Foot",
  9935. image: {
  9936. source: "./media/characters/joshii/foot.svg"
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "inches")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(5 + 5 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(785, "feet"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(24.5, "miles")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(150, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/goddess-elizabeth/front.svg",
  9969. extra: 1800 / 1525,
  9970. bottom: 0.005
  9971. }
  9972. },
  9973. foot: {
  9974. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9975. name: "Foot",
  9976. image: {
  9977. source: "./media/characters/goddess-elizabeth/foot.svg"
  9978. }
  9979. },
  9980. mouth: {
  9981. height: math.unit(6, "feet"),
  9982. name: "Mouth",
  9983. image: {
  9984. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Micro",
  9991. height: math.unit(12, "feet")
  9992. },
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(80, "miles"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Macro",
  10000. height: math.unit(15000, "parsecs")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(5 + 9 / 12, "feet"),
  10009. weight: math.unit(144, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/kara/front.svg"
  10013. }
  10014. },
  10015. feet: {
  10016. height: math.unit(6 / 6.765, "feet"),
  10017. name: "Kara's Feet",
  10018. rename: true,
  10019. image: {
  10020. source: "./media/characters/kara/feet.svg"
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(5 + 9 / 12, "feet")
  10028. },
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(174, "feet"),
  10032. default: true
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(18, "feet"),
  10041. weight: math.unit(4050, "lb"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/tyrone/front.svg",
  10045. extra: 2405 / 2270,
  10046. bottom: 182 / 2587
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(18, "feet"),
  10054. default: true
  10055. },
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(300, "feet")
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(15, "km")
  10063. },
  10064. {
  10065. name: "Gigamacro",
  10066. height: math.unit(500, "km")
  10067. },
  10068. {
  10069. name: "Teramacro",
  10070. height: math.unit(0.5, "gigameters")
  10071. },
  10072. {
  10073. name: "Omnimacro",
  10074. height: math.unit(1e252, "yottauniverse")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(7 + 8 / 12, "feet"),
  10083. weight: math.unit(120, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/danny/front.svg",
  10087. extra: 1490 / 1350
  10088. }
  10089. },
  10090. back: {
  10091. height: math.unit(7 + 8 / 12, "feet"),
  10092. weight: math.unit(120, "lb"),
  10093. name: "Back",
  10094. image: {
  10095. source: "./media/characters/danny/back.svg",
  10096. extra: 1490 / 1350
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(7 + 8 / 12, "feet"),
  10104. default: true
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(3.5, "inches"),
  10113. weight: math.unit(19, "grams"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/mallow/front.svg",
  10117. extra: 471 / 431
  10118. }
  10119. },
  10120. back: {
  10121. height: math.unit(3.5, "inches"),
  10122. weight: math.unit(19, "grams"),
  10123. name: "Back",
  10124. image: {
  10125. source: "./media/characters/mallow/back.svg",
  10126. extra: 471 / 431
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(3.5, "inches"),
  10134. default: true
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(9, "feet"),
  10143. weight: math.unit(230, "kg"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/starry-aqua/front.svg"
  10147. }
  10148. },
  10149. back: {
  10150. height: math.unit(9, "feet"),
  10151. weight: math.unit(230, "kg"),
  10152. name: "Back",
  10153. image: {
  10154. source: "./media/characters/starry-aqua/back.svg"
  10155. }
  10156. },
  10157. hand: {
  10158. height: math.unit(9 * 0.1168, "feet"),
  10159. name: "Hand",
  10160. image: {
  10161. source: "./media/characters/starry-aqua/hand.svg"
  10162. }
  10163. },
  10164. foot: {
  10165. height: math.unit(9 * 0.18, "feet"),
  10166. name: "Foot",
  10167. image: {
  10168. source: "./media/characters/starry-aqua/foot.svg"
  10169. }
  10170. }
  10171. },
  10172. [
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(3, "inches")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(9, "feet")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(300, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(3200, "feet")
  10189. }
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(15, "feet"),
  10197. weight: math.unit(5026, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/luka-towers/front.svg",
  10201. extra: 1269/1133,
  10202. bottom: 51/1320
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(15, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Minimacro",
  10214. height: math.unit(25, "feet")
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(320, "feet")
  10219. },
  10220. {
  10221. name: "Megamacro",
  10222. height: math.unit(35000, "feet")
  10223. },
  10224. {
  10225. name: "Gigamacro",
  10226. height: math.unit(4000, "miles")
  10227. },
  10228. {
  10229. name: "Teramacro",
  10230. height: math.unit(15000, "miles")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(150, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/natalie-nightring/front.svg",
  10243. extra: 1,
  10244. bottom: 0.06
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Uh Oh",
  10251. height: math.unit(0.1, "mm")
  10252. },
  10253. {
  10254. name: "Small",
  10255. height: math.unit(3, "inches")
  10256. },
  10257. {
  10258. name: "Human Scale",
  10259. height: math.unit(6, "feet")
  10260. },
  10261. {
  10262. name: "Librarian",
  10263. height: math.unit(50, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Immense",
  10268. height: math.unit(200, "miles")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(180, "lbs"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/danni-rosie/front.svg",
  10281. extra: 1260 / 1128,
  10282. bottom: 0.022
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Micro",
  10289. height: math.unit(2, "inches"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(5 + 9 / 12, "feet"),
  10299. weight: math.unit(220, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/samantha-kruse/front.svg",
  10303. extra: (985 / 935),
  10304. bottom: 0.03
  10305. }
  10306. },
  10307. frontUndressed: {
  10308. height: math.unit(5 + 9 / 12, "feet"),
  10309. weight: math.unit(220, "lb"),
  10310. name: "Front (Undressed)",
  10311. image: {
  10312. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10313. extra: (973 / 923),
  10314. bottom: 0.025
  10315. }
  10316. },
  10317. fat: {
  10318. height: math.unit(5 + 9 / 12, "feet"),
  10319. weight: math.unit(900, "lb"),
  10320. name: "Front (Fat)",
  10321. image: {
  10322. source: "./media/characters/samantha-kruse/fat.svg",
  10323. extra: 2688 / 2561
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 9 / 12, "feet"),
  10331. default: true
  10332. }
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10337. {
  10338. back: {
  10339. height: math.unit(5 + 4 / 12, "feet"),
  10340. weight: math.unit(4963, "lb"),
  10341. name: "Back",
  10342. image: {
  10343. source: "./media/characters/amelia-rosie/back.svg",
  10344. extra: 1113 / 963,
  10345. bottom: 0.01
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Level 0",
  10352. height: math.unit(5 + 4 / 12, "feet")
  10353. },
  10354. {
  10355. name: "Level 1",
  10356. height: math.unit(164597, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Level 2",
  10361. height: math.unit(956243, "miles")
  10362. },
  10363. {
  10364. name: "Level 3",
  10365. height: math.unit(29421709423, "miles")
  10366. },
  10367. {
  10368. name: "Level 4",
  10369. height: math.unit(154, "lightyears")
  10370. },
  10371. {
  10372. name: "Level 5",
  10373. height: math.unit(4738272, "lightyears")
  10374. },
  10375. {
  10376. name: "Level 6",
  10377. height: math.unit(145787152896, "lightyears")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(5 + 11 / 12, "feet"),
  10386. weight: math.unit(65, "kg"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/rook-kitara/front.svg",
  10390. extra: 1347 / 1274,
  10391. bottom: 0.005
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Totally Unfair",
  10398. height: math.unit(1.8, "mm")
  10399. },
  10400. {
  10401. name: "Lap Rookie",
  10402. height: math.unit(1.4, "feet")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 11 / 12, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "How Did This Happen",
  10411. height: math.unit(80, "miles")
  10412. }
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(7, "feet"),
  10420. weight: math.unit(300, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/pisces/front.svg",
  10424. extra: 2255 / 2115,
  10425. bottom: 0.03
  10426. }
  10427. },
  10428. back: {
  10429. height: math.unit(7, "feet"),
  10430. weight: math.unit(300, "lb"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/pisces/back.svg",
  10434. extra: 2146 / 2055,
  10435. bottom: 0.04
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(7, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Swimming Pool",
  10447. height: math.unit(12.2, "meters")
  10448. },
  10449. {
  10450. name: "Olympic Swimming Pool",
  10451. height: math.unit(56.3, "meters")
  10452. },
  10453. {
  10454. name: "Lake Superior",
  10455. height: math.unit(93900, "meters")
  10456. },
  10457. {
  10458. name: "Mediterranean Sea",
  10459. height: math.unit(644457, "meters")
  10460. },
  10461. {
  10462. name: "World's Oceans",
  10463. height: math.unit(4567491, "meters")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(2.3, "meters"),
  10472. weight: math.unit(120, "kg"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/zelas/front.svg"
  10476. }
  10477. },
  10478. side: {
  10479. height: math.unit(2.3, "meters"),
  10480. weight: math.unit(120, "kg"),
  10481. name: "Side",
  10482. image: {
  10483. source: "./media/characters/zelas/side.svg"
  10484. }
  10485. },
  10486. back: {
  10487. height: math.unit(2.3, "meters"),
  10488. weight: math.unit(120, "kg"),
  10489. name: "Back",
  10490. image: {
  10491. source: "./media/characters/zelas/back.svg"
  10492. }
  10493. },
  10494. foot: {
  10495. height: math.unit(1.116, "feet"),
  10496. name: "Foot",
  10497. image: {
  10498. source: "./media/characters/zelas/foot.svg"
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(2.3, "meters")
  10506. },
  10507. {
  10508. name: "Macro",
  10509. height: math.unit(30, "meters"),
  10510. default: true
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(1, "inch"),
  10519. weight: math.unit(0.21, "grams"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/talbot/front.svg",
  10523. extra: 594 / 544
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Micro",
  10530. height: math.unit(1, "inch"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10537. {
  10538. front: {
  10539. height: math.unit(3 + 3 / 12, "feet"),
  10540. weight: math.unit(51.8, "lb"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/fliss/front.svg",
  10544. extra: 840 / 640
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Teeny Tiny",
  10551. height: math.unit(1, "mm")
  10552. },
  10553. {
  10554. name: "Small",
  10555. height: math.unit(1, "inch"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Standard Sylveon",
  10560. height: math.unit(3 + 3 / 12, "feet")
  10561. },
  10562. {
  10563. name: "Large Nuisance",
  10564. height: math.unit(33, "feet")
  10565. },
  10566. {
  10567. name: "City Filler",
  10568. height: math.unit(3000, "feet")
  10569. },
  10570. {
  10571. name: "New Horizon",
  10572. height: math.unit(6000, "miles")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(5, "cm"),
  10581. weight: math.unit(1.94, "g"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/fleta/front.svg",
  10585. extra: 835 / 803
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(5, "cm"),
  10590. weight: math.unit(1.94, "g"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/fleta/back.svg",
  10594. extra: 835 / 803
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Micro",
  10601. height: math.unit(5, "cm"),
  10602. default: true
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(225, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/dominic/front.svg",
  10615. extra: 1770 / 1620,
  10616. bottom: 0.025
  10617. }
  10618. },
  10619. back: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(225, "lb"),
  10622. name: "Back",
  10623. image: {
  10624. source: "./media/characters/dominic/back.svg",
  10625. extra: 1745 / 1620,
  10626. bottom: 0.065
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Nano",
  10633. height: math.unit(0.1, "mm")
  10634. },
  10635. {
  10636. name: "Micro-",
  10637. height: math.unit(1, "mm")
  10638. },
  10639. {
  10640. name: "Micro",
  10641. height: math.unit(4, "inches")
  10642. },
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(6 + 4 / 12, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(115, "feet")
  10651. },
  10652. {
  10653. name: "Macro+",
  10654. height: math.unit(955, "feet")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(8990, "feet")
  10659. },
  10660. {
  10661. name: "Gigmacro",
  10662. height: math.unit(9310, "miles")
  10663. },
  10664. {
  10665. name: "Teramacro",
  10666. height: math.unit(1567005010, "miles")
  10667. },
  10668. {
  10669. name: "Examacro",
  10670. height: math.unit(1425, "parsecs")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(400, "feet"),
  10679. weight: math.unit(44444444, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/major-colonel/front.svg"
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(400, "feet"),
  10687. weight: math.unit(44444444, "lb"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/major-colonel/back.svg"
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Macro",
  10697. height: math.unit(400, "feet"),
  10698. default: true
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10704. {
  10705. catFront: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "lb"),
  10708. name: "Front (Cat Side)",
  10709. image: {
  10710. source: "./media/characters/axel-lycan/cat-front.svg",
  10711. extra: 430 / 402,
  10712. bottom: 43 / 472.35
  10713. }
  10714. },
  10715. catBack: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(120, "lb"),
  10718. name: "Back (Cat Side)",
  10719. image: {
  10720. source: "./media/characters/axel-lycan/cat-back.svg",
  10721. extra: 447 / 419,
  10722. bottom: 23.3 / 469
  10723. }
  10724. },
  10725. wolfFront: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(120, "lb"),
  10728. name: "Front (Wolf Side)",
  10729. image: {
  10730. source: "./media/characters/axel-lycan/wolf-front.svg",
  10731. extra: 485 / 456,
  10732. bottom: 19 / 504
  10733. }
  10734. },
  10735. wolfBack: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(120, "lb"),
  10738. name: "Back (Wolf Side)",
  10739. image: {
  10740. source: "./media/characters/axel-lycan/wolf-back.svg",
  10741. extra: 475 / 438,
  10742. bottom: 39.2 / 514
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(1, "km"),
  10750. default: true
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(5 + 9 / 12, "feet"),
  10759. weight: math.unit(175, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/vanrel-hyena/front.svg",
  10763. extra: 1086 / 1010,
  10764. bottom: 0.04
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(5 + 9 / 12, "feet"),
  10772. default: true
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(103, "lb"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/abbott-absol/front.svg",
  10785. extra: 2010 / 1842
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Megamicro",
  10792. height: math.unit(0.1, "mm")
  10793. },
  10794. {
  10795. name: "Micro",
  10796. height: math.unit(1, "inch")
  10797. },
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(6, "feet"),
  10801. default: true
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(264, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/hector/front.svg",
  10814. extra: 2280 / 2130,
  10815. bottom: 0.07
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(12.25, "foot"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(160, "feet")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(150, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/sal/front.svg",
  10840. extra: 1846 / 1699,
  10841. bottom: 0.04
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(10, "miles"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10855. {
  10856. front: {
  10857. height: math.unit(3, "meters"),
  10858. weight: math.unit(450, "kg"),
  10859. name: "front",
  10860. image: {
  10861. source: "./media/characters/ranger/front.svg",
  10862. extra: 2401 / 2243,
  10863. bottom: 0.05
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(3, "meters"),
  10871. default: true
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(14, "feet"),
  10880. weight: math.unit(800, "kg"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/theresa/front.svg",
  10884. extra: 3575 / 3346,
  10885. bottom: 0.03
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(14, "feet"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10899. {
  10900. front: {
  10901. height: math.unit(6, "feet"),
  10902. weight: math.unit(3, "kg"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/ine/front.svg",
  10906. extra: 678 / 539,
  10907. bottom: 0.023
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(2.265, "feet"),
  10915. default: true
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(5, "feet"),
  10924. weight: math.unit(30, "kg"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/vial/front.svg",
  10928. extra: 1365 / 1277,
  10929. bottom: 0.04
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(5, "feet"),
  10937. default: true
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10943. {
  10944. side: {
  10945. height: math.unit(3.4, "meters"),
  10946. weight: math.unit(1000, "lb"),
  10947. name: "Side",
  10948. image: {
  10949. source: "./media/characters/rovoska/side.svg",
  10950. extra: 4403 / 1515
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(3.4, "meters"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(8, "feet"),
  10967. weight: math.unit(315, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/gunner-rotthbauer/front.svg"
  10971. }
  10972. },
  10973. back: {
  10974. height: math.unit(8, "feet"),
  10975. weight: math.unit(315, "lb"),
  10976. name: "Back",
  10977. image: {
  10978. source: "./media/characters/gunner-rotthbauer/back.svg"
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Micro",
  10985. height: math.unit(3.5, "inches")
  10986. },
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(8, "feet"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Macro",
  10994. height: math.unit(250, "feet")
  10995. },
  10996. {
  10997. name: "Megamacro",
  10998. height: math.unit(1, "AU")
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(5 + 5 / 12, "feet"),
  11007. weight: math.unit(140, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/allatia/front.svg",
  11011. extra: 1227 / 1180,
  11012. bottom: 0.027
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(5 + 5 / 12, "feet")
  11020. },
  11021. {
  11022. name: "Macro",
  11023. height: math.unit(250, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(8, "miles")
  11029. }
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(120, "lb"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/tene/front.svg",
  11041. extra: 814/750,
  11042. bottom: 36/850
  11043. }
  11044. },
  11045. stomping: {
  11046. height: math.unit(2.025, "meters"),
  11047. weight: math.unit(120, "lb"),
  11048. name: "Stomping",
  11049. image: {
  11050. source: "./media/characters/tene/stomping.svg",
  11051. extra: 885/821,
  11052. bottom: 15/900
  11053. }
  11054. },
  11055. sitting: {
  11056. height: math.unit(1, "meter"),
  11057. weight: math.unit(120, "lb"),
  11058. name: "Sitting",
  11059. image: {
  11060. source: "./media/characters/tene/sitting.svg",
  11061. extra: 396/366,
  11062. bottom: 79/475
  11063. }
  11064. },
  11065. smiling: {
  11066. height: math.unit(1.2, "feet"),
  11067. name: "Smiling",
  11068. image: {
  11069. source: "./media/characters/tene/smiling.svg",
  11070. extra: 1364/1071,
  11071. bottom: 0/1364
  11072. }
  11073. },
  11074. smug: {
  11075. height: math.unit(1.3, "feet"),
  11076. name: "Smug",
  11077. image: {
  11078. source: "./media/characters/tene/smug.svg",
  11079. extra: 1323/1082,
  11080. bottom: 0/1323
  11081. }
  11082. },
  11083. feral: {
  11084. height: math.unit(3.9, "feet"),
  11085. weight: math.unit(250, "lb"),
  11086. name: "Feral",
  11087. image: {
  11088. source: "./media/characters/tene/feral.svg",
  11089. extra: 717 / 458,
  11090. bottom: 0.179
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(6, "feet")
  11098. },
  11099. {
  11100. name: "Macro",
  11101. height: math.unit(300, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Megamacro",
  11106. height: math.unit(5, "miles")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11112. {
  11113. side: {
  11114. height: math.unit(6, "feet"),
  11115. name: "Side",
  11116. image: {
  11117. source: "./media/characters/evander/side.svg",
  11118. extra: 877 / 477
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(0.83, "meters"),
  11126. default: true
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(12, "feet"),
  11135. weight: math.unit(1000, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11139. extra: 1762 / 1611
  11140. }
  11141. },
  11142. back: {
  11143. height: math.unit(12, "feet"),
  11144. weight: math.unit(1000, "lb"),
  11145. name: "Back",
  11146. image: {
  11147. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11148. extra: 1762 / 1611
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(12, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Kaiju",
  11160. height: math.unit(150, "feet")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(6, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/zero-alurus/front.svg"
  11173. }
  11174. },
  11175. back: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(150, "lb"),
  11178. name: "Back",
  11179. image: {
  11180. source: "./media/characters/zero-alurus/back.svg"
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(5 + 10 / 12, "feet")
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(60, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Macro+",
  11196. height: math.unit(450, "feet")
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11202. {
  11203. front: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(200, "lb"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/mega-shi/front.svg",
  11209. extra: 1279 / 1250,
  11210. bottom: 0.02
  11211. }
  11212. },
  11213. back: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(200, "lb"),
  11216. name: "Back",
  11217. image: {
  11218. source: "./media/characters/mega-shi/back.svg",
  11219. extra: 1279 / 1250,
  11220. bottom: 0.02
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(16 + 6 / 12, "feet")
  11228. },
  11229. {
  11230. name: "Third Dimension",
  11231. height: math.unit(40, "meters")
  11232. },
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(660, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(10, "miles")
  11241. },
  11242. {
  11243. name: "Planetary Launch",
  11244. height: math.unit(500, "miles")
  11245. },
  11246. {
  11247. name: "Interstellar",
  11248. height: math.unit(1e9, "miles")
  11249. },
  11250. {
  11251. name: "Leaving the Universe",
  11252. height: math.unit(1, "gigaparsec")
  11253. },
  11254. {
  11255. name: "Travelling Universes",
  11256. height: math.unit(30e15, "parsecs")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(5 + 4/12, "feet"),
  11265. weight: math.unit(120, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/odyssey/front.svg",
  11269. extra: 1747/1571,
  11270. bottom: 47/1794
  11271. }
  11272. },
  11273. side: {
  11274. height: math.unit(5.1, "feet"),
  11275. weight: math.unit(120, "lb"),
  11276. name: "Side",
  11277. image: {
  11278. source: "./media/characters/odyssey/side.svg",
  11279. extra: 1847/1619,
  11280. bottom: 47/1894
  11281. }
  11282. },
  11283. lounging: {
  11284. height: math.unit(1.464, "feet"),
  11285. weight: math.unit(120, "lb"),
  11286. name: "Lounging",
  11287. image: {
  11288. source: "./media/characters/odyssey/lounging.svg",
  11289. extra: 1235/837,
  11290. bottom: 551/1786
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(5 + 4 / 12, "feet")
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(1, "km")
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(3000, "km")
  11306. },
  11307. {
  11308. name: "Gigamacro",
  11309. height: math.unit(1, "AU"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Omniversal",
  11314. height: math.unit(100e14, "lightyears")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(5 + 10/12, "feet"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/mekuto/front.svg",
  11326. extra: 875/835,
  11327. bottom: 46/921
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Minimicro",
  11334. height: math.unit(0.2, "inches")
  11335. },
  11336. {
  11337. name: "Micro",
  11338. height: math.unit(1.5, "inches")
  11339. },
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(5 + 10 / 12, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Minimacro",
  11347. height: math.unit(17 + 9 / 12, "feet")
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(177.5, "feet")
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(152, "miles")
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(6.5, "inches"),
  11364. weight: math.unit(13, "oz"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/dafydd-tomos/front.svg",
  11368. extra: 2990 / 2603,
  11369. bottom: 0.03
  11370. }
  11371. },
  11372. },
  11373. [
  11374. {
  11375. name: "Micro",
  11376. height: math.unit(6.5, "inches"),
  11377. default: true
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11383. {
  11384. front: {
  11385. height: math.unit(6, "feet"),
  11386. weight: math.unit(150, "lb"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/splinter/front.svg",
  11390. extra: 2990 / 2882,
  11391. bottom: 0.04
  11392. }
  11393. },
  11394. back: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Back",
  11398. image: {
  11399. source: "./media/characters/splinter/back.svg",
  11400. extra: 2990 / 2882,
  11401. bottom: 0.04
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(6, "feet")
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(230, "meters"),
  11413. default: true
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11419. {
  11420. front: {
  11421. height: math.unit(4 + 10 / 12, "feet"),
  11422. weight: math.unit(480, "lb"),
  11423. name: "Front",
  11424. image: {
  11425. source: "./media/characters/snow-gabumon/front.svg",
  11426. extra: 1140 / 963,
  11427. bottom: 0.058
  11428. }
  11429. },
  11430. back: {
  11431. height: math.unit(4 + 10 / 12, "feet"),
  11432. weight: math.unit(480, "lb"),
  11433. name: "Back",
  11434. image: {
  11435. source: "./media/characters/snow-gabumon/back.svg",
  11436. extra: 1115 / 962,
  11437. bottom: 0.041
  11438. }
  11439. },
  11440. frontUndresed: {
  11441. height: math.unit(4 + 10 / 12, "feet"),
  11442. weight: math.unit(480, "lb"),
  11443. name: "Front (Undressed)",
  11444. image: {
  11445. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11446. extra: 1061 / 960,
  11447. bottom: 0.045
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Micro",
  11454. height: math.unit(1, "inch")
  11455. },
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(4 + 10 / 12, "feet"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Macro",
  11463. height: math.unit(200, "feet")
  11464. },
  11465. {
  11466. name: "Megamacro",
  11467. height: math.unit(120, "miles")
  11468. },
  11469. {
  11470. name: "Gigamacro",
  11471. height: math.unit(9800, "miles")
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(1.7, "meters"),
  11480. weight: math.unit(140, "lb"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/moody/front.svg",
  11484. extra: 3226 / 3007,
  11485. bottom: 0.087
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Micro",
  11492. height: math.unit(1, "mm")
  11493. },
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(1.7, "meters"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(80, "meters")
  11502. },
  11503. {
  11504. name: "Macro+",
  11505. height: math.unit(500, "meters")
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(150, "lb"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/zyas/front.svg",
  11518. extra: 1180 / 1120,
  11519. bottom: 0.045
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(10, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Macro",
  11531. height: math.unit(500, "feet")
  11532. },
  11533. {
  11534. name: "Megamacro",
  11535. height: math.unit(5, "miles")
  11536. },
  11537. {
  11538. name: "Teramacro",
  11539. height: math.unit(150000, "miles")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(6, "feet"),
  11548. weight: math.unit(150, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/cuon/front.svg",
  11552. extra: 1390 / 1320,
  11553. bottom: 0.008
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Micro",
  11560. height: math.unit(3, "inches")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(18 + 9 / 12, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Macro",
  11569. height: math.unit(360, "feet")
  11570. },
  11571. {
  11572. name: "Megamacro",
  11573. height: math.unit(360, "miles")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(2.4, "meters"),
  11582. weight: math.unit(70, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/nyanuxk/front.svg",
  11586. extra: 1172 / 1084,
  11587. bottom: 0.065
  11588. }
  11589. },
  11590. side: {
  11591. height: math.unit(2.4, "meters"),
  11592. weight: math.unit(70, "kg"),
  11593. name: "Side",
  11594. image: {
  11595. source: "./media/characters/nyanuxk/side.svg",
  11596. extra: 1190 / 1132,
  11597. bottom: 0.007
  11598. }
  11599. },
  11600. back: {
  11601. height: math.unit(2.4, "meters"),
  11602. weight: math.unit(70, "kg"),
  11603. name: "Back",
  11604. image: {
  11605. source: "./media/characters/nyanuxk/back.svg",
  11606. extra: 1200 / 1141,
  11607. bottom: 0.015
  11608. }
  11609. },
  11610. foot: {
  11611. height: math.unit(0.52, "meters"),
  11612. name: "Foot",
  11613. image: {
  11614. source: "./media/characters/nyanuxk/foot.svg"
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Micro",
  11621. height: math.unit(2, "cm")
  11622. },
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(2.4, "meters"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Smaller Macro",
  11630. height: math.unit(120, "meters")
  11631. },
  11632. {
  11633. name: "Bigger Macro",
  11634. height: math.unit(1.2, "km")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(15, "kilometers")
  11639. },
  11640. {
  11641. name: "Gigamacro",
  11642. height: math.unit(2000, "km")
  11643. },
  11644. {
  11645. name: "Teramacro",
  11646. height: math.unit(500000, "km")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11652. {
  11653. side: {
  11654. height: math.unit(6, "feet"),
  11655. name: "Side",
  11656. image: {
  11657. source: "./media/characters/ailbhe/side.svg",
  11658. extra: 757 / 464,
  11659. bottom: 0.041
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Normal",
  11666. height: math.unit(1.07, "meters"),
  11667. default: true
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(6, "feet"),
  11676. weight: math.unit(120, "kg"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/zevulfius/front.svg",
  11680. extra: 965 / 903
  11681. }
  11682. },
  11683. side: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(120, "kg"),
  11686. name: "Side",
  11687. image: {
  11688. source: "./media/characters/zevulfius/side.svg",
  11689. extra: 939 / 900
  11690. }
  11691. },
  11692. back: {
  11693. height: math.unit(6, "feet"),
  11694. weight: math.unit(120, "kg"),
  11695. name: "Back",
  11696. image: {
  11697. source: "./media/characters/zevulfius/back.svg",
  11698. extra: 918 / 854,
  11699. bottom: 0.005
  11700. }
  11701. },
  11702. foot: {
  11703. height: math.unit(6 / 3.72, "feet"),
  11704. name: "Foot",
  11705. image: {
  11706. source: "./media/characters/zevulfius/foot.svg"
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(750, "meters")
  11714. },
  11715. {
  11716. name: "Megamacro",
  11717. height: math.unit(20, "km"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Gigamacro",
  11722. height: math.unit(2000, "km")
  11723. },
  11724. {
  11725. name: "Teramacro",
  11726. height: math.unit(250000, "km")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(100, "feet"),
  11735. weight: math.unit(350, "kg"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/rikes/front.svg",
  11739. extra: 1565 / 1483,
  11740. bottom: 0.017
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(100, "feet"),
  11748. default: true
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(8, "feet"),
  11757. weight: math.unit(356, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/adam-silver-mane/front.svg",
  11761. extra: 1036/937,
  11762. bottom: 63/1099
  11763. }
  11764. },
  11765. side: {
  11766. height: math.unit(8, "feet"),
  11767. weight: math.unit(356, "lb"),
  11768. name: "Side",
  11769. image: {
  11770. source: "./media/characters/adam-silver-mane/side.svg",
  11771. extra: 997/901,
  11772. bottom: 59/1056
  11773. }
  11774. },
  11775. frontNsfw: {
  11776. height: math.unit(8, "feet"),
  11777. weight: math.unit(356, "lb"),
  11778. name: "Front (NSFW)",
  11779. image: {
  11780. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11781. extra: 1036/937,
  11782. bottom: 63/1099
  11783. }
  11784. },
  11785. sideNsfw: {
  11786. height: math.unit(8, "feet"),
  11787. weight: math.unit(356, "lb"),
  11788. name: "Side (NSFW)",
  11789. image: {
  11790. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11791. extra: 997/901,
  11792. bottom: 59/1056
  11793. }
  11794. },
  11795. dick: {
  11796. height: math.unit(2.1, "feet"),
  11797. name: "Dick",
  11798. image: {
  11799. source: "./media/characters/adam-silver-mane/dick.svg"
  11800. }
  11801. },
  11802. taur: {
  11803. height: math.unit(16, "feet"),
  11804. weight: math.unit(1500, "kg"),
  11805. name: "Taur",
  11806. image: {
  11807. source: "./media/characters/adam-silver-mane/taur.svg",
  11808. extra: 1713 / 1571,
  11809. bottom: 0.01
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(8, "feet")
  11817. },
  11818. {
  11819. name: "Minimacro",
  11820. height: math.unit(80, "feet")
  11821. },
  11822. {
  11823. name: "MDA",
  11824. height: math.unit(80, "meters")
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(800, "feet"),
  11829. default: true
  11830. },
  11831. {
  11832. name: "Megamacro",
  11833. height: math.unit(8000, "feet")
  11834. },
  11835. {
  11836. name: "Gigamacro",
  11837. height: math.unit(800, "miles")
  11838. },
  11839. {
  11840. name: "Teramacro",
  11841. height: math.unit(80000, "miles")
  11842. },
  11843. {
  11844. name: "Celestial",
  11845. height: math.unit(8e6, "miles")
  11846. },
  11847. {
  11848. name: "Star Dragon",
  11849. height: math.unit(800000, "parsecs")
  11850. },
  11851. {
  11852. name: "Godly",
  11853. height: math.unit(800, "teraparsecs")
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11859. {
  11860. front: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(150, "lb"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/ky'owin/front.svg",
  11866. extra: 3862/3053,
  11867. bottom: 74/3936
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Normal",
  11874. height: math.unit(6 + 8 / 12, "feet")
  11875. },
  11876. {
  11877. name: "Large",
  11878. height: math.unit(68, "feet")
  11879. },
  11880. {
  11881. name: "Macro",
  11882. height: math.unit(132, "feet")
  11883. },
  11884. {
  11885. name: "Macro+",
  11886. height: math.unit(340, "feet")
  11887. },
  11888. {
  11889. name: "Macro++",
  11890. height: math.unit(680, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Megamacro",
  11895. height: math.unit(1, "mile")
  11896. },
  11897. {
  11898. name: "Megamacro+",
  11899. height: math.unit(10, "miles")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(4, "feet"),
  11908. weight: math.unit(50, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/mal/front.svg",
  11912. extra: 785 / 724,
  11913. bottom: 0.07
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Micro",
  11920. height: math.unit(4, "inches")
  11921. },
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(4, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(200, "feet")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/jordan-deware/front.svg",
  11942. extra: 1191 / 1012
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Nano",
  11949. height: math.unit(0.01, "mm")
  11950. },
  11951. {
  11952. name: "Minimicro",
  11953. height: math.unit(1, "mm")
  11954. },
  11955. {
  11956. name: "Micro",
  11957. height: math.unit(0.5, "inches")
  11958. },
  11959. {
  11960. name: "Normal",
  11961. height: math.unit(4, "feet"),
  11962. default: true
  11963. },
  11964. {
  11965. name: "Minimacro",
  11966. height: math.unit(40, "meters")
  11967. },
  11968. {
  11969. name: "Small Macro",
  11970. height: math.unit(400, "meters")
  11971. },
  11972. {
  11973. name: "Macro",
  11974. height: math.unit(4, "miles")
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(40, "miles")
  11979. },
  11980. {
  11981. name: "Megamacro+",
  11982. height: math.unit(400, "miles")
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(400000, "miles")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11992. {
  11993. side: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(150, "lb"),
  11996. name: "Side",
  11997. image: {
  11998. source: "./media/characters/kimiko/side.svg",
  11999. extra: 600 / 358
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(15, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(220, "feet")
  12012. },
  12013. {
  12014. name: "Macro+",
  12015. height: math.unit(1450, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(11500, "feet")
  12020. },
  12021. {
  12022. name: "Gigamacro",
  12023. height: math.unit(9500, "miles")
  12024. },
  12025. {
  12026. name: "Teramacro",
  12027. height: math.unit(2208005005, "miles")
  12028. },
  12029. {
  12030. name: "Examacro",
  12031. height: math.unit(2750, "parsecs")
  12032. },
  12033. {
  12034. name: "Zettamacro",
  12035. height: math.unit(101500, "parsecs")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(70, "kg"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/andrew-sleepy/front.svg"
  12048. }
  12049. },
  12050. side: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(70, "kg"),
  12053. name: "Side",
  12054. image: {
  12055. source: "./media/characters/andrew-sleepy/side.svg"
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Micro",
  12062. height: math.unit(1, "mm"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/judio/front.svg",
  12076. extra: 1258 / 1110
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(5 + 6 / 12, "feet")
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(1000, "feet"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(10, "miles")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12098. {
  12099. frontDressed: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(68, "kg"),
  12102. name: "Front (Dressed)",
  12103. image: {
  12104. source: "./media/characters/nomaxice/front-dressed.svg",
  12105. extra: 1137/824,
  12106. bottom: 74/1211
  12107. }
  12108. },
  12109. frontShorts: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(68, "kg"),
  12112. name: "Front (Shorts)",
  12113. image: {
  12114. source: "./media/characters/nomaxice/front-shorts.svg",
  12115. extra: 1137/824,
  12116. bottom: 74/1211
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(68, "kg"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/nomaxice/back.svg",
  12125. extra: 822/786,
  12126. bottom: 39/861
  12127. }
  12128. },
  12129. hand: {
  12130. height: math.unit(0.565, "feet"),
  12131. name: "Hand",
  12132. image: {
  12133. source: "./media/characters/nomaxice/hand.svg"
  12134. }
  12135. },
  12136. foot: {
  12137. height: math.unit(1, "feet"),
  12138. name: "Foot",
  12139. image: {
  12140. source: "./media/characters/nomaxice/foot.svg"
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Micro",
  12147. height: math.unit(8, "cm")
  12148. },
  12149. {
  12150. name: "Norm",
  12151. height: math.unit(1.82, "m")
  12152. },
  12153. {
  12154. name: "Norm+",
  12155. height: math.unit(8.8, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Big",
  12160. height: math.unit(8, "meters")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(18, "meters")
  12165. },
  12166. {
  12167. name: "Macro+",
  12168. height: math.unit(88, "meters")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(12, "feet"),
  12177. weight: math.unit(1.5, "tons"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/dydros/front.svg",
  12181. extra: 863 / 800,
  12182. bottom: 0.015
  12183. }
  12184. },
  12185. back: {
  12186. height: math.unit(12, "feet"),
  12187. weight: math.unit(1.5, "tons"),
  12188. name: "Back",
  12189. image: {
  12190. source: "./media/characters/dydros/back.svg",
  12191. extra: 900 / 843,
  12192. bottom: 0.005
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(12, "feet"),
  12200. default: true
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(100, "kg"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/riggi/front.svg",
  12213. extra: 5787 / 5303
  12214. }
  12215. },
  12216. hyper: {
  12217. height: math.unit(6 * 5 / 3, "feet"),
  12218. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12219. name: "Hyper",
  12220. image: {
  12221. source: "./media/characters/riggi/hyper.svg",
  12222. extra: 3595 / 3485
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Small Macro",
  12229. height: math.unit(50, "feet")
  12230. },
  12231. {
  12232. name: "Default",
  12233. height: math.unit(200, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Loom",
  12238. height: math.unit(10000, "feet")
  12239. },
  12240. {
  12241. name: "Cruising Altitude",
  12242. height: math.unit(30000, "feet")
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(100, "miles")
  12247. },
  12248. {
  12249. name: "Continent Sized",
  12250. height: math.unit(2800, "miles")
  12251. },
  12252. {
  12253. name: "Earth Sized",
  12254. height: math.unit(8000, "miles")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(250, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/alexi/front.svg",
  12267. extra: 3483 / 3291,
  12268. bottom: 0.04
  12269. }
  12270. },
  12271. back: {
  12272. height: math.unit(6, "feet"),
  12273. weight: math.unit(250, "lb"),
  12274. name: "Back",
  12275. image: {
  12276. source: "./media/characters/alexi/back.svg",
  12277. extra: 3533 / 3356,
  12278. bottom: 0.021
  12279. }
  12280. },
  12281. frontTransforming: {
  12282. height: math.unit(8.58, "feet"),
  12283. weight: math.unit(1300, "lb"),
  12284. name: "Transforming",
  12285. image: {
  12286. source: "./media/characters/alexi/front-transforming.svg",
  12287. extra: 437 / 409,
  12288. bottom: 19 / 458.66
  12289. }
  12290. },
  12291. frontTransformed: {
  12292. height: math.unit(12.5, "feet"),
  12293. weight: math.unit(4000, "lb"),
  12294. name: "Transformed",
  12295. image: {
  12296. source: "./media/characters/alexi/front-transformed.svg",
  12297. extra: 639 / 614,
  12298. bottom: 30.55 / 671
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(14, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Minimacro",
  12310. height: math.unit(30, "meters")
  12311. },
  12312. {
  12313. name: "Macro",
  12314. height: math.unit(500, "meters")
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(9000, "km")
  12319. },
  12320. {
  12321. name: "Teramacro",
  12322. height: math.unit(384000, "km")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/kayroo/front.svg",
  12335. extra: 1153 / 1038,
  12336. bottom: 0.06
  12337. }
  12338. },
  12339. foot: {
  12340. height: math.unit(6, "feet"),
  12341. weight: math.unit(150, "lb"),
  12342. name: "Foot",
  12343. image: {
  12344. source: "./media/characters/kayroo/foot.svg"
  12345. }
  12346. },
  12347. },
  12348. [
  12349. {
  12350. name: "Normal",
  12351. height: math.unit(8, "feet"),
  12352. default: true
  12353. },
  12354. {
  12355. name: "Minimacro",
  12356. height: math.unit(250, "feet")
  12357. },
  12358. {
  12359. name: "Macro",
  12360. height: math.unit(2800, "feet")
  12361. },
  12362. {
  12363. name: "Megamacro",
  12364. height: math.unit(5200, "feet")
  12365. },
  12366. {
  12367. name: "Gigamacro",
  12368. height: math.unit(27000, "feet")
  12369. },
  12370. {
  12371. name: "Omega",
  12372. height: math.unit(45000, "feet")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(18, "feet"),
  12381. weight: math.unit(5800, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/rhys/front.svg",
  12385. extra: 3386 / 3090,
  12386. bottom: 0.07
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(18, "feet"),
  12394. default: true
  12395. },
  12396. {
  12397. name: "Working Size",
  12398. height: math.unit(200, "feet")
  12399. },
  12400. {
  12401. name: "Demolition Size",
  12402. height: math.unit(2000, "feet")
  12403. },
  12404. {
  12405. name: "Maximum Licensed Size",
  12406. height: math.unit(5, "miles")
  12407. },
  12408. {
  12409. name: "Maximum Observed Size",
  12410. height: math.unit(10, "yottameters")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(250, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/toto/front.svg",
  12423. extra: 527 / 479,
  12424. bottom: 0.05
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Micro",
  12431. height: math.unit(3, "feet")
  12432. },
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(10, "feet")
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(150, "feet"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Megamacro",
  12444. height: math.unit(1200, "feet")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "King", species: ["lion"], tags: ["anthro"] },
  12450. {
  12451. back: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/king/back.svg"
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Micro",
  12463. height: math.unit(2, "inches")
  12464. },
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(8, "feet")
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(200, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Megamacro",
  12476. height: math.unit(50, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(11, "feet"),
  12485. weight: math.unit(1400, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/cordite/front.svg",
  12489. extra: 1919/1827,
  12490. bottom: 40/1959
  12491. }
  12492. },
  12493. side: {
  12494. height: math.unit(11, "feet"),
  12495. weight: math.unit(1400, "lb"),
  12496. name: "Side",
  12497. image: {
  12498. source: "./media/characters/cordite/side.svg",
  12499. extra: 1908/1793,
  12500. bottom: 38/1946
  12501. }
  12502. },
  12503. back: {
  12504. height: math.unit(11, "feet"),
  12505. weight: math.unit(1400, "lb"),
  12506. name: "Back",
  12507. image: {
  12508. source: "./media/characters/cordite/back.svg",
  12509. extra: 1938/1837,
  12510. bottom: 10/1948
  12511. }
  12512. },
  12513. feral: {
  12514. height: math.unit(2, "feet"),
  12515. weight: math.unit(90, "lb"),
  12516. name: "Feral",
  12517. image: {
  12518. source: "./media/characters/cordite/feral.svg",
  12519. extra: 1260 / 755,
  12520. bottom: 0.05
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(11, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/pianostrong/front.svg",
  12541. extra: 6577 / 6254,
  12542. bottom: 0.02
  12543. }
  12544. },
  12545. side: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(150, "lb"),
  12548. name: "Side",
  12549. image: {
  12550. source: "./media/characters/pianostrong/side.svg",
  12551. extra: 6106 / 5730
  12552. }
  12553. },
  12554. back: {
  12555. height: math.unit(6, "feet"),
  12556. weight: math.unit(150, "lb"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/pianostrong/back.svg",
  12560. extra: 6085 / 5733,
  12561. bottom: 0.01
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(100, "feet")
  12569. },
  12570. {
  12571. name: "Macro+",
  12572. height: math.unit(300, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro++",
  12577. height: math.unit(1000, "feet")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/kona/front.svg",
  12590. extra: 2960 / 2629,
  12591. bottom: 0.005
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(11 + 8 / 12, "feet")
  12599. },
  12600. {
  12601. name: "Macro",
  12602. height: math.unit(850, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Macro+",
  12607. height: math.unit(1.5, "km"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Megamacro",
  12612. height: math.unit(80, "miles")
  12613. },
  12614. {
  12615. name: "Gigamacro",
  12616. height: math.unit(3500, "miles")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12622. {
  12623. side: {
  12624. height: math.unit(1.9, "meters"),
  12625. weight: math.unit(326, "kg"),
  12626. name: "Side",
  12627. image: {
  12628. source: "./media/characters/levi/side.svg",
  12629. extra: 1704 / 1334,
  12630. bottom: 0.02
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(1.9, "meters"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(20, "meters")
  12643. },
  12644. {
  12645. name: "Macro+",
  12646. height: math.unit(200, "meters")
  12647. },
  12648. {
  12649. name: "Megamacro",
  12650. height: math.unit(2, "km")
  12651. },
  12652. {
  12653. name: "Megamacro+",
  12654. height: math.unit(20, "km")
  12655. },
  12656. {
  12657. name: "Gigamacro",
  12658. height: math.unit(2500, "km")
  12659. },
  12660. {
  12661. name: "Gigamacro+",
  12662. height: math.unit(120000, "km")
  12663. },
  12664. {
  12665. name: "Teramacro",
  12666. height: math.unit(7.77e6, "km")
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12672. {
  12673. front: {
  12674. height: math.unit(6 + 4/12, "feet"),
  12675. weight: math.unit(190, "lb"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/bmc/front.svg",
  12679. extra: 1626/1472,
  12680. bottom: 79/1705
  12681. }
  12682. },
  12683. back: {
  12684. height: math.unit(6 + 4/12, "feet"),
  12685. weight: math.unit(190, "lb"),
  12686. name: "Back",
  12687. image: {
  12688. source: "./media/characters/bmc/back.svg",
  12689. extra: 1640/1479,
  12690. bottom: 45/1685
  12691. }
  12692. },
  12693. frontArmor: {
  12694. height: math.unit(6 + 4/12, "feet"),
  12695. weight: math.unit(190, "lb"),
  12696. name: "Front-armor",
  12697. image: {
  12698. source: "./media/characters/bmc/front-armor.svg",
  12699. extra: 1538/1468,
  12700. bottom: 79/1617
  12701. }
  12702. },
  12703. },
  12704. [
  12705. {
  12706. name: "Human-sized",
  12707. height: math.unit(6 + 4 / 12, "feet")
  12708. },
  12709. {
  12710. name: "Interactive Size",
  12711. height: math.unit(25, "feet")
  12712. },
  12713. {
  12714. name: "Small",
  12715. height: math.unit(250, "feet")
  12716. },
  12717. {
  12718. name: "Normal",
  12719. height: math.unit(1250, "feet"),
  12720. default: true
  12721. },
  12722. {
  12723. name: "Good Day",
  12724. height: math.unit(88, "miles")
  12725. },
  12726. {
  12727. name: "Largest Measured Size",
  12728. height: math.unit(105.960, "galaxies")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12734. {
  12735. front: {
  12736. height: math.unit(20, "feet"),
  12737. weight: math.unit(2016, "kg"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/sven-the-kaiju/front.svg",
  12741. extra: 1277/1250,
  12742. bottom: 35/1312
  12743. }
  12744. },
  12745. mouth: {
  12746. height: math.unit(1.85, "feet"),
  12747. name: "Mouth",
  12748. image: {
  12749. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Fairy",
  12756. height: math.unit(6, "inches")
  12757. },
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(20, "feet"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Rampage",
  12765. height: math.unit(200, "feet")
  12766. },
  12767. {
  12768. name: "Archfey Forest Guardian",
  12769. height: math.unit(1, "mile")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(4, "meters"),
  12778. weight: math.unit(2, "tons"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/marik/front.svg",
  12782. extra: 1057 / 1003,
  12783. bottom: 0.08
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(4, "meters"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(20, "meters")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(50, "km")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(100, "km")
  12804. },
  12805. {
  12806. name: "Alpha Macro",
  12807. height: math.unit(7.88e7, "yottameters")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(110, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/mel/front.svg",
  12820. extra: 736 / 617,
  12821. bottom: 0.017
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Pico",
  12828. height: math.unit(3, "pm")
  12829. },
  12830. {
  12831. name: "Nano",
  12832. height: math.unit(3, "nm")
  12833. },
  12834. {
  12835. name: "Micro",
  12836. height: math.unit(0.3, "mm"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Micro+",
  12841. height: math.unit(3, "mm")
  12842. },
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(5 + 10.5 / 12, "feet")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12851. {
  12852. kaiju: {
  12853. height: math.unit(1.75, "meters"),
  12854. weight: math.unit(55, "kg"),
  12855. name: "Kaiju",
  12856. image: {
  12857. source: "./media/characters/lykonous/kaiju.svg",
  12858. extra: 1055 / 946,
  12859. bottom: 0.135
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(2.5, "meters"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Kaiju Dragon",
  12871. height: math.unit(60, "meters")
  12872. },
  12873. {
  12874. name: "Mega Kaiju",
  12875. height: math.unit(120, "km")
  12876. },
  12877. {
  12878. name: "Giga Kaiju",
  12879. height: math.unit(200, "megameters")
  12880. },
  12881. {
  12882. name: "Terra Kaiju",
  12883. height: math.unit(400, "gigameters")
  12884. },
  12885. {
  12886. name: "Kaiju Dragon God",
  12887. height: math.unit(13000, "exaparsecs")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/blü/front.svg",
  12900. extra: 1883 / 1564,
  12901. bottom: 0.031
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Normal",
  12908. height: math.unit(13, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Big Boi",
  12913. height: math.unit(150, "meters")
  12914. },
  12915. {
  12916. name: "Mini Stomper",
  12917. height: math.unit(300, "meters")
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(1000, "meters")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(11000, "meters")
  12926. },
  12927. {
  12928. name: "Gigamacro",
  12929. height: math.unit(11000, "km")
  12930. },
  12931. {
  12932. name: "Teramacro",
  12933. height: math.unit(420000, "km")
  12934. },
  12935. {
  12936. name: "Examacro",
  12937. height: math.unit(120, "parsecs")
  12938. },
  12939. {
  12940. name: "God Tho",
  12941. height: math.unit(98000000000, "parsecs")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12947. {
  12948. taurFront: {
  12949. height: math.unit(6, "feet"),
  12950. weight: math.unit(200, "lb"),
  12951. name: "Taur (Front)",
  12952. image: {
  12953. source: "./media/characters/scales/taur-front.svg",
  12954. extra: 1,
  12955. bottom: 0.05
  12956. }
  12957. },
  12958. taurBack: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(200, "lb"),
  12961. name: "Taur (Back)",
  12962. image: {
  12963. source: "./media/characters/scales/taur-back.svg",
  12964. extra: 1,
  12965. bottom: 0.08
  12966. }
  12967. },
  12968. anthro: {
  12969. height: math.unit(6 * 7 / 12, "feet"),
  12970. weight: math.unit(100, "lb"),
  12971. name: "Anthro",
  12972. image: {
  12973. source: "./media/characters/scales/anthro.svg",
  12974. extra: 1,
  12975. bottom: 0.06
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/koragos/front.svg",
  12996. extra: 841 / 794,
  12997. bottom: 0.035
  12998. }
  12999. },
  13000. back: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(150, "lb"),
  13003. name: "Back",
  13004. image: {
  13005. source: "./media/characters/koragos/back.svg",
  13006. extra: 841 / 810,
  13007. bottom: 0.022
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(6 + 11 / 12, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(490, "feet")
  13020. },
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(10, "miles")
  13024. },
  13025. {
  13026. name: "Gigamacro",
  13027. height: math.unit(50, "miles")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(250, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/xylrem/front.svg",
  13040. extra: 3323 / 3050,
  13041. bottom: 0.065
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Micro",
  13048. height: math.unit(4, "feet")
  13049. },
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(16, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Macro",
  13057. height: math.unit(2720, "feet")
  13058. },
  13059. {
  13060. name: "Megamacro",
  13061. height: math.unit(25000, "miles")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(8, "feet"),
  13070. weight: math.unit(250, "kg"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/ikideru/front.svg",
  13074. extra: 930 / 870,
  13075. bottom: 0.087
  13076. }
  13077. },
  13078. back: {
  13079. height: math.unit(8, "feet"),
  13080. weight: math.unit(250, "kg"),
  13081. name: "Back",
  13082. image: {
  13083. source: "./media/characters/ikideru/back.svg",
  13084. extra: 919 / 852,
  13085. bottom: 0.055
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Rare",
  13092. height: math.unit(8, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Playful Loom",
  13097. height: math.unit(80, "feet")
  13098. },
  13099. {
  13100. name: "City Leaner",
  13101. height: math.unit(230, "feet")
  13102. },
  13103. {
  13104. name: "Megamacro",
  13105. height: math.unit(2500, "feet")
  13106. },
  13107. {
  13108. name: "Gigamacro",
  13109. height: math.unit(26400, "feet")
  13110. },
  13111. {
  13112. name: "Tectonic Shifter",
  13113. height: math.unit(1.7, "megameters")
  13114. },
  13115. {
  13116. name: "Planet Carer",
  13117. height: math.unit(21, "megameters")
  13118. },
  13119. {
  13120. name: "God",
  13121. height: math.unit(11157.22, "parsecs")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(120, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/neo/front.svg"
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Micro",
  13140. height: math.unit(2, "inches"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Human Size",
  13145. height: math.unit(5 + 8 / 12, "feet")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(13 + 10 / 12, "feet"),
  13154. weight: math.unit(5320, "lb"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/chauncey-chantz/front.svg",
  13158. extra: 1587 / 1435,
  13159. bottom: 0.02
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(13 + 10 / 12, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(45, "feet")
  13172. },
  13173. {
  13174. name: "Megamacro",
  13175. height: math.unit(250, "miles")
  13176. },
  13177. {
  13178. name: "Planetary",
  13179. height: math.unit(10000, "miles")
  13180. },
  13181. {
  13182. name: "Galactic",
  13183. height: math.unit(40000, "parsecs")
  13184. },
  13185. {
  13186. name: "Universal",
  13187. height: math.unit(1, "yottameter")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/epifox/front.svg",
  13200. extra: 1,
  13201. bottom: 0.075
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Micro",
  13208. height: math.unit(6, "inches")
  13209. },
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(12, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(3810, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(500, "miles")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(1.8796, "m"),
  13230. weight: math.unit(230, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/colin-t/front.svg",
  13234. extra: 1272 / 1193,
  13235. bottom: 0.07
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Micro",
  13242. height: math.unit(0.571, "meters")
  13243. },
  13244. {
  13245. name: "Normal",
  13246. height: math.unit(1.8796, "meters"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Tall",
  13251. height: math.unit(4, "meters")
  13252. },
  13253. {
  13254. name: "Macro",
  13255. height: math.unit(67.241, "meters")
  13256. },
  13257. {
  13258. name: "Megamacro",
  13259. height: math.unit(371.856, "meters")
  13260. },
  13261. {
  13262. name: "Planetary",
  13263. height: math.unit(12631.5689, "km")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(1.85, "meters"),
  13272. weight: math.unit(80, "kg"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/matvei/front.svg",
  13276. extra: 456/447,
  13277. bottom: 8/464
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(1.85, "meters"),
  13282. weight: math.unit(80, "kg"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/matvei/back.svg",
  13286. extra: 434/427,
  13287. bottom: 11/445
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(1.85, "meters"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(5 + 9 / 12, "feet"),
  13304. weight: math.unit(70, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/quincy/front.svg",
  13308. extra: 3041 / 2751
  13309. }
  13310. },
  13311. back: {
  13312. height: math.unit(5 + 9 / 12, "feet"),
  13313. weight: math.unit(70, "lb"),
  13314. name: "Back",
  13315. image: {
  13316. source: "./media/characters/quincy/back.svg",
  13317. extra: 3041 / 2751
  13318. }
  13319. },
  13320. flying: {
  13321. height: math.unit(5 + 4 / 12, "feet"),
  13322. weight: math.unit(70, "lb"),
  13323. name: "Flying",
  13324. image: {
  13325. source: "./media/characters/quincy/flying.svg",
  13326. extra: 1044 / 930
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Micro",
  13333. height: math.unit(3, "cm")
  13334. },
  13335. {
  13336. name: "Normal",
  13337. height: math.unit(5 + 9 / 12, "feet")
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(200, "meters"),
  13342. default: true
  13343. },
  13344. {
  13345. name: "Megamacro",
  13346. height: math.unit(1000, "meters")
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(3 + 11/12, "feet"),
  13355. weight: math.unit(50, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/vanrel/front.svg",
  13359. extra: 1104/949,
  13360. bottom: 52/1156
  13361. }
  13362. },
  13363. back: {
  13364. height: math.unit(3 + 11/12, "feet"),
  13365. weight: math.unit(50, "lb"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/vanrel/back.svg",
  13369. extra: 1119/976,
  13370. bottom: 37/1156
  13371. }
  13372. },
  13373. tome: {
  13374. height: math.unit(1.35, "feet"),
  13375. weight: math.unit(10, "lb"),
  13376. name: "Vanrel's Tome",
  13377. rename: true,
  13378. image: {
  13379. source: "./media/characters/vanrel/tome.svg"
  13380. }
  13381. },
  13382. beans: {
  13383. height: math.unit(0.89, "feet"),
  13384. name: "Beans",
  13385. image: {
  13386. source: "./media/characters/vanrel/beans.svg"
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(3 + 11/12, "feet"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(7 + 5 / 12, "feet"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/kuiper-vanrel/front.svg",
  13406. extra: 1219/1169,
  13407. bottom: 69/1288
  13408. }
  13409. },
  13410. back: {
  13411. height: math.unit(7 + 5 / 12, "feet"),
  13412. name: "Back",
  13413. image: {
  13414. source: "./media/characters/kuiper-vanrel/back.svg",
  13415. extra: 1236/1193,
  13416. bottom: 27/1263
  13417. }
  13418. },
  13419. foot: {
  13420. height: math.unit(0.55, "meters"),
  13421. name: "Foot",
  13422. image: {
  13423. source: "./media/characters/kuiper-vanrel/foot.svg",
  13424. }
  13425. },
  13426. battle: {
  13427. height: math.unit(6.824, "feet"),
  13428. name: "Battle",
  13429. image: {
  13430. source: "./media/characters/kuiper-vanrel/battle.svg",
  13431. extra: 1466 / 1327,
  13432. bottom: 29 / 1492.5
  13433. }
  13434. },
  13435. meerkui: {
  13436. height: math.unit(18, "inches"),
  13437. name: "Meerkui",
  13438. image: {
  13439. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13440. extra: 1354/1289,
  13441. bottom: 69/1423
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Normal",
  13448. height: math.unit(7 + 5 / 12, "feet"),
  13449. default: true
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(8 + 5 / 12, "feet"),
  13458. name: "Front",
  13459. image: {
  13460. source: "./media/characters/keset-vanrel/front.svg",
  13461. extra: 1231/1148,
  13462. bottom: 82/1313
  13463. }
  13464. },
  13465. back: {
  13466. height: math.unit(8 + 5 / 12, "feet"),
  13467. name: "Back",
  13468. image: {
  13469. source: "./media/characters/keset-vanrel/back.svg",
  13470. extra: 1240/1174,
  13471. bottom: 33/1273
  13472. }
  13473. },
  13474. hand: {
  13475. height: math.unit(0.6, "meters"),
  13476. name: "Hand",
  13477. image: {
  13478. source: "./media/characters/keset-vanrel/hand.svg"
  13479. }
  13480. },
  13481. foot: {
  13482. height: math.unit(0.94978, "meters"),
  13483. name: "Foot",
  13484. image: {
  13485. source: "./media/characters/keset-vanrel/foot.svg"
  13486. }
  13487. },
  13488. battle: {
  13489. height: math.unit(7.408, "feet"),
  13490. name: "Battle",
  13491. image: {
  13492. source: "./media/characters/keset-vanrel/battle.svg",
  13493. extra: 1890 / 1386,
  13494. bottom: 73.28 / 1970
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(8 + 5 / 12, "feet"),
  13502. default: true
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/neos/front.svg",
  13515. extra: 1696 / 992,
  13516. bottom: 0.14
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(54, "cm"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "m")
  13529. },
  13530. {
  13531. name: "Megamacro",
  13532. height: math.unit(10, "km")
  13533. },
  13534. {
  13535. name: "Megamacro+",
  13536. height: math.unit(100, "km")
  13537. },
  13538. {
  13539. name: "Gigamacro",
  13540. height: math.unit(100, "Mm")
  13541. },
  13542. {
  13543. name: "Teramacro",
  13544. height: math.unit(100, "Gm")
  13545. },
  13546. {
  13547. name: "Examacro",
  13548. height: math.unit(100, "Em")
  13549. },
  13550. {
  13551. name: "Godly",
  13552. height: math.unit(10000, "Ym")
  13553. },
  13554. {
  13555. name: "Beyond Godly",
  13556. height: math.unit(25, "multiverses")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13562. {
  13563. feminine: {
  13564. height: math.unit(5, "feet"),
  13565. weight: math.unit(100, "lb"),
  13566. name: "Feminine",
  13567. image: {
  13568. source: "./media/characters/sammy-mouse/feminine.svg",
  13569. extra: 2526 / 2425,
  13570. bottom: 0.123
  13571. }
  13572. },
  13573. masculine: {
  13574. height: math.unit(5, "feet"),
  13575. weight: math.unit(100, "lb"),
  13576. name: "Masculine",
  13577. image: {
  13578. source: "./media/characters/sammy-mouse/masculine.svg",
  13579. extra: 2526 / 2425,
  13580. bottom: 0.123
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(5, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(5, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(60, "feet")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(4, "feet"),
  13605. weight: math.unit(50, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/kole/front.svg",
  13609. extra: 1423 / 1303,
  13610. bottom: 0.025
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(4, "feet"),
  13615. weight: math.unit(50, "lb"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/kole/back.svg",
  13619. extra: 1426 / 1280,
  13620. bottom: 0.02
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(4, "feet"),
  13628. default: true
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(2.5, "feet"),
  13637. weight: math.unit(32, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/rufran/front.svg",
  13641. extra: 1313/885,
  13642. bottom: 94/1407
  13643. }
  13644. },
  13645. side: {
  13646. height: math.unit(2.5, "feet"),
  13647. weight: math.unit(32, "lb"),
  13648. name: "Side",
  13649. image: {
  13650. source: "./media/characters/rufran/side.svg",
  13651. extra: 1109/852,
  13652. bottom: 118/1227
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(2.5, "feet"),
  13657. weight: math.unit(32, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/rufran/back.svg",
  13661. extra: 1280/878,
  13662. bottom: 131/1411
  13663. }
  13664. },
  13665. mouth: {
  13666. height: math.unit(1.13, "feet"),
  13667. name: "Mouth",
  13668. image: {
  13669. source: "./media/characters/rufran/mouth.svg"
  13670. }
  13671. },
  13672. foot: {
  13673. height: math.unit(1.33, "feet"),
  13674. name: "Foot",
  13675. image: {
  13676. source: "./media/characters/rufran/foot.svg"
  13677. }
  13678. },
  13679. koboldFront: {
  13680. height: math.unit(2 + 6 / 12, "feet"),
  13681. weight: math.unit(20, "lb"),
  13682. name: "Front (Kobold)",
  13683. image: {
  13684. source: "./media/characters/rufran/kobold-front.svg",
  13685. extra: 2041 / 1839,
  13686. bottom: 0.055
  13687. }
  13688. },
  13689. koboldBack: {
  13690. height: math.unit(2 + 6 / 12, "feet"),
  13691. weight: math.unit(20, "lb"),
  13692. name: "Back (Kobold)",
  13693. image: {
  13694. source: "./media/characters/rufran/kobold-back.svg",
  13695. extra: 2054 / 1839,
  13696. bottom: 0.01
  13697. }
  13698. },
  13699. koboldHand: {
  13700. height: math.unit(0.2166, "meters"),
  13701. name: "Hand (Kobold)",
  13702. image: {
  13703. source: "./media/characters/rufran/kobold-hand.svg"
  13704. }
  13705. },
  13706. koboldFoot: {
  13707. height: math.unit(0.185, "meters"),
  13708. name: "Foot (Kobold)",
  13709. image: {
  13710. source: "./media/characters/rufran/kobold-foot.svg"
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Micro",
  13717. height: math.unit(1, "inch")
  13718. },
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(2 + 6 / 12, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Big",
  13726. height: math.unit(60, "feet")
  13727. },
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(325, "feet")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(0.3, "meters"),
  13739. weight: math.unit(3.5, "kg"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/chip/front.svg",
  13743. extra: 748 / 674
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Micro",
  13750. height: math.unit(1, "inch"),
  13751. default: true
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13757. {
  13758. side: {
  13759. height: math.unit(2.3, "meters"),
  13760. weight: math.unit(3500, "lb"),
  13761. name: "Side",
  13762. image: {
  13763. source: "./media/characters/torvid/side.svg",
  13764. extra: 1972 / 722,
  13765. bottom: 0.035
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(2.3, "meters"),
  13773. default: true
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(2, "meters"),
  13782. weight: math.unit(150.5, "kg"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/susan/front.svg",
  13786. extra: 693 / 635,
  13787. bottom: 0.05
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(505, "miles"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/raindrops/front.svg",
  13808. extra: 2655 / 2461,
  13809. bottom: 49 / 2705
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(150, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/raindrops/back.svg",
  13818. extra: 2574 / 2400,
  13819. bottom: 65 / 2634
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Micro",
  13826. height: math.unit(6, "inches")
  13827. },
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(6 + 2 / 12, "feet")
  13831. },
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(131, "feet"),
  13835. default: true
  13836. },
  13837. {
  13838. name: "Megamacro",
  13839. height: math.unit(15, "miles")
  13840. },
  13841. {
  13842. name: "Gigamacro",
  13843. height: math.unit(4000, "miles")
  13844. },
  13845. {
  13846. name: "Teramacro",
  13847. height: math.unit(315000, "miles")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(2.794, "meters"),
  13856. weight: math.unit(325, "kg"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/tezwa/front.svg",
  13860. extra: 2083 / 1906,
  13861. bottom: 0.031
  13862. }
  13863. },
  13864. foot: {
  13865. height: math.unit(0.687, "meters"),
  13866. name: "Foot",
  13867. image: {
  13868. source: "./media/characters/tezwa/foot.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(9 + 2 / 12, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(58, "feet"),
  13885. weight: math.unit(89000, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/typhus/front.svg",
  13889. extra: 816 / 800,
  13890. bottom: 0.065
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(58, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(12, "feet"),
  13907. weight: math.unit(6, "tonnes"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/lyra-von-wulf/front.svg",
  13911. extra: 1,
  13912. bottom: 0.10
  13913. }
  13914. },
  13915. frontMecha: {
  13916. height: math.unit(12, "feet"),
  13917. weight: math.unit(12, "tonnes"),
  13918. name: "Front (Mecha)",
  13919. image: {
  13920. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13921. extra: 1,
  13922. bottom: 0.042
  13923. }
  13924. },
  13925. maw: {
  13926. height: math.unit(2.2, "feet"),
  13927. name: "Maw",
  13928. image: {
  13929. source: "./media/characters/lyra-von-wulf/maw.svg"
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(12, "feet"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Classic",
  13941. height: math.unit(50, "feet")
  13942. },
  13943. {
  13944. name: "Macro",
  13945. height: math.unit(500, "feet")
  13946. },
  13947. {
  13948. name: "Megamacro",
  13949. height: math.unit(1, "mile")
  13950. },
  13951. {
  13952. name: "Gigamacro",
  13953. height: math.unit(400, "miles")
  13954. },
  13955. {
  13956. name: "Teramacro",
  13957. height: math.unit(22000, "miles")
  13958. },
  13959. {
  13960. name: "Solarmacro",
  13961. height: math.unit(8600000, "miles")
  13962. },
  13963. {
  13964. name: "Galactic",
  13965. height: math.unit(1057000, "lightyears")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6 + 10 / 12, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/dixon/front.svg",
  13978. extra: 3361 / 3209,
  13979. bottom: 0.01
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Normal",
  13986. height: math.unit(6 + 10 / 12, "feet"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Big",
  13991. height: math.unit(12, "meters")
  13992. },
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(500, "meters")
  13996. },
  13997. {
  13998. name: "Megamacro",
  13999. height: math.unit(2, "km")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(185, "cm"),
  14008. weight: math.unit(68, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/kauko/front.svg",
  14012. extra: 1455 / 1421,
  14013. bottom: 0.03
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(185, "cm"),
  14018. weight: math.unit(68, "kg"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/kauko/back.svg",
  14022. extra: 1455 / 1421,
  14023. bottom: 0.004
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(185, "cm"),
  14031. default: true
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14037. {
  14038. frontSfw: {
  14039. height: math.unit(5, "meters"),
  14040. weight: math.unit(4250, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/varg/front-sfw.svg",
  14044. extra: 1103/1010,
  14045. bottom: 50/1153
  14046. },
  14047. form: "anthro",
  14048. default: true
  14049. },
  14050. backSfw: {
  14051. height: math.unit(5, "meters"),
  14052. weight: math.unit(4250, "lb"),
  14053. name: "Back",
  14054. image: {
  14055. source: "./media/characters/varg/back-sfw.svg",
  14056. extra: 1038/1022,
  14057. bottom: 36/1074
  14058. },
  14059. form: "anthro"
  14060. },
  14061. frontNsfw: {
  14062. height: math.unit(5, "meters"),
  14063. weight: math.unit(4250, "lb"),
  14064. name: "Front (NSFW)",
  14065. image: {
  14066. source: "./media/characters/varg/front-nsfw.svg",
  14067. extra: 1103/1010,
  14068. bottom: 50/1153
  14069. },
  14070. form: "anthro"
  14071. },
  14072. sheath: {
  14073. height: math.unit(3.8, "feet"),
  14074. weight: math.unit(90, "kilograms"),
  14075. name: "Sheath",
  14076. image: {
  14077. source: "./media/characters/varg/sheath.svg"
  14078. },
  14079. form: "anthro"
  14080. },
  14081. dick: {
  14082. height: math.unit(4.6, "feet"),
  14083. weight: math.unit(451, "kilograms"),
  14084. name: "Dick",
  14085. image: {
  14086. source: "./media/characters/varg/dick.svg"
  14087. },
  14088. form: "anthro"
  14089. },
  14090. feralSfw: {
  14091. height: math.unit(5, "meters"),
  14092. weight: math.unit(100000, "lb"),
  14093. name: "Side",
  14094. image: {
  14095. source: "./media/characters/varg/feral-sfw.svg",
  14096. extra: 1065/511,
  14097. bottom: 211/1276
  14098. },
  14099. form: "feral",
  14100. default: true
  14101. },
  14102. feralNsfw: {
  14103. height: math.unit(5, "meters"),
  14104. weight: math.unit(100000, "lb"),
  14105. name: "Side (NSFW)",
  14106. image: {
  14107. source: "./media/characters/varg/feral-nsfw.svg",
  14108. extra: 1065/511,
  14109. bottom: 211/1276
  14110. },
  14111. form: "feral",
  14112. },
  14113. feralSheath: {
  14114. height: math.unit(9.8, "feet"),
  14115. weight: math.unit(2000, "kilograms"),
  14116. name: "Sheath",
  14117. image: {
  14118. source: "./media/characters/varg/sheath.svg"
  14119. },
  14120. form: "feral"
  14121. },
  14122. feralDick: {
  14123. height: math.unit(13.11, "feet"),
  14124. weight: math.unit(10440, "kilograms"),
  14125. name: "Dick",
  14126. image: {
  14127. source: "./media/characters/varg/dick.svg"
  14128. },
  14129. form: "feral"
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(5, "meters"),
  14136. form: "anthro"
  14137. },
  14138. {
  14139. name: "Macro",
  14140. height: math.unit(200, "meters"),
  14141. form: "anthro"
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(20, "kilometers"),
  14146. form: "anthro"
  14147. },
  14148. {
  14149. name: "True Size",
  14150. height: math.unit(211, "km"),
  14151. form: "anthro",
  14152. default: true
  14153. },
  14154. {
  14155. name: "Gigamacro",
  14156. height: math.unit(1000, "km"),
  14157. form: "anthro"
  14158. },
  14159. {
  14160. name: "Gigamacro+",
  14161. height: math.unit(8000, "km"),
  14162. form: "anthro"
  14163. },
  14164. {
  14165. name: "Teramacro",
  14166. height: math.unit(1000000, "km"),
  14167. form: "anthro"
  14168. },
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(5, "meters"),
  14172. form: "feral"
  14173. },
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(200, "meters"),
  14177. form: "feral"
  14178. },
  14179. {
  14180. name: "Megamacro",
  14181. height: math.unit(20, "kilometers"),
  14182. form: "feral"
  14183. },
  14184. {
  14185. name: "True Size",
  14186. height: math.unit(211, "km"),
  14187. form: "feral",
  14188. default: true
  14189. },
  14190. {
  14191. name: "Gigamacro",
  14192. height: math.unit(1000, "km"),
  14193. form: "feral"
  14194. },
  14195. {
  14196. name: "Gigamacro+",
  14197. height: math.unit(8000, "km"),
  14198. form: "feral"
  14199. },
  14200. {
  14201. name: "Teramacro",
  14202. height: math.unit(1000000, "km"),
  14203. form: "feral"
  14204. },
  14205. ],
  14206. {
  14207. "anthro": {
  14208. name: "Anthro",
  14209. default: true
  14210. },
  14211. "feral": {
  14212. name: "Feral",
  14213. },
  14214. }
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(7 + 7 / 12, "feet"),
  14221. weight: math.unit(267, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/dayza/front.svg",
  14225. extra: 1262 / 1200,
  14226. bottom: 0.035
  14227. }
  14228. },
  14229. side: {
  14230. height: math.unit(7 + 7 / 12, "feet"),
  14231. weight: math.unit(267, "lb"),
  14232. name: "Side",
  14233. image: {
  14234. source: "./media/characters/dayza/side.svg",
  14235. extra: 1295 / 1245,
  14236. bottom: 0.05
  14237. }
  14238. },
  14239. back: {
  14240. height: math.unit(7 + 7 / 12, "feet"),
  14241. weight: math.unit(267, "lb"),
  14242. name: "Back",
  14243. image: {
  14244. source: "./media/characters/dayza/back.svg",
  14245. extra: 1241 / 1170
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Normal",
  14252. height: math.unit(7 + 7 / 12, "feet"),
  14253. default: true
  14254. },
  14255. {
  14256. name: "Macro",
  14257. height: math.unit(155, "feet")
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(6 + 5 / 12, "feet"),
  14266. weight: math.unit(160, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/xanthos/front.svg",
  14270. extra: 1,
  14271. bottom: 0.04
  14272. }
  14273. },
  14274. back: {
  14275. height: math.unit(6 + 5 / 12, "feet"),
  14276. weight: math.unit(160, "lb"),
  14277. name: "Back",
  14278. image: {
  14279. source: "./media/characters/xanthos/back.svg",
  14280. extra: 1,
  14281. bottom: 0.03
  14282. }
  14283. },
  14284. hand: {
  14285. height: math.unit(0.928, "feet"),
  14286. name: "Hand",
  14287. image: {
  14288. source: "./media/characters/xanthos/hand.svg"
  14289. }
  14290. },
  14291. foot: {
  14292. height: math.unit(1.286, "feet"),
  14293. name: "Foot",
  14294. image: {
  14295. source: "./media/characters/xanthos/foot.svg"
  14296. }
  14297. },
  14298. },
  14299. [
  14300. {
  14301. name: "Normal",
  14302. height: math.unit(6 + 5 / 12, "feet"),
  14303. default: true
  14304. },
  14305. {
  14306. name: "Normal+",
  14307. height: math.unit(6, "meters")
  14308. },
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(40, "feet")
  14312. },
  14313. {
  14314. name: "Macro+",
  14315. height: math.unit(200, "meters")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(20, "km")
  14320. },
  14321. {
  14322. name: "Megamacro+",
  14323. height: math.unit(100, "km")
  14324. },
  14325. {
  14326. name: "Gigamacro",
  14327. height: math.unit(200, "megameters")
  14328. },
  14329. {
  14330. name: "Gigamacro+",
  14331. height: math.unit(1.5, "gigameters")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6 + 3 / 12, "feet"),
  14340. weight: math.unit(215, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/grynn/front.svg",
  14344. extra: 4627 / 4209,
  14345. bottom: 0.047
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(6, "inches")
  14353. },
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(6 + 3 / 12, "feet"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Big",
  14361. height: math.unit(104, "feet")
  14362. },
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(944, "feet")
  14366. },
  14367. {
  14368. name: "Macro+",
  14369. height: math.unit(9480, "feet")
  14370. },
  14371. {
  14372. name: "Megamacro",
  14373. height: math.unit(78752, "feet")
  14374. },
  14375. {
  14376. name: "Megamacro+",
  14377. height: math.unit(630128, "feet")
  14378. },
  14379. {
  14380. name: "Megamacro++",
  14381. height: math.unit(3150695, "feet")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(7 + 5 / 12, "feet"),
  14390. weight: math.unit(450, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/mocha-aura/front.svg",
  14394. extra: 1907 / 1817,
  14395. bottom: 0.04
  14396. }
  14397. },
  14398. back: {
  14399. height: math.unit(7 + 5 / 12, "feet"),
  14400. weight: math.unit(450, "lb"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/mocha-aura/back.svg",
  14404. extra: 1900 / 1825,
  14405. bottom: 0.045
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Nano",
  14412. height: math.unit(1, "nm")
  14413. },
  14414. {
  14415. name: "Megamicro",
  14416. height: math.unit(1, "mm")
  14417. },
  14418. {
  14419. name: "Micro",
  14420. height: math.unit(3, "inches")
  14421. },
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(7 + 5 / 12, "feet"),
  14425. default: true
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(30, "feet")
  14430. },
  14431. {
  14432. name: "Megamacro",
  14433. height: math.unit(3500, "feet")
  14434. },
  14435. {
  14436. name: "Teramacro",
  14437. height: math.unit(500000, "miles")
  14438. },
  14439. {
  14440. name: "Petamacro",
  14441. height: math.unit(50000000000000000, "parsecs")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/ilisha-devya/front.svg",
  14454. extra: 1053/1049,
  14455. bottom: 270/1323
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/ilisha-devya/back.svg",
  14464. extra: 1131/1128,
  14465. bottom: 39/1170
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Macro",
  14472. height: math.unit(500, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Megamacro",
  14477. height: math.unit(10, "miles")
  14478. },
  14479. {
  14480. name: "Gigamacro",
  14481. height: math.unit(100000, "miles")
  14482. },
  14483. {
  14484. name: "Examacro",
  14485. height: math.unit(1e9, "lightyears")
  14486. },
  14487. {
  14488. name: "Omniversal",
  14489. height: math.unit(1e33, "lightyears")
  14490. },
  14491. {
  14492. name: "Beyond Infinite",
  14493. height: math.unit(1e100, "lightyears")
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14499. {
  14500. Side: {
  14501. height: math.unit(6, "feet"),
  14502. weight: math.unit(150, "lb"),
  14503. name: "Side",
  14504. image: {
  14505. source: "./media/characters/mira/side.svg",
  14506. extra: 900 / 799,
  14507. bottom: 0.02
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Human Size",
  14514. height: math.unit(6, "feet")
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(100, "feet"),
  14519. default: true
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(10, "miles")
  14524. },
  14525. {
  14526. name: "Gigamacro",
  14527. height: math.unit(25000, "miles")
  14528. },
  14529. {
  14530. name: "Teramacro",
  14531. height: math.unit(300, "AU")
  14532. },
  14533. {
  14534. name: "Full Size",
  14535. height: math.unit(4.5e10, "lightyears")
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(150, "lb"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/holly/front.svg",
  14548. extra: 639 / 606
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(150, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/holly/back.svg",
  14557. extra: 623 / 598
  14558. }
  14559. },
  14560. frontWorking: {
  14561. height: math.unit(6, "feet"),
  14562. weight: math.unit(150, "lb"),
  14563. name: "Front (Working)",
  14564. image: {
  14565. source: "./media/characters/holly/front-working.svg",
  14566. extra: 607 / 577,
  14567. bottom: 0.048
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(12 + 3 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/porter/front.svg",
  14588. extra: 1,
  14589. bottom: 0.01
  14590. }
  14591. },
  14592. frontRobes: {
  14593. height: math.unit(6, "feet"),
  14594. weight: math.unit(150, "lb"),
  14595. name: "Front (Robes)",
  14596. image: {
  14597. source: "./media/characters/porter/front-robes.svg",
  14598. extra: 1.01,
  14599. bottom: 0.01
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(11 + 9 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14613. {
  14614. legendary: {
  14615. height: math.unit(6, "feet"),
  14616. weight: math.unit(150, "lb"),
  14617. name: "Legendary",
  14618. image: {
  14619. source: "./media/characters/lucy/legendary.svg",
  14620. extra: 1355 / 1100,
  14621. bottom: 0.045
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Legendary",
  14628. height: math.unit(86882 * 2, "miles"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/drusilla/front.svg",
  14642. extra: 678 / 635,
  14643. bottom: 0.03
  14644. }
  14645. },
  14646. back: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Back",
  14650. image: {
  14651. source: "./media/characters/drusilla/back.svg",
  14652. extra: 678 / 635,
  14653. bottom: 0.005
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Macro",
  14660. height: math.unit(100, "feet")
  14661. },
  14662. {
  14663. name: "Canon Height",
  14664. height: math.unit(2000, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(180, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/renard-thatch/front.svg",
  14678. extra: 2411 / 2275,
  14679. bottom: 0.01
  14680. }
  14681. },
  14682. frontPosing: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(180, "lb"),
  14685. name: "Front (Posing)",
  14686. image: {
  14687. source: "./media/characters/renard-thatch/front-posing.svg",
  14688. extra: 2381 / 2261,
  14689. bottom: 0.01
  14690. }
  14691. },
  14692. back: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(180, "lb"),
  14695. name: "Back",
  14696. image: {
  14697. source: "./media/characters/renard-thatch/back.svg",
  14698. extra: 2428 / 2288
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Micro",
  14705. height: math.unit(3, "inches")
  14706. },
  14707. {
  14708. name: "Default",
  14709. height: math.unit(6, "feet"),
  14710. default: true
  14711. },
  14712. {
  14713. name: "Macro",
  14714. height: math.unit(75, "feet")
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(1450, "feet"),
  14723. weight: math.unit(1.21e6, "tons"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/sekvra/front.svg",
  14727. extra: 1193/1190,
  14728. bottom: 78/1271
  14729. }
  14730. },
  14731. side: {
  14732. height: math.unit(1450, "feet"),
  14733. weight: math.unit(1.21e6, "tons"),
  14734. name: "Side",
  14735. image: {
  14736. source: "./media/characters/sekvra/side.svg",
  14737. extra: 1193/1190,
  14738. bottom: 52/1245
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(1450, "feet"),
  14743. weight: math.unit(1.21e6, "tons"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/sekvra/back.svg",
  14747. extra: 1219/1216,
  14748. bottom: 21/1240
  14749. }
  14750. },
  14751. frontClothed: {
  14752. height: math.unit(1450, "feet"),
  14753. weight: math.unit(1.21e6, "tons"),
  14754. name: "Front (Clothed)",
  14755. image: {
  14756. source: "./media/characters/sekvra/front-clothed.svg",
  14757. extra: 1192/1189,
  14758. bottom: 79/1271
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Macro",
  14765. height: math.unit(1450, "feet"),
  14766. default: true
  14767. },
  14768. {
  14769. name: "Megamacro",
  14770. height: math.unit(15000, "feet")
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6, "feet"),
  14779. weight: math.unit(150, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/carmine/front.svg",
  14783. extra: 1,
  14784. bottom: 0.035
  14785. }
  14786. },
  14787. frontArmor: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Front (Armor)",
  14791. image: {
  14792. source: "./media/characters/carmine/front-armor.svg",
  14793. extra: 1,
  14794. bottom: 0.035
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Large",
  14801. height: math.unit(1, "mile")
  14802. },
  14803. {
  14804. name: "Huge",
  14805. height: math.unit(40, "miles"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Colossal",
  14810. height: math.unit(2500, "miles")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Elyssia", species: ["banchofossa"], 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/elyssia/front.svg",
  14823. extra: 2201 / 2035,
  14824. bottom: 0.05
  14825. }
  14826. },
  14827. frontClothed: {
  14828. height: math.unit(6, "feet"),
  14829. weight: math.unit(150, "lb"),
  14830. name: "Front (Clothed)",
  14831. image: {
  14832. source: "./media/characters/elyssia/front-clothed.svg",
  14833. extra: 2201 / 2035,
  14834. bottom: 0.05
  14835. }
  14836. },
  14837. back: {
  14838. height: math.unit(6, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Back",
  14841. image: {
  14842. source: "./media/characters/elyssia/back.svg",
  14843. extra: 2201 / 2035,
  14844. bottom: 0.013
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Smaller",
  14851. height: math.unit(150, "feet")
  14852. },
  14853. {
  14854. name: "Standard",
  14855. height: math.unit(1400, "feet"),
  14856. default: true
  14857. },
  14858. {
  14859. name: "Distracted",
  14860. height: math.unit(15000, "feet")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(7 + 4/12, "feet"),
  14869. weight: math.unit(690, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/geno-maxwell/front.svg",
  14873. extra: 984/856,
  14874. bottom: 87/1071
  14875. }
  14876. },
  14877. back: {
  14878. height: math.unit(7 + 4/12, "feet"),
  14879. weight: math.unit(690, "lb"),
  14880. name: "Back",
  14881. image: {
  14882. source: "./media/characters/geno-maxwell/back.svg",
  14883. extra: 981/854,
  14884. bottom: 57/1038
  14885. }
  14886. },
  14887. frontCostume: {
  14888. height: math.unit(7 + 4/12, "feet"),
  14889. weight: math.unit(690, "lb"),
  14890. name: "Front (Costume)",
  14891. image: {
  14892. source: "./media/characters/geno-maxwell/front-costume.svg",
  14893. extra: 984/856,
  14894. bottom: 87/1071
  14895. }
  14896. },
  14897. backcostume: {
  14898. height: math.unit(7 + 4/12, "feet"),
  14899. weight: math.unit(690, "lb"),
  14900. name: "Back (Costume)",
  14901. image: {
  14902. source: "./media/characters/geno-maxwell/back-costume.svg",
  14903. extra: 981/854,
  14904. bottom: 57/1038
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Micro",
  14911. height: math.unit(3, "inches")
  14912. },
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(7 + 4 / 12, "feet"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Macro",
  14920. height: math.unit(220, "feet")
  14921. },
  14922. {
  14923. name: "Megamacro",
  14924. height: math.unit(11, "miles")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(7 + 4/12, "feet"),
  14933. weight: math.unit(750, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/regena-maxwell/front.svg",
  14937. extra: 984/856,
  14938. bottom: 87/1071
  14939. }
  14940. },
  14941. back: {
  14942. height: math.unit(7 + 4/12, "feet"),
  14943. weight: math.unit(750, "lb"),
  14944. name: "Back",
  14945. image: {
  14946. source: "./media/characters/regena-maxwell/back.svg",
  14947. extra: 981/854,
  14948. bottom: 57/1038
  14949. }
  14950. },
  14951. frontCostume: {
  14952. height: math.unit(7 + 4/12, "feet"),
  14953. weight: math.unit(750, "lb"),
  14954. name: "Front (Costume)",
  14955. image: {
  14956. source: "./media/characters/regena-maxwell/front-costume.svg",
  14957. extra: 984/856,
  14958. bottom: 87/1071
  14959. }
  14960. },
  14961. backcostume: {
  14962. height: math.unit(7 + 4/12, "feet"),
  14963. weight: math.unit(750, "lb"),
  14964. name: "Back (Costume)",
  14965. image: {
  14966. source: "./media/characters/regena-maxwell/back-costume.svg",
  14967. extra: 981/854,
  14968. bottom: 57/1038
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(7 + 4 / 12, "feet"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(220, "feet")
  14981. },
  14982. {
  14983. name: "Megamacro",
  14984. height: math.unit(11, "miles")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(6, "feet"),
  14993. weight: math.unit(150, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14997. extra: 860 / 690,
  14998. bottom: 0.03
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(1.7, "meters"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/quilly/front.svg",
  15019. extra: 890 / 776
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Gigamacro",
  15026. height: math.unit(404090, "miles"),
  15027. default: true
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(7 + 8 / 12, "feet"),
  15036. weight: math.unit(350, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/tempest/front.svg",
  15040. extra: 1175 / 1086,
  15041. bottom: 0.02
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(7 + 8 / 12, "feet"),
  15049. default: true
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15055. {
  15056. side: {
  15057. height: math.unit(4 + 5 / 12, "feet"),
  15058. weight: math.unit(80, "lb"),
  15059. name: "Side",
  15060. image: {
  15061. source: "./media/characters/rodger/side.svg",
  15062. extra: 1235 / 1118
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Micro",
  15069. height: math.unit(1, "inch")
  15070. },
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(4 + 5 / 12, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(120, "feet")
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6, "feet"),
  15087. weight: math.unit(150, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/danyel/front.svg",
  15091. extra: 1185 / 1123,
  15092. bottom: 0.05
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Shrunken",
  15099. height: math.unit(0.5, "mm")
  15100. },
  15101. {
  15102. name: "Micro",
  15103. height: math.unit(1, "mm"),
  15104. default: true
  15105. },
  15106. {
  15107. name: "Upsized",
  15108. height: math.unit(5 + 5 / 12, "feet")
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(5 + 6 / 12, "feet"),
  15117. weight: math.unit(200, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/vivian-bijoux/front.svg",
  15121. extra: 1217/1209,
  15122. bottom: 76/1293
  15123. }
  15124. },
  15125. back: {
  15126. height: math.unit(5 + 6 / 12, "feet"),
  15127. weight: math.unit(200, "lb"),
  15128. name: "Back",
  15129. image: {
  15130. source: "./media/characters/vivian-bijoux/back.svg",
  15131. extra: 1214/1208,
  15132. bottom: 51/1265
  15133. }
  15134. },
  15135. dressed: {
  15136. height: math.unit(5 + 6 / 12, "feet"),
  15137. weight: math.unit(200, "lb"),
  15138. name: "Dressed",
  15139. image: {
  15140. source: "./media/characters/vivian-bijoux/dressed.svg",
  15141. extra: 1217/1209,
  15142. bottom: 76/1293
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(5 + 6 / 12, "feet"),
  15150. default: true
  15151. },
  15152. {
  15153. name: "Bad Dream",
  15154. height: math.unit(500, "feet")
  15155. },
  15156. {
  15157. name: "Nightmare",
  15158. height: math.unit(500, "miles")
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(6 + 1 / 12, "feet"),
  15167. weight: math.unit(260, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/zeta/front.svg",
  15171. extra: 1968 / 1889,
  15172. bottom: 0.06
  15173. }
  15174. },
  15175. back: {
  15176. height: math.unit(6 + 1 / 12, "feet"),
  15177. weight: math.unit(260, "lb"),
  15178. name: "Back",
  15179. image: {
  15180. source: "./media/characters/zeta/back.svg",
  15181. extra: 1944 / 1858,
  15182. bottom: 0.03
  15183. }
  15184. },
  15185. hand: {
  15186. height: math.unit(1.112, "feet"),
  15187. name: "Hand",
  15188. image: {
  15189. source: "./media/characters/zeta/hand.svg"
  15190. }
  15191. },
  15192. foot: {
  15193. height: math.unit(1.48, "feet"),
  15194. name: "Foot",
  15195. image: {
  15196. source: "./media/characters/zeta/foot.svg"
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Micro",
  15203. height: math.unit(6, "inches")
  15204. },
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6 + 1 / 12, "feet"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Macro",
  15212. height: math.unit(20, "feet")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/jamie-larsen/front.svg",
  15225. extra: 962 / 933,
  15226. bottom: 0.02
  15227. }
  15228. },
  15229. back: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Back",
  15233. image: {
  15234. source: "./media/characters/jamie-larsen/back.svg",
  15235. extra: 997 / 946
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(28 + 7 / 12, "feet"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Macro+",
  15247. height: math.unit(180, "feet")
  15248. },
  15249. {
  15250. name: "Megamacro",
  15251. height: math.unit(10, "miles")
  15252. },
  15253. {
  15254. name: "Gigamacro",
  15255. height: math.unit(200000, "miles")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(120, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/vance/front.svg",
  15268. extra: 1980 / 1890,
  15269. bottom: 0.09
  15270. }
  15271. },
  15272. back: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(120, "lb"),
  15275. name: "Back",
  15276. image: {
  15277. source: "./media/characters/vance/back.svg",
  15278. extra: 2081 / 1994,
  15279. bottom: 0.014
  15280. }
  15281. },
  15282. hand: {
  15283. height: math.unit(0.88, "feet"),
  15284. name: "Hand",
  15285. image: {
  15286. source: "./media/characters/vance/hand.svg"
  15287. }
  15288. },
  15289. foot: {
  15290. height: math.unit(0.64, "feet"),
  15291. name: "Foot",
  15292. image: {
  15293. source: "./media/characters/vance/foot.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Small",
  15300. height: math.unit(90, "feet"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Macro",
  15305. height: math.unit(100, "meters")
  15306. },
  15307. {
  15308. name: "Megamacro",
  15309. height: math.unit(15, "miles")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6, "feet"),
  15318. weight: math.unit(180, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/xochitl/front.svg",
  15322. extra: 2297 / 2261,
  15323. bottom: 0.065
  15324. }
  15325. },
  15326. back: {
  15327. height: math.unit(6, "feet"),
  15328. weight: math.unit(180, "lb"),
  15329. name: "Back",
  15330. image: {
  15331. source: "./media/characters/xochitl/back.svg",
  15332. extra: 2386 / 2354,
  15333. bottom: 0.01
  15334. }
  15335. },
  15336. foot: {
  15337. height: math.unit(6 / 5 * 1.15, "feet"),
  15338. weight: math.unit(150, "lb"),
  15339. name: "Foot",
  15340. image: {
  15341. source: "./media/characters/xochitl/foot.svg"
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Macro",
  15348. height: math.unit(80, "feet")
  15349. },
  15350. {
  15351. name: "Macro+",
  15352. height: math.unit(400, "feet"),
  15353. default: true
  15354. },
  15355. {
  15356. name: "Gigamacro",
  15357. height: math.unit(80000, "miles")
  15358. },
  15359. {
  15360. name: "Gigamacro+",
  15361. height: math.unit(400000, "miles")
  15362. },
  15363. {
  15364. name: "Teramacro",
  15365. height: math.unit(300, "AU")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(150, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/vincent/front.svg",
  15378. extra: 1130 / 1080,
  15379. bottom: 0.055
  15380. }
  15381. },
  15382. beak: {
  15383. height: math.unit(6 * 0.1, "feet"),
  15384. name: "Beak",
  15385. image: {
  15386. source: "./media/characters/vincent/beak.svg"
  15387. }
  15388. },
  15389. hand: {
  15390. height: math.unit(6 * 0.85, "feet"),
  15391. weight: math.unit(150, "lb"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/vincent/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(6 * 0.19, "feet"),
  15399. weight: math.unit(150, "lb"),
  15400. name: "Foot",
  15401. image: {
  15402. source: "./media/characters/vincent/foot.svg"
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Base",
  15409. height: math.unit(6 + 5 / 12, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Macro",
  15414. height: math.unit(300, "feet")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(2, "miles")
  15419. },
  15420. {
  15421. name: "Gigamacro",
  15422. height: math.unit(1000, "miles")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(2, "meters"),
  15431. weight: math.unit(500, "kg"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/coatl/front.svg",
  15435. extra: 3948 / 3500,
  15436. bottom: 0.082
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(4, "meters")
  15444. },
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(100, "meters"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro+",
  15452. height: math.unit(300, "meters")
  15453. },
  15454. {
  15455. name: "Megamacro",
  15456. height: math.unit(3, "gigameters")
  15457. },
  15458. {
  15459. name: "Megamacro+",
  15460. height: math.unit(300, "terameters")
  15461. },
  15462. {
  15463. name: "Megamacro++",
  15464. height: math.unit(3, "lightyears")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(50, "kg"),
  15474. name: "front",
  15475. image: {
  15476. source: "./media/characters/shiroryu/front.svg",
  15477. extra: 1990 / 1935
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Mortal Mingling",
  15484. height: math.unit(3, "meters")
  15485. },
  15486. {
  15487. name: "Kaiju-ish",
  15488. height: math.unit(250, "meters")
  15489. },
  15490. {
  15491. name: "Somewhat Godly",
  15492. height: math.unit(400, "km"),
  15493. default: true
  15494. },
  15495. {
  15496. name: "Planetary",
  15497. height: math.unit(300, "megameters")
  15498. },
  15499. {
  15500. name: "Galaxy-dwarfing",
  15501. height: math.unit(450, "kiloparsecs")
  15502. },
  15503. {
  15504. name: "Universe Eater",
  15505. height: math.unit(150, "gigaparsecs")
  15506. },
  15507. {
  15508. name: "Almost Immeasurable",
  15509. height: math.unit(1.3e266, "yottaparsecs")
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15515. {
  15516. front: {
  15517. height: math.unit(6, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/umeko/front.svg",
  15522. extra: 1,
  15523. bottom: 0.019
  15524. }
  15525. },
  15526. frontArmored: {
  15527. height: math.unit(6, "feet"),
  15528. weight: math.unit(150, "lb"),
  15529. name: "Front (Armored)",
  15530. image: {
  15531. source: "./media/characters/umeko/front-armored.svg",
  15532. extra: 1,
  15533. bottom: 0.021
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Macro",
  15540. height: math.unit(220, "feet"),
  15541. default: true
  15542. },
  15543. {
  15544. name: "Guardian Dragon",
  15545. height: math.unit(50, "miles")
  15546. },
  15547. {
  15548. name: "Cosmic",
  15549. height: math.unit(800000, "miles")
  15550. },
  15551. ]
  15552. ))
  15553. characterMakers.push(() => makeCharacter(
  15554. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15555. {
  15556. front: {
  15557. height: math.unit(6, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Front",
  15560. image: {
  15561. source: "./media/characters/cassidy/front.svg",
  15562. extra: 810/808,
  15563. bottom: 41/851
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Canon Height",
  15570. height: math.unit(120, "feet"),
  15571. default: true
  15572. },
  15573. {
  15574. name: "Macro+",
  15575. height: math.unit(400, "feet")
  15576. },
  15577. {
  15578. name: "Macro++",
  15579. height: math.unit(4000, "feet")
  15580. },
  15581. {
  15582. name: "Megamacro",
  15583. height: math.unit(3, "miles")
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(150, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/isaac/front.svg",
  15596. extra: 896 / 815,
  15597. bottom: 0.11
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Human Size",
  15604. height: math.unit(8, "feet"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "Macro",
  15609. height: math.unit(400, "feet")
  15610. },
  15611. {
  15612. name: "Megamacro",
  15613. height: math.unit(50, "miles")
  15614. },
  15615. {
  15616. name: "Canon Height",
  15617. height: math.unit(200, "AU")
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(72, "kg"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/sleekit/front.svg",
  15630. extra: 4693 / 4487,
  15631. bottom: 0.012
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Minimum Height",
  15638. height: math.unit(10, "meters")
  15639. },
  15640. {
  15641. name: "Smaller",
  15642. height: math.unit(25, "meters")
  15643. },
  15644. {
  15645. name: "Larger",
  15646. height: math.unit(38, "meters"),
  15647. default: true
  15648. },
  15649. {
  15650. name: "Maximum height",
  15651. height: math.unit(100, "meters")
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15657. {
  15658. front: {
  15659. height: math.unit(6, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/nillia/front.svg",
  15664. extra: 2195 / 2037,
  15665. bottom: 0.005
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/nillia/back.svg",
  15674. extra: 2195 / 2037,
  15675. bottom: 0.005
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Canon Height",
  15682. height: math.unit(489, "feet"),
  15683. default: true
  15684. }
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/mesmyriza/front.svg",
  15696. extra: 2067 / 1784,
  15697. bottom: 0.035
  15698. }
  15699. },
  15700. foot: {
  15701. height: math.unit(6 / (250 / 35), "feet"),
  15702. name: "Foot",
  15703. image: {
  15704. source: "./media/characters/mesmyriza/foot.svg"
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Macro",
  15711. height: math.unit(457, "meters"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Megamacro",
  15716. height: math.unit(8, "megameters")
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(6, "feet"),
  15725. weight: math.unit(250, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/saudade/front.svg",
  15729. extra: 1172 / 1139,
  15730. bottom: 0.035
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Micro",
  15737. height: math.unit(3, "inches")
  15738. },
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(6, "feet"),
  15742. default: true
  15743. },
  15744. {
  15745. name: "Macro",
  15746. height: math.unit(50, "feet")
  15747. },
  15748. {
  15749. name: "Megamacro",
  15750. height: math.unit(2800, "feet")
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 4 / 12, "feet"),
  15759. weight: math.unit(100, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/keireer/front.svg",
  15763. extra: 716 / 666,
  15764. bottom: 0.05
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 4 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5.5, "feet"),
  15781. weight: math.unit(90, "kg"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/mirja/front.svg",
  15785. extra: 1452/1262,
  15786. bottom: 67/1519
  15787. }
  15788. },
  15789. frontDressed: {
  15790. height: math.unit(5.5, "feet"),
  15791. weight: math.unit(90, "lb"),
  15792. name: "Front (Dressed)",
  15793. image: {
  15794. source: "./media/characters/mirja/dressed.svg",
  15795. extra: 1452/1262,
  15796. bottom: 67/1519
  15797. }
  15798. },
  15799. back: {
  15800. height: math.unit(6, "feet"),
  15801. weight: math.unit(90, "lb"),
  15802. name: "Back",
  15803. image: {
  15804. source: "./media/characters/mirja/back.svg",
  15805. extra: 1892/1795,
  15806. bottom: 48/1940
  15807. }
  15808. },
  15809. maw: {
  15810. height: math.unit(1.312, "feet"),
  15811. name: "Maw",
  15812. image: {
  15813. source: "./media/characters/mirja/maw.svg"
  15814. }
  15815. },
  15816. paw: {
  15817. height: math.unit(1.15, "feet"),
  15818. name: "Paw",
  15819. image: {
  15820. source: "./media/characters/mirja/paw.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "\"Incognito\"",
  15827. height: math.unit(3, "meters")
  15828. },
  15829. {
  15830. name: "Strolling Size",
  15831. height: math.unit(15, "km")
  15832. },
  15833. {
  15834. name: "Larger Strolling Size",
  15835. height: math.unit(400, "km")
  15836. },
  15837. {
  15838. name: "Preferred Size",
  15839. height: math.unit(5000, "km"),
  15840. default: true
  15841. },
  15842. {
  15843. name: "True Size",
  15844. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(15, "feet"),
  15853. weight: math.unit(880, "kg"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/nightraver/front.svg",
  15857. extra: 2444 / 2160,
  15858. bottom: 0.027
  15859. }
  15860. },
  15861. back: {
  15862. height: math.unit(15, "feet"),
  15863. weight: math.unit(880, "kg"),
  15864. name: "Back",
  15865. image: {
  15866. source: "./media/characters/nightraver/back.svg",
  15867. extra: 2309 / 2180,
  15868. bottom: 0.005
  15869. }
  15870. },
  15871. sole: {
  15872. height: math.unit(2.878, "feet"),
  15873. name: "Sole",
  15874. image: {
  15875. source: "./media/characters/nightraver/sole.svg"
  15876. }
  15877. },
  15878. foot: {
  15879. height: math.unit(2.285, "feet"),
  15880. name: "Foot",
  15881. image: {
  15882. source: "./media/characters/nightraver/foot.svg"
  15883. }
  15884. },
  15885. maw: {
  15886. height: math.unit(2.67, "feet"),
  15887. name: "Maw",
  15888. image: {
  15889. source: "./media/characters/nightraver/maw.svg"
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Micro",
  15896. height: math.unit(1, "cm")
  15897. },
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(15, "feet"),
  15901. default: true
  15902. },
  15903. {
  15904. name: "Macro",
  15905. height: math.unit(300, "feet")
  15906. },
  15907. {
  15908. name: "Megamacro",
  15909. height: math.unit(300, "miles")
  15910. },
  15911. {
  15912. name: "Gigamacro",
  15913. height: math.unit(10000, "miles")
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15919. {
  15920. side: {
  15921. height: math.unit(2, "inches"),
  15922. weight: math.unit(5, "grams"),
  15923. name: "Side",
  15924. image: {
  15925. source: "./media/characters/arc/side.svg"
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Micro",
  15932. height: math.unit(2, "inches"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(1.1938, "meters"),
  15942. weight: math.unit(54, "kg"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/nebula-shahar/front.svg",
  15946. extra: 1642 / 1436,
  15947. bottom: 0.06
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Megamicro",
  15954. height: math.unit(0.3, "mm")
  15955. },
  15956. {
  15957. name: "Micro",
  15958. height: math.unit(3, "cm")
  15959. },
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(138, "cm"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(30, "m")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(5.24, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/shayla/front.svg",
  15980. extra: 1512 / 1414,
  15981. bottom: 0.01
  15982. }
  15983. },
  15984. back: {
  15985. height: math.unit(5.24, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Back",
  15988. image: {
  15989. source: "./media/characters/shayla/back.svg",
  15990. extra: 1512 / 1414
  15991. }
  15992. },
  15993. hand: {
  15994. height: math.unit(0.7781496062992126, "feet"),
  15995. name: "Hand",
  15996. image: {
  15997. source: "./media/characters/shayla/hand.svg"
  15998. }
  15999. },
  16000. foot: {
  16001. height: math.unit(1.4206036745406823, "feet"),
  16002. name: "Foot",
  16003. image: {
  16004. source: "./media/characters/shayla/foot.svg"
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Micro",
  16011. height: math.unit(0.32, "feet")
  16012. },
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(5.24, "feet"),
  16016. default: true
  16017. },
  16018. {
  16019. name: "Macro",
  16020. height: math.unit(492.12, "feet")
  16021. },
  16022. {
  16023. name: "Megamacro",
  16024. height: math.unit(186.41, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(2.2, "m"),
  16033. weight: math.unit(120, "kg"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/pia-jr/front.svg",
  16037. extra: 1000 / 970,
  16038. bottom: 0.035
  16039. }
  16040. },
  16041. hand: {
  16042. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16043. name: "Hand",
  16044. image: {
  16045. source: "./media/characters/pia-jr/hand.svg"
  16046. }
  16047. },
  16048. paw: {
  16049. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16050. name: "Paw",
  16051. image: {
  16052. source: "./media/characters/pia-jr/paw.svg"
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(1.2, "cm")
  16060. },
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(2.2, "m"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(180, "m")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(420, "km")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(2, "m"),
  16081. weight: math.unit(115, "kg"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/pia-sr/front.svg",
  16085. extra: 760 / 730,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(2, "m"),
  16091. weight: math.unit(115, "kg"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/pia-sr/back.svg",
  16095. extra: 760 / 730,
  16096. bottom: 0.01
  16097. }
  16098. },
  16099. hand: {
  16100. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16101. name: "Hand",
  16102. image: {
  16103. source: "./media/characters/pia-sr/hand.svg"
  16104. }
  16105. },
  16106. foot: {
  16107. height: math.unit(1.83, "feet"),
  16108. name: "Foot",
  16109. image: {
  16110. source: "./media/characters/pia-sr/foot.svg"
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Micro",
  16117. height: math.unit(88, "mm")
  16118. },
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(2, "m"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Macro",
  16126. height: math.unit(200, "m")
  16127. },
  16128. {
  16129. name: "Megamacro",
  16130. height: math.unit(420, "km")
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(8 + 2 / 12, "feet"),
  16139. weight: math.unit(300, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/kibibyte/front.svg",
  16143. extra: 2221 / 2098,
  16144. bottom: 0.04
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(8 + 2 / 12, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Socialable Macro",
  16156. height: math.unit(50, "feet")
  16157. },
  16158. {
  16159. name: "Macro",
  16160. height: math.unit(300, "feet")
  16161. },
  16162. {
  16163. name: "Megamacro",
  16164. height: math.unit(500, "miles")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(6, "feet"),
  16173. weight: math.unit(150, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/felix/front.svg",
  16177. extra: 762 / 722,
  16178. bottom: 0.02
  16179. }
  16180. },
  16181. frontClothed: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(150, "lb"),
  16184. name: "Front (Clothed)",
  16185. image: {
  16186. source: "./media/characters/felix/front-clothed.svg",
  16187. extra: 762 / 722,
  16188. bottom: 0.02
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 8 / 12, "feet"),
  16196. default: true
  16197. },
  16198. {
  16199. name: "Macro",
  16200. height: math.unit(2600, "feet")
  16201. },
  16202. {
  16203. name: "Megamacro",
  16204. height: math.unit(450, "miles")
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6 + 1 / 12, "feet"),
  16213. weight: math.unit(250, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/tobo/front.svg",
  16217. extra: 608 / 586,
  16218. bottom: 0.023
  16219. }
  16220. },
  16221. back: {
  16222. height: math.unit(6 + 1 / 12, "feet"),
  16223. weight: math.unit(250, "lb"),
  16224. name: "Back",
  16225. image: {
  16226. source: "./media/characters/tobo/back.svg",
  16227. extra: 608 / 586
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Nano",
  16234. height: math.unit(2, "nm")
  16235. },
  16236. {
  16237. name: "Megamicro",
  16238. height: math.unit(0.1, "mm")
  16239. },
  16240. {
  16241. name: "Micro",
  16242. height: math.unit(1, "inch"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Human-sized",
  16247. height: math.unit(6 + 1 / 12, "feet")
  16248. },
  16249. {
  16250. name: "Macro",
  16251. height: math.unit(250, "feet")
  16252. },
  16253. {
  16254. name: "Megamacro",
  16255. height: math.unit(75, "miles")
  16256. },
  16257. {
  16258. name: "Texas-sized",
  16259. height: math.unit(750, "miles")
  16260. },
  16261. {
  16262. name: "Teramacro",
  16263. height: math.unit(50000, "miles")
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(269, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/danny-kapowsky/front.svg",
  16276. extra: 766 / 736,
  16277. bottom: 0.044
  16278. }
  16279. },
  16280. back: {
  16281. height: math.unit(6, "feet"),
  16282. weight: math.unit(269, "lb"),
  16283. name: "Back",
  16284. image: {
  16285. source: "./media/characters/danny-kapowsky/back.svg",
  16286. extra: 797 / 760,
  16287. bottom: 0.025
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Macro",
  16294. height: math.unit(150, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro+",
  16299. height: math.unit(200, "feet")
  16300. },
  16301. {
  16302. name: "Macro++",
  16303. height: math.unit(300, "feet")
  16304. },
  16305. {
  16306. name: "Macro+++",
  16307. height: math.unit(400, "feet")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16313. {
  16314. side: {
  16315. height: math.unit(6, "feet"),
  16316. weight: math.unit(170, "lb"),
  16317. name: "Side",
  16318. image: {
  16319. source: "./media/characters/finn/side.svg",
  16320. extra: 1953 / 1807,
  16321. bottom: 0.057
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Megamacro",
  16328. height: math.unit(14445, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(5 + 6 / 12, "feet"),
  16338. weight: math.unit(125, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/roy/front.svg",
  16342. extra: 1,
  16343. bottom: 0.11
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Micro",
  16350. height: math.unit(3, "inches"),
  16351. default: true
  16352. },
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(5 + 6 / 12, "feet")
  16356. },
  16357. {
  16358. name: "Lesser Macro",
  16359. height: math.unit(60, "feet")
  16360. },
  16361. {
  16362. name: "Greater Macro",
  16363. height: math.unit(120, "feet")
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(6, "feet"),
  16372. weight: math.unit(100, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/aevsivs/front.svg",
  16376. extra: 1,
  16377. bottom: 0.03
  16378. }
  16379. },
  16380. back: {
  16381. height: math.unit(6, "feet"),
  16382. weight: math.unit(100, "lb"),
  16383. name: "Back",
  16384. image: {
  16385. source: "./media/characters/aevsivs/back.svg"
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Micro",
  16392. height: math.unit(2, "inches"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(5, "feet")
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(5 + 7 / 12, "feet"),
  16406. weight: math.unit(159, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/hildegard/front.svg",
  16410. extra: 289 / 269,
  16411. bottom: 7.63 / 297.8
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(5 + 7 / 12, "feet"),
  16416. weight: math.unit(159, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/hildegard/back.svg",
  16420. extra: 280 / 260,
  16421. bottom: 2.3 / 282
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(5 + 7 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16435. {
  16436. bernard: {
  16437. height: math.unit(2 + 7 / 12, "feet"),
  16438. weight: math.unit(66, "lb"),
  16439. name: "Bernard",
  16440. rename: true,
  16441. image: {
  16442. source: "./media/characters/bernard-wilder/bernard.svg",
  16443. extra: 192 / 128,
  16444. bottom: 0.05
  16445. }
  16446. },
  16447. wilder: {
  16448. height: math.unit(5 + 8 / 12, "feet"),
  16449. weight: math.unit(143, "lb"),
  16450. name: "Wilder",
  16451. rename: true,
  16452. image: {
  16453. source: "./media/characters/bernard-wilder/wilder.svg",
  16454. extra: 361 / 312,
  16455. bottom: 0.02
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(2 + 7 / 12, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16469. {
  16470. anthro: {
  16471. height: math.unit(6 + 1 / 12, "feet"),
  16472. weight: math.unit(155, "lb"),
  16473. name: "Anthro",
  16474. image: {
  16475. source: "./media/characters/hearth/anthro.svg",
  16476. extra: 1178/1136,
  16477. bottom: 28/1206
  16478. }
  16479. },
  16480. feral: {
  16481. height: math.unit(3.78, "feet"),
  16482. weight: math.unit(35, "kg"),
  16483. name: "Feral",
  16484. image: {
  16485. source: "./media/characters/hearth/feral.svg",
  16486. extra: 153 / 135,
  16487. bottom: 0.03
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(6 + 1 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(6, "feet"),
  16504. weight: math.unit(182, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/ingrid/front.svg",
  16508. extra: 294 / 268,
  16509. bottom: 0.027
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(6, "feet"),
  16517. default: true
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16523. {
  16524. eevee: {
  16525. height: math.unit(2 + 10 / 12, "feet"),
  16526. weight: math.unit(86, "lb"),
  16527. name: "Malgam",
  16528. image: {
  16529. source: "./media/characters/malgam/eevee.svg",
  16530. extra: 952/784,
  16531. bottom: 38/990
  16532. }
  16533. },
  16534. sylveon: {
  16535. height: math.unit(4, "feet"),
  16536. weight: math.unit(101, "lb"),
  16537. name: "Future Malgam",
  16538. rename: true,
  16539. image: {
  16540. source: "./media/characters/malgam/sylveon.svg",
  16541. extra: 371 / 325,
  16542. bottom: 0.015
  16543. }
  16544. },
  16545. gigantamax: {
  16546. height: math.unit(50, "feet"),
  16547. name: "Gigantamax Malgam",
  16548. rename: true,
  16549. image: {
  16550. source: "./media/characters/malgam/gigantamax.svg"
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(2 + 10 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(5 + 11 / 12, "feet"),
  16567. weight: math.unit(188, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/fleur/front.svg",
  16571. extra: 309 / 283,
  16572. bottom: 0.007
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(5 + 11 / 12, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(5 + 4 / 12, "feet"),
  16589. weight: math.unit(122, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/jude/front.svg",
  16593. extra: 288 / 273,
  16594. bottom: 0.03
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(5 + 4 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(5 + 11 / 12, "feet"),
  16611. weight: math.unit(190, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/seara/front.svg",
  16615. extra: 1,
  16616. bottom: 0.05
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(5 + 11 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(16 + 5 / 12, "feet"),
  16633. weight: math.unit(524, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/caspian-lugia/front.svg",
  16637. extra: 1,
  16638. bottom: 0.04
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(16 + 5 / 12, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(5 + 7 / 12, "feet"),
  16655. weight: math.unit(170, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/mika/front.svg",
  16659. extra: 1,
  16660. bottom: 0.016
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(5 + 7 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(6 + 2 / 12, "feet"),
  16677. weight: math.unit(268, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/sol/front.svg",
  16681. extra: 247 / 231,
  16682. bottom: 0.05
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(6 + 2 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16696. {
  16697. buizel: {
  16698. height: math.unit(2 + 5 / 12, "feet"),
  16699. weight: math.unit(87, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/umiko/buizel.svg",
  16703. extra: 172 / 157,
  16704. bottom: 0.01
  16705. },
  16706. form: "buizel",
  16707. default: true
  16708. },
  16709. floatzel: {
  16710. height: math.unit(5 + 9 / 12, "feet"),
  16711. weight: math.unit(250, "lb"),
  16712. name: "Front",
  16713. image: {
  16714. source: "./media/characters/umiko/floatzel.svg",
  16715. extra: 1076/1006,
  16716. bottom: 15/1091
  16717. },
  16718. form: "floatzel",
  16719. default: true
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(2 + 5 / 12, "feet"),
  16726. form: "buizel",
  16727. default: true
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(5 + 9 / 12, "feet"),
  16732. form: "floatzel",
  16733. default: true
  16734. },
  16735. ],
  16736. {
  16737. "buizel": {
  16738. name: "Buizel"
  16739. },
  16740. "floatzel": {
  16741. name: "Floatzel",
  16742. default: true
  16743. }
  16744. }
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(6 + 2 / 12, "feet"),
  16751. weight: math.unit(146, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/iliac/front.svg",
  16755. extra: 389 / 365,
  16756. bottom: 0.035
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(6 + 2 / 12, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(6, "feet"),
  16773. weight: math.unit(170, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/topaz/front.svg",
  16777. extra: 317 / 303,
  16778. bottom: 0.055
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(6, "feet"),
  16786. default: true
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(5 + 11 / 12, "feet"),
  16795. weight: math.unit(144, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/gabriel/front.svg",
  16799. extra: 285 / 262,
  16800. bottom: 0.004
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Normal",
  16807. height: math.unit(5 + 11 / 12, "feet"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16814. {
  16815. side: {
  16816. height: math.unit(6 + 5 / 12, "feet"),
  16817. weight: math.unit(300, "lb"),
  16818. name: "Side",
  16819. image: {
  16820. source: "./media/characters/tempest-suicune/side.svg",
  16821. extra: 195 / 154,
  16822. bottom: 0.04
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(6 + 5 / 12, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(7 + 2 / 12, "feet"),
  16839. weight: math.unit(322, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/vulcan/front.svg",
  16843. extra: 154 / 147,
  16844. bottom: 0.04
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(7 + 2 / 12, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(5 + 10 / 12, "feet"),
  16861. weight: math.unit(264, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/gault/front.svg",
  16865. extra: 161 / 140,
  16866. bottom: 0.028
  16867. }
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(5 + 10 / 12, "feet"),
  16874. default: true
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(150, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/shard/front.svg",
  16887. extra: 273 / 238,
  16888. bottom: 0.02
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(3 + 6 / 12, "feet"),
  16896. default: true
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(5 + 11 / 12, "feet"),
  16905. weight: math.unit(146, "lb"),
  16906. name: "Front",
  16907. image: {
  16908. source: "./media/characters/ashe/front.svg",
  16909. extra: 400 / 373,
  16910. bottom: 0.01
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(5 + 11 / 12, "feet"),
  16918. default: true
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(5 + 5 / 12, "feet"),
  16927. weight: math.unit(135, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/beatrix/front.svg",
  16931. extra: 392 / 379,
  16932. bottom: 0.01
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(6, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6 + 2/12, "feet"),
  16949. weight: math.unit(135, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/ignatius/front.svg",
  16953. extra: 1380/1259,
  16954. bottom: 27/1407
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(6 + 2/12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(6 + 2 / 12, "feet"),
  16971. weight: math.unit(138, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/mei-li/front.svg",
  16975. extra: 237 / 229,
  16976. bottom: 0.03
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16990. {
  16991. front: {
  16992. height: math.unit(2 + 4 / 12, "feet"),
  16993. weight: math.unit(62, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/puru/front.svg",
  16997. extra: 206 / 149,
  16998. bottom: 0.06
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(2 + 4 / 12, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17012. {
  17013. anthro: {
  17014. height: math.unit(5 + 8/12, "feet"),
  17015. weight: math.unit(200, "lb"),
  17016. energyNeed: math.unit(2000, "kcal"),
  17017. name: "Anthro",
  17018. image: {
  17019. source: "./media/characters/kee/anthro.svg",
  17020. extra: 3251/3184,
  17021. bottom: 250/3501
  17022. }
  17023. },
  17024. taur: {
  17025. height: math.unit(11, "feet"),
  17026. weight: math.unit(500, "lb"),
  17027. energyNeed: math.unit(5000, "kcal"),
  17028. name: "Taur",
  17029. image: {
  17030. source: "./media/characters/kee/taur.svg",
  17031. extra: 1362/1320,
  17032. bottom: 83/1445
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(5 + 8/12, "feet"),
  17040. default: true
  17041. },
  17042. {
  17043. name: "Macro",
  17044. height: math.unit(35, "feet")
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17050. {
  17051. anthro: {
  17052. height: math.unit(7, "feet"),
  17053. weight: math.unit(190, "lb"),
  17054. name: "Anthro",
  17055. image: {
  17056. source: "./media/characters/cobalt-dracha/anthro.svg",
  17057. extra: 231 / 225,
  17058. bottom: 0.04
  17059. }
  17060. },
  17061. feral: {
  17062. height: math.unit(9 + 7 / 12, "feet"),
  17063. weight: math.unit(294, "lb"),
  17064. name: "Feral",
  17065. image: {
  17066. source: "./media/characters/cobalt-dracha/feral.svg",
  17067. extra: 692 / 633,
  17068. bottom: 0.05
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Normal",
  17075. height: math.unit(7, "feet"),
  17076. default: true
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17082. {
  17083. fallen: {
  17084. height: math.unit(11 + 8 / 12, "feet"),
  17085. weight: math.unit(485, "lb"),
  17086. name: "Java (Fallen)",
  17087. rename: true,
  17088. image: {
  17089. source: "./media/characters/java/fallen.svg",
  17090. extra: 226 / 208,
  17091. bottom: 0.005
  17092. }
  17093. },
  17094. godkin: {
  17095. height: math.unit(10 + 6 / 12, "feet"),
  17096. weight: math.unit(328, "lb"),
  17097. name: "Java (Godkin)",
  17098. rename: true,
  17099. image: {
  17100. source: "./media/characters/java/godkin.svg",
  17101. extra: 1104/1068,
  17102. bottom: 36/1140
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(11 + 8 / 12, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(5 + 9 / 12, "feet"),
  17119. weight: math.unit(170, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/purna/front.svg",
  17123. extra: 239 / 229,
  17124. bottom: 0.01
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(5 + 9 / 12, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(5 + 9 / 12, "feet"),
  17141. weight: math.unit(142, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/kuva/front.svg",
  17145. extra: 281 / 271,
  17146. bottom: 0.006
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(5 + 9 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17160. {
  17161. anthro: {
  17162. height: math.unit(9 + 2 / 12, "feet"),
  17163. weight: math.unit(270, "lb"),
  17164. name: "Anthro",
  17165. image: {
  17166. source: "./media/characters/embra/anthro.svg",
  17167. extra: 200 / 187,
  17168. bottom: 0.02
  17169. }
  17170. },
  17171. feral: {
  17172. height: math.unit(18 + 8 / 12, "feet"),
  17173. weight: math.unit(576, "lb"),
  17174. name: "Feral",
  17175. image: {
  17176. source: "./media/characters/embra/feral.svg",
  17177. extra: 152 / 137,
  17178. bottom: 0.037
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(9 + 2 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17192. {
  17193. anthro: {
  17194. height: math.unit(10 + 9 / 12, "feet"),
  17195. weight: math.unit(224, "lb"),
  17196. name: "Anthro",
  17197. image: {
  17198. source: "./media/characters/grottos/anthro.svg",
  17199. extra: 350 / 332,
  17200. bottom: 0.045
  17201. }
  17202. },
  17203. feral: {
  17204. height: math.unit(20 + 7 / 12, "feet"),
  17205. weight: math.unit(629, "lb"),
  17206. name: "Feral",
  17207. image: {
  17208. source: "./media/characters/grottos/feral.svg",
  17209. extra: 207 / 190,
  17210. bottom: 0.05
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(10 + 9 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17224. {
  17225. anthro: {
  17226. height: math.unit(9 + 6 / 12, "feet"),
  17227. weight: math.unit(298, "lb"),
  17228. name: "Anthro",
  17229. image: {
  17230. source: "./media/characters/frifna/anthro.svg",
  17231. extra: 282 / 269,
  17232. bottom: 0.015
  17233. }
  17234. },
  17235. feral: {
  17236. height: math.unit(16 + 2 / 12, "feet"),
  17237. weight: math.unit(624, "lb"),
  17238. name: "Feral",
  17239. image: {
  17240. source: "./media/characters/frifna/feral.svg"
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(9 + 6 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6 + 2 / 12, "feet"),
  17257. weight: math.unit(168, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/elise/front.svg",
  17261. extra: 276 / 271
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(6 + 2 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(5 + 10 / 12, "feet"),
  17278. weight: math.unit(210, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/glade/front.svg",
  17282. extra: 258 / 247,
  17283. bottom: 0.008
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(5 + 10 / 12, "feet"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(5 + 10 / 12, "feet"),
  17300. weight: math.unit(129, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/rina/front.svg",
  17304. extra: 266 / 255,
  17305. bottom: 0.005
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(5 + 10 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(6 + 1 / 12, "feet"),
  17322. weight: math.unit(192, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/veronica/front.svg",
  17326. extra: 319 / 309,
  17327. bottom: 0.005
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(6 + 1 / 12, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(9 + 3 / 12, "feet"),
  17344. weight: math.unit(1100, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/braxton/front.svg",
  17348. extra: 1057 / 984,
  17349. bottom: 0.05
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(9 + 3 / 12, "feet")
  17357. },
  17358. {
  17359. name: "Giant",
  17360. height: math.unit(300, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Macro",
  17365. height: math.unit(700, "feet")
  17366. },
  17367. {
  17368. name: "Megamacro",
  17369. height: math.unit(6000, "feet")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6 + 7 / 12, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/blue-feyonics/front.svg",
  17382. extra: 1403 / 1306,
  17383. bottom: 0.047
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(6 + 7 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(1.8, "meters"),
  17400. weight: math.unit(60, "kg"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/maxwell/front.svg",
  17404. extra: 2060 / 1873
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Micro",
  17411. height: math.unit(1, "mm")
  17412. },
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(1.8, "meter"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro",
  17420. height: math.unit(30, "meters")
  17421. },
  17422. {
  17423. name: "Megamacro",
  17424. height: math.unit(10, "km")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(150, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/jack/front.svg",
  17437. extra: 1754 / 1640,
  17438. bottom: 0.01
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(80000, "feet"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Max size",
  17450. height: math.unit(10, "lightyears")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17456. {
  17457. urban: {
  17458. height: math.unit(5, "feet"),
  17459. weight: math.unit(240, "lb"),
  17460. name: "Urban",
  17461. image: {
  17462. source: "./media/characters/cafat/urban.svg",
  17463. extra: 1223/1126,
  17464. bottom: 205/1428
  17465. }
  17466. },
  17467. summer: {
  17468. height: math.unit(5, "feet"),
  17469. weight: math.unit(240, "lb"),
  17470. name: "Summer",
  17471. image: {
  17472. source: "./media/characters/cafat/summer.svg",
  17473. extra: 1223/1126,
  17474. bottom: 205/1428
  17475. }
  17476. },
  17477. winter: {
  17478. height: math.unit(5, "feet"),
  17479. weight: math.unit(240, "lb"),
  17480. name: "Winter",
  17481. image: {
  17482. source: "./media/characters/cafat/winter.svg",
  17483. extra: 1223/1126,
  17484. bottom: 205/1428
  17485. }
  17486. },
  17487. lingerie: {
  17488. height: math.unit(5, "feet"),
  17489. weight: math.unit(240, "lb"),
  17490. name: "Lingerie",
  17491. image: {
  17492. source: "./media/characters/cafat/lingerie.svg",
  17493. extra: 1223/1126,
  17494. bottom: 205/1428
  17495. }
  17496. },
  17497. upright: {
  17498. height: math.unit(6.3, "feet"),
  17499. weight: math.unit(240, "lb"),
  17500. name: "Upright",
  17501. image: {
  17502. source: "./media/characters/cafat/upright.svg",
  17503. bottom: 0.01
  17504. }
  17505. },
  17506. uprightFull: {
  17507. height: math.unit(6.3, "feet"),
  17508. weight: math.unit(240, "lb"),
  17509. name: "Upright (Full)",
  17510. image: {
  17511. source: "./media/characters/cafat/upright-full.svg",
  17512. bottom: 0.01
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Small",
  17519. height: math.unit(5, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Large",
  17524. height: math.unit(13, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(6, "feet"),
  17533. weight: math.unit(150, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/verin-raharra/front.svg",
  17537. extra: 5019 / 4835,
  17538. bottom: 0.023
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(7 + 5 / 12, "feet"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Upsized",
  17550. height: math.unit(20, "feet")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(7, "feet"),
  17559. weight: math.unit(230, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/nakata/front.svg",
  17563. extra: 1.005,
  17564. bottom: 0.01
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(7, "feet"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Big",
  17576. height: math.unit(14, "feet")
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(400, "feet")
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(4.91, "feet"),
  17589. weight: math.unit(100, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/lily/front.svg",
  17593. extra: 1585 / 1415,
  17594. bottom: 0.02
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(4.91, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17608. {
  17609. laying: {
  17610. height: math.unit(4 + 4 / 12, "feet"),
  17611. weight: math.unit(600, "lb"),
  17612. name: "Laying",
  17613. image: {
  17614. source: "./media/characters/sheila/laying.svg",
  17615. extra: 1333 / 1265,
  17616. bottom: 0.16
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(4 + 4 / 12, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(6, "feet"),
  17633. weight: math.unit(190, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/sax/front.svg",
  17637. extra: 1187 / 973,
  17638. bottom: 0.042
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Micro",
  17645. height: math.unit(4, "inches"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(6, "feet"),
  17655. weight: math.unit(150, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/pandora/front.svg",
  17659. extra: 2720 / 2556,
  17660. bottom: 0.015
  17661. }
  17662. },
  17663. back: {
  17664. height: math.unit(6, "feet"),
  17665. weight: math.unit(150, "lb"),
  17666. name: "Back",
  17667. image: {
  17668. source: "./media/characters/pandora/back.svg",
  17669. extra: 2720 / 2556,
  17670. bottom: 0.01
  17671. }
  17672. },
  17673. beans: {
  17674. height: math.unit(6 / 8, "feet"),
  17675. name: "Beans",
  17676. image: {
  17677. source: "./media/characters/pandora/beans.svg"
  17678. }
  17679. },
  17680. collar: {
  17681. height: math.unit(0.31, "feet"),
  17682. name: "Collar",
  17683. image: {
  17684. source: "./media/characters/pandora/collar.svg"
  17685. }
  17686. },
  17687. skirt: {
  17688. height: math.unit(6, "feet"),
  17689. weight: math.unit(150, "lb"),
  17690. name: "Skirt",
  17691. image: {
  17692. source: "./media/characters/pandora/skirt.svg",
  17693. extra: 1622 / 1525,
  17694. bottom: 0.015
  17695. }
  17696. },
  17697. hoodie: {
  17698. height: math.unit(6, "feet"),
  17699. weight: math.unit(150, "lb"),
  17700. name: "Hoodie",
  17701. image: {
  17702. source: "./media/characters/pandora/hoodie.svg",
  17703. extra: 1622 / 1525,
  17704. bottom: 0.015
  17705. }
  17706. },
  17707. casual: {
  17708. height: math.unit(6, "feet"),
  17709. weight: math.unit(150, "lb"),
  17710. name: "Casual",
  17711. image: {
  17712. source: "./media/characters/pandora/casual.svg",
  17713. extra: 1622 / 1525,
  17714. bottom: 0.015
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(6, "feet")
  17722. },
  17723. {
  17724. name: "Big Steppy",
  17725. height: math.unit(1, "km"),
  17726. default: true
  17727. },
  17728. {
  17729. name: "Galactic Steppy",
  17730. height: math.unit(2, "gigameters")
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17736. {
  17737. side: {
  17738. height: math.unit(10, "feet"),
  17739. weight: math.unit(800, "kg"),
  17740. name: "Side",
  17741. image: {
  17742. source: "./media/characters/venio-darcony/side.svg",
  17743. extra: 1373 / 1003,
  17744. bottom: 0.037
  17745. }
  17746. },
  17747. front: {
  17748. height: math.unit(19, "feet"),
  17749. weight: math.unit(800, "kg"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/venio-darcony/front.svg"
  17753. }
  17754. },
  17755. back: {
  17756. height: math.unit(19, "feet"),
  17757. weight: math.unit(800, "kg"),
  17758. name: "Back",
  17759. image: {
  17760. source: "./media/characters/venio-darcony/back.svg"
  17761. }
  17762. },
  17763. sideNsfw: {
  17764. height: math.unit(10, "feet"),
  17765. weight: math.unit(800, "kg"),
  17766. name: "Side (NSFW)",
  17767. image: {
  17768. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17769. extra: 1373 / 1003,
  17770. bottom: 0.037
  17771. }
  17772. },
  17773. frontNsfw: {
  17774. height: math.unit(19, "feet"),
  17775. weight: math.unit(800, "kg"),
  17776. name: "Front (NSFW)",
  17777. image: {
  17778. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17779. }
  17780. },
  17781. backNsfw: {
  17782. height: math.unit(19, "feet"),
  17783. weight: math.unit(800, "kg"),
  17784. name: "Back (NSFW)",
  17785. image: {
  17786. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17787. }
  17788. },
  17789. sideArmored: {
  17790. height: math.unit(10, "feet"),
  17791. weight: math.unit(800, "kg"),
  17792. name: "Side (Armored)",
  17793. image: {
  17794. source: "./media/characters/venio-darcony/side-armored.svg",
  17795. extra: 1373 / 1003,
  17796. bottom: 0.037
  17797. }
  17798. },
  17799. frontArmored: {
  17800. height: math.unit(19, "feet"),
  17801. weight: math.unit(900, "kg"),
  17802. name: "Front (Armored)",
  17803. image: {
  17804. source: "./media/characters/venio-darcony/front-armored.svg"
  17805. }
  17806. },
  17807. backArmored: {
  17808. height: math.unit(19, "feet"),
  17809. weight: math.unit(900, "kg"),
  17810. name: "Back (Armored)",
  17811. image: {
  17812. source: "./media/characters/venio-darcony/back-armored.svg"
  17813. }
  17814. },
  17815. sword: {
  17816. height: math.unit(10, "feet"),
  17817. weight: math.unit(50, "lb"),
  17818. name: "Sword",
  17819. image: {
  17820. source: "./media/characters/venio-darcony/sword.svg"
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(10, "feet")
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(130, "feet"),
  17832. default: true
  17833. },
  17834. {
  17835. name: "Macro+",
  17836. height: math.unit(240, "feet")
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17842. {
  17843. front: {
  17844. height: math.unit(6, "feet"),
  17845. weight: math.unit(150, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/veski/front.svg",
  17849. extra: 1299 / 1225,
  17850. bottom: 0.04
  17851. }
  17852. },
  17853. back: {
  17854. height: math.unit(6, "feet"),
  17855. weight: math.unit(150, "lb"),
  17856. name: "Back",
  17857. image: {
  17858. source: "./media/characters/veski/back.svg",
  17859. extra: 1299 / 1225,
  17860. bottom: 0.008
  17861. }
  17862. },
  17863. maw: {
  17864. height: math.unit(1.5 * 1.21, "feet"),
  17865. name: "Maw",
  17866. image: {
  17867. source: "./media/characters/veski/maw.svg"
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Macro",
  17874. height: math.unit(2, "km"),
  17875. default: true
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17881. {
  17882. front: {
  17883. height: math.unit(5 + 7 / 12, "feet"),
  17884. name: "Front",
  17885. image: {
  17886. source: "./media/characters/isabelle/front.svg",
  17887. extra: 2130 / 1976,
  17888. bottom: 0.05
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Supermicro",
  17895. height: math.unit(10, "micrometers")
  17896. },
  17897. {
  17898. name: "Micro",
  17899. height: math.unit(1, "inch")
  17900. },
  17901. {
  17902. name: "Tiny",
  17903. height: math.unit(5, "inches")
  17904. },
  17905. {
  17906. name: "Standard",
  17907. height: math.unit(5 + 7 / 12, "inches")
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(80, "meters"),
  17912. default: true
  17913. },
  17914. {
  17915. name: "Megamacro",
  17916. height: math.unit(250, "meters")
  17917. },
  17918. {
  17919. name: "Gigamacro",
  17920. height: math.unit(5, "km")
  17921. },
  17922. {
  17923. name: "Cosmic",
  17924. height: math.unit(2.5e6, "miles")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/hanzo/front.svg",
  17937. extra: 374 / 344,
  17938. bottom: 0.02
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(8, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(7, "feet"),
  17955. weight: math.unit(130, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/anna/front.svg",
  17959. extra: 169 / 145,
  17960. bottom: 0.06
  17961. }
  17962. },
  17963. full: {
  17964. height: math.unit(4.96, "feet"),
  17965. weight: math.unit(220, "lb"),
  17966. name: "Full",
  17967. image: {
  17968. source: "./media/characters/anna/full.svg",
  17969. extra: 138 / 114,
  17970. bottom: 0.15
  17971. }
  17972. },
  17973. tongue: {
  17974. height: math.unit(2.53, "feet"),
  17975. name: "Tongue",
  17976. image: {
  17977. source: "./media/characters/anna/tongue.svg"
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(7, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(7, "feet"),
  17994. weight: math.unit(150, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/ian-corvid/front.svg",
  17998. extra: 150 / 142,
  17999. bottom: 0.02
  18000. }
  18001. },
  18002. back: {
  18003. height: math.unit(7, "feet"),
  18004. weight: math.unit(150, "lb"),
  18005. name: "Back",
  18006. image: {
  18007. source: "./media/characters/ian-corvid/back.svg",
  18008. extra: 150 / 143,
  18009. bottom: 0.01
  18010. }
  18011. },
  18012. stomping: {
  18013. height: math.unit(7, "feet"),
  18014. weight: math.unit(150, "lb"),
  18015. name: "Stomping",
  18016. image: {
  18017. source: "./media/characters/ian-corvid/stomping.svg",
  18018. extra: 76 / 72
  18019. }
  18020. },
  18021. sitting: {
  18022. height: math.unit(7 / 1.8, "feet"),
  18023. weight: math.unit(150, "lb"),
  18024. name: "Sitting",
  18025. image: {
  18026. source: "./media/characters/ian-corvid/sitting.svg",
  18027. extra: 1400 / 1269,
  18028. bottom: 0.15
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Tiny Microw",
  18035. height: math.unit(1, "inch")
  18036. },
  18037. {
  18038. name: "Microw",
  18039. height: math.unit(6, "inches")
  18040. },
  18041. {
  18042. name: "Crow",
  18043. height: math.unit(7 + 1 / 12, "feet"),
  18044. default: true
  18045. },
  18046. {
  18047. name: "Macrow",
  18048. height: math.unit(176, "feet")
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18054. {
  18055. front: {
  18056. height: math.unit(5 + 7 / 12, "feet"),
  18057. weight: math.unit(147, "lb"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/natalie-kellon/front.svg",
  18061. extra: 1214 / 1141,
  18062. bottom: 0.02
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(1 / 16, "inch")
  18070. },
  18071. {
  18072. name: "Tiny",
  18073. height: math.unit(4, "inches")
  18074. },
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(5 + 7 / 12, "feet"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Amazon",
  18082. height: math.unit(12, "feet")
  18083. },
  18084. {
  18085. name: "Giantess",
  18086. height: math.unit(160, "meters")
  18087. },
  18088. {
  18089. name: "Titaness",
  18090. height: math.unit(800, "meters")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/alluria/front.svg",
  18103. extra: 806 / 738,
  18104. bottom: 0.01
  18105. }
  18106. },
  18107. side: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Side",
  18111. image: {
  18112. source: "./media/characters/alluria/side.svg",
  18113. extra: 800 / 750,
  18114. }
  18115. },
  18116. back: {
  18117. height: math.unit(6, "feet"),
  18118. weight: math.unit(150, "lb"),
  18119. name: "Back",
  18120. image: {
  18121. source: "./media/characters/alluria/back.svg",
  18122. extra: 806 / 738,
  18123. }
  18124. },
  18125. frontMaid: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(150, "lb"),
  18128. name: "Front (Maid)",
  18129. image: {
  18130. source: "./media/characters/alluria/front-maid.svg",
  18131. extra: 806 / 738,
  18132. bottom: 0.01
  18133. }
  18134. },
  18135. sideMaid: {
  18136. height: math.unit(6, "feet"),
  18137. weight: math.unit(150, "lb"),
  18138. name: "Side (Maid)",
  18139. image: {
  18140. source: "./media/characters/alluria/side-maid.svg",
  18141. extra: 800 / 750,
  18142. bottom: 0.005
  18143. }
  18144. },
  18145. backMaid: {
  18146. height: math.unit(6, "feet"),
  18147. weight: math.unit(150, "lb"),
  18148. name: "Back (Maid)",
  18149. image: {
  18150. source: "./media/characters/alluria/back-maid.svg",
  18151. extra: 806 / 738,
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Micro",
  18158. height: math.unit(6, "inches"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(6, "feet"),
  18168. weight: math.unit(150, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/kyle/front.svg",
  18172. extra: 1069 / 962,
  18173. bottom: 77.228 / 1727.45
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(150, "feet"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(6, "feet"),
  18190. weight: math.unit(300, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/duncan/front.svg",
  18194. extra: 1650 / 1482,
  18195. bottom: 0.05
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Macro",
  18202. height: math.unit(100, "feet"),
  18203. default: true
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(5 + 4 / 12, "feet"),
  18212. weight: math.unit(220, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/memory/front.svg",
  18216. extra: 3641 / 3545,
  18217. bottom: 0.03
  18218. }
  18219. },
  18220. back: {
  18221. height: math.unit(5 + 4 / 12, "feet"),
  18222. weight: math.unit(220, "lb"),
  18223. name: "Back",
  18224. image: {
  18225. source: "./media/characters/memory/back.svg",
  18226. extra: 3641 / 3545,
  18227. bottom: 0.025
  18228. }
  18229. },
  18230. frontSkirt: {
  18231. height: math.unit(5 + 4 / 12, "feet"),
  18232. weight: math.unit(220, "lb"),
  18233. name: "Front (Skirt)",
  18234. image: {
  18235. source: "./media/characters/memory/front-skirt.svg",
  18236. extra: 3641 / 3545,
  18237. bottom: 0.03
  18238. }
  18239. },
  18240. frontDress: {
  18241. height: math.unit(5 + 4 / 12, "feet"),
  18242. weight: math.unit(220, "lb"),
  18243. name: "Front (Dress)",
  18244. image: {
  18245. source: "./media/characters/memory/front-dress.svg",
  18246. extra: 3641 / 3545,
  18247. bottom: 0.03
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Micro",
  18254. height: math.unit(6, "inches"),
  18255. default: true
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(5 + 4 / 12, "feet")
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(4 + 11 / 12, "feet"),
  18268. weight: math.unit(100, "lb"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/luno/front.svg",
  18272. extra: 1535 / 1487,
  18273. bottom: 0.03
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Micro",
  18280. height: math.unit(3, "inches")
  18281. },
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(4 + 11 / 12, "feet"),
  18285. default: true
  18286. },
  18287. {
  18288. name: "Macro",
  18289. height: math.unit(300, "feet")
  18290. },
  18291. {
  18292. name: "Megamacro",
  18293. height: math.unit(700, "miles")
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(6 + 2 / 12, "feet"),
  18302. weight: math.unit(170, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/jamesy/front.svg",
  18306. extra: 440 / 382,
  18307. bottom: 0.005
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Micro",
  18314. height: math.unit(3, "inches")
  18315. },
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(6 + 2 / 12, "feet"),
  18319. default: true
  18320. },
  18321. {
  18322. name: "Macro",
  18323. height: math.unit(300, "feet")
  18324. },
  18325. {
  18326. name: "Megamacro",
  18327. height: math.unit(700, "miles")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(6, "feet"),
  18336. weight: math.unit(160, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/mark/front.svg",
  18340. extra: 3300 / 3100,
  18341. bottom: 136.42 / 3440.47
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(120, "meters")
  18349. },
  18350. {
  18351. name: "Bigger Macro",
  18352. height: math.unit(350, "meters")
  18353. },
  18354. {
  18355. name: "Megamacro",
  18356. height: math.unit(8, "km"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Continental",
  18361. height: math.unit(4550, "km")
  18362. },
  18363. {
  18364. name: "Planetary",
  18365. height: math.unit(65000, "km")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(6, "feet"),
  18374. weight: math.unit(400, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/mac/front.svg",
  18378. extra: 1048 / 987.7,
  18379. bottom: 60 / 1107.6,
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Macro",
  18386. height: math.unit(500, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(5 + 2 / 12, "feet"),
  18396. weight: math.unit(190, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/bari/front.svg",
  18400. extra: 3156 / 2880,
  18401. bottom: 0.03
  18402. }
  18403. },
  18404. back: {
  18405. height: math.unit(5 + 2 / 12, "feet"),
  18406. weight: math.unit(190, "lb"),
  18407. name: "Back",
  18408. image: {
  18409. source: "./media/characters/bari/back.svg",
  18410. extra: 3260 / 2834,
  18411. bottom: 0.025
  18412. }
  18413. },
  18414. frontPlush: {
  18415. height: math.unit(5 + 2 / 12, "feet"),
  18416. weight: math.unit(190, "lb"),
  18417. name: "Front (Plush)",
  18418. image: {
  18419. source: "./media/characters/bari/front-plush.svg",
  18420. extra: 1112 / 1061,
  18421. bottom: 0.002
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(3, "inches")
  18429. },
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(5 + 2 / 12, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(20, "feet")
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(6 + 1 / 12, "feet"),
  18446. weight: math.unit(275, "lb"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/hunter-misha-raven/front.svg"
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "Mortal",
  18456. height: math.unit(6 + 1 / 12, "feet")
  18457. },
  18458. {
  18459. name: "Divine",
  18460. height: math.unit(1.12134e34, "parsecs"),
  18461. default: true
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6 + 3 / 12, "feet"),
  18470. weight: math.unit(220, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/max-calore/front.svg",
  18474. extra: 1700 / 1648,
  18475. bottom: 0.01
  18476. }
  18477. },
  18478. back: {
  18479. height: math.unit(6 + 3 / 12, "feet"),
  18480. weight: math.unit(220, "lb"),
  18481. name: "Back",
  18482. image: {
  18483. source: "./media/characters/max-calore/back.svg",
  18484. extra: 1700 / 1648,
  18485. bottom: 0.01
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 3 / 12, "feet"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18499. {
  18500. side: {
  18501. height: math.unit(2 + 8 / 12, "feet"),
  18502. weight: math.unit(99, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/aspen/side.svg",
  18506. extra: 152 / 138,
  18507. bottom: 0.032
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(2 + 8 / 12, "feet"),
  18515. default: true
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18521. {
  18522. side: {
  18523. height: math.unit(3 + 2 / 12, "feet"),
  18524. weight: math.unit(224, "lb"),
  18525. name: "Side",
  18526. image: {
  18527. source: "./media/characters/sheila-feral-wolf/side.svg",
  18528. extra: 179 / 166,
  18529. bottom: 0.03
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(3 + 2 / 12, "feet"),
  18537. default: true
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18543. {
  18544. side: {
  18545. height: math.unit(1 + 9 / 12, "feet"),
  18546. weight: math.unit(38, "lb"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/michelle/side.svg",
  18550. extra: 147 / 136.7,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(1 + 9 / 12, "feet"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(1.54, "feet"),
  18568. weight: math.unit(50, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/nino/front.svg"
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(1.54, "feet"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18585. {
  18586. front: {
  18587. height: math.unit(1.49, "feet"),
  18588. weight: math.unit(45, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/viola/front.svg"
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(1.49, "feet"),
  18599. default: true
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(6 + 5 / 12, "feet"),
  18608. weight: math.unit(580, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/atlas/front.svg",
  18612. extra: 298.5 / 290,
  18613. bottom: 0.015
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(6 + 5 / 12, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18627. {
  18628. side: {
  18629. height: math.unit(15.6, "inches"),
  18630. weight: math.unit(10, "lb"),
  18631. name: "Side",
  18632. image: {
  18633. source: "./media/characters/davy/side.svg",
  18634. extra: 200 / 170,
  18635. bottom: 0.01
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(15.6, "inches"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18649. {
  18650. side: {
  18651. height: math.unit(4 + 8 / 12, "feet"),
  18652. weight: math.unit(166, "lb"),
  18653. name: "Side",
  18654. image: {
  18655. source: "./media/characters/fiona/side.svg",
  18656. extra: 232 / 220,
  18657. bottom: 0.03
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(4 + 8 / 12, "feet"),
  18665. default: true
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18671. {
  18672. front: {
  18673. height: math.unit(26, "inches"),
  18674. weight: math.unit(35, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/lyla/front.svg",
  18678. bottom: 0.1
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(3, "feet"),
  18686. default: true
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18692. {
  18693. side: {
  18694. height: math.unit(1.8, "feet"),
  18695. weight: math.unit(44, "lb"),
  18696. name: "Side",
  18697. image: {
  18698. source: "./media/characters/perseus/side.svg",
  18699. bottom: 0.21
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(1.8, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18713. {
  18714. side: {
  18715. height: math.unit(4 + 2 / 12, "feet"),
  18716. weight: math.unit(20, "lb"),
  18717. name: "Side",
  18718. image: {
  18719. source: "./media/characters/remus/side.svg"
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(4 + 2 / 12, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(4 + 11 / 12, "feet"),
  18736. weight: math.unit(114, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/raf/front.svg",
  18740. extra: 1504/1339,
  18741. bottom: 26/1530
  18742. }
  18743. },
  18744. side: {
  18745. height: math.unit(4 + 11 / 12, "feet"),
  18746. weight: math.unit(114, "lb"),
  18747. name: "Side",
  18748. image: {
  18749. source: "./media/characters/raf/side.svg",
  18750. extra: 1466/1316,
  18751. bottom: 29/1495
  18752. }
  18753. },
  18754. paw: {
  18755. height: math.unit(1.45, "feet"),
  18756. name: "Paw",
  18757. image: {
  18758. source: "./media/characters/raf/paw.svg"
  18759. },
  18760. extraAttributes: {
  18761. "toeSize": {
  18762. name: "Toe Size",
  18763. power: 2,
  18764. type: "area",
  18765. base: math.unit(0.004, "m^2")
  18766. },
  18767. "padSize": {
  18768. name: "Pad Size",
  18769. power: 2,
  18770. type: "area",
  18771. base: math.unit(0.04, "m^2")
  18772. },
  18773. "footSize": {
  18774. name: "Foot Size",
  18775. power: 2,
  18776. type: "area",
  18777. base: math.unit(0.08, "m^2")
  18778. },
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Micro",
  18785. height: math.unit(2, "inches")
  18786. },
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(4 + 11 / 12, "feet"),
  18790. default: true
  18791. },
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(70, "feet")
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(1.5, "meters"),
  18803. weight: math.unit(68, "kg"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/liam-einarr/front.svg",
  18807. extra: 2822 / 2666
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(1.5, "meters"),
  18812. weight: math.unit(68, "kg"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/liam-einarr/back.svg",
  18816. extra: 2822 / 2666,
  18817. bottom: 0.015
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(1.5, "meters"),
  18825. default: true
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(150, "meters")
  18830. },
  18831. {
  18832. name: "Megamacro",
  18833. height: math.unit(35, "km")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(6, "feet"),
  18842. weight: math.unit(75, "kg"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/linda/front.svg",
  18846. extra: 930 / 874,
  18847. bottom: 0.004
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(6, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18861. {
  18862. front: {
  18863. height: math.unit(6 + 8 / 12, "feet"),
  18864. weight: math.unit(220, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/caylex/front.svg",
  18868. extra: 821 / 772,
  18869. bottom: 0.07
  18870. }
  18871. },
  18872. back: {
  18873. height: math.unit(6 + 8 / 12, "feet"),
  18874. weight: math.unit(220, "lb"),
  18875. name: "Back",
  18876. image: {
  18877. source: "./media/characters/caylex/back.svg",
  18878. extra: 821 / 772,
  18879. bottom: 0.022
  18880. }
  18881. },
  18882. hand: {
  18883. height: math.unit(1.25, "feet"),
  18884. name: "Hand",
  18885. image: {
  18886. source: "./media/characters/caylex/hand.svg"
  18887. }
  18888. },
  18889. foot: {
  18890. height: math.unit(1.6, "feet"),
  18891. name: "Foot",
  18892. image: {
  18893. source: "./media/characters/caylex/foot.svg"
  18894. }
  18895. },
  18896. armored: {
  18897. height: math.unit(6 + 8 / 12, "feet"),
  18898. weight: math.unit(250, "lb"),
  18899. name: "Armored",
  18900. image: {
  18901. source: "./media/characters/caylex/armored.svg",
  18902. extra: 1420 / 1310,
  18903. bottom: 0.045
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(6 + 8 / 12, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Normal+",
  18915. height: math.unit(12, "feet")
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(7 + 6 / 12, "feet"),
  18924. weight: math.unit(288, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/alana/front.svg",
  18928. extra: 679 / 653,
  18929. bottom: 22.5 / 701
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Normal",
  18936. height: math.unit(7 + 6 / 12, "feet")
  18937. },
  18938. {
  18939. name: "Large",
  18940. height: math.unit(50, "feet")
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(100, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro+",
  18949. height: math.unit(200, "feet")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(6 + 1 / 12, "feet"),
  18958. weight: math.unit(210, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/hasani/front.svg",
  18962. extra: 244 / 232,
  18963. bottom: 0.01
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(6 + 1 / 12, "feet"),
  18968. weight: math.unit(210, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/hasani/back.svg",
  18972. extra: 244 / 232,
  18973. bottom: 0.01
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(6 + 1 / 12, "feet")
  18981. },
  18982. {
  18983. name: "Macro",
  18984. height: math.unit(175, "feet"),
  18985. default: true
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(1.82, "meters"),
  18994. weight: math.unit(140, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/nita/front.svg",
  18998. extra: 2473 / 2363,
  18999. bottom: 0.01
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(1.82, "m")
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(300, "m")
  19011. },
  19012. {
  19013. name: "Mistake Canon",
  19014. height: math.unit(0.5, "miles"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Big Mistake",
  19019. height: math.unit(13, "miles")
  19020. },
  19021. {
  19022. name: "Playing God",
  19023. height: math.unit(2450, "miles")
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19029. {
  19030. front: {
  19031. height: math.unit(4, "feet"),
  19032. weight: math.unit(120, "lb"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/shiriko/front.svg",
  19036. extra: 970/934,
  19037. bottom: 5/975
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(4, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(6, "feet"),
  19054. name: "front",
  19055. image: {
  19056. source: "./media/characters/deja/front.svg",
  19057. extra: 926 / 840,
  19058. bottom: 0.07
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Planck Length",
  19065. height: math.unit(1.6e-35, "meters")
  19066. },
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(30.48, "meters"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Universal",
  19074. height: math.unit(8.8e26, "meters")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19080. {
  19081. side: {
  19082. height: math.unit(8, "feet"),
  19083. weight: math.unit(6300, "lb"),
  19084. name: "Side",
  19085. image: {
  19086. source: "./media/characters/anima/side.svg",
  19087. bottom: 0.035
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(8, "feet"),
  19095. default: true
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(8, "feet"),
  19104. weight: math.unit(350, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/bianca/front.svg",
  19108. extra: 234 / 225,
  19109. bottom: 0.03
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(8, "feet"),
  19117. default: true
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19123. {
  19124. front: {
  19125. height: math.unit(11 + 5/12, "feet"),
  19126. weight: math.unit(1200, "lb"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/adinia/front.svg",
  19130. extra: 1767/1641,
  19131. bottom: 44/1811
  19132. },
  19133. extraAttributes: {
  19134. "energyIntake": {
  19135. name: "Energy Intake",
  19136. power: 3,
  19137. type: "energy",
  19138. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19139. },
  19140. }
  19141. },
  19142. back: {
  19143. height: math.unit(11 + 5/12, "feet"),
  19144. weight: math.unit(1200, "lb"),
  19145. name: "Back",
  19146. image: {
  19147. source: "./media/characters/adinia/back.svg",
  19148. extra: 1834/1684,
  19149. bottom: 14/1848
  19150. },
  19151. extraAttributes: {
  19152. "energyIntake": {
  19153. name: "Energy Intake",
  19154. power: 3,
  19155. type: "energy",
  19156. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19157. },
  19158. }
  19159. },
  19160. maw: {
  19161. height: math.unit(3.79, "feet"),
  19162. name: "Maw",
  19163. image: {
  19164. source: "./media/characters/adinia/maw.svg"
  19165. }
  19166. },
  19167. rump: {
  19168. height: math.unit(4.6, "feet"),
  19169. name: "Rump",
  19170. image: {
  19171. source: "./media/characters/adinia/rump.svg"
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(11 + 5 / 12, "feet"),
  19179. default: true
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(3, "meters"),
  19188. weight: math.unit(200, "kg"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/lykasa/front.svg",
  19192. extra: 1076 / 976,
  19193. bottom: 0.06
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(3, "meters")
  19201. },
  19202. {
  19203. name: "Kaiju",
  19204. height: math.unit(120, "meters"),
  19205. default: true
  19206. },
  19207. {
  19208. name: "Mega Kaiju",
  19209. height: math.unit(240, "km")
  19210. },
  19211. {
  19212. name: "Giga Kaiju",
  19213. height: math.unit(400, "megameters")
  19214. },
  19215. {
  19216. name: "Tera Kaiju",
  19217. height: math.unit(800, "gigameters")
  19218. },
  19219. {
  19220. name: "Kaiju Dragon Goddess",
  19221. height: math.unit(26, "zettaparsecs")
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19227. {
  19228. side: {
  19229. height: math.unit(283 / 124 * 6, "feet"),
  19230. weight: math.unit(35000, "lb"),
  19231. name: "Side",
  19232. image: {
  19233. source: "./media/characters/malfaren/side.svg",
  19234. extra: 1310/529,
  19235. bottom: 24/1334
  19236. }
  19237. },
  19238. front: {
  19239. height: math.unit(22.36, "feet"),
  19240. weight: math.unit(35000, "lb"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/malfaren/front.svg",
  19244. extra: 1237/1115,
  19245. bottom: 32/1269
  19246. }
  19247. },
  19248. maw: {
  19249. height: math.unit(6.9, "feet"),
  19250. name: "Maw",
  19251. image: {
  19252. source: "./media/characters/malfaren/maw.svg"
  19253. }
  19254. },
  19255. dick: {
  19256. height: math.unit(6.19, "feet"),
  19257. name: "Dick",
  19258. image: {
  19259. source: "./media/characters/malfaren/dick.svg"
  19260. }
  19261. },
  19262. eye: {
  19263. height: math.unit(0.69, "feet"),
  19264. name: "Eye",
  19265. image: {
  19266. source: "./media/characters/malfaren/eye.svg"
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Big",
  19273. height: math.unit(283 / 162 * 6, "feet"),
  19274. },
  19275. {
  19276. name: "Bigger",
  19277. height: math.unit(283 / 124 * 6, "feet")
  19278. },
  19279. {
  19280. name: "Massive",
  19281. height: math.unit(283 / 92 * 6, "feet"),
  19282. default: true
  19283. },
  19284. {
  19285. name: "👀💦",
  19286. height: math.unit(283 / 73 * 6, "feet"),
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(1.7, "m"),
  19295. weight: math.unit(70, "kg"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/kernel/front.svg",
  19299. extra: 222 / 210,
  19300. bottom: 0.007
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Nano",
  19307. height: math.unit(17, "micrometers")
  19308. },
  19309. {
  19310. name: "Micro",
  19311. height: math.unit(1.7, "mm")
  19312. },
  19313. {
  19314. name: "Small",
  19315. height: math.unit(1.7, "cm")
  19316. },
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(1.7, "m"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(1.75, "meters"),
  19329. weight: math.unit(65, "kg"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/jayne-folest/front.svg",
  19333. extra: 2115 / 2007,
  19334. bottom: 0.02
  19335. }
  19336. },
  19337. back: {
  19338. height: math.unit(1.75, "meters"),
  19339. weight: math.unit(65, "kg"),
  19340. name: "Back",
  19341. image: {
  19342. source: "./media/characters/jayne-folest/back.svg",
  19343. extra: 2115 / 2007,
  19344. bottom: 0.005
  19345. }
  19346. },
  19347. frontClothed: {
  19348. height: math.unit(1.75, "meters"),
  19349. weight: math.unit(65, "kg"),
  19350. name: "Front (Clothed)",
  19351. image: {
  19352. source: "./media/characters/jayne-folest/front-clothed.svg",
  19353. extra: 2115 / 2007,
  19354. bottom: 0.035
  19355. }
  19356. },
  19357. hand: {
  19358. height: math.unit(1 / 1.260, "feet"),
  19359. name: "Hand",
  19360. image: {
  19361. source: "./media/characters/jayne-folest/hand.svg"
  19362. }
  19363. },
  19364. foot: {
  19365. height: math.unit(1 / 0.918, "feet"),
  19366. name: "Foot",
  19367. image: {
  19368. source: "./media/characters/jayne-folest/foot.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Micro",
  19375. height: math.unit(4, "cm")
  19376. },
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(1.75, "meters")
  19380. },
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(47.5, "meters"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(180, "cm"),
  19393. weight: math.unit(70, "kg"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/algier/front.svg",
  19397. extra: 596 / 572,
  19398. bottom: 0.04
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(180, "cm"),
  19403. weight: math.unit(70, "kg"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/algier/back.svg",
  19407. extra: 596 / 572,
  19408. bottom: 0.025
  19409. }
  19410. },
  19411. frontdressed: {
  19412. height: math.unit(180, "cm"),
  19413. weight: math.unit(150, "kg"),
  19414. name: "Front-dressed",
  19415. image: {
  19416. source: "./media/characters/algier/front-dressed.svg",
  19417. extra: 596 / 572,
  19418. bottom: 0.038
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Micro",
  19425. height: math.unit(5, "cm")
  19426. },
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(180, "cm"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "Macro",
  19434. height: math.unit(64, "m")
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19440. {
  19441. upright: {
  19442. height: math.unit(7, "feet"),
  19443. weight: math.unit(300, "lb"),
  19444. name: "Upright",
  19445. image: {
  19446. source: "./media/characters/pretzel/upright.svg",
  19447. extra: 534 / 522,
  19448. bottom: 0.065
  19449. }
  19450. },
  19451. sprawling: {
  19452. height: math.unit(3.75, "feet"),
  19453. weight: math.unit(300, "lb"),
  19454. name: "Sprawling",
  19455. image: {
  19456. source: "./media/characters/pretzel/sprawling.svg",
  19457. extra: 314 / 281,
  19458. bottom: 0.1
  19459. }
  19460. },
  19461. tongue: {
  19462. height: math.unit(2, "feet"),
  19463. name: "Tongue",
  19464. image: {
  19465. source: "./media/characters/pretzel/tongue.svg"
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(7, "feet"),
  19473. default: true
  19474. },
  19475. {
  19476. name: "Oversized",
  19477. height: math.unit(15, "feet")
  19478. },
  19479. {
  19480. name: "Huge",
  19481. height: math.unit(30, "feet")
  19482. },
  19483. {
  19484. name: "Macro",
  19485. height: math.unit(250, "feet")
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19491. {
  19492. sideFront: {
  19493. height: math.unit(5 + 2 / 12, "feet"),
  19494. weight: math.unit(120, "lb"),
  19495. name: "Front Side",
  19496. image: {
  19497. source: "./media/characters/roxi/side-front.svg",
  19498. extra: 2924 / 2717,
  19499. bottom: 0.08
  19500. }
  19501. },
  19502. sideBack: {
  19503. height: math.unit(5 + 2 / 12, "feet"),
  19504. weight: math.unit(120, "lb"),
  19505. name: "Back Side",
  19506. image: {
  19507. source: "./media/characters/roxi/side-back.svg",
  19508. extra: 2904 / 2693,
  19509. bottom: 0.06
  19510. }
  19511. },
  19512. front: {
  19513. height: math.unit(5 + 2 / 12, "feet"),
  19514. weight: math.unit(120, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/roxi/front.svg",
  19518. extra: 2028 / 1907,
  19519. bottom: 0.01
  19520. }
  19521. },
  19522. frontAlt: {
  19523. height: math.unit(5 + 2 / 12, "feet"),
  19524. weight: math.unit(120, "lb"),
  19525. name: "Front (Alt)",
  19526. image: {
  19527. source: "./media/characters/roxi/front-alt.svg",
  19528. extra: 1828 / 1798,
  19529. bottom: 0.01
  19530. }
  19531. },
  19532. sitting: {
  19533. height: math.unit(2.8, "feet"),
  19534. weight: math.unit(120, "lb"),
  19535. name: "Sitting",
  19536. image: {
  19537. source: "./media/characters/roxi/sitting.svg",
  19538. extra: 2660 / 2462,
  19539. bottom: 0.1
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(5 + 2 / 12, "feet"),
  19547. default: true
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19553. {
  19554. side: {
  19555. height: math.unit(55, "feet"),
  19556. weight: math.unit(153, "tons"),
  19557. name: "Side",
  19558. image: {
  19559. source: "./media/characters/shadow/side.svg",
  19560. extra: 701 / 628,
  19561. bottom: 0.02
  19562. }
  19563. },
  19564. flying: {
  19565. height: math.unit(145, "feet"),
  19566. weight: math.unit(153, "tons"),
  19567. name: "Flying",
  19568. image: {
  19569. source: "./media/characters/shadow/flying.svg"
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(55, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(6, "feet"),
  19586. weight: math.unit(200, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/marcie/front.svg",
  19590. extra: 960 / 876,
  19591. bottom: 58 / 1017.87
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Macro",
  19598. height: math.unit(1, "mile"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(7, "feet"),
  19608. weight: math.unit(200, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/kachina/front.svg",
  19612. extra: 1290.68 / 1119,
  19613. bottom: 36.5 / 1327.18
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(7, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19627. {
  19628. looking: {
  19629. height: math.unit(2, "meters"),
  19630. weight: math.unit(300, "kg"),
  19631. name: "Looking",
  19632. image: {
  19633. source: "./media/characters/kash/looking.svg",
  19634. extra: 474 / 344,
  19635. bottom: 0.03
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(2, "meters"),
  19640. weight: math.unit(300, "kg"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/kash/side.svg",
  19644. extra: 302 / 251,
  19645. bottom: 0.03
  19646. }
  19647. },
  19648. front: {
  19649. height: math.unit(2, "meters"),
  19650. weight: math.unit(300, "kg"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/kash/front.svg",
  19654. extra: 495 / 360,
  19655. bottom: 0.015
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(2, "meters"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Big",
  19667. height: math.unit(3, "meters")
  19668. },
  19669. {
  19670. name: "Large",
  19671. height: math.unit(5, "meters")
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19677. {
  19678. feeding: {
  19679. height: math.unit(6.7, "feet"),
  19680. weight: math.unit(350, "lb"),
  19681. name: "Feeding",
  19682. image: {
  19683. source: "./media/characters/lalim/feeding.svg",
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(6.7, "feet"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(9.5, "feet"),
  19700. weight: math.unit(600, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/de'vout/front.svg",
  19704. extra: 1443 / 1328,
  19705. bottom: 0.025
  19706. }
  19707. },
  19708. back: {
  19709. height: math.unit(9.5, "feet"),
  19710. weight: math.unit(600, "lb"),
  19711. name: "Back",
  19712. image: {
  19713. source: "./media/characters/de'vout/back.svg",
  19714. extra: 1443 / 1328
  19715. }
  19716. },
  19717. frontDressed: {
  19718. height: math.unit(9.5, "feet"),
  19719. weight: math.unit(600, "lb"),
  19720. name: "Front (Dressed",
  19721. image: {
  19722. source: "./media/characters/de'vout/front-dressed.svg",
  19723. extra: 1443 / 1328,
  19724. bottom: 0.025
  19725. }
  19726. },
  19727. backDressed: {
  19728. height: math.unit(9.5, "feet"),
  19729. weight: math.unit(600, "lb"),
  19730. name: "Back (Dressed",
  19731. image: {
  19732. source: "./media/characters/de'vout/back-dressed.svg",
  19733. extra: 1443 / 1328
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(9.5, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(8, "feet"),
  19750. weight: math.unit(225, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/talana/front.svg",
  19754. extra: 1410 / 1300,
  19755. bottom: 0.015
  19756. }
  19757. },
  19758. frontDressed: {
  19759. height: math.unit(8, "feet"),
  19760. weight: math.unit(225, "lb"),
  19761. name: "Front (Dressed",
  19762. image: {
  19763. source: "./media/characters/talana/front-dressed.svg",
  19764. extra: 1410 / 1300,
  19765. bottom: 0.015
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(8, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19779. {
  19780. side: {
  19781. height: math.unit(7.2, "feet"),
  19782. weight: math.unit(150, "lb"),
  19783. name: "Side",
  19784. image: {
  19785. source: "./media/characters/xeauvok/side.svg",
  19786. extra: 1975 / 1523,
  19787. bottom: 0.07
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(7.2, "feet"),
  19795. default: true
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19801. {
  19802. side: {
  19803. height: math.unit(4, "meters"),
  19804. weight: math.unit(2200, "kg"),
  19805. name: "Side",
  19806. image: {
  19807. source: "./media/characters/zara/side.svg",
  19808. extra: 765/744,
  19809. bottom: 156/921
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(4, "meters"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19823. {
  19824. side: {
  19825. height: math.unit(6, "feet"),
  19826. weight: math.unit(150, "lb"),
  19827. name: "Side",
  19828. image: {
  19829. source: "./media/characters/richard-dragon/side.svg",
  19830. extra: 845 / 340,
  19831. bottom: 0.017
  19832. }
  19833. },
  19834. maw: {
  19835. height: math.unit(2.97, "feet"),
  19836. name: "Maw",
  19837. image: {
  19838. source: "./media/characters/richard-dragon/maw.svg"
  19839. }
  19840. },
  19841. },
  19842. [
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(4, "feet"),
  19850. weight: math.unit(100, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/richard-smeargle/front.svg",
  19854. extra: 2952 / 2820,
  19855. bottom: 0.028
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(4, "feet"),
  19863. default: true
  19864. },
  19865. {
  19866. name: "Dynamax",
  19867. height: math.unit(20, "meters")
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(6, "feet"),
  19876. weight: math.unit(110, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/klay/front.svg",
  19880. extra: 962 / 883,
  19881. bottom: 0.04
  19882. }
  19883. },
  19884. back: {
  19885. height: math.unit(6, "feet"),
  19886. weight: math.unit(110, "lb"),
  19887. name: "Back",
  19888. image: {
  19889. source: "./media/characters/klay/back.svg",
  19890. extra: 962 / 883
  19891. }
  19892. },
  19893. beans: {
  19894. height: math.unit(1.15, "feet"),
  19895. name: "Beans",
  19896. image: {
  19897. source: "./media/characters/klay/beans.svg"
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Micro",
  19904. height: math.unit(6, "inches")
  19905. },
  19906. {
  19907. name: "Mini",
  19908. height: math.unit(3, "feet")
  19909. },
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(6, "feet"),
  19913. default: true
  19914. },
  19915. {
  19916. name: "Big",
  19917. height: math.unit(25, "feet")
  19918. },
  19919. {
  19920. name: "Macro",
  19921. height: math.unit(100, "feet")
  19922. },
  19923. {
  19924. name: "Megamacro",
  19925. height: math.unit(400, "feet")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(6, "feet"),
  19934. weight: math.unit(160, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/marcus/front.svg",
  19938. extra: 734 / 676,
  19939. bottom: 0.03
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Little",
  19946. height: math.unit(6, "feet")
  19947. },
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(110, "feet"),
  19951. default: true
  19952. },
  19953. {
  19954. name: "Macro",
  19955. height: math.unit(250, "feet")
  19956. },
  19957. {
  19958. name: "Megamacro",
  19959. height: math.unit(1000, "feet")
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(7, "feet"),
  19968. weight: math.unit(275, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/claude-delroute/front.svg",
  19972. extra: 902/827,
  19973. bottom: 26/928
  19974. }
  19975. },
  19976. side: {
  19977. height: math.unit(7, "feet"),
  19978. weight: math.unit(275, "lb"),
  19979. name: "Side",
  19980. image: {
  19981. source: "./media/characters/claude-delroute/side.svg",
  19982. extra: 908/853,
  19983. bottom: 16/924
  19984. }
  19985. },
  19986. back: {
  19987. height: math.unit(7, "feet"),
  19988. weight: math.unit(275, "lb"),
  19989. name: "Back",
  19990. image: {
  19991. source: "./media/characters/claude-delroute/back.svg",
  19992. extra: 911/829,
  19993. bottom: 18/929
  19994. }
  19995. },
  19996. maw: {
  19997. height: math.unit(0.6407, "meters"),
  19998. name: "Maw",
  19999. image: {
  20000. source: "./media/characters/claude-delroute/maw.svg"
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(7, "feet"),
  20008. default: true
  20009. },
  20010. {
  20011. name: "Lorge",
  20012. height: math.unit(20, "feet")
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(8 + 4 / 12, "feet"),
  20021. weight: math.unit(600, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/dragonien/front.svg",
  20025. extra: 100 / 94,
  20026. bottom: 3.3 / 103.3445
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(8 + 4 / 12, "feet"),
  20031. weight: math.unit(600, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/dragonien/back.svg",
  20035. extra: 776 / 746,
  20036. bottom: 6.4 / 782.0616
  20037. }
  20038. },
  20039. foot: {
  20040. height: math.unit(1.54, "feet"),
  20041. name: "Foot",
  20042. image: {
  20043. source: "./media/characters/dragonien/foot.svg",
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(8 + 4 / 12, "feet"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Macro",
  20055. height: math.unit(200, "feet")
  20056. },
  20057. {
  20058. name: "Megamacro",
  20059. height: math.unit(1, "mile")
  20060. },
  20061. {
  20062. name: "Gigamacro",
  20063. height: math.unit(1000, "miles")
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(5 + 2 / 12, "feet"),
  20072. weight: math.unit(110, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/desta/front.svg",
  20076. extra: 767 / 726,
  20077. bottom: 11.7 / 779
  20078. }
  20079. },
  20080. back: {
  20081. height: math.unit(5 + 2 / 12, "feet"),
  20082. weight: math.unit(110, "lb"),
  20083. name: "Back",
  20084. image: {
  20085. source: "./media/characters/desta/back.svg",
  20086. extra: 777 / 728,
  20087. bottom: 6 / 784
  20088. }
  20089. },
  20090. frontAlt: {
  20091. height: math.unit(5 + 2 / 12, "feet"),
  20092. weight: math.unit(110, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/desta/front-alt.svg",
  20096. extra: 1482 / 1417
  20097. }
  20098. },
  20099. side: {
  20100. height: math.unit(5 + 2 / 12, "feet"),
  20101. weight: math.unit(110, "lb"),
  20102. name: "Side",
  20103. image: {
  20104. source: "./media/characters/desta/side.svg",
  20105. extra: 2579 / 2491,
  20106. bottom: 0.053
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Micro",
  20113. height: math.unit(6, "inches")
  20114. },
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(5 + 2 / 12, "feet"),
  20118. default: true
  20119. },
  20120. {
  20121. name: "Macro",
  20122. height: math.unit(62, "feet")
  20123. },
  20124. {
  20125. name: "Megamacro",
  20126. height: math.unit(1800, "feet")
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(10, "feet"),
  20135. weight: math.unit(700, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/storm-alystar/front.svg",
  20139. extra: 2112 / 1898,
  20140. bottom: 0.034
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Micro",
  20147. height: math.unit(3.5, "inches")
  20148. },
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(10, "feet"),
  20152. default: true
  20153. },
  20154. {
  20155. name: "Macro",
  20156. height: math.unit(400, "feet")
  20157. },
  20158. {
  20159. name: "Deific",
  20160. height: math.unit(60, "miles")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(2.35, "meters"),
  20169. weight: math.unit(119, "kg"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/ilia/front.svg",
  20173. extra: 1285 / 1255,
  20174. bottom: 0.06
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(2.35, "meters")
  20182. },
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(140, "meters"),
  20186. default: true
  20187. },
  20188. {
  20189. name: "Megamacro",
  20190. height: math.unit(100, "miles")
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(6 + 5 / 12, "feet"),
  20199. weight: math.unit(190, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/kingdead/front.svg",
  20203. extra: 1228 / 1177
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Micro",
  20210. height: math.unit(7, "inches")
  20211. },
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(6 + 5 / 12, "feet")
  20215. },
  20216. {
  20217. name: "Macro",
  20218. height: math.unit(150, "feet"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Megamacro",
  20223. height: math.unit(200, "miles")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(8, "feet"),
  20232. weight: math.unit(600, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/kyrehx/front.svg",
  20236. extra: 1195 / 1095,
  20237. bottom: 0.034
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Micro",
  20244. height: math.unit(2, "inches")
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(8, "feet"),
  20249. default: true
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(255, "feet")
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20262. weight: math.unit(184, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/xang/front.svg",
  20266. extra: 845 / 755
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(0.935 * 146, "feet")
  20279. },
  20280. {
  20281. name: "Megamacro",
  20282. height: math.unit(0.935 * 3, "miles")
  20283. },
  20284. ]
  20285. ))
  20286. characterMakers.push(() => makeCharacter(
  20287. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20288. {
  20289. frontDressed: {
  20290. height: math.unit(5 + 7 / 12, "feet"),
  20291. weight: math.unit(140, "lb"),
  20292. name: "Front (Dressed)",
  20293. image: {
  20294. source: "./media/characters/doc-weardno/front-dressed.svg",
  20295. extra: 263 / 234
  20296. }
  20297. },
  20298. backDressed: {
  20299. height: math.unit(5 + 7 / 12, "feet"),
  20300. weight: math.unit(140, "lb"),
  20301. name: "Back (Dressed)",
  20302. image: {
  20303. source: "./media/characters/doc-weardno/back-dressed.svg",
  20304. extra: 266 / 238
  20305. }
  20306. },
  20307. front: {
  20308. height: math.unit(5 + 7 / 12, "feet"),
  20309. weight: math.unit(140, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/doc-weardno/front.svg",
  20313. extra: 254 / 233
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Micro",
  20320. height: math.unit(3, "inches")
  20321. },
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(5 + 7 / 12, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(25, "feet")
  20330. },
  20331. {
  20332. name: "Megamacro",
  20333. height: math.unit(2, "miles")
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(6 + 2 / 12, "feet"),
  20342. weight: math.unit(153, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/seth-whilst/front.svg",
  20346. bottom: 0.07
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Micro",
  20353. height: math.unit(5, "inches")
  20354. },
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(6 + 2 / 12, "feet"),
  20358. default: true
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(3, "inches"),
  20367. weight: math.unit(8, "grams"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/pocket-jabari/front.svg",
  20371. extra: 1024 / 974,
  20372. bottom: 0.039
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Minimicro",
  20379. height: math.unit(8, "mm")
  20380. },
  20381. {
  20382. name: "Micro",
  20383. height: math.unit(3, "inches"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(3, "feet")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20394. {
  20395. frontDressed: {
  20396. height: math.unit(15, "feet"),
  20397. weight: math.unit(3280, "lb"),
  20398. name: "Front (Dressed)",
  20399. image: {
  20400. source: "./media/characters/sapphy/front-dressed.svg",
  20401. extra: 1951/1654,
  20402. bottom: 194/2145
  20403. },
  20404. form: "anthro",
  20405. default: true
  20406. },
  20407. backDressed: {
  20408. height: math.unit(15, "feet"),
  20409. weight: math.unit(3280, "lb"),
  20410. name: "Back (Dressed)",
  20411. image: {
  20412. source: "./media/characters/sapphy/back-dressed.svg",
  20413. extra: 2058/1918,
  20414. bottom: 125/2183
  20415. },
  20416. form: "anthro"
  20417. },
  20418. frontNude: {
  20419. height: math.unit(15, "feet"),
  20420. weight: math.unit(3280, "lb"),
  20421. name: "Front (Nude)",
  20422. image: {
  20423. source: "./media/characters/sapphy/front-nude.svg",
  20424. extra: 1951/1654,
  20425. bottom: 194/2145
  20426. },
  20427. form: "anthro"
  20428. },
  20429. backNude: {
  20430. height: math.unit(15, "feet"),
  20431. weight: math.unit(3280, "lb"),
  20432. name: "Back (Nude)",
  20433. image: {
  20434. source: "./media/characters/sapphy/back-nude.svg",
  20435. extra: 2058/1918,
  20436. bottom: 125/2183
  20437. },
  20438. form: "anthro"
  20439. },
  20440. full: {
  20441. height: math.unit(15, "feet"),
  20442. weight: math.unit(3280, "lb"),
  20443. name: "Full",
  20444. image: {
  20445. source: "./media/characters/sapphy/full.svg",
  20446. extra: 1396/1317,
  20447. bottom: 44/1440
  20448. },
  20449. form: "anthro"
  20450. },
  20451. dick: {
  20452. height: math.unit(3.8, "feet"),
  20453. name: "Dick",
  20454. image: {
  20455. source: "./media/characters/sapphy/dick.svg"
  20456. },
  20457. form: "anthro"
  20458. },
  20459. feral: {
  20460. height: math.unit(35, "feet"),
  20461. weight: math.unit(160, "tons"),
  20462. name: "Feral",
  20463. image: {
  20464. source: "./media/characters/sapphy/feral.svg",
  20465. extra: 1050/573,
  20466. bottom: 60/1110
  20467. },
  20468. form: "feral",
  20469. default: true
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(15, "feet"),
  20476. form: "anthro"
  20477. },
  20478. {
  20479. name: "Casual Macro",
  20480. height: math.unit(120, "feet"),
  20481. form: "anthro"
  20482. },
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(2150, "feet"),
  20486. default: true,
  20487. form: "anthro"
  20488. },
  20489. {
  20490. name: "Megamacro",
  20491. height: math.unit(8, "miles"),
  20492. form: "anthro"
  20493. },
  20494. {
  20495. name: "Galaxy Mom",
  20496. height: math.unit(6, "megalightyears"),
  20497. form: "anthro"
  20498. },
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(35, "feet"),
  20502. form: "feral",
  20503. default: true
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(300, "feet"),
  20508. form: "feral"
  20509. },
  20510. {
  20511. name: "Galaxy Mom",
  20512. height: math.unit(10, "megalightyears"),
  20513. form: "feral"
  20514. },
  20515. ],
  20516. {
  20517. "anthro": {
  20518. name: "Anthro",
  20519. default: true
  20520. },
  20521. "feral": {
  20522. name: "Feral"
  20523. }
  20524. }
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20528. {
  20529. hyenaFront: {
  20530. height: math.unit(6, "feet"),
  20531. weight: math.unit(190, "lb"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/kiro/hyena-front.svg",
  20535. extra: 927/839,
  20536. bottom: 91/1018
  20537. },
  20538. form: "hyena",
  20539. default: true
  20540. },
  20541. front: {
  20542. height: math.unit(6, "feet"),
  20543. weight: math.unit(170, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/kiro/front.svg",
  20547. extra: 1064 / 1012,
  20548. bottom: 0.052
  20549. },
  20550. form: "folf",
  20551. default: true
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(6, "inches"),
  20558. form: "folf"
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(6, "feet"),
  20563. form: "folf",
  20564. default: true
  20565. },
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(72, "feet"),
  20569. form: "folf"
  20570. },
  20571. {
  20572. name: "Micro",
  20573. height: math.unit(6, "inches"),
  20574. form: "hyena"
  20575. },
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(6, "feet"),
  20579. form: "hyena",
  20580. default: true
  20581. },
  20582. {
  20583. name: "Macro",
  20584. height: math.unit(72, "feet"),
  20585. form: "hyena"
  20586. },
  20587. ],
  20588. {
  20589. "hyena": {
  20590. name: "Hyena",
  20591. default: true
  20592. },
  20593. "folf": {
  20594. name: "Folf",
  20595. },
  20596. }
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(5 + 9 / 12, "feet"),
  20603. weight: math.unit(175, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/irishfox/front.svg",
  20607. extra: 1912 / 1680,
  20608. bottom: 0.02
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Nano",
  20615. height: math.unit(1, "mm")
  20616. },
  20617. {
  20618. name: "Micro",
  20619. height: math.unit(2, "inches")
  20620. },
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(5 + 9 / 12, "feet"),
  20624. default: true
  20625. },
  20626. {
  20627. name: "Macro",
  20628. height: math.unit(45, "feet")
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(6 + 1 / 12, "feet"),
  20637. weight: math.unit(75, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/aronai-sieyes/front.svg",
  20641. extra: 1532/1450,
  20642. bottom: 42/1574
  20643. }
  20644. },
  20645. side: {
  20646. height: math.unit(6 + 1 / 12, "feet"),
  20647. weight: math.unit(75, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/aronai-sieyes/side.svg",
  20651. extra: 1422/1365,
  20652. bottom: 148/1570
  20653. }
  20654. },
  20655. back: {
  20656. height: math.unit(6 + 1 / 12, "feet"),
  20657. weight: math.unit(75, "lb"),
  20658. name: "Back",
  20659. image: {
  20660. source: "./media/characters/aronai-sieyes/back.svg",
  20661. extra: 1526/1464,
  20662. bottom: 51/1577
  20663. }
  20664. },
  20665. dressed: {
  20666. height: math.unit(6 + 1 / 12, "feet"),
  20667. weight: math.unit(75, "lb"),
  20668. name: "Dressed",
  20669. image: {
  20670. source: "./media/characters/aronai-sieyes/dressed.svg",
  20671. extra: 1559/1483,
  20672. bottom: 39/1598
  20673. }
  20674. },
  20675. slit: {
  20676. height: math.unit(1.3, "feet"),
  20677. name: "Slit",
  20678. image: {
  20679. source: "./media/characters/aronai-sieyes/slit.svg"
  20680. }
  20681. },
  20682. slitSpread: {
  20683. height: math.unit(0.9, "feet"),
  20684. name: "Slit (Spread)",
  20685. image: {
  20686. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20687. }
  20688. },
  20689. rump: {
  20690. height: math.unit(1.3, "feet"),
  20691. name: "Rump",
  20692. image: {
  20693. source: "./media/characters/aronai-sieyes/rump.svg"
  20694. }
  20695. },
  20696. maw: {
  20697. height: math.unit(1.25, "feet"),
  20698. name: "Maw",
  20699. image: {
  20700. source: "./media/characters/aronai-sieyes/maw.svg"
  20701. }
  20702. },
  20703. feral: {
  20704. height: math.unit(18, "feet"),
  20705. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20706. name: "Feral",
  20707. image: {
  20708. source: "./media/characters/aronai-sieyes/feral.svg",
  20709. extra: 1530 / 1240,
  20710. bottom: 0.035
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(2, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(6 + 1 / 12, "feet"),
  20722. default: true
  20723. }
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(12, "feet"),
  20731. weight: math.unit(410, "kg"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/xuna/front.svg",
  20735. extra: 2184 / 1980
  20736. }
  20737. },
  20738. side: {
  20739. height: math.unit(12, "feet"),
  20740. weight: math.unit(410, "kg"),
  20741. name: "Side",
  20742. image: {
  20743. source: "./media/characters/xuna/side.svg",
  20744. extra: 2184 / 1980
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(12, "feet"),
  20749. weight: math.unit(410, "kg"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/xuna/back.svg",
  20753. extra: 2184 / 1980
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Nano glow",
  20760. height: math.unit(10, "nm")
  20761. },
  20762. {
  20763. name: "Micro floof",
  20764. height: math.unit(0.3, "m")
  20765. },
  20766. {
  20767. name: "Huggable softy boi",
  20768. height: math.unit(3.6576, "m"),
  20769. default: true
  20770. },
  20771. {
  20772. name: "Admirable floof",
  20773. height: math.unit(80, "meters")
  20774. },
  20775. {
  20776. name: "Gentle macro",
  20777. height: math.unit(300, "meters")
  20778. },
  20779. {
  20780. name: "Very careful floof",
  20781. height: math.unit(3200, "meters")
  20782. },
  20783. {
  20784. name: "The mega floof",
  20785. height: math.unit(36000, "meters")
  20786. },
  20787. {
  20788. name: "Giga-fur-Wicker",
  20789. height: math.unit(4800000, "meters")
  20790. },
  20791. {
  20792. name: "Licky world",
  20793. height: math.unit(20000000, "meters")
  20794. },
  20795. {
  20796. name: "Floofy cyan sun",
  20797. height: math.unit(1500000000, "meters")
  20798. },
  20799. {
  20800. name: "Milky Wicker",
  20801. height: math.unit(1000000000000000000000, "meters")
  20802. },
  20803. {
  20804. name: "The observing Wicker",
  20805. height: math.unit(999999999999999999999999999, "meters")
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(5 + 9 / 12, "feet"),
  20814. weight: math.unit(150, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/arokha-sieyes/front.svg",
  20818. extra: 1425 / 1284,
  20819. bottom: 0.05
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 9 / 12, "feet")
  20827. },
  20828. {
  20829. name: "Macro",
  20830. height: math.unit(30, "meters"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(6, "feet"),
  20840. weight: math.unit(180, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/arokh-sieyes/front.svg",
  20844. extra: 1830 / 1769,
  20845. bottom: 0.01
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6, "feet")
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(30, "meters"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20863. {
  20864. side: {
  20865. height: math.unit(13 + 1 / 12, "feet"),
  20866. weight: math.unit(8.5, "tonnes"),
  20867. preyCapacity: math.unit(36, "people"),
  20868. name: "Side",
  20869. image: {
  20870. source: "./media/characters/goldeneye/side.svg",
  20871. extra: 1139/741,
  20872. bottom: 98/1237
  20873. }
  20874. },
  20875. front: {
  20876. height: math.unit(5.1, "feet"),
  20877. weight: math.unit(8.5, "tonnes"),
  20878. preyCapacity: math.unit(36, "people"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/goldeneye/front.svg",
  20882. extra: 635/365,
  20883. bottom: 598/1233
  20884. }
  20885. },
  20886. maw: {
  20887. height: math.unit(6.6, "feet"),
  20888. name: "Maw",
  20889. image: {
  20890. source: "./media/characters/goldeneye/maw.svg"
  20891. }
  20892. },
  20893. headFront: {
  20894. height: math.unit(8, "feet"),
  20895. name: "Head (Front)",
  20896. image: {
  20897. source: "./media/characters/goldeneye/head-front.svg"
  20898. }
  20899. },
  20900. headSide: {
  20901. height: math.unit(6, "feet"),
  20902. name: "Head (Side)",
  20903. image: {
  20904. source: "./media/characters/goldeneye/head-side.svg"
  20905. }
  20906. },
  20907. headBack: {
  20908. height: math.unit(8, "feet"),
  20909. name: "Head (Back)",
  20910. image: {
  20911. source: "./media/characters/goldeneye/head-back.svg"
  20912. }
  20913. },
  20914. paw: {
  20915. height: math.unit(3.4, "feet"),
  20916. name: "Paw",
  20917. image: {
  20918. source: "./media/characters/goldeneye/paw.svg"
  20919. }
  20920. },
  20921. toering: {
  20922. height: math.unit(0.45, "feet"),
  20923. name: "Toering",
  20924. image: {
  20925. source: "./media/characters/goldeneye/toering.svg"
  20926. }
  20927. },
  20928. eyes: {
  20929. height: math.unit(0.5, "feet"),
  20930. name: "Eyes",
  20931. image: {
  20932. source: "./media/characters/goldeneye/eyes.svg"
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(13 + 1 / 12, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20946. {
  20947. front: {
  20948. height: math.unit(6 + 1 / 12, "feet"),
  20949. weight: math.unit(210, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/leonardo-lycheborne/front.svg",
  20953. extra: 776/723,
  20954. bottom: 34/810
  20955. }
  20956. },
  20957. side: {
  20958. height: math.unit(6 + 1 / 12, "feet"),
  20959. weight: math.unit(210, "lb"),
  20960. name: "Side",
  20961. image: {
  20962. source: "./media/characters/leonardo-lycheborne/side.svg",
  20963. extra: 780/728,
  20964. bottom: 12/792
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(6 + 1 / 12, "feet"),
  20969. weight: math.unit(210, "lb"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/leonardo-lycheborne/back.svg",
  20973. extra: 775/721,
  20974. bottom: 17/792
  20975. }
  20976. },
  20977. hand: {
  20978. height: math.unit(1.08, "feet"),
  20979. name: "Hand",
  20980. image: {
  20981. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20982. }
  20983. },
  20984. foot: {
  20985. height: math.unit(1.32, "feet"),
  20986. name: "Foot",
  20987. image: {
  20988. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20989. }
  20990. },
  20991. maw: {
  20992. height: math.unit(1, "feet"),
  20993. name: "Maw",
  20994. image: {
  20995. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20996. }
  20997. },
  20998. were: {
  20999. height: math.unit(20, "feet"),
  21000. weight: math.unit(7800, "lb"),
  21001. name: "Were",
  21002. image: {
  21003. source: "./media/characters/leonardo-lycheborne/were.svg",
  21004. extra: 1224/1165,
  21005. bottom: 72/1296
  21006. }
  21007. },
  21008. feral: {
  21009. height: math.unit(7.5, "feet"),
  21010. weight: math.unit(600, "lb"),
  21011. name: "Feral",
  21012. image: {
  21013. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21014. extra: 797/702,
  21015. bottom: 139/936
  21016. }
  21017. },
  21018. taur: {
  21019. height: math.unit(11, "feet"),
  21020. weight: math.unit(3300, "lb"),
  21021. name: "Taur",
  21022. image: {
  21023. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21024. extra: 1271/1197,
  21025. bottom: 47/1318
  21026. }
  21027. },
  21028. barghest: {
  21029. height: math.unit(11, "feet"),
  21030. weight: math.unit(1300, "lb"),
  21031. name: "Barghest",
  21032. image: {
  21033. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21034. extra: 1291/1204,
  21035. bottom: 37/1328
  21036. }
  21037. },
  21038. dick: {
  21039. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21040. name: "Dick",
  21041. image: {
  21042. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21043. }
  21044. },
  21045. dickWere: {
  21046. height: math.unit((20) / 3.8, "feet"),
  21047. name: "Dick (Were)",
  21048. image: {
  21049. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(6 + 1 / 12, "feet"),
  21057. default: true
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(10, "feet"),
  21066. weight: math.unit(350, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/jet/front.svg",
  21070. extra: 2050 / 1980,
  21071. bottom: 0.013
  21072. }
  21073. },
  21074. back: {
  21075. height: math.unit(10, "feet"),
  21076. weight: math.unit(350, "lb"),
  21077. name: "Back",
  21078. image: {
  21079. source: "./media/characters/jet/back.svg",
  21080. extra: 2050 / 1980,
  21081. bottom: 0.013
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Micro",
  21088. height: math.unit(6, "inches")
  21089. },
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(10, "feet"),
  21093. default: true
  21094. },
  21095. {
  21096. name: "Macro",
  21097. height: math.unit(100, "feet")
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(15, "feet"),
  21106. weight: math.unit(2800, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/tanarath/front.svg",
  21110. extra: 2392 / 2220,
  21111. bottom: 0.03
  21112. }
  21113. },
  21114. back: {
  21115. height: math.unit(15, "feet"),
  21116. weight: math.unit(2800, "lb"),
  21117. name: "Back",
  21118. image: {
  21119. source: "./media/characters/tanarath/back.svg",
  21120. extra: 2392 / 2220,
  21121. bottom: 0.03
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(15, "feet"),
  21129. default: true
  21130. },
  21131. ]
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21135. {
  21136. front: {
  21137. height: math.unit(7 + 1 / 12, "feet"),
  21138. weight: math.unit(175, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/patty-cattybatty/front.svg",
  21142. extra: 908 / 874,
  21143. bottom: 0.025
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Micro",
  21150. height: math.unit(1, "inch")
  21151. },
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(7 + 1 / 12, "feet")
  21155. },
  21156. {
  21157. name: "Mini Macro",
  21158. height: math.unit(155, "feet")
  21159. },
  21160. {
  21161. name: "Macro",
  21162. height: math.unit(1077, "feet")
  21163. },
  21164. {
  21165. name: "Mega Macro",
  21166. height: math.unit(47650, "feet"),
  21167. default: true
  21168. },
  21169. {
  21170. name: "Giga Macro",
  21171. height: math.unit(440, "miles")
  21172. },
  21173. {
  21174. name: "Tera Macro",
  21175. height: math.unit(8700, "miles")
  21176. },
  21177. {
  21178. name: "Planetary Macro",
  21179. height: math.unit(32700, "miles")
  21180. },
  21181. {
  21182. name: "Solar Macro",
  21183. height: math.unit(550000, "miles")
  21184. },
  21185. {
  21186. name: "Celestial Macro",
  21187. height: math.unit(2.5, "AU")
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21193. {
  21194. front: {
  21195. height: math.unit(4 + 5 / 12, "feet"),
  21196. weight: math.unit(90, "lb"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/cappu/front.svg",
  21200. extra: 1247 / 1152,
  21201. bottom: 0.012
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(4 + 5 / 12, "feet"),
  21209. default: true
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21215. {
  21216. frontDressed: {
  21217. height: math.unit(70, "cm"),
  21218. weight: math.unit(6, "kg"),
  21219. name: "Front (Dressed)",
  21220. image: {
  21221. source: "./media/characters/sebi/front-dressed.svg",
  21222. extra: 713.5 / 686.5,
  21223. bottom: 0.003
  21224. }
  21225. },
  21226. front: {
  21227. height: math.unit(70, "cm"),
  21228. weight: math.unit(5, "kg"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/sebi/front.svg",
  21232. extra: 713.5 / 686.5,
  21233. bottom: 0.003
  21234. }
  21235. }
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(70, "cm"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(8, "meters")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(6, "feet"),
  21254. weight: math.unit(150, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/typhek/front.svg",
  21258. extra: 1948 / 1929,
  21259. bottom: 0.025
  21260. }
  21261. },
  21262. side: {
  21263. height: math.unit(6, "feet"),
  21264. weight: math.unit(150, "lb"),
  21265. name: "Side",
  21266. image: {
  21267. source: "./media/characters/typhek/side.svg",
  21268. extra: 2034 / 2010,
  21269. bottom: 0.003
  21270. }
  21271. },
  21272. back: {
  21273. height: math.unit(6, "feet"),
  21274. weight: math.unit(150, "lb"),
  21275. name: "Back",
  21276. image: {
  21277. source: "./media/characters/typhek/back.svg",
  21278. extra: 2005 / 1978,
  21279. bottom: 0.004
  21280. }
  21281. },
  21282. palm: {
  21283. height: math.unit(1.2, "feet"),
  21284. name: "Palm",
  21285. image: {
  21286. source: "./media/characters/typhek/palm.svg"
  21287. }
  21288. },
  21289. fist: {
  21290. height: math.unit(1.1, "feet"),
  21291. name: "Fist",
  21292. image: {
  21293. source: "./media/characters/typhek/fist.svg"
  21294. }
  21295. },
  21296. foot: {
  21297. height: math.unit(1.57, "feet"),
  21298. name: "Foot",
  21299. image: {
  21300. source: "./media/characters/typhek/foot.svg"
  21301. }
  21302. },
  21303. sole: {
  21304. height: math.unit(2.05, "feet"),
  21305. name: "Sole",
  21306. image: {
  21307. source: "./media/characters/typhek/sole.svg"
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Macro",
  21314. height: math.unit(40, "stories"),
  21315. default: true
  21316. },
  21317. {
  21318. name: "Megamacro",
  21319. height: math.unit(1, "mile")
  21320. },
  21321. {
  21322. name: "Gigamacro",
  21323. height: math.unit(4000, "solarradii")
  21324. },
  21325. {
  21326. name: "Universal",
  21327. height: math.unit(1.1, "universes")
  21328. }
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21333. {
  21334. side: {
  21335. height: math.unit(5 + 7 / 12, "feet"),
  21336. weight: math.unit(150, "lb"),
  21337. name: "Side",
  21338. image: {
  21339. source: "./media/characters/kassy/side.svg",
  21340. extra: 1280 / 1225,
  21341. bottom: 0.002
  21342. }
  21343. },
  21344. front: {
  21345. height: math.unit(5 + 7 / 12, "feet"),
  21346. weight: math.unit(150, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/kassy/front.svg",
  21350. extra: 1280 / 1225,
  21351. bottom: 0.025
  21352. }
  21353. },
  21354. back: {
  21355. height: math.unit(5 + 7 / 12, "feet"),
  21356. weight: math.unit(150, "lb"),
  21357. name: "Back",
  21358. image: {
  21359. source: "./media/characters/kassy/back.svg",
  21360. extra: 1280 / 1225,
  21361. bottom: 0.002
  21362. }
  21363. },
  21364. foot: {
  21365. height: math.unit(1.266, "feet"),
  21366. name: "Foot",
  21367. image: {
  21368. source: "./media/characters/kassy/foot.svg"
  21369. }
  21370. },
  21371. },
  21372. [
  21373. {
  21374. name: "Normal",
  21375. height: math.unit(5 + 7 / 12, "feet")
  21376. },
  21377. {
  21378. name: "Macro",
  21379. height: math.unit(137, "feet"),
  21380. default: true
  21381. },
  21382. {
  21383. name: "Megamacro",
  21384. height: math.unit(1, "mile")
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(6 + 1 / 12, "feet"),
  21393. weight: math.unit(200, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/neil/front.svg",
  21397. extra: 1326 / 1250,
  21398. bottom: 0.023
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(6 + 1 / 12, "feet"),
  21406. default: true
  21407. },
  21408. {
  21409. name: "Macro",
  21410. height: math.unit(200, "feet")
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21416. {
  21417. front: {
  21418. height: math.unit(5 + 9 / 12, "feet"),
  21419. weight: math.unit(190, "lb"),
  21420. name: "Front",
  21421. image: {
  21422. source: "./media/characters/atticus/front.svg",
  21423. extra: 2934 / 2785,
  21424. bottom: 0.025
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(5 + 9 / 12, "feet"),
  21432. default: true
  21433. },
  21434. {
  21435. name: "Macro",
  21436. height: math.unit(180, "feet")
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21442. {
  21443. side: {
  21444. height: math.unit(9, "feet"),
  21445. weight: math.unit(650, "lb"),
  21446. name: "Side",
  21447. image: {
  21448. source: "./media/characters/milo/side.svg",
  21449. extra: 2644 / 2310,
  21450. bottom: 0.032
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(9, "feet"),
  21458. default: true
  21459. },
  21460. {
  21461. name: "Macro",
  21462. height: math.unit(300, "feet")
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21468. {
  21469. side: {
  21470. height: math.unit(8, "meters"),
  21471. weight: math.unit(90000, "kg"),
  21472. name: "Side",
  21473. image: {
  21474. source: "./media/characters/ijzer/side.svg",
  21475. extra: 2756 / 1600,
  21476. bottom: 0.01
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Small",
  21483. height: math.unit(3, "meters")
  21484. },
  21485. {
  21486. name: "Normal",
  21487. height: math.unit(8, "meters"),
  21488. default: true
  21489. },
  21490. {
  21491. name: "Normal+",
  21492. height: math.unit(10, "meters")
  21493. },
  21494. {
  21495. name: "Bigger",
  21496. height: math.unit(24, "meters")
  21497. },
  21498. {
  21499. name: "Huge",
  21500. height: math.unit(80, "meters")
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(6 + 2 / 12, "feet"),
  21509. weight: math.unit(153, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/luca-cervicum/front.svg",
  21513. extra: 370 / 327,
  21514. bottom: 0.015
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(6 + 2 / 12, "feet"),
  21519. weight: math.unit(153, "lb"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/luca-cervicum/back.svg",
  21523. extra: 367 / 333,
  21524. bottom: 0.005
  21525. }
  21526. },
  21527. frontGear: {
  21528. height: math.unit(6 + 2 / 12, "feet"),
  21529. weight: math.unit(173, "lb"),
  21530. name: "Front (Gear)",
  21531. image: {
  21532. source: "./media/characters/luca-cervicum/front-gear.svg",
  21533. extra: 377 / 333,
  21534. bottom: 0.006
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(6 + 2 / 12, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(6 + 1 / 12, "feet"),
  21551. weight: math.unit(304, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/oliver/front.svg",
  21555. extra: 157 / 143,
  21556. bottom: 0.08
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(6 + 1 / 12, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21570. {
  21571. front: {
  21572. height: math.unit(5 + 7 / 12, "feet"),
  21573. weight: math.unit(140, "lb"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/shane/front.svg",
  21577. extra: 304 / 289,
  21578. bottom: 0.005
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(5 + 7 / 12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(5 + 9 / 12, "feet"),
  21595. weight: math.unit(178, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/shin/front.svg",
  21599. extra: 159 / 151,
  21600. bottom: 0.015
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(5 + 9 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(5 + 10 / 12, "feet"),
  21617. weight: math.unit(168, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/xerxes/front.svg",
  21621. extra: 282 / 260,
  21622. bottom: 0.045
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(5 + 10 / 12, "feet"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(6 + 7 / 12, "feet"),
  21639. weight: math.unit(208, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/chaska/front.svg",
  21643. extra: 332 / 319,
  21644. bottom: 0.015
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(6 + 7 / 12, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(5 + 8 / 12, "feet"),
  21661. weight: math.unit(208, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/enuk/front.svg",
  21665. extra: 437 / 406,
  21666. bottom: 0.02
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(5 + 8 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(5 + 10 / 12, "feet"),
  21683. weight: math.unit(252, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/bruun/front.svg",
  21687. extra: 197 / 187,
  21688. bottom: 0.012
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 10 / 12, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(6 + 10 / 12, "feet"),
  21705. weight: math.unit(255, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/alexeev/front.svg",
  21709. extra: 213 / 200,
  21710. bottom: 0.05
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(6 + 10 / 12, "feet"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(2 + 8 / 12, "feet"),
  21727. weight: math.unit(22, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/evelyn/front.svg",
  21731. extra: 208 / 180
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(2 + 8 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(5 + 9 / 12, "feet"),
  21748. weight: math.unit(139, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/inca/front.svg",
  21752. extra: 294 / 291,
  21753. bottom: 0.03
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 9 / 12, "feet"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(6 + 3 / 12, "feet"),
  21770. weight: math.unit(185, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/mera/front.svg",
  21774. extra: 291 / 277,
  21775. bottom: 0.03
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(6 + 3 / 12, "feet"),
  21783. default: true
  21784. },
  21785. ]
  21786. ))
  21787. characterMakers.push(() => makeCharacter(
  21788. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21789. {
  21790. front: {
  21791. height: math.unit(6 + 7 / 12, "feet"),
  21792. weight: math.unit(160, "lb"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/ceres/front.svg",
  21796. extra: 1023 / 950,
  21797. bottom: 0.027
  21798. }
  21799. },
  21800. back: {
  21801. height: math.unit(6 + 7 / 12, "feet"),
  21802. weight: math.unit(160, "lb"),
  21803. name: "Back",
  21804. image: {
  21805. source: "./media/characters/ceres/back.svg",
  21806. extra: 1023 / 950
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(6 + 7 / 12, "feet"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(5 + 10 / 12, "feet"),
  21823. weight: math.unit(150, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/kris/front.svg",
  21827. extra: 885 / 803,
  21828. bottom: 0.03
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Normal",
  21835. height: math.unit(5 + 10 / 12, "feet"),
  21836. default: true
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21842. {
  21843. front: {
  21844. height: math.unit(7, "feet"),
  21845. weight: math.unit(120, "kg"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/taluthus/front.svg",
  21849. extra: 903 / 833,
  21850. bottom: 0.015
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(7, "feet"),
  21858. default: true
  21859. },
  21860. {
  21861. name: "Macro",
  21862. height: math.unit(300, "feet")
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(5 + 9 / 12, "feet"),
  21871. weight: math.unit(145, "lb"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/dawn/front.svg",
  21875. extra: 2094 / 2016,
  21876. bottom: 0.025
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(5 + 9 / 12, "feet"),
  21881. weight: math.unit(160, "lb"),
  21882. name: "Back",
  21883. image: {
  21884. source: "./media/characters/dawn/back.svg",
  21885. extra: 2112 / 2080,
  21886. bottom: 0.005
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(6 + 7 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21900. {
  21901. anthro: {
  21902. height: math.unit(8 + 3 / 12, "feet"),
  21903. weight: math.unit(450, "lb"),
  21904. name: "Anthro",
  21905. image: {
  21906. source: "./media/characters/arador/anthro.svg",
  21907. extra: 1835 / 1718,
  21908. bottom: 0.025
  21909. }
  21910. },
  21911. feral: {
  21912. height: math.unit(4, "feet"),
  21913. weight: math.unit(200, "lb"),
  21914. name: "Feral",
  21915. image: {
  21916. source: "./media/characters/arador/feral.svg",
  21917. extra: 1683 / 1514,
  21918. bottom: 0.07
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(8 + 3 / 12, "feet")
  21926. },
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(82.5, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(5 + 10 / 12, "feet"),
  21939. weight: math.unit(125, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/dharsi/front.svg",
  21943. extra: 716 / 630,
  21944. bottom: 0.035
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Nano",
  21951. height: math.unit(100, "nm")
  21952. },
  21953. {
  21954. name: "Micro",
  21955. height: math.unit(2, "inches")
  21956. },
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(5 + 10 / 12, "feet"),
  21960. default: true
  21961. },
  21962. {
  21963. name: "Macro",
  21964. height: math.unit(1000, "feet")
  21965. },
  21966. {
  21967. name: "Megamacro",
  21968. height: math.unit(10, "miles")
  21969. },
  21970. {
  21971. name: "Gigamacro",
  21972. height: math.unit(3000, "miles")
  21973. },
  21974. {
  21975. name: "Teramacro",
  21976. height: math.unit(500000, "miles")
  21977. },
  21978. {
  21979. name: "Teramacro+",
  21980. height: math.unit(30, "galaxies")
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(6, "feet"),
  21989. weight: math.unit(150, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/deathy/front.svg",
  21993. extra: 1552 / 1463,
  21994. bottom: 0.025
  21995. }
  21996. },
  21997. side: {
  21998. height: math.unit(6, "feet"),
  21999. weight: math.unit(150, "lb"),
  22000. name: "Side",
  22001. image: {
  22002. source: "./media/characters/deathy/side.svg",
  22003. extra: 1604 / 1455,
  22004. bottom: 0.025
  22005. }
  22006. },
  22007. back: {
  22008. height: math.unit(6, "feet"),
  22009. weight: math.unit(150, "lb"),
  22010. name: "Back",
  22011. image: {
  22012. source: "./media/characters/deathy/back.svg",
  22013. extra: 1580 / 1463,
  22014. bottom: 0.005
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Micro",
  22021. height: math.unit(5, "millimeters")
  22022. },
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(6 + 5 / 12, "feet"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22032. {
  22033. front: {
  22034. height: math.unit(16, "feet"),
  22035. weight: math.unit(4000, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/juniper/front.svg",
  22039. bottom: 0.04
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(16, "feet"),
  22047. default: true
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(6, "feet"),
  22056. weight: math.unit(150, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/hipster/front.svg",
  22060. extra: 1312 / 1209,
  22061. bottom: 0.025
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(6, "feet"),
  22066. weight: math.unit(150, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/hipster/back.svg",
  22070. extra: 1281 / 1196,
  22071. bottom: 0.01
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Micro",
  22078. height: math.unit(1, "mm")
  22079. },
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(4, "inches"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Macro",
  22087. height: math.unit(500, "feet")
  22088. },
  22089. {
  22090. name: "Megamacro",
  22091. height: math.unit(1000, "miles")
  22092. },
  22093. ]
  22094. ))
  22095. characterMakers.push(() => makeCharacter(
  22096. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22097. {
  22098. front: {
  22099. height: math.unit(6, "feet"),
  22100. weight: math.unit(150, "lb"),
  22101. name: "Front",
  22102. image: {
  22103. source: "./media/characters/tendirmuldr/front.svg",
  22104. extra: 1878 / 1772,
  22105. bottom: 0.015
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Megamacro",
  22112. height: math.unit(1500, "miles"),
  22113. default: true
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22119. {
  22120. front: {
  22121. height: math.unit(14, "feet"),
  22122. weight: math.unit(12000, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/mort/front.svg",
  22126. extra: 365 / 318,
  22127. bottom: 0.01
  22128. }
  22129. },
  22130. side: {
  22131. height: math.unit(14, "feet"),
  22132. weight: math.unit(12000, "lb"),
  22133. name: "Side",
  22134. image: {
  22135. source: "./media/characters/mort/side.svg",
  22136. extra: 365 / 318,
  22137. bottom: 0.052
  22138. },
  22139. default: true
  22140. },
  22141. back: {
  22142. height: math.unit(14, "feet"),
  22143. weight: math.unit(12000, "lb"),
  22144. name: "Back",
  22145. image: {
  22146. source: "./media/characters/mort/back.svg",
  22147. extra: 371 / 332,
  22148. bottom: 0.18
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(14, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22162. {
  22163. front: {
  22164. height: math.unit(8, "feet"),
  22165. weight: math.unit(1, "ton"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/lycoa/front.svg",
  22169. extra: 1836/1728,
  22170. bottom: 81/1917
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(8, "feet"),
  22175. weight: math.unit(1, "ton"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/lycoa/back.svg",
  22179. extra: 1785/1720,
  22180. bottom: 91/1876
  22181. }
  22182. },
  22183. head: {
  22184. height: math.unit(1.6243, "feet"),
  22185. name: "Head",
  22186. image: {
  22187. source: "./media/characters/lycoa/head.svg",
  22188. extra: 1011/782,
  22189. bottom: 0/1011
  22190. }
  22191. },
  22192. tailmaw: {
  22193. height: math.unit(1.9, "feet"),
  22194. name: "Tailmaw",
  22195. image: {
  22196. source: "./media/characters/lycoa/tailmaw.svg"
  22197. }
  22198. },
  22199. tentacles: {
  22200. height: math.unit(2.1, "feet"),
  22201. name: "Tentacles",
  22202. image: {
  22203. source: "./media/characters/lycoa/tentacles.svg"
  22204. }
  22205. },
  22206. dick: {
  22207. height: math.unit(1.73, "feet"),
  22208. name: "Dick",
  22209. image: {
  22210. source: "./media/characters/lycoa/dick.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(8, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Macro",
  22222. height: math.unit(30, "feet")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22228. {
  22229. front: {
  22230. height: math.unit(4 + 2 / 12, "feet"),
  22231. weight: math.unit(70, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/naldara/front.svg",
  22235. extra: 1664/1387,
  22236. bottom: 81/1745
  22237. },
  22238. form: "anthro",
  22239. default: true
  22240. },
  22241. naga: {
  22242. height: math.unit(20, "feet"),
  22243. weight: math.unit(15000, "kg"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/naldara/naga.svg",
  22247. extra: 1590/1396,
  22248. bottom: 285/1875
  22249. },
  22250. form: "naga",
  22251. default: true
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(4 + 2 / 12, "feet"),
  22258. form: "anthro",
  22259. default: true
  22260. },
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(20, "feet"),
  22264. form: "naga",
  22265. default: true
  22266. },
  22267. ],
  22268. {
  22269. "anthro": {
  22270. name: "Anthro",
  22271. default: true
  22272. },
  22273. "naga": {
  22274. name: "Naga"
  22275. }
  22276. }
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(13 + 7 / 12, "feet"),
  22283. weight: math.unit(1500, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/briar/front.svg",
  22287. extra: 1223/1157,
  22288. bottom: 123/1346
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(13 + 7 / 12, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22302. {
  22303. side: {
  22304. height: math.unit(16, "feet"),
  22305. weight: math.unit(500, "lb"),
  22306. name: "Side",
  22307. image: {
  22308. source: "./media/characters/vanguard/side.svg",
  22309. extra: 1022/914,
  22310. bottom: 30/1052
  22311. }
  22312. },
  22313. sideAlt: {
  22314. height: math.unit(10, "feet"),
  22315. weight: math.unit(500, "lb"),
  22316. name: "Side (Alt)",
  22317. image: {
  22318. source: "./media/characters/vanguard/side-alt.svg",
  22319. extra: 502 / 425,
  22320. bottom: 0.087
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(17.71, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(7.5, "feet"),
  22337. weight: math.unit(2, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/artemis/work-safe-front.svg",
  22341. extra: 1192 / 1075,
  22342. bottom: 0.07
  22343. },
  22344. form: "work-safe",
  22345. default: true
  22346. },
  22347. frontNsfw: {
  22348. height: math.unit(7.5, "feet"),
  22349. weight: math.unit(2, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/artemis/calibrating-front.svg",
  22353. extra: 1192 / 1075,
  22354. bottom: 0.07
  22355. },
  22356. form: "calibrating",
  22357. default: true
  22358. },
  22359. frontNsfwer: {
  22360. height: math.unit(7.5, "feet"),
  22361. weight: math.unit(2, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/artemis/oversize-load-front.svg",
  22365. extra: 1192 / 1075,
  22366. bottom: 0.07
  22367. },
  22368. form: "oversize-load",
  22369. default: true
  22370. },
  22371. side: {
  22372. height: math.unit(7.5, "feet"),
  22373. weight: math.unit(2, "lb"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/artemis/work-safe-side.svg",
  22377. extra: 1192 / 1075,
  22378. bottom: 0.07
  22379. },
  22380. form: "work-safe"
  22381. },
  22382. sideNsfw: {
  22383. height: math.unit(7.5, "feet"),
  22384. weight: math.unit(2, "lb"),
  22385. name: "Side",
  22386. image: {
  22387. source: "./media/characters/artemis/calibrating-side.svg",
  22388. extra: 1192 / 1075,
  22389. bottom: 0.07
  22390. },
  22391. form: "calibrating"
  22392. },
  22393. sideNsfwer: {
  22394. height: math.unit(7.5, "feet"),
  22395. weight: math.unit(2, "lb"),
  22396. name: "Side",
  22397. image: {
  22398. source: "./media/characters/artemis/oversize-load-side.svg",
  22399. extra: 1192 / 1075,
  22400. bottom: 0.07
  22401. },
  22402. form: "oversize-load"
  22403. },
  22404. maw: {
  22405. height: math.unit(1.1, "feet"),
  22406. name: "Maw",
  22407. image: {
  22408. source: "./media/characters/artemis/maw.svg"
  22409. },
  22410. form: "work-safe"
  22411. },
  22412. stomach: {
  22413. height: math.unit(0.95, "feet"),
  22414. name: "Stomach",
  22415. image: {
  22416. source: "./media/characters/artemis/stomach.svg"
  22417. },
  22418. form: "work-safe"
  22419. },
  22420. dickCanine: {
  22421. height: math.unit(1, "feet"),
  22422. name: "Dick (Canine)",
  22423. image: {
  22424. source: "./media/characters/artemis/dick-canine.svg"
  22425. },
  22426. form: "calibrating"
  22427. },
  22428. dickEquine: {
  22429. height: math.unit(0.85, "feet"),
  22430. name: "Dick (Equine)",
  22431. image: {
  22432. source: "./media/characters/artemis/dick-equine.svg"
  22433. },
  22434. form: "calibrating"
  22435. },
  22436. dickExotic: {
  22437. height: math.unit(0.85, "feet"),
  22438. name: "Dick (Exotic)",
  22439. image: {
  22440. source: "./media/characters/artemis/dick-exotic.svg"
  22441. },
  22442. form: "calibrating"
  22443. },
  22444. dickCanineBigger: {
  22445. height: math.unit(1 * 1.33, "feet"),
  22446. name: "Dick (Canine)",
  22447. image: {
  22448. source: "./media/characters/artemis/dick-canine.svg"
  22449. },
  22450. form: "oversize-load"
  22451. },
  22452. dickEquineBigger: {
  22453. height: math.unit(0.85 * 1.33, "feet"),
  22454. name: "Dick (Equine)",
  22455. image: {
  22456. source: "./media/characters/artemis/dick-equine.svg"
  22457. },
  22458. form: "oversize-load"
  22459. },
  22460. dickExoticBigger: {
  22461. height: math.unit(0.85 * 1.33, "feet"),
  22462. name: "Dick (Exotic)",
  22463. image: {
  22464. source: "./media/characters/artemis/dick-exotic.svg"
  22465. },
  22466. form: "oversize-load"
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(7.5, "feet"),
  22473. form: "work-safe",
  22474. default: true
  22475. },
  22476. {
  22477. name: "Normal",
  22478. height: math.unit(7.5, "feet"),
  22479. form: "calibrating",
  22480. default: true
  22481. },
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(7.5, "feet"),
  22485. form: "oversize-load",
  22486. default: true
  22487. },
  22488. {
  22489. name: "Enlarged",
  22490. height: math.unit(12, "feet"),
  22491. form: "work-safe",
  22492. },
  22493. {
  22494. name: "Enlarged",
  22495. height: math.unit(12, "feet"),
  22496. form: "calibrating",
  22497. },
  22498. {
  22499. name: "Enlarged",
  22500. height: math.unit(12, "feet"),
  22501. form: "oversize-load",
  22502. },
  22503. ],
  22504. {
  22505. "work-safe": {
  22506. name: "Work-Safe",
  22507. default: true
  22508. },
  22509. "calibrating": {
  22510. name: "Calibrating"
  22511. },
  22512. "oversize-load": {
  22513. name: "Oversize Load"
  22514. }
  22515. }
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(5 + 3 / 12, "feet"),
  22522. weight: math.unit(160, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/kira/front.svg",
  22526. extra: 906 / 786,
  22527. bottom: 0.01
  22528. }
  22529. },
  22530. back: {
  22531. height: math.unit(5 + 3 / 12, "feet"),
  22532. weight: math.unit(160, "lb"),
  22533. name: "Back",
  22534. image: {
  22535. source: "./media/characters/kira/back.svg",
  22536. extra: 882 / 757,
  22537. bottom: 0.005
  22538. }
  22539. },
  22540. frontDressed: {
  22541. height: math.unit(5 + 3 / 12, "feet"),
  22542. weight: math.unit(160, "lb"),
  22543. name: "Front (Dressed)",
  22544. image: {
  22545. source: "./media/characters/kira/front-dressed.svg",
  22546. extra: 906 / 786,
  22547. bottom: 0.01
  22548. }
  22549. },
  22550. beans: {
  22551. height: math.unit(0.92, "feet"),
  22552. name: "Beans",
  22553. image: {
  22554. source: "./media/characters/kira/beans.svg"
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(5 + 3 / 12, "feet"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(5 + 4 / 12, "feet"),
  22571. weight: math.unit(145, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/scramble/front.svg",
  22575. extra: 763 / 727,
  22576. bottom: 0.05
  22577. }
  22578. },
  22579. back: {
  22580. height: math.unit(5 + 4 / 12, "feet"),
  22581. weight: math.unit(145, "lb"),
  22582. name: "Back",
  22583. image: {
  22584. source: "./media/characters/scramble/back.svg",
  22585. extra: 826 / 737,
  22586. bottom: 0.002
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(5 + 4 / 12, "feet"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22600. {
  22601. side: {
  22602. height: math.unit(6 + 2 / 12, "feet"),
  22603. weight: math.unit(190, "lb"),
  22604. name: "Side",
  22605. image: {
  22606. source: "./media/characters/biscuit/side.svg",
  22607. extra: 858 / 791,
  22608. bottom: 0.044
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(6 + 2 / 12, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(5 + 2 / 12, "feet"),
  22625. weight: math.unit(120, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/poffin/front.svg",
  22629. extra: 786 / 680,
  22630. bottom: 0.005
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(5 + 2 / 12, "feet"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(6 + 3 / 12, "feet"),
  22647. weight: math.unit(519, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/dhari/front.svg",
  22651. extra: 1048 / 946,
  22652. bottom: 0.015
  22653. }
  22654. },
  22655. back: {
  22656. height: math.unit(6 + 3 / 12, "feet"),
  22657. weight: math.unit(519, "lb"),
  22658. name: "Back",
  22659. image: {
  22660. source: "./media/characters/dhari/back.svg",
  22661. extra: 1048 / 931,
  22662. bottom: 0.005
  22663. }
  22664. },
  22665. frontDressed: {
  22666. height: math.unit(6 + 3 / 12, "feet"),
  22667. weight: math.unit(519, "lb"),
  22668. name: "Front (Dressed)",
  22669. image: {
  22670. source: "./media/characters/dhari/front-dressed.svg",
  22671. extra: 1713 / 1546,
  22672. bottom: 0.02
  22673. }
  22674. },
  22675. backDressed: {
  22676. height: math.unit(6 + 3 / 12, "feet"),
  22677. weight: math.unit(519, "lb"),
  22678. name: "Back (Dressed)",
  22679. image: {
  22680. source: "./media/characters/dhari/back-dressed.svg",
  22681. extra: 1699 / 1537,
  22682. bottom: 0.01
  22683. }
  22684. },
  22685. maw: {
  22686. height: math.unit(0.95, "feet"),
  22687. name: "Maw",
  22688. image: {
  22689. source: "./media/characters/dhari/maw.svg"
  22690. }
  22691. },
  22692. wereFront: {
  22693. height: math.unit(12 + 8 / 12, "feet"),
  22694. weight: math.unit(4000, "lb"),
  22695. name: "Front (Were)",
  22696. image: {
  22697. source: "./media/characters/dhari/were-front.svg",
  22698. extra: 1065 / 969,
  22699. bottom: 0.015
  22700. }
  22701. },
  22702. wereBack: {
  22703. height: math.unit(12 + 8 / 12, "feet"),
  22704. weight: math.unit(4000, "lb"),
  22705. name: "Back (Were)",
  22706. image: {
  22707. source: "./media/characters/dhari/were-back.svg",
  22708. extra: 1065 / 969,
  22709. bottom: 0.012
  22710. }
  22711. },
  22712. wereMaw: {
  22713. height: math.unit(0.625, "meters"),
  22714. name: "Maw (Were)",
  22715. image: {
  22716. source: "./media/characters/dhari/were-maw.svg"
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Normal",
  22723. height: math.unit(6 + 3 / 12, "feet"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22730. {
  22731. anthro: {
  22732. height: math.unit(5 + 7 / 12, "feet"),
  22733. weight: math.unit(175, "lb"),
  22734. name: "Anthro",
  22735. image: {
  22736. source: "./media/characters/rena-dyne/anthro.svg",
  22737. extra: 1849 / 1785,
  22738. bottom: 0.005
  22739. }
  22740. },
  22741. taur: {
  22742. height: math.unit(15 + 6 / 12, "feet"),
  22743. weight: math.unit(8000, "lb"),
  22744. name: "Taur",
  22745. image: {
  22746. source: "./media/characters/rena-dyne/taur.svg",
  22747. extra: 2315 / 2234,
  22748. bottom: 0.033
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(5 + 7 / 12, "feet"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(8, "feet"),
  22765. weight: math.unit(600, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/weremeep/front.svg",
  22769. extra: 970/849,
  22770. bottom: 7/977
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(8, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Lorg",
  22782. height: math.unit(12, "feet")
  22783. },
  22784. {
  22785. name: "Oh Lawd She Comin'",
  22786. height: math.unit(20, "feet")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22792. {
  22793. front: {
  22794. height: math.unit(4, "feet"),
  22795. weight: math.unit(90, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/reza/front.svg",
  22799. extra: 1183 / 1111,
  22800. bottom: 0.017
  22801. }
  22802. },
  22803. back: {
  22804. height: math.unit(4, "feet"),
  22805. weight: math.unit(90, "lb"),
  22806. name: "Back",
  22807. image: {
  22808. source: "./media/characters/reza/back.svg",
  22809. extra: 1183 / 1111,
  22810. bottom: 0.01
  22811. }
  22812. },
  22813. drake: {
  22814. height: math.unit(30, "feet"),
  22815. weight: math.unit(246960, "lb"),
  22816. name: "Drake",
  22817. image: {
  22818. source: "./media/characters/reza/drake.svg",
  22819. extra: 2350 / 2024,
  22820. bottom: 60.7 / 2403
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(4, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22834. {
  22835. side: {
  22836. height: math.unit(15, "feet"),
  22837. weight: math.unit(14, "tons"),
  22838. name: "Side",
  22839. image: {
  22840. source: "./media/characters/athea/side.svg",
  22841. extra: 960 / 540,
  22842. bottom: 0.003
  22843. }
  22844. },
  22845. sitting: {
  22846. height: math.unit(6 * 2.85, "feet"),
  22847. weight: math.unit(14, "tons"),
  22848. name: "Sitting",
  22849. image: {
  22850. source: "./media/characters/athea/sitting.svg",
  22851. extra: 621 / 581,
  22852. bottom: 0.075
  22853. }
  22854. },
  22855. maw: {
  22856. height: math.unit(7.59498031496063, "feet"),
  22857. name: "Maw",
  22858. image: {
  22859. source: "./media/characters/athea/maw.svg"
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Lap Cat",
  22866. height: math.unit(2.5, "feet")
  22867. },
  22868. {
  22869. name: "Minimacro",
  22870. height: math.unit(15, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(120, "feet")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(640, "feet")
  22880. },
  22881. {
  22882. name: "Colossus",
  22883. height: math.unit(2.2, "miles")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(8 + 8 / 12, "feet"),
  22892. weight: math.unit(130, "kg"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/seroko/front.svg",
  22896. extra: 1385 / 1280,
  22897. bottom: 0.025
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(8 + 8 / 12, "feet"),
  22902. weight: math.unit(130, "kg"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/seroko/back.svg",
  22906. extra: 1369 / 1238,
  22907. bottom: 0.018
  22908. }
  22909. },
  22910. frontDressed: {
  22911. height: math.unit(8 + 8 / 12, "feet"),
  22912. weight: math.unit(130, "kg"),
  22913. name: "Front (Dressed)",
  22914. image: {
  22915. source: "./media/characters/seroko/front-dressed.svg",
  22916. extra: 1366 / 1275,
  22917. bottom: 0.03
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(8 + 8 / 12, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(5.5, "feet"),
  22934. weight: math.unit(160, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/quatzi/front.svg",
  22938. extra: 2346 / 2242,
  22939. bottom: 0.015
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(5.5, "feet"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Big",
  22951. height: math.unit(7.7, "feet")
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22957. {
  22958. front: {
  22959. height: math.unit(5 + 11 / 12, "feet"),
  22960. weight: math.unit(180, "lb"),
  22961. name: "Front",
  22962. image: {
  22963. source: "./media/characters/sen/front.svg",
  22964. extra: 1321 / 1254,
  22965. bottom: 0.015
  22966. }
  22967. },
  22968. side: {
  22969. height: math.unit(5 + 11 / 12, "feet"),
  22970. weight: math.unit(180, "lb"),
  22971. name: "Side",
  22972. image: {
  22973. source: "./media/characters/sen/side.svg",
  22974. extra: 1321 / 1254,
  22975. bottom: 0.007
  22976. }
  22977. },
  22978. back: {
  22979. height: math.unit(5 + 11 / 12, "feet"),
  22980. weight: math.unit(180, "lb"),
  22981. name: "Back",
  22982. image: {
  22983. source: "./media/characters/sen/back.svg",
  22984. extra: 1321 / 1254
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Normal",
  22991. height: math.unit(5 + 11 / 12, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(166.6, "cm"),
  23001. weight: math.unit(66.6, "kg"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/fruity/front.svg",
  23005. extra: 1510 / 1386,
  23006. bottom: 0.04
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(166.6, "cm"),
  23011. weight: math.unit(66.6, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/fruity/back.svg",
  23015. extra: 1563 / 1435,
  23016. bottom: 0.005
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(166.6, "cm"),
  23024. default: true
  23025. },
  23026. {
  23027. name: "Demonic",
  23028. height: math.unit(166.6, "feet")
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23034. {
  23035. side: {
  23036. height: math.unit(10, "feet"),
  23037. weight: math.unit(500, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/zost/side.svg",
  23041. extra: 2870/2533,
  23042. bottom: 252/3122
  23043. }
  23044. },
  23045. mawFront: {
  23046. height: math.unit(1.08, "meters"),
  23047. name: "Maw (Front)",
  23048. image: {
  23049. source: "./media/characters/zost/maw-front.svg"
  23050. }
  23051. },
  23052. mawSide: {
  23053. height: math.unit(2.66, "feet"),
  23054. name: "Maw (Side)",
  23055. image: {
  23056. source: "./media/characters/zost/maw-side.svg"
  23057. }
  23058. },
  23059. wingspan: {
  23060. height: math.unit(7.4, "feet"),
  23061. name: "Wingspan",
  23062. image: {
  23063. source: "./media/characters/zost/wingspan.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(10, "feet"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(5 + 4 / 12, "feet"),
  23080. weight: math.unit(120, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/luci/front.svg",
  23084. extra: 1985 / 1884,
  23085. bottom: 0.04
  23086. }
  23087. },
  23088. back: {
  23089. height: math.unit(5 + 4 / 12, "feet"),
  23090. weight: math.unit(120, "lb"),
  23091. name: "Back",
  23092. image: {
  23093. source: "./media/characters/luci/back.svg",
  23094. extra: 1892 / 1791,
  23095. bottom: 0.002
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5 + 4 / 12, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(1500, "feet"),
  23112. weight: math.unit(3.8e6, "tons"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/2th/front.svg",
  23116. extra: 3489 / 3350,
  23117. bottom: 0.1
  23118. }
  23119. },
  23120. foot: {
  23121. height: math.unit(461, "feet"),
  23122. name: "Foot",
  23123. image: {
  23124. source: "./media/characters/2th/foot.svg"
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "\"Micro\"",
  23131. height: math.unit(15 + 7 / 12, "feet")
  23132. },
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(1500, "feet"),
  23136. default: true
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(5000, "feet")
  23141. },
  23142. {
  23143. name: "Megamacro",
  23144. height: math.unit(15, "miles")
  23145. },
  23146. {
  23147. name: "Gigamacro",
  23148. height: math.unit(4000, "miles")
  23149. },
  23150. {
  23151. name: "Galactic",
  23152. height: math.unit(50, "AU")
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(5 + 6 / 12, "feet"),
  23161. weight: math.unit(220, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/amethyst/front.svg",
  23165. extra: 2078 / 2040,
  23166. bottom: 0.045
  23167. }
  23168. },
  23169. back: {
  23170. height: math.unit(5 + 6 / 12, "feet"),
  23171. weight: math.unit(220, "lb"),
  23172. name: "Back",
  23173. image: {
  23174. source: "./media/characters/amethyst/back.svg",
  23175. extra: 2021 / 1989,
  23176. bottom: 0.02
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(5 + 6 / 12, "feet"),
  23184. default: true
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23190. {
  23191. front: {
  23192. height: math.unit(4 + 11 / 12, "feet"),
  23193. weight: math.unit(120, "lb"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/yumi-akiyama/front.svg",
  23197. extra: 1327 / 1235,
  23198. bottom: 0.02
  23199. }
  23200. },
  23201. back: {
  23202. height: math.unit(4 + 11 / 12, "feet"),
  23203. weight: math.unit(120, "lb"),
  23204. name: "Back",
  23205. image: {
  23206. source: "./media/characters/yumi-akiyama/back.svg",
  23207. extra: 1287 / 1245,
  23208. bottom: 0.002
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Galactic",
  23215. height: math.unit(50, "galaxies"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Universal",
  23220. height: math.unit(100, "universes")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(8, "feet"),
  23229. weight: math.unit(500, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/rifter-yrmori/front.svg",
  23233. extra: 1180 / 1125,
  23234. bottom: 0.02
  23235. }
  23236. },
  23237. back: {
  23238. height: math.unit(8, "feet"),
  23239. weight: math.unit(500, "lb"),
  23240. name: "Back",
  23241. image: {
  23242. source: "./media/characters/rifter-yrmori/back.svg",
  23243. extra: 1190 / 1145,
  23244. bottom: 0.001
  23245. }
  23246. },
  23247. wings: {
  23248. height: math.unit(7.75, "feet"),
  23249. weight: math.unit(500, "lb"),
  23250. name: "Wings",
  23251. image: {
  23252. source: "./media/characters/rifter-yrmori/wings.svg",
  23253. extra: 1357 / 1285
  23254. }
  23255. },
  23256. maw: {
  23257. height: math.unit(0.8, "feet"),
  23258. name: "Maw",
  23259. image: {
  23260. source: "./media/characters/rifter-yrmori/maw.svg"
  23261. }
  23262. },
  23263. mawfront: {
  23264. height: math.unit(1.45, "feet"),
  23265. name: "Maw (Front)",
  23266. image: {
  23267. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(8, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Macro",
  23279. height: math.unit(42, "meters")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23285. {
  23286. were: {
  23287. height: math.unit(25 + 6 / 12, "feet"),
  23288. weight: math.unit(10000, "lb"),
  23289. name: "Were",
  23290. image: {
  23291. source: "./media/characters/tahajin/were.svg",
  23292. extra: 801 / 770,
  23293. bottom: 0.042
  23294. }
  23295. },
  23296. aquatic: {
  23297. height: math.unit(6 + 4 / 12, "feet"),
  23298. weight: math.unit(160, "lb"),
  23299. name: "Aquatic",
  23300. image: {
  23301. source: "./media/characters/tahajin/aquatic.svg",
  23302. extra: 572 / 542,
  23303. bottom: 0.04
  23304. }
  23305. },
  23306. chow: {
  23307. height: math.unit(8 + 11 / 12, "feet"),
  23308. weight: math.unit(450, "lb"),
  23309. name: "Chow",
  23310. image: {
  23311. source: "./media/characters/tahajin/chow.svg",
  23312. extra: 660 / 640,
  23313. bottom: 0.015
  23314. }
  23315. },
  23316. demiNaga: {
  23317. height: math.unit(6 + 8 / 12, "feet"),
  23318. weight: math.unit(300, "lb"),
  23319. name: "Demi Naga",
  23320. image: {
  23321. source: "./media/characters/tahajin/demi-naga.svg",
  23322. extra: 643 / 615,
  23323. bottom: 0.1
  23324. }
  23325. },
  23326. data: {
  23327. height: math.unit(5, "inches"),
  23328. weight: math.unit(0.1, "lb"),
  23329. name: "Data",
  23330. image: {
  23331. source: "./media/characters/tahajin/data.svg"
  23332. }
  23333. },
  23334. fluu: {
  23335. height: math.unit(5 + 7 / 12, "feet"),
  23336. weight: math.unit(140, "lb"),
  23337. name: "Fluu",
  23338. image: {
  23339. source: "./media/characters/tahajin/fluu.svg",
  23340. extra: 628 / 592,
  23341. bottom: 0.02
  23342. }
  23343. },
  23344. starWarrior: {
  23345. height: math.unit(4 + 5 / 12, "feet"),
  23346. weight: math.unit(50, "lb"),
  23347. name: "Star Warrior",
  23348. image: {
  23349. source: "./media/characters/tahajin/star-warrior.svg"
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(25 + 6 / 12, "feet"),
  23357. default: true
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(8, "feet"),
  23366. weight: math.unit(350, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/gabira/front.svg",
  23370. extra: 1261/1154,
  23371. bottom: 51/1312
  23372. }
  23373. },
  23374. back: {
  23375. height: math.unit(8, "feet"),
  23376. weight: math.unit(350, "lb"),
  23377. name: "Back",
  23378. image: {
  23379. source: "./media/characters/gabira/back.svg",
  23380. extra: 1265/1163,
  23381. bottom: 46/1311
  23382. }
  23383. },
  23384. head: {
  23385. height: math.unit(2.85, "feet"),
  23386. name: "Head",
  23387. image: {
  23388. source: "./media/characters/gabira/head.svg"
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(8, "feet"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(5 + 3 / 12, "feet"),
  23405. weight: math.unit(137, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/sasha-katraine/front.svg",
  23409. extra: 1745/1694,
  23410. bottom: 37/1782
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(5 + 3 / 12, "feet"),
  23415. weight: math.unit(137, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/sasha-katraine/back.svg",
  23419. extra: 1776/1699,
  23420. bottom: 26/1802
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Micro",
  23427. height: math.unit(5, "inches")
  23428. },
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(5 + 3 / 12, "feet"),
  23432. default: true
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23438. {
  23439. side: {
  23440. height: math.unit(4, "inches"),
  23441. weight: math.unit(200, "grams"),
  23442. name: "Side",
  23443. image: {
  23444. source: "./media/characters/der/side.svg",
  23445. extra: 719 / 400,
  23446. bottom: 30.6 / 749.9187
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Micro",
  23453. height: math.unit(4, "inches"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23460. {
  23461. side: {
  23462. height: math.unit(30, "meters"),
  23463. weight: math.unit(700, "tonnes"),
  23464. name: "Side",
  23465. image: {
  23466. source: "./media/characters/fixerdragon/side.svg",
  23467. extra: (1293.0514 - 116.03) / 1106.86,
  23468. bottom: 116.03 / 1293.0514
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Planck",
  23475. height: math.unit(1.6e-35, "meters")
  23476. },
  23477. {
  23478. name: "Micro",
  23479. height: math.unit(0.4, "meters")
  23480. },
  23481. {
  23482. name: "Normal",
  23483. height: math.unit(30, "meters"),
  23484. default: true
  23485. },
  23486. {
  23487. name: "Megamacro",
  23488. height: math.unit(1.2, "megameters")
  23489. },
  23490. {
  23491. name: "Teramacro",
  23492. height: math.unit(130, "terameters")
  23493. },
  23494. {
  23495. name: "Yottamacro",
  23496. height: math.unit(6200, "yottameters")
  23497. },
  23498. ]
  23499. ));
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(8, "feet"),
  23505. weight: math.unit(250, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/kite/front.svg",
  23509. extra: 2796 / 2659,
  23510. bottom: 0.002
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(8, "feet"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Macro",
  23522. height: math.unit(360, "feet")
  23523. },
  23524. {
  23525. name: "Megamacro",
  23526. height: math.unit(1500, "feet")
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(5 + 11/12, "feet"),
  23535. weight: math.unit(170, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/poojawa-vynar/front.svg",
  23539. extra: 1735/1585,
  23540. bottom: 96/1831
  23541. }
  23542. },
  23543. back: {
  23544. height: math.unit(5 + 11/12, "feet"),
  23545. weight: math.unit(170, "lb"),
  23546. name: "Back",
  23547. image: {
  23548. source: "./media/characters/poojawa-vynar/back.svg",
  23549. extra: 1749/1607,
  23550. bottom: 28/1777
  23551. }
  23552. },
  23553. male: {
  23554. height: math.unit(5 + 11/12, "feet"),
  23555. weight: math.unit(170, "lb"),
  23556. name: "Male",
  23557. image: {
  23558. source: "./media/characters/poojawa-vynar/male.svg",
  23559. extra: 1855/1713,
  23560. bottom: 63/1918
  23561. }
  23562. },
  23563. taur: {
  23564. height: math.unit(5 + 11/12, "feet"),
  23565. weight: math.unit(170, "lb"),
  23566. name: "Taur",
  23567. image: {
  23568. source: "./media/characters/poojawa-vynar/taur.svg",
  23569. extra: 1151/1059,
  23570. bottom: 356/1507
  23571. }
  23572. },
  23573. frontDressed: {
  23574. height: math.unit(5 + 11/12, "feet"),
  23575. weight: math.unit(170, "lb"),
  23576. name: "Front (Dressed)",
  23577. image: {
  23578. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23579. extra: 1735/1585,
  23580. bottom: 96/1831
  23581. }
  23582. },
  23583. backDressed: {
  23584. height: math.unit(5 + 11/12, "feet"),
  23585. weight: math.unit(170, "lb"),
  23586. name: "Back (Dressed)",
  23587. image: {
  23588. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23589. extra: 1749/1607,
  23590. bottom: 28/1777
  23591. }
  23592. },
  23593. maleDressed: {
  23594. height: math.unit(5 + 11/12, "feet"),
  23595. weight: math.unit(170, "lb"),
  23596. name: "Male (Dressed)",
  23597. image: {
  23598. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23599. extra: 1855/1713,
  23600. bottom: 63/1918
  23601. }
  23602. },
  23603. taurDressed: {
  23604. height: math.unit(5 + 11/12, "feet"),
  23605. weight: math.unit(170, "lb"),
  23606. name: "Taur (Dressed)",
  23607. image: {
  23608. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23609. extra: 1151/1059,
  23610. bottom: 356/1507
  23611. }
  23612. },
  23613. maw: {
  23614. height: math.unit(1.46, "feet"),
  23615. name: "Maw",
  23616. image: {
  23617. source: "./media/characters/poojawa-vynar/maw.svg"
  23618. }
  23619. },
  23620. head: {
  23621. height: math.unit(2.34, "feet"),
  23622. name: "Head",
  23623. image: {
  23624. source: "./media/characters/poojawa-vynar/head.svg"
  23625. }
  23626. },
  23627. paw: {
  23628. height: math.unit(1.61, "feet"),
  23629. name: "Paw",
  23630. image: {
  23631. source: "./media/characters/poojawa-vynar/paw.svg"
  23632. }
  23633. },
  23634. pawToering: {
  23635. height: math.unit(1.72, "feet"),
  23636. name: "Paw (Toering)",
  23637. image: {
  23638. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23639. }
  23640. },
  23641. toering: {
  23642. height: math.unit(2.9, "inches"),
  23643. name: "Toering",
  23644. image: {
  23645. source: "./media/characters/poojawa-vynar/toering.svg"
  23646. }
  23647. },
  23648. shaft: {
  23649. height: math.unit(0.625, "feet"),
  23650. name: "Shaft",
  23651. image: {
  23652. source: "./media/characters/poojawa-vynar/shaft.svg"
  23653. }
  23654. },
  23655. spade: {
  23656. height: math.unit(0.42, "feet"),
  23657. name: "Spade",
  23658. image: {
  23659. source: "./media/characters/poojawa-vynar/spade.svg"
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Shortstack",
  23666. height: math.unit(4, "feet")
  23667. },
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(5 + 11 / 12, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Tauric",
  23675. height: math.unit(4, "meters")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(293, "meters"),
  23684. weight: math.unit(70400, "tons"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/violette/front.svg",
  23688. extra: 1227 / 1180,
  23689. bottom: 0.005
  23690. }
  23691. },
  23692. back: {
  23693. height: math.unit(293, "meters"),
  23694. weight: math.unit(70400, "tons"),
  23695. name: "Back",
  23696. image: {
  23697. source: "./media/characters/violette/back.svg",
  23698. extra: 1227 / 1180,
  23699. bottom: 0.005
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(293, "meters"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(1050, "feet"),
  23716. weight: math.unit(200000, "tons"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/alessandra/front.svg",
  23720. extra: 960 / 912,
  23721. bottom: 0.06
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(1050, "feet")
  23729. },
  23730. {
  23731. name: "Macro+",
  23732. height: math.unit(900, "meters"),
  23733. default: true
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23739. {
  23740. front: {
  23741. height: math.unit(5, "feet"),
  23742. weight: math.unit(187, "lb"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/person/front.svg",
  23746. extra: 3087 / 2945,
  23747. bottom: 91 / 3181
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Micro",
  23754. height: math.unit(3, "inches")
  23755. },
  23756. {
  23757. name: "Normal",
  23758. height: math.unit(5, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(90, "feet")
  23764. },
  23765. {
  23766. name: "Max Size",
  23767. height: math.unit(280, "feet")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(4.5, "meters"),
  23776. weight: math.unit(3200, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/ty/front.svg",
  23780. extra: 1038 / 960,
  23781. bottom: 31.156 / 1068
  23782. }
  23783. },
  23784. back: {
  23785. height: math.unit(4.5, "meters"),
  23786. weight: math.unit(3200, "lb"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/ty/back.svg",
  23790. extra: 1044 / 966,
  23791. bottom: 7.48 / 1049
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(4.5, "meters"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(5 + 4 / 12, "feet"),
  23808. weight: math.unit(115, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/rocky/front.svg",
  23812. extra: 1012 / 975,
  23813. bottom: 54 / 1066
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(5 + 4 / 12, "feet"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23827. {
  23828. upright: {
  23829. height: math.unit(6, "meters"),
  23830. weight: math.unit(4000, "kg"),
  23831. name: "Upright",
  23832. image: {
  23833. source: "./media/characters/ruin/upright.svg",
  23834. extra: 668 / 661,
  23835. bottom: 42 / 799.8396
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(6, "meters"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(5, "feet"),
  23852. weight: math.unit(106, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/robin/front.svg",
  23856. extra: 862 / 799,
  23857. bottom: 42.4 / 914.8856
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(5, "feet"),
  23865. default: true
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23871. {
  23872. side: {
  23873. height: math.unit(3, "feet"),
  23874. weight: math.unit(225, "lb"),
  23875. name: "Side",
  23876. image: {
  23877. source: "./media/characters/saian/side.svg",
  23878. extra: 566 / 356,
  23879. bottom: 79.7 / 643
  23880. }
  23881. },
  23882. maw: {
  23883. height: math.unit(2.85, "feet"),
  23884. name: "Maw",
  23885. image: {
  23886. source: "./media/characters/saian/maw.svg"
  23887. }
  23888. },
  23889. },
  23890. [
  23891. {
  23892. name: "Normal",
  23893. height: math.unit(3, "feet"),
  23894. default: true
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23900. {
  23901. side: {
  23902. height: math.unit(8, "feet"),
  23903. weight: math.unit(300, "lb"),
  23904. name: "Side",
  23905. image: {
  23906. source: "./media/characters/equus-silvermane/side.svg",
  23907. extra: 2176 / 2050,
  23908. bottom: 65.7 / 2245
  23909. }
  23910. },
  23911. front: {
  23912. height: math.unit(8, "feet"),
  23913. weight: math.unit(300, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/equus-silvermane/front.svg",
  23917. extra: 4633 / 4400,
  23918. bottom: 71.3 / 4706.915
  23919. }
  23920. },
  23921. sideStepping: {
  23922. height: math.unit(8, "feet"),
  23923. weight: math.unit(300, "lb"),
  23924. name: "Side (Stepping)",
  23925. image: {
  23926. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23927. extra: 1968 / 1860,
  23928. bottom: 16.4 / 1989
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(8, "feet")
  23936. },
  23937. {
  23938. name: "Minimacro",
  23939. height: math.unit(75, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Macro",
  23944. height: math.unit(150, "feet")
  23945. },
  23946. {
  23947. name: "Macro+",
  23948. height: math.unit(1000, "feet")
  23949. },
  23950. {
  23951. name: "Megamacro",
  23952. height: math.unit(1, "mile")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23958. {
  23959. side: {
  23960. height: math.unit(20, "feet"),
  23961. weight: math.unit(30000, "kg"),
  23962. name: "Side",
  23963. image: {
  23964. source: "./media/characters/windar/side.svg",
  23965. extra: 1491 / 1248,
  23966. bottom: 82.56 / 1568
  23967. }
  23968. },
  23969. },
  23970. [
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(20, "feet"),
  23974. default: true
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23980. {
  23981. side: {
  23982. height: math.unit(15.66, "feet"),
  23983. weight: math.unit(150, "lb"),
  23984. name: "Side",
  23985. image: {
  23986. source: "./media/characters/melody/side.svg",
  23987. extra: 1097 / 944,
  23988. bottom: 11.8 / 1109
  23989. }
  23990. },
  23991. sideOutfit: {
  23992. height: math.unit(15.66, "feet"),
  23993. weight: math.unit(150, "lb"),
  23994. name: "Side (Outfit)",
  23995. image: {
  23996. source: "./media/characters/melody/side-outfit.svg",
  23997. extra: 1097 / 944,
  23998. bottom: 11.8 / 1109
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(15.66, "feet"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24012. {
  24013. armoredFront: {
  24014. height: math.unit(8, "feet"),
  24015. weight: math.unit(325, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/windera/armored-front.svg",
  24019. extra: 1830/1598,
  24020. bottom: 151/1981
  24021. },
  24022. form: "armored",
  24023. default: true
  24024. },
  24025. macroFront: {
  24026. height: math.unit(70, "feet"),
  24027. weight: math.unit(315453, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/windera/macro-front.svg",
  24031. extra: 963/883,
  24032. bottom: 23/986
  24033. },
  24034. form: "macro",
  24035. default: true
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(8, "feet"),
  24042. default: true,
  24043. form: "armored"
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(70, "feet"),
  24048. default: true,
  24049. form: "macro"
  24050. },
  24051. ],
  24052. {
  24053. "armored": {
  24054. name: "Armored",
  24055. default: true
  24056. },
  24057. "macro": {
  24058. name: "Macro",
  24059. },
  24060. }
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24064. {
  24065. front: {
  24066. height: math.unit(28.75, "feet"),
  24067. weight: math.unit(2000, "kg"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/sonear/front.svg",
  24071. extra: 1041.1 / 964.9,
  24072. bottom: 53.7 / 1096.6
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(28.75, "feet"),
  24080. default: true
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24086. {
  24087. side: {
  24088. height: math.unit(25.5, "feet"),
  24089. weight: math.unit(23000, "kg"),
  24090. name: "Side",
  24091. image: {
  24092. source: "./media/characters/kanara/side.svg"
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(25.5, "feet"),
  24100. default: true
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24106. {
  24107. side: {
  24108. height: math.unit(10, "feet"),
  24109. weight: math.unit(1000, "kg"),
  24110. name: "Side",
  24111. image: {
  24112. source: "./media/characters/ereus/side.svg",
  24113. extra: 1157 / 959,
  24114. bottom: 153 / 1312.5
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(10, "feet"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24128. {
  24129. side: {
  24130. height: math.unit(4.5, "feet"),
  24131. weight: math.unit(500, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/e-ter/side.svg",
  24135. extra: 1550 / 1248,
  24136. bottom: 146 / 1694
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(4.5, "feet"),
  24144. default: true
  24145. },
  24146. ]
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24150. {
  24151. side: {
  24152. height: math.unit(9.7, "feet"),
  24153. weight: math.unit(4000, "kg"),
  24154. name: "Side",
  24155. image: {
  24156. source: "./media/characters/yamie/side.svg"
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(9.7, "feet"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(50, "feet"),
  24173. weight: math.unit(50000, "kg"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/anders/front.svg",
  24177. extra: 570 / 539,
  24178. bottom: 14.7 / 586.7
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Large",
  24185. height: math.unit(50, "feet")
  24186. },
  24187. {
  24188. name: "Macro",
  24189. height: math.unit(2000, "feet"),
  24190. default: true
  24191. },
  24192. {
  24193. name: "Megamacro",
  24194. height: math.unit(12, "miles")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(7 + 2 / 12, "feet"),
  24203. weight: math.unit(300, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/reban/front.svg",
  24207. extra: 1287/1212,
  24208. bottom: 148/1435
  24209. }
  24210. },
  24211. head: {
  24212. height: math.unit(1.95, "feet"),
  24213. name: "Head",
  24214. image: {
  24215. source: "./media/characters/reban/head.svg"
  24216. }
  24217. },
  24218. maw: {
  24219. height: math.unit(0.95, "feet"),
  24220. name: "Maw",
  24221. image: {
  24222. source: "./media/characters/reban/maw.svg"
  24223. }
  24224. },
  24225. foot: {
  24226. height: math.unit(1.65, "feet"),
  24227. name: "Foot",
  24228. image: {
  24229. source: "./media/characters/reban/foot.svg"
  24230. }
  24231. },
  24232. dick: {
  24233. height: math.unit(7 / 5, "feet"),
  24234. name: "Dick",
  24235. image: {
  24236. source: "./media/characters/reban/dick.svg"
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Natural Height",
  24243. height: math.unit(7 + 2 / 12, "feet")
  24244. },
  24245. {
  24246. name: "Macro",
  24247. height: math.unit(500, "feet"),
  24248. default: true
  24249. },
  24250. {
  24251. name: "Canon Height",
  24252. height: math.unit(50, "AU")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(6, "feet"),
  24261. weight: math.unit(150, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/terrance-keayes/front.svg",
  24265. extra: 1.005,
  24266. bottom: 151 / 1615
  24267. }
  24268. },
  24269. side: {
  24270. height: math.unit(6, "feet"),
  24271. weight: math.unit(150, "lb"),
  24272. name: "Side",
  24273. image: {
  24274. source: "./media/characters/terrance-keayes/side.svg",
  24275. extra: 1.005,
  24276. bottom: 129.4 / 1544
  24277. }
  24278. },
  24279. back: {
  24280. height: math.unit(6, "feet"),
  24281. weight: math.unit(150, "lb"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/terrance-keayes/back.svg",
  24285. extra: 1.005,
  24286. bottom: 58.4 / 1557.3
  24287. }
  24288. },
  24289. dick: {
  24290. height: math.unit(6 * 0.208, "feet"),
  24291. name: "Dick",
  24292. image: {
  24293. source: "./media/characters/terrance-keayes/dick.svg"
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Canon Height",
  24300. height: math.unit(35, "miles"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(6, "feet"),
  24310. weight: math.unit(150, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/ofelia/front.svg",
  24314. extra: 1130/1117,
  24315. bottom: 91/1221
  24316. }
  24317. },
  24318. back: {
  24319. height: math.unit(6, "feet"),
  24320. weight: math.unit(150, "lb"),
  24321. name: "Back",
  24322. image: {
  24323. source: "./media/characters/ofelia/back.svg",
  24324. extra: 1172/1159,
  24325. bottom: 28/1200
  24326. }
  24327. },
  24328. maw: {
  24329. height: math.unit(1, "feet"),
  24330. name: "Maw",
  24331. image: {
  24332. source: "./media/characters/ofelia/maw.svg"
  24333. }
  24334. },
  24335. foot: {
  24336. height: math.unit(1.949, "feet"),
  24337. name: "Foot",
  24338. image: {
  24339. source: "./media/characters/ofelia/foot.svg"
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Canon Height",
  24346. height: math.unit(2000, "miles"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24353. {
  24354. front: {
  24355. height: math.unit(6, "feet"),
  24356. weight: math.unit(150, "lb"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/samuel/front.svg",
  24360. extra: 265 / 258,
  24361. bottom: 2 / 266.1566
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Macro",
  24368. height: math.unit(100, "feet"),
  24369. default: true
  24370. },
  24371. {
  24372. name: "Full Size",
  24373. height: math.unit(1000, "miles")
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(6, "feet"),
  24382. weight: math.unit(300, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/beishir-kiel/front.svg",
  24386. extra: 569 / 547,
  24387. bottom: 41.9 / 609
  24388. }
  24389. },
  24390. maw: {
  24391. height: math.unit(6 * 0.202, "feet"),
  24392. name: "Maw",
  24393. image: {
  24394. source: "./media/characters/beishir-kiel/maw.svg"
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(300, "feet"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(5 + 7/12, "feet"),
  24411. weight: math.unit(120, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/logan-grey/front.svg",
  24415. extra: 1836/1738,
  24416. bottom: 108/1944
  24417. }
  24418. },
  24419. back: {
  24420. height: math.unit(5 + 7/12, "feet"),
  24421. weight: math.unit(120, "lb"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/logan-grey/back.svg",
  24425. extra: 1880/1794,
  24426. bottom: 24/1904
  24427. }
  24428. },
  24429. frontSfw: {
  24430. height: math.unit(5 + 7/12, "feet"),
  24431. weight: math.unit(120, "lb"),
  24432. name: "Front (SFW)",
  24433. image: {
  24434. source: "./media/characters/logan-grey/front-sfw.svg",
  24435. extra: 1836/1738,
  24436. bottom: 108/1944
  24437. }
  24438. },
  24439. backSfw: {
  24440. height: math.unit(5 + 7/12, "feet"),
  24441. weight: math.unit(120, "lb"),
  24442. name: "Back (SFW)",
  24443. image: {
  24444. source: "./media/characters/logan-grey/back-sfw.svg",
  24445. extra: 1880/1794,
  24446. bottom: 24/1904
  24447. }
  24448. },
  24449. hands: {
  24450. height: math.unit(0.84, "feet"),
  24451. name: "Hands",
  24452. image: {
  24453. source: "./media/characters/logan-grey/hands.svg"
  24454. }
  24455. },
  24456. paws: {
  24457. height: math.unit(0.72, "feet"),
  24458. name: "Paws",
  24459. image: {
  24460. source: "./media/characters/logan-grey/paws.svg"
  24461. }
  24462. },
  24463. cock: {
  24464. height: math.unit(1.45, "feet"),
  24465. name: "Cock",
  24466. image: {
  24467. source: "./media/characters/logan-grey/cock.svg"
  24468. }
  24469. },
  24470. cockAlt: {
  24471. height: math.unit(1.437, "feet"),
  24472. name: "Cock (alt)",
  24473. image: {
  24474. source: "./media/characters/logan-grey/cock-alt.svg"
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(5 + 8 / 12, "feet")
  24482. },
  24483. {
  24484. name: "The 500 Foot Femboy",
  24485. height: math.unit(500, "feet"),
  24486. default: true
  24487. },
  24488. {
  24489. name: "Megmacro",
  24490. height: math.unit(20, "miles")
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(8 + 2 / 12, "feet"),
  24499. weight: math.unit(275, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/draganta/front.svg",
  24503. extra: 1177 / 1135,
  24504. bottom: 33.46 / 1212.1
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(8 + 6 / 12, "feet"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Macro",
  24516. height: math.unit(150, "feet")
  24517. },
  24518. {
  24519. name: "Megamacro",
  24520. height: math.unit(1000, "miles")
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(1.72, "m"),
  24529. weight: math.unit(80, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/voski/front.svg",
  24533. extra: 2076.22 / 2022.4,
  24534. bottom: 102.7 / 2177.3866
  24535. }
  24536. },
  24537. frontFlaccid: {
  24538. height: math.unit(1.72, "m"),
  24539. weight: math.unit(80, "lb"),
  24540. name: "Front (Flaccid)",
  24541. image: {
  24542. source: "./media/characters/voski/front-flaccid.svg",
  24543. extra: 2076.22 / 2022.4,
  24544. bottom: 102.7 / 2177.3866
  24545. }
  24546. },
  24547. frontErect: {
  24548. height: math.unit(1.72, "m"),
  24549. weight: math.unit(80, "lb"),
  24550. name: "Front (Erect)",
  24551. image: {
  24552. source: "./media/characters/voski/front-erect.svg",
  24553. extra: 2076.22 / 2022.4,
  24554. bottom: 102.7 / 2177.3866
  24555. }
  24556. },
  24557. back: {
  24558. height: math.unit(1.72, "m"),
  24559. weight: math.unit(80, "lb"),
  24560. name: "Back",
  24561. image: {
  24562. source: "./media/characters/voski/back.svg",
  24563. extra: 2104 / 2051,
  24564. bottom: 10.45 / 2113.63
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Normal",
  24571. height: math.unit(1.72, "m")
  24572. },
  24573. {
  24574. name: "Macro",
  24575. height: math.unit(55, "m"),
  24576. default: true
  24577. },
  24578. {
  24579. name: "Macro+",
  24580. height: math.unit(300, "m")
  24581. },
  24582. {
  24583. name: "Macro++",
  24584. height: math.unit(700, "m")
  24585. },
  24586. {
  24587. name: "Macro+++",
  24588. height: math.unit(4500, "m")
  24589. },
  24590. {
  24591. name: "Macro++++",
  24592. height: math.unit(45, "km")
  24593. },
  24594. {
  24595. name: "Macro+++++",
  24596. height: math.unit(1220, "km")
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(2.3, "m"),
  24605. weight: math.unit(304, "kg"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/icowom-lee/front.svg",
  24609. extra: 985 / 955,
  24610. bottom: 25.4 / 1012
  24611. }
  24612. },
  24613. fronttentacles: {
  24614. height: math.unit(2.3, "m"),
  24615. weight: math.unit(304, "kg"),
  24616. name: "Front-tentacles",
  24617. image: {
  24618. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24619. extra: 985 / 955,
  24620. bottom: 25.4 / 1012
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(2.3, "m"),
  24625. weight: math.unit(304, "kg"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/icowom-lee/back.svg",
  24629. extra: 975 / 954,
  24630. bottom: 9.5 / 985
  24631. }
  24632. },
  24633. backtentacles: {
  24634. height: math.unit(2.3, "m"),
  24635. weight: math.unit(304, "kg"),
  24636. name: "Back-tentacles",
  24637. image: {
  24638. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24639. extra: 975 / 954,
  24640. bottom: 9.5 / 985
  24641. }
  24642. },
  24643. frontDressed: {
  24644. height: math.unit(2.3, "m"),
  24645. weight: math.unit(304, "kg"),
  24646. name: "Front (Dressed)",
  24647. image: {
  24648. source: "./media/characters/icowom-lee/front-dressed.svg",
  24649. extra: 3076 / 2933,
  24650. bottom: 51.4 / 3125.1889
  24651. }
  24652. },
  24653. rump: {
  24654. height: math.unit(0.776, "meters"),
  24655. name: "Rump",
  24656. image: {
  24657. source: "./media/characters/icowom-lee/rump.svg"
  24658. }
  24659. },
  24660. genitals: {
  24661. height: math.unit(0.78, "meters"),
  24662. name: "Genitals",
  24663. image: {
  24664. source: "./media/characters/icowom-lee/genitals.svg"
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(2.3, "meters"),
  24672. default: true
  24673. },
  24674. {
  24675. name: "Macro",
  24676. height: math.unit(94, "meters"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(22, "meters"),
  24686. weight: math.unit(21000, "kg"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/shock-diamond/front.svg",
  24690. extra: 2204 / 2053,
  24691. bottom: 65 / 2239.47
  24692. }
  24693. },
  24694. frontNude: {
  24695. height: math.unit(22, "meters"),
  24696. weight: math.unit(21000, "kg"),
  24697. name: "Front (Nude)",
  24698. image: {
  24699. source: "./media/characters/shock-diamond/front-nude.svg",
  24700. extra: 2514 / 2285,
  24701. bottom: 13 / 2527.56
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(3, "meters")
  24709. },
  24710. {
  24711. name: "Macro",
  24712. height: math.unit(22, "meters"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24719. {
  24720. front: {
  24721. height: math.unit(5 + 4/12, "feet"),
  24722. weight: math.unit(125, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/rory/front.svg",
  24726. extra: 1790/1681,
  24727. bottom: 66/1856
  24728. },
  24729. form: "normal",
  24730. default: true
  24731. },
  24732. back: {
  24733. height: math.unit(5 + 4/12, "feet"),
  24734. weight: math.unit(125, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/rory/back.svg",
  24738. extra: 1805/1690,
  24739. bottom: 56/1861
  24740. },
  24741. form: "normal"
  24742. },
  24743. frontDressed: {
  24744. height: math.unit(5 + 4/12, "feet"),
  24745. weight: math.unit(125, "lb"),
  24746. name: "Front (Dressed)",
  24747. image: {
  24748. source: "./media/characters/rory/front-dressed.svg",
  24749. extra: 1790/1681,
  24750. bottom: 66/1856
  24751. },
  24752. form: "normal"
  24753. },
  24754. backDressed: {
  24755. height: math.unit(5 + 4/12, "feet"),
  24756. weight: math.unit(125, "lb"),
  24757. name: "Back (Dressed)",
  24758. image: {
  24759. source: "./media/characters/rory/back-dressed.svg",
  24760. extra: 1805/1690,
  24761. bottom: 56/1861
  24762. },
  24763. form: "normal"
  24764. },
  24765. frontNsfw: {
  24766. height: math.unit(5 + 4/12, "feet"),
  24767. weight: math.unit(125, "lb"),
  24768. name: "Front (NSFW)",
  24769. image: {
  24770. source: "./media/characters/rory/front-nsfw.svg",
  24771. extra: 1790/1681,
  24772. bottom: 66/1856
  24773. },
  24774. form: "normal"
  24775. },
  24776. backNsfw: {
  24777. height: math.unit(5 + 4/12, "feet"),
  24778. weight: math.unit(125, "lb"),
  24779. name: "Back (NSFW)",
  24780. image: {
  24781. source: "./media/characters/rory/back-nsfw.svg",
  24782. extra: 1805/1690,
  24783. bottom: 56/1861
  24784. },
  24785. form: "normal"
  24786. },
  24787. dick: {
  24788. height: math.unit(0.8, "feet"),
  24789. name: "Dick",
  24790. image: {
  24791. source: "./media/characters/rory/dick.svg"
  24792. },
  24793. form: "normal"
  24794. },
  24795. thicc_front: {
  24796. height: math.unit(5 + 4/12, "feet"),
  24797. weight: math.unit(195, "lb"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/rory/thicc-front.svg",
  24801. extra: 1220/1100,
  24802. bottom: 103/1323
  24803. },
  24804. form: "thicc",
  24805. default: true
  24806. },
  24807. thicc_back: {
  24808. height: math.unit(5 + 4/12, "feet"),
  24809. weight: math.unit(195, "lb"),
  24810. name: "Back",
  24811. image: {
  24812. source: "./media/characters/rory/thicc-back.svg",
  24813. extra: 1166/1086,
  24814. bottom: 35/1201
  24815. },
  24816. form: "thicc"
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Micro",
  24822. height: math.unit(3, "inches"),
  24823. allForms: true
  24824. },
  24825. {
  24826. name: "Normal",
  24827. height: math.unit(5 + 4/12, "feet"),
  24828. allForms: true,
  24829. default: true
  24830. },
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(90, "feet"),
  24834. allForms: true
  24835. },
  24836. {
  24837. name: "Supercharged",
  24838. height: math.unit(270, "feet"),
  24839. allForms: true
  24840. },
  24841. ],
  24842. {
  24843. "normal": {
  24844. name: "Normal",
  24845. default: true
  24846. },
  24847. "thicc": {
  24848. name: "Thicc",
  24849. },
  24850. }
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(5 + 9 / 12, "feet"),
  24857. weight: math.unit(190, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/sprisk/front.svg",
  24861. extra: 1225 / 1180,
  24862. bottom: 42.7 / 1266.4
  24863. }
  24864. },
  24865. frontNsfw: {
  24866. height: math.unit(5 + 9 / 12, "feet"),
  24867. weight: math.unit(190, "lb"),
  24868. name: "Front (NSFW)",
  24869. image: {
  24870. source: "./media/characters/sprisk/front-nsfw.svg",
  24871. extra: 1225 / 1180,
  24872. bottom: 42.7 / 1266.4
  24873. }
  24874. },
  24875. back: {
  24876. height: math.unit(5 + 9 / 12, "feet"),
  24877. weight: math.unit(190, "lb"),
  24878. name: "Back",
  24879. image: {
  24880. source: "./media/characters/sprisk/back.svg",
  24881. extra: 1247 / 1200,
  24882. bottom: 5.6 / 1253.04
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Tiny",
  24889. height: math.unit(2, "inches")
  24890. },
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(5 + 9 / 12, "feet"),
  24894. default: true
  24895. },
  24896. {
  24897. name: "Mini Macro",
  24898. height: math.unit(18, "feet")
  24899. },
  24900. {
  24901. name: "Macro",
  24902. height: math.unit(100, "feet")
  24903. },
  24904. {
  24905. name: "MACRO",
  24906. height: math.unit(50, "miles")
  24907. },
  24908. {
  24909. name: "M A C R O",
  24910. height: math.unit(300, "miles")
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24916. {
  24917. side: {
  24918. height: math.unit(15.6, "meters"),
  24919. weight: math.unit(700000, "kg"),
  24920. name: "Side",
  24921. image: {
  24922. source: "./media/characters/bunsen/side.svg",
  24923. extra: 1644 / 358
  24924. }
  24925. },
  24926. foot: {
  24927. height: math.unit(1.611 * 1644 / 358, "meter"),
  24928. name: "Foot",
  24929. image: {
  24930. source: "./media/characters/bunsen/foot.svg"
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Small",
  24937. height: math.unit(10, "feet")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(15.6, "meters"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(4 + 11 / 12, "feet"),
  24951. weight: math.unit(140, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/sesh/front.svg",
  24955. extra: 3420 / 3231,
  24956. bottom: 72 / 3949.5
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(4 + 11 / 12, "feet")
  24964. },
  24965. {
  24966. name: "Grown",
  24967. height: math.unit(15, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Macro",
  24972. height: math.unit(1500, "feet")
  24973. },
  24974. {
  24975. name: "Megamacro",
  24976. height: math.unit(30, "miles")
  24977. },
  24978. {
  24979. name: "Continental",
  24980. height: math.unit(3000, "miles")
  24981. },
  24982. {
  24983. name: "Gravity Mass",
  24984. height: math.unit(300000, "miles")
  24985. },
  24986. {
  24987. name: "Planet Buster",
  24988. height: math.unit(30000000, "miles")
  24989. },
  24990. {
  24991. name: "Big",
  24992. height: math.unit(3000000000, "miles")
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(9, "feet"),
  25001. weight: math.unit(350, "lb"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/pepper/front.svg",
  25005. extra: 1448 / 1312,
  25006. bottom: 9.4 / 1457.88
  25007. }
  25008. },
  25009. back: {
  25010. height: math.unit(9, "feet"),
  25011. weight: math.unit(350, "lb"),
  25012. name: "Back",
  25013. image: {
  25014. source: "./media/characters/pepper/back.svg",
  25015. extra: 1423 / 1300,
  25016. bottom: 4.6 / 1429
  25017. }
  25018. },
  25019. maw: {
  25020. height: math.unit(0.932, "feet"),
  25021. name: "Maw",
  25022. image: {
  25023. source: "./media/characters/pepper/maw.svg"
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(9, "feet"),
  25031. default: true
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(6, "feet"),
  25040. weight: math.unit(150, "lb"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/maelstrom/front.svg",
  25044. extra: 2100 / 1883,
  25045. bottom: 94 / 2196.7
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Less Kaiju",
  25052. height: math.unit(200, "feet")
  25053. },
  25054. {
  25055. name: "Kaiju",
  25056. height: math.unit(400, "feet"),
  25057. default: true
  25058. },
  25059. {
  25060. name: "Kaiju-er",
  25061. height: math.unit(600, "feet")
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(6 + 5 / 12, "feet"),
  25070. weight: math.unit(180, "lb"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/lexir/front.svg",
  25074. extra: 180 / 172,
  25075. bottom: 12 / 192
  25076. }
  25077. },
  25078. back: {
  25079. height: math.unit(6 + 5 / 12, "feet"),
  25080. weight: math.unit(180, "lb"),
  25081. name: "Back",
  25082. image: {
  25083. source: "./media/characters/lexir/back.svg",
  25084. extra: 1273/1201,
  25085. bottom: 39/1312
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Very Smal",
  25092. height: math.unit(1, "nm")
  25093. },
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(6 + 5 / 12, "feet"),
  25097. default: true
  25098. },
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(1, "mile")
  25102. },
  25103. {
  25104. name: "Megamacro",
  25105. height: math.unit(50, "miles")
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25111. {
  25112. front: {
  25113. height: math.unit(1.5, "meters"),
  25114. weight: math.unit(100, "lb"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/maksio/front.svg",
  25118. extra: 1549 / 1531,
  25119. bottom: 123.7 / 1674.5429
  25120. }
  25121. },
  25122. back: {
  25123. height: math.unit(1.5, "meters"),
  25124. weight: math.unit(100, "lb"),
  25125. name: "Back",
  25126. image: {
  25127. source: "./media/characters/maksio/back.svg",
  25128. extra: 1541 / 1509,
  25129. bottom: 97 / 1639
  25130. }
  25131. },
  25132. hand: {
  25133. height: math.unit(0.621, "feet"),
  25134. name: "Hand",
  25135. image: {
  25136. source: "./media/characters/maksio/hand.svg"
  25137. }
  25138. },
  25139. foot: {
  25140. height: math.unit(1.611, "feet"),
  25141. name: "Foot",
  25142. image: {
  25143. source: "./media/characters/maksio/foot.svg"
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Shrunken",
  25150. height: math.unit(10, "cm")
  25151. },
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(150, "cm"),
  25155. default: true
  25156. },
  25157. ]
  25158. ))
  25159. characterMakers.push(() => makeCharacter(
  25160. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25161. {
  25162. front: {
  25163. height: math.unit(100, "feet"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/erza-bear/front.svg",
  25167. extra: 2449 / 2390,
  25168. bottom: 46 / 2494
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(100, "feet"),
  25173. name: "Back",
  25174. image: {
  25175. source: "./media/characters/erza-bear/back.svg",
  25176. extra: 2489 / 2430,
  25177. bottom: 85.4 / 2480
  25178. }
  25179. },
  25180. tail: {
  25181. height: math.unit(42, "feet"),
  25182. name: "Tail",
  25183. image: {
  25184. source: "./media/characters/erza-bear/tail.svg"
  25185. }
  25186. },
  25187. tongue: {
  25188. height: math.unit(8, "feet"),
  25189. name: "Tongue",
  25190. image: {
  25191. source: "./media/characters/erza-bear/tongue.svg"
  25192. }
  25193. },
  25194. dick: {
  25195. height: math.unit(10.5, "feet"),
  25196. name: "Dick",
  25197. image: {
  25198. source: "./media/characters/erza-bear/dick.svg"
  25199. }
  25200. },
  25201. dickVertical: {
  25202. height: math.unit(16.9, "feet"),
  25203. name: "Dick (Vertical)",
  25204. image: {
  25205. source: "./media/characters/erza-bear/dick-vertical.svg"
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Macro",
  25212. height: math.unit(100, "feet"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(172, "cm"),
  25222. weight: math.unit(73, "kg"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/violet-flor/front.svg",
  25226. extra: 1530 / 1442,
  25227. bottom: 61.9 / 1588.8
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(180, "cm"),
  25232. weight: math.unit(73, "kg"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/violet-flor/back.svg",
  25236. extra: 1692 / 1630,
  25237. bottom: 20 / 1712
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(172, "cm"),
  25245. default: true
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(6, "feet"),
  25254. weight: math.unit(220, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/lynn-rhea/front.svg",
  25258. extra: 310 / 273
  25259. }
  25260. },
  25261. back: {
  25262. height: math.unit(6, "feet"),
  25263. weight: math.unit(220, "lb"),
  25264. name: "Back",
  25265. image: {
  25266. source: "./media/characters/lynn-rhea/back.svg",
  25267. extra: 310 / 273
  25268. }
  25269. },
  25270. dicks: {
  25271. height: math.unit(0.9, "feet"),
  25272. name: "Dicks",
  25273. image: {
  25274. source: "./media/characters/lynn-rhea/dicks.svg"
  25275. }
  25276. },
  25277. slit: {
  25278. height: math.unit(0.4, "feet"),
  25279. name: "Slit",
  25280. image: {
  25281. source: "./media/characters/lynn-rhea/slit.svg"
  25282. }
  25283. },
  25284. },
  25285. [
  25286. {
  25287. name: "Micro",
  25288. height: math.unit(1, "inch")
  25289. },
  25290. {
  25291. name: "Macro",
  25292. height: math.unit(60, "feet"),
  25293. default: true
  25294. },
  25295. {
  25296. name: "Megamacro",
  25297. height: math.unit(2, "miles")
  25298. },
  25299. {
  25300. name: "Gigamacro",
  25301. height: math.unit(3, "earths")
  25302. },
  25303. {
  25304. name: "Galactic",
  25305. height: math.unit(0.8, "galaxies")
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25311. {
  25312. front: {
  25313. height: math.unit(1600, "feet"),
  25314. weight: math.unit(85758785169, "kg"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/valathos/front.svg",
  25318. extra: 1451 / 1339
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Macro",
  25325. height: math.unit(1600, "feet"),
  25326. default: true
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(7 + 5 / 12, "feet"),
  25335. weight: math.unit(300, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/azula/front.svg",
  25339. extra: 3208 / 2880,
  25340. bottom: 80.2 / 3277
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(7 + 5 / 12, "feet"),
  25345. weight: math.unit(300, "lb"),
  25346. name: "Back",
  25347. image: {
  25348. source: "./media/characters/azula/back.svg",
  25349. extra: 3169 / 2822,
  25350. bottom: 150.6 / 3321
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(7 + 5 / 12, "feet"),
  25358. default: true
  25359. },
  25360. {
  25361. name: "Big",
  25362. height: math.unit(20, "feet")
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25368. {
  25369. front: {
  25370. height: math.unit(5 + 1 / 12, "feet"),
  25371. weight: math.unit(110, "lb"),
  25372. name: "Front",
  25373. image: {
  25374. source: "./media/characters/rupert/front.svg",
  25375. extra: 1549 / 1495,
  25376. bottom: 54.2 / 1604.4
  25377. }
  25378. },
  25379. },
  25380. [
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(5 + 1 / 12, "feet"),
  25384. default: true
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25390. {
  25391. front: {
  25392. height: math.unit(8 + 4 / 12, "feet"),
  25393. weight: math.unit(350, "lb"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/sheera-castellar/front.svg",
  25397. extra: 1957 / 1894,
  25398. bottom: 26.97 / 1975.017
  25399. }
  25400. },
  25401. side: {
  25402. height: math.unit(8 + 4 / 12, "feet"),
  25403. weight: math.unit(350, "lb"),
  25404. name: "Side",
  25405. image: {
  25406. source: "./media/characters/sheera-castellar/side.svg",
  25407. extra: 1957 / 1894
  25408. }
  25409. },
  25410. back: {
  25411. height: math.unit(8 + 4 / 12, "feet"),
  25412. weight: math.unit(350, "lb"),
  25413. name: "Back",
  25414. image: {
  25415. source: "./media/characters/sheera-castellar/back.svg",
  25416. extra: 1957 / 1894
  25417. }
  25418. },
  25419. angled: {
  25420. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25421. weight: math.unit(350, "lb"),
  25422. name: "Angled",
  25423. image: {
  25424. source: "./media/characters/sheera-castellar/angled.svg",
  25425. extra: 1807 / 1707,
  25426. bottom: 68 / 1875
  25427. }
  25428. },
  25429. genitals: {
  25430. height: math.unit(2.2, "feet"),
  25431. name: "Genitals",
  25432. image: {
  25433. source: "./media/characters/sheera-castellar/genitals.svg"
  25434. }
  25435. },
  25436. taur: {
  25437. height: math.unit(10 + 6/12, "feet"),
  25438. name: "Taur",
  25439. image: {
  25440. source: "./media/characters/sheera-castellar/taur.svg",
  25441. extra: 2017/1909,
  25442. bottom: 185/2202
  25443. }
  25444. },
  25445. },
  25446. [
  25447. {
  25448. name: "Normal",
  25449. height: math.unit(8 + 4 / 12, "feet")
  25450. },
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(150, "feet"),
  25454. default: true
  25455. },
  25456. {
  25457. name: "Macro+",
  25458. height: math.unit(800, "feet")
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(6, "feet"),
  25467. weight: math.unit(150, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/jaipur/front.svg",
  25471. extra: 3860 / 3731,
  25472. bottom: 287 / 4140
  25473. }
  25474. },
  25475. back: {
  25476. height: math.unit(6, "feet"),
  25477. weight: math.unit(150, "lb"),
  25478. name: "Back",
  25479. image: {
  25480. source: "./media/characters/jaipur/back.svg",
  25481. extra: 1637/1561,
  25482. bottom: 154/1791
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(1.85, "meters"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(150, "meters")
  25495. },
  25496. {
  25497. name: "Macro+",
  25498. height: math.unit(0.5, "miles")
  25499. },
  25500. {
  25501. name: "Macro++",
  25502. height: math.unit(2.5, "miles")
  25503. },
  25504. {
  25505. name: "Macro+++",
  25506. height: math.unit(12, "miles")
  25507. },
  25508. {
  25509. name: "Macro++++",
  25510. height: math.unit(120, "miles")
  25511. },
  25512. {
  25513. name: "Macro+++++",
  25514. height: math.unit(1200, "miles")
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(6, "feet"),
  25523. weight: math.unit(150, "lb"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/sheila-wolf/front.svg",
  25527. extra: 1931 / 1808,
  25528. bottom: 29.5 / 1960
  25529. }
  25530. },
  25531. dick: {
  25532. height: math.unit(1.464, "feet"),
  25533. name: "Dick",
  25534. image: {
  25535. source: "./media/characters/sheila-wolf/dick.svg"
  25536. }
  25537. },
  25538. muzzle: {
  25539. height: math.unit(0.513, "feet"),
  25540. name: "Muzzle",
  25541. image: {
  25542. source: "./media/characters/sheila-wolf/muzzle.svg"
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(70, "feet"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25556. {
  25557. front: {
  25558. height: math.unit(32, "meters"),
  25559. weight: math.unit(300000, "kg"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/almor/front.svg",
  25563. extra: 1408 / 1322,
  25564. bottom: 94.6 / 1506.5
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Macro",
  25571. height: math.unit(32, "meters"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25578. {
  25579. front: {
  25580. height: math.unit(7, "feet"),
  25581. weight: math.unit(200, "lb"),
  25582. name: "Front",
  25583. image: {
  25584. source: "./media/characters/silver/front.svg",
  25585. extra: 472.1 / 450.5,
  25586. bottom: 26.5 / 499.424
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(7, "feet"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Macro",
  25598. height: math.unit(800, "feet")
  25599. },
  25600. {
  25601. name: "Megamacro",
  25602. height: math.unit(250, "miles")
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(6, "feet"),
  25611. weight: math.unit(150, "lb"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/pliskin/front.svg",
  25615. extra: 1469 / 1359,
  25616. bottom: 70 / 1540
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Micro",
  25623. height: math.unit(3, "inches")
  25624. },
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(5 + 11 / 12, "feet"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Macro",
  25632. height: math.unit(120, "feet")
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(6, "feet"),
  25641. weight: math.unit(150, "lb"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/sammy/front.svg",
  25645. extra: 1193 / 1089,
  25646. bottom: 30.5 / 1226
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Macro",
  25653. height: math.unit(1700, "feet"),
  25654. default: true
  25655. },
  25656. {
  25657. name: "Examacro",
  25658. height: math.unit(2.5e9, "lightyears")
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(21, "meters"),
  25667. weight: math.unit(12, "tonnes"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/kuru/front.svg",
  25671. extra: 4301 / 3785,
  25672. bottom: 371.3 / 4691
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Macro",
  25679. height: math.unit(21, "meters"),
  25680. default: true
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(23, "meters"),
  25689. weight: math.unit(12.2, "tonnes"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/rakka/front.svg",
  25693. extra: 4670 / 4169,
  25694. bottom: 301 / 4968.7
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Macro",
  25701. height: math.unit(23, "meters"),
  25702. default: true
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25708. {
  25709. front: {
  25710. height: math.unit(6, "feet"),
  25711. weight: math.unit(150, "lb"),
  25712. name: "Front",
  25713. image: {
  25714. source: "./media/characters/rhys-feline/front.svg",
  25715. extra: 2488 / 2308,
  25716. bottom: 35.67 / 2519.19
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Really Small",
  25723. height: math.unit(1, "nm")
  25724. },
  25725. {
  25726. name: "Micro",
  25727. height: math.unit(4, "inches")
  25728. },
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(4 + 10 / 12, "feet"),
  25732. default: true
  25733. },
  25734. {
  25735. name: "Macro",
  25736. height: math.unit(100, "feet")
  25737. },
  25738. {
  25739. name: "Megamacto",
  25740. height: math.unit(50, "miles")
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25746. {
  25747. side: {
  25748. height: math.unit(30, "feet"),
  25749. weight: math.unit(35000, "kg"),
  25750. name: "Side",
  25751. image: {
  25752. source: "./media/characters/alydar/side.svg",
  25753. extra: 234 / 222,
  25754. bottom: 6.5 / 241
  25755. }
  25756. },
  25757. front: {
  25758. height: math.unit(30, "feet"),
  25759. weight: math.unit(35000, "kg"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/alydar/front.svg",
  25763. extra: 223.37 / 210.2,
  25764. bottom: 22.3 / 246.76
  25765. }
  25766. },
  25767. top: {
  25768. height: math.unit(64.54, "feet"),
  25769. weight: math.unit(35000, "kg"),
  25770. name: "Top",
  25771. image: {
  25772. source: "./media/characters/alydar/top.svg"
  25773. }
  25774. },
  25775. anthro: {
  25776. height: math.unit(30, "feet"),
  25777. weight: math.unit(9000, "kg"),
  25778. name: "Anthro",
  25779. image: {
  25780. source: "./media/characters/alydar/anthro.svg",
  25781. extra: 432 / 421,
  25782. bottom: 7.18 / 440
  25783. }
  25784. },
  25785. maw: {
  25786. height: math.unit(11.693, "feet"),
  25787. name: "Maw",
  25788. image: {
  25789. source: "./media/characters/alydar/maw.svg"
  25790. }
  25791. },
  25792. head: {
  25793. height: math.unit(11.693, "feet"),
  25794. name: "Head",
  25795. image: {
  25796. source: "./media/characters/alydar/head.svg"
  25797. }
  25798. },
  25799. headAlt: {
  25800. height: math.unit(12.861, "feet"),
  25801. name: "Head (Alt)",
  25802. image: {
  25803. source: "./media/characters/alydar/head-alt.svg"
  25804. }
  25805. },
  25806. wing: {
  25807. height: math.unit(20.712, "feet"),
  25808. name: "Wing",
  25809. image: {
  25810. source: "./media/characters/alydar/wing.svg"
  25811. }
  25812. },
  25813. wingFeather: {
  25814. height: math.unit(9.662, "feet"),
  25815. name: "Wing Feather",
  25816. image: {
  25817. source: "./media/characters/alydar/wing-feather.svg"
  25818. }
  25819. },
  25820. countourFeather: {
  25821. height: math.unit(4.154, "feet"),
  25822. name: "Contour Feather",
  25823. image: {
  25824. source: "./media/characters/alydar/contour-feather.svg"
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Diplomatic",
  25831. height: math.unit(13, "feet"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Small",
  25836. height: math.unit(30, "feet")
  25837. },
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(95, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Large",
  25845. height: math.unit(285, "feet")
  25846. },
  25847. {
  25848. name: "Incomprehensible",
  25849. height: math.unit(450, "megameters")
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25855. {
  25856. side: {
  25857. height: math.unit(11, "feet"),
  25858. weight: math.unit(1750, "kg"),
  25859. name: "Side",
  25860. image: {
  25861. source: "./media/characters/selicia/side.svg",
  25862. extra: 440 / 396,
  25863. bottom: 24.8 / 465.979
  25864. }
  25865. },
  25866. maw: {
  25867. height: math.unit(4.665, "feet"),
  25868. name: "Maw",
  25869. image: {
  25870. source: "./media/characters/selicia/maw.svg"
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Normal",
  25877. height: math.unit(11, "feet"),
  25878. default: true
  25879. },
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25884. {
  25885. side: {
  25886. height: math.unit(2 + 6 / 12, "feet"),
  25887. weight: math.unit(30, "lb"),
  25888. name: "Side",
  25889. image: {
  25890. source: "./media/characters/layla/side.svg",
  25891. extra: 244 / 188,
  25892. bottom: 18.2 / 262.1
  25893. }
  25894. },
  25895. back: {
  25896. height: math.unit(2 + 6 / 12, "feet"),
  25897. weight: math.unit(30, "lb"),
  25898. name: "Back",
  25899. image: {
  25900. source: "./media/characters/layla/back.svg",
  25901. extra: 308 / 241.5,
  25902. bottom: 8.9 / 316.8
  25903. }
  25904. },
  25905. cumming: {
  25906. height: math.unit(2 + 6 / 12, "feet"),
  25907. weight: math.unit(30, "lb"),
  25908. name: "Cumming",
  25909. image: {
  25910. source: "./media/characters/layla/cumming.svg",
  25911. extra: 342 / 279,
  25912. bottom: 595 / 938
  25913. }
  25914. },
  25915. dickFlaccid: {
  25916. height: math.unit(2.595, "feet"),
  25917. name: "Flaccid Genitals",
  25918. image: {
  25919. source: "./media/characters/layla/dick-flaccid.svg"
  25920. }
  25921. },
  25922. dickErect: {
  25923. height: math.unit(2.359, "feet"),
  25924. name: "Erect Genitals",
  25925. image: {
  25926. source: "./media/characters/layla/dick-erect.svg"
  25927. }
  25928. },
  25929. dragon: {
  25930. height: math.unit(40, "feet"),
  25931. name: "Dragon",
  25932. image: {
  25933. source: "./media/characters/layla/dragon.svg",
  25934. extra: 610/535,
  25935. bottom: 367/977
  25936. }
  25937. },
  25938. taur: {
  25939. height: math.unit(30, "feet"),
  25940. name: "Taur",
  25941. image: {
  25942. source: "./media/characters/layla/taur.svg",
  25943. extra: 1268/1199,
  25944. bottom: 112/1380
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Micro",
  25951. height: math.unit(1, "inch")
  25952. },
  25953. {
  25954. name: "Small",
  25955. height: math.unit(1, "foot")
  25956. },
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(2 + 6 / 12, "feet"),
  25960. default: true
  25961. },
  25962. {
  25963. name: "Macro",
  25964. height: math.unit(200, "feet")
  25965. },
  25966. {
  25967. name: "Megamacro",
  25968. height: math.unit(1000, "miles")
  25969. },
  25970. {
  25971. name: "Planetary",
  25972. height: math.unit(8000, "miles")
  25973. },
  25974. {
  25975. name: "True Layla",
  25976. height: math.unit(200000 * 7, "multiverses")
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25982. {
  25983. back: {
  25984. height: math.unit(10.5, "feet"),
  25985. weight: math.unit(800, "lb"),
  25986. name: "Back",
  25987. image: {
  25988. source: "./media/characters/knox/back.svg",
  25989. extra: 1486 / 1089,
  25990. bottom: 107 / 1601.4
  25991. }
  25992. },
  25993. side: {
  25994. height: math.unit(10.5, "feet"),
  25995. weight: math.unit(800, "lb"),
  25996. name: "Side",
  25997. image: {
  25998. source: "./media/characters/knox/side.svg",
  25999. extra: 244 / 218,
  26000. bottom: 14 / 260
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Compact",
  26007. height: math.unit(10.5, "feet"),
  26008. default: true
  26009. },
  26010. {
  26011. name: "Dynamax",
  26012. height: math.unit(210, "feet")
  26013. },
  26014. {
  26015. name: "Full Macro",
  26016. height: math.unit(850, "feet")
  26017. },
  26018. ]
  26019. ))
  26020. characterMakers.push(() => makeCharacter(
  26021. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26022. {
  26023. front: {
  26024. height: math.unit(28, "feet"),
  26025. weight: math.unit(10500, "lb"),
  26026. name: "Front",
  26027. image: {
  26028. source: "./media/characters/kayda/front.svg",
  26029. extra: 1536 / 1428,
  26030. bottom: 68.7 / 1603
  26031. }
  26032. },
  26033. back: {
  26034. height: math.unit(28, "feet"),
  26035. weight: math.unit(10500, "lb"),
  26036. name: "Back",
  26037. image: {
  26038. source: "./media/characters/kayda/back.svg",
  26039. extra: 1557 / 1464,
  26040. bottom: 39.5 / 1597.49
  26041. }
  26042. },
  26043. dick: {
  26044. height: math.unit(3.858, "feet"),
  26045. name: "Dick",
  26046. image: {
  26047. source: "./media/characters/kayda/dick.svg"
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Macro",
  26054. height: math.unit(28, "feet"),
  26055. default: true
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(10 + 11 / 12, "feet"),
  26064. weight: math.unit(1400, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/brian/front.svg",
  26068. extra: 737 / 692,
  26069. bottom: 55.4 / 785
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(10 + 11 / 12, "feet"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(5 + 8 / 12, "feet"),
  26086. weight: math.unit(140, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/khemri/front.svg",
  26090. extra: 4780 / 4059,
  26091. bottom: 80.1 / 4859.25
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Micro",
  26098. height: math.unit(6, "inches")
  26099. },
  26100. {
  26101. name: "Normal",
  26102. height: math.unit(5 + 8 / 12, "feet"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26109. {
  26110. front: {
  26111. height: math.unit(13, "feet"),
  26112. weight: math.unit(1700, "lb"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/felix-braveheart/front.svg",
  26116. extra: 1222 / 1157,
  26117. bottom: 53.2 / 1280
  26118. }
  26119. },
  26120. back: {
  26121. height: math.unit(13, "feet"),
  26122. weight: math.unit(1700, "lb"),
  26123. name: "Back",
  26124. image: {
  26125. source: "./media/characters/felix-braveheart/back.svg",
  26126. extra: 1277 / 1203,
  26127. bottom: 50.2 / 1327
  26128. }
  26129. },
  26130. feral: {
  26131. height: math.unit(6, "feet"),
  26132. weight: math.unit(400, "lb"),
  26133. name: "Feral",
  26134. image: {
  26135. source: "./media/characters/felix-braveheart/feral.svg",
  26136. extra: 682 / 625,
  26137. bottom: 6.9 / 688
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(13, "feet"),
  26145. default: true
  26146. },
  26147. ]
  26148. ))
  26149. characterMakers.push(() => makeCharacter(
  26150. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26151. {
  26152. side: {
  26153. height: math.unit(5 + 11 / 12, "feet"),
  26154. weight: math.unit(1400, "lb"),
  26155. name: "Side",
  26156. image: {
  26157. source: "./media/characters/shadow-blade/side.svg",
  26158. extra: 1726 / 1267,
  26159. bottom: 58.4 / 1785
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Normal",
  26166. height: math.unit(5 + 11 / 12, "feet"),
  26167. default: true
  26168. },
  26169. ]
  26170. ))
  26171. characterMakers.push(() => makeCharacter(
  26172. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26173. {
  26174. front: {
  26175. height: math.unit(1 + 6 / 12, "feet"),
  26176. weight: math.unit(25, "lb"),
  26177. name: "Front",
  26178. image: {
  26179. source: "./media/characters/karla-halldor/front.svg",
  26180. extra: 1459 / 1383,
  26181. bottom: 12 / 1472
  26182. }
  26183. },
  26184. },
  26185. [
  26186. {
  26187. name: "Normal",
  26188. height: math.unit(1 + 6 / 12, "feet"),
  26189. default: true
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(6 + 2 / 12, "feet"),
  26198. weight: math.unit(160, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/ariam/front.svg",
  26202. extra: 1073/976,
  26203. bottom: 52/1125
  26204. }
  26205. },
  26206. back: {
  26207. height: math.unit(6 + 2/12, "feet"),
  26208. weight: math.unit(160, "lb"),
  26209. name: "Back",
  26210. image: {
  26211. source: "./media/characters/ariam/back.svg",
  26212. extra: 1103/1023,
  26213. bottom: 9/1112
  26214. }
  26215. },
  26216. dressed: {
  26217. height: math.unit(6 + 2/12, "feet"),
  26218. weight: math.unit(160, "lb"),
  26219. name: "Dressed",
  26220. image: {
  26221. source: "./media/characters/ariam/dressed.svg",
  26222. extra: 1099/1009,
  26223. bottom: 25/1124
  26224. }
  26225. },
  26226. squatting: {
  26227. height: math.unit(4.1, "feet"),
  26228. weight: math.unit(160, "lb"),
  26229. name: "Squatting",
  26230. image: {
  26231. source: "./media/characters/ariam/squatting.svg",
  26232. extra: 2617 / 2112,
  26233. bottom: 61.2 / 2681,
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(6 + 2 / 12, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Normal+",
  26245. height: math.unit(4, "meters")
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(50, "meters")
  26250. },
  26251. {
  26252. name: "Macro+",
  26253. height: math.unit(100, "meters")
  26254. },
  26255. {
  26256. name: "Megamacro",
  26257. height: math.unit(20, "km")
  26258. },
  26259. {
  26260. name: "Caretaker",
  26261. height: math.unit(444, "megameters")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(1.67, "meters"),
  26270. weight: math.unit(140, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26274. extra: 438 / 410,
  26275. bottom: 0.75 / 439
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Shrunken",
  26282. height: math.unit(7.6, "cm")
  26283. },
  26284. {
  26285. name: "Human Scale",
  26286. height: math.unit(1.67, "meters")
  26287. },
  26288. {
  26289. name: "Wolxi Scale",
  26290. height: math.unit(36.7, "meters"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(1.73, "meters"),
  26300. weight: math.unit(240, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/izue-two-mothers/front.svg",
  26304. extra: 469 / 437,
  26305. bottom: 1.24 / 470.6
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Shrunken",
  26312. height: math.unit(7.86, "cm")
  26313. },
  26314. {
  26315. name: "Human Scale",
  26316. height: math.unit(1.73, "meters")
  26317. },
  26318. {
  26319. name: "Wolxi Scale",
  26320. height: math.unit(38, "meters"),
  26321. default: true
  26322. },
  26323. ]
  26324. ))
  26325. characterMakers.push(() => makeCharacter(
  26326. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26327. {
  26328. front: {
  26329. height: math.unit(1.55, "meters"),
  26330. weight: math.unit(120, "lb"),
  26331. name: "Front",
  26332. image: {
  26333. source: "./media/characters/teeku-love-shack/front.svg",
  26334. extra: 387 / 362,
  26335. bottom: 1.51 / 388
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Shrunken",
  26342. height: math.unit(7, "cm")
  26343. },
  26344. {
  26345. name: "Human Scale",
  26346. height: math.unit(1.55, "meters")
  26347. },
  26348. {
  26349. name: "Wolxi Scale",
  26350. height: math.unit(34.1, "meters"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26357. {
  26358. front: {
  26359. height: math.unit(1.83, "meters"),
  26360. weight: math.unit(135, "lb"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/dejma-the-red/front.svg",
  26364. extra: 480 / 458,
  26365. bottom: 1.8 / 482
  26366. }
  26367. },
  26368. },
  26369. [
  26370. {
  26371. name: "Shrunken",
  26372. height: math.unit(8.3, "cm")
  26373. },
  26374. {
  26375. name: "Human Scale",
  26376. height: math.unit(1.83, "meters")
  26377. },
  26378. {
  26379. name: "Wolxi Scale",
  26380. height: math.unit(40, "meters"),
  26381. default: true
  26382. },
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26387. {
  26388. front: {
  26389. height: math.unit(1.78, "meters"),
  26390. weight: math.unit(65, "kg"),
  26391. name: "Front",
  26392. image: {
  26393. source: "./media/characters/aki/front.svg",
  26394. extra: 452 / 415
  26395. }
  26396. },
  26397. frontNsfw: {
  26398. height: math.unit(1.78, "meters"),
  26399. weight: math.unit(65, "kg"),
  26400. name: "Front (NSFW)",
  26401. image: {
  26402. source: "./media/characters/aki/front-nsfw.svg",
  26403. extra: 452 / 415
  26404. }
  26405. },
  26406. back: {
  26407. height: math.unit(1.78, "meters"),
  26408. weight: math.unit(65, "kg"),
  26409. name: "Back",
  26410. image: {
  26411. source: "./media/characters/aki/back.svg",
  26412. extra: 452 / 415
  26413. }
  26414. },
  26415. rump: {
  26416. height: math.unit(2.05, "feet"),
  26417. name: "Rump",
  26418. image: {
  26419. source: "./media/characters/aki/rump.svg"
  26420. }
  26421. },
  26422. dick: {
  26423. height: math.unit(0.95, "feet"),
  26424. name: "Dick",
  26425. image: {
  26426. source: "./media/characters/aki/dick.svg"
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Micro",
  26433. height: math.unit(15, "cm")
  26434. },
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(178, "cm"),
  26438. default: true
  26439. },
  26440. {
  26441. name: "Macro",
  26442. height: math.unit(214, "m")
  26443. },
  26444. {
  26445. name: "Macro+",
  26446. height: math.unit(534, "m")
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(5 + 5 / 12, "feet"),
  26455. weight: math.unit(120, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/ari/front.svg",
  26459. extra: 1550/1471,
  26460. bottom: 39/1589
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(5 + 5 / 12, "feet")
  26468. },
  26469. {
  26470. name: "Macro",
  26471. height: math.unit(100, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Megamacro",
  26476. height: math.unit(100, "miles")
  26477. },
  26478. {
  26479. name: "Gigamacro",
  26480. height: math.unit(80000, "miles")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26486. {
  26487. side: {
  26488. height: math.unit(9, "feet"),
  26489. weight: math.unit(400, "kg"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/bolt/side.svg",
  26493. extra: 1126 / 896,
  26494. bottom: 60 / 1187.3,
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Micro",
  26501. height: math.unit(5, "inches")
  26502. },
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(9, "feet"),
  26506. default: true
  26507. },
  26508. {
  26509. name: "Macro",
  26510. height: math.unit(700, "feet")
  26511. },
  26512. {
  26513. name: "Max Size",
  26514. height: math.unit(1.52e22, "yottameters")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(4.3, "meters"),
  26523. weight: math.unit(3, "tons"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/draekon-sylviar/front.svg",
  26527. extra: 2072/1512,
  26528. bottom: 74/2146
  26529. }
  26530. },
  26531. back: {
  26532. height: math.unit(4.3, "meters"),
  26533. weight: math.unit(3, "tons"),
  26534. name: "Back",
  26535. image: {
  26536. source: "./media/characters/draekon-sylviar/back.svg",
  26537. extra: 1639/1483,
  26538. bottom: 41/1680
  26539. }
  26540. },
  26541. feral: {
  26542. height: math.unit(1.15, "meters"),
  26543. weight: math.unit(3, "tons"),
  26544. name: "Feral",
  26545. image: {
  26546. source: "./media/characters/draekon-sylviar/feral.svg",
  26547. extra: 1033/395,
  26548. bottom: 130/1163
  26549. }
  26550. },
  26551. maw: {
  26552. height: math.unit(1.3, "meters"),
  26553. name: "Maw",
  26554. image: {
  26555. source: "./media/characters/draekon-sylviar/maw.svg"
  26556. }
  26557. },
  26558. mawSeparated: {
  26559. height: math.unit(1.53, "meters"),
  26560. name: "Separated Maw",
  26561. image: {
  26562. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26563. }
  26564. },
  26565. tail: {
  26566. height: math.unit(1.15, "meters"),
  26567. name: "Tail",
  26568. image: {
  26569. source: "./media/characters/draekon-sylviar/tail.svg"
  26570. }
  26571. },
  26572. tailDick: {
  26573. height: math.unit(1.15, "meters"),
  26574. name: "Tail (Dick)",
  26575. image: {
  26576. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26577. }
  26578. },
  26579. tailDickSeparated: {
  26580. height: math.unit(1.19, "meters"),
  26581. name: "Tail (Separated Dick)",
  26582. image: {
  26583. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26584. }
  26585. },
  26586. slit: {
  26587. height: math.unit(1, "meters"),
  26588. name: "Slit",
  26589. image: {
  26590. source: "./media/characters/draekon-sylviar/slit.svg"
  26591. }
  26592. },
  26593. dick: {
  26594. height: math.unit(1.15, "meters"),
  26595. name: "Dick",
  26596. image: {
  26597. source: "./media/characters/draekon-sylviar/dick.svg"
  26598. }
  26599. },
  26600. dickSeparated: {
  26601. height: math.unit(1.1, "meters"),
  26602. name: "Separated Dick",
  26603. image: {
  26604. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26605. }
  26606. },
  26607. sheath: {
  26608. height: math.unit(1.15, "meters"),
  26609. name: "Sheath",
  26610. image: {
  26611. source: "./media/characters/draekon-sylviar/sheath.svg"
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Small",
  26618. height: math.unit(4.53 / 2, "meters"),
  26619. default: true
  26620. },
  26621. {
  26622. name: "Normal",
  26623. height: math.unit(4.53, "meters"),
  26624. default: true
  26625. },
  26626. {
  26627. name: "Large",
  26628. height: math.unit(4.53 * 2, "meters"),
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(6 + 2 / 12, "feet"),
  26637. weight: math.unit(180, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/brawler/front.svg",
  26641. extra: 3301 / 3027,
  26642. bottom: 138 / 3439
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(6 + 2 / 12, "feet"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(11, "feet"),
  26659. weight: math.unit(1000, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/alex/front.svg",
  26663. bottom: 44.5 / 620
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Micro",
  26670. height: math.unit(5, "inches")
  26671. },
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(11, "feet"),
  26675. default: true
  26676. },
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(9.5e9, "feet")
  26680. },
  26681. {
  26682. name: "Max Size",
  26683. height: math.unit(1.4e283, "yottameters")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26689. {
  26690. female: {
  26691. height: math.unit(29.9, "m"),
  26692. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26693. name: "Female",
  26694. image: {
  26695. source: "./media/characters/zenari/female.svg",
  26696. extra: 3281.6 / 3217,
  26697. bottom: 72.2 / 3353
  26698. }
  26699. },
  26700. male: {
  26701. height: math.unit(27.7, "m"),
  26702. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26703. name: "Male",
  26704. image: {
  26705. source: "./media/characters/zenari/male.svg",
  26706. extra: 3008 / 2991,
  26707. bottom: 54.6 / 3069
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Macro",
  26714. height: math.unit(29.7, "meters"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26721. {
  26722. female: {
  26723. height: math.unit(23.8, "m"),
  26724. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26725. name: "Female",
  26726. image: {
  26727. source: "./media/characters/mactarian/female.svg",
  26728. extra: 2662 / 2569,
  26729. bottom: 73 / 2736
  26730. }
  26731. },
  26732. male: {
  26733. height: math.unit(23.8, "m"),
  26734. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26735. name: "Male",
  26736. image: {
  26737. source: "./media/characters/mactarian/male.svg",
  26738. extra: 2673 / 2600,
  26739. bottom: 76 / 2750
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Macro",
  26746. height: math.unit(23.8, "meters"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26753. {
  26754. female: {
  26755. height: math.unit(19.3, "m"),
  26756. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26757. name: "Female",
  26758. image: {
  26759. source: "./media/characters/umok/female.svg",
  26760. extra: 2186 / 2078,
  26761. bottom: 87 / 2277
  26762. }
  26763. },
  26764. male: {
  26765. height: math.unit(19.5, "m"),
  26766. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26767. name: "Male",
  26768. image: {
  26769. source: "./media/characters/umok/male.svg",
  26770. extra: 2233 / 2140,
  26771. bottom: 24.4 / 2258
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Macro",
  26778. height: math.unit(19.3, "meters"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26785. {
  26786. female: {
  26787. height: math.unit(26.15, "m"),
  26788. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26789. name: "Female",
  26790. image: {
  26791. source: "./media/characters/joraxian/female.svg",
  26792. extra: 2912 / 2824,
  26793. bottom: 36 / 2956
  26794. }
  26795. },
  26796. male: {
  26797. height: math.unit(25.4, "m"),
  26798. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26799. name: "Male",
  26800. image: {
  26801. source: "./media/characters/joraxian/male.svg",
  26802. extra: 2877 / 2721,
  26803. bottom: 82 / 2967
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Macro",
  26810. height: math.unit(26.15, "meters"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26817. {
  26818. female: {
  26819. height: math.unit(21.6, "m"),
  26820. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26821. name: "Female",
  26822. image: {
  26823. source: "./media/characters/sthara/female.svg",
  26824. extra: 2516 / 2347,
  26825. bottom: 21.5 / 2537
  26826. }
  26827. },
  26828. male: {
  26829. height: math.unit(24, "m"),
  26830. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26831. name: "Male",
  26832. image: {
  26833. source: "./media/characters/sthara/male.svg",
  26834. extra: 2732 / 2607,
  26835. bottom: 23 / 2732
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Macro",
  26842. height: math.unit(21.6, "meters"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(6 + 4 / 12, "feet"),
  26852. weight: math.unit(175, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/luka-bryzant/front.svg",
  26856. extra: 311 / 289,
  26857. bottom: 4 / 315
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(6 + 4 / 12, "feet"),
  26862. weight: math.unit(175, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/luka-bryzant/back.svg",
  26866. extra: 311 / 289,
  26867. bottom: 3.8 / 313.7
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Micro",
  26874. height: math.unit(10, "inches")
  26875. },
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(6 + 4 / 12, "feet"),
  26879. default: true
  26880. },
  26881. {
  26882. name: "Large",
  26883. height: math.unit(12, "feet")
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(5 + 7 / 12, "feet"),
  26892. weight: math.unit(185, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/aman-aquila/front.svg",
  26896. extra: 1013 / 976,
  26897. bottom: 45.6 / 1057
  26898. }
  26899. },
  26900. side: {
  26901. height: math.unit(5 + 7 / 12, "feet"),
  26902. weight: math.unit(185, "lb"),
  26903. name: "Side",
  26904. image: {
  26905. source: "./media/characters/aman-aquila/side.svg",
  26906. extra: 1054 / 1011,
  26907. bottom: 15 / 1070
  26908. }
  26909. },
  26910. back: {
  26911. height: math.unit(5 + 7 / 12, "feet"),
  26912. weight: math.unit(185, "lb"),
  26913. name: "Back",
  26914. image: {
  26915. source: "./media/characters/aman-aquila/back.svg",
  26916. extra: 1026 / 970,
  26917. bottom: 12 / 1039
  26918. }
  26919. },
  26920. head: {
  26921. height: math.unit(1.211, "feet"),
  26922. name: "Head",
  26923. image: {
  26924. source: "./media/characters/aman-aquila/head.svg",
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Minimicro",
  26931. height: math.unit(0.057, "inches")
  26932. },
  26933. {
  26934. name: "Micro",
  26935. height: math.unit(7, "inches")
  26936. },
  26937. {
  26938. name: "Mini",
  26939. height: math.unit(3 + 7 / 12, "feet")
  26940. },
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(5 + 7 / 12, "feet"),
  26944. default: true
  26945. },
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(157 + 7 / 12, "feet")
  26949. },
  26950. {
  26951. name: "Megamacro",
  26952. height: math.unit(1557 + 7 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Gigamacro",
  26956. height: math.unit(15557 + 7 / 12, "feet")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(3 + 2 / 12, "inches"),
  26965. weight: math.unit(0.3, "ounces"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/hiphae/front.svg",
  26969. extra: 1931 / 1683,
  26970. bottom: 24 / 1955
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(3 + 1 / 2, "inches"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5 + 10 / 12, "feet"),
  26987. weight: math.unit(165, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/nicky/front.svg",
  26991. extra: 3144 / 2886,
  26992. bottom: 45.6 / 3192
  26993. }
  26994. },
  26995. back: {
  26996. height: math.unit(5 + 10 / 12, "feet"),
  26997. weight: math.unit(165, "lb"),
  26998. name: "Back",
  26999. image: {
  27000. source: "./media/characters/nicky/back.svg",
  27001. extra: 3055 / 2804,
  27002. bottom: 28.4 / 3087
  27003. }
  27004. },
  27005. frontclothed: {
  27006. height: math.unit(5 + 10 / 12, "feet"),
  27007. weight: math.unit(165, "lb"),
  27008. name: "Front-clothed",
  27009. image: {
  27010. source: "./media/characters/nicky/front-clothed.svg",
  27011. extra: 3184.9 / 2926.9,
  27012. bottom: 86.5 / 3239.9
  27013. }
  27014. },
  27015. foot: {
  27016. height: math.unit(1.16, "feet"),
  27017. name: "Foot",
  27018. image: {
  27019. source: "./media/characters/nicky/foot.svg"
  27020. }
  27021. },
  27022. feet: {
  27023. height: math.unit(1.34, "feet"),
  27024. name: "Feet",
  27025. image: {
  27026. source: "./media/characters/nicky/feet.svg"
  27027. }
  27028. },
  27029. maw: {
  27030. height: math.unit(0.9, "feet"),
  27031. name: "Maw",
  27032. image: {
  27033. source: "./media/characters/nicky/maw.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(5 + 10 / 12, "feet"),
  27041. default: true
  27042. },
  27043. {
  27044. name: "Macro",
  27045. height: math.unit(60, "feet")
  27046. },
  27047. {
  27048. name: "Megamacro",
  27049. height: math.unit(1, "mile")
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27055. {
  27056. side: {
  27057. height: math.unit(10, "feet"),
  27058. weight: math.unit(600, "lb"),
  27059. name: "Side",
  27060. image: {
  27061. source: "./media/characters/blair/side.svg",
  27062. bottom: 16.6 / 475,
  27063. extra: 458 / 431
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Micro",
  27070. height: math.unit(8, "inches")
  27071. },
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(10, "feet"),
  27075. default: true
  27076. },
  27077. {
  27078. name: "Macro",
  27079. height: math.unit(180, "feet")
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27085. {
  27086. front: {
  27087. height: math.unit(5 + 4 / 12, "feet"),
  27088. weight: math.unit(125, "lb"),
  27089. name: "Front",
  27090. image: {
  27091. source: "./media/characters/fisher/front.svg",
  27092. extra: 444 / 390,
  27093. bottom: 2 / 444.8
  27094. }
  27095. },
  27096. },
  27097. [
  27098. {
  27099. name: "Micro",
  27100. height: math.unit(4, "inches")
  27101. },
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(5 + 4 / 12, "feet"),
  27105. default: true
  27106. },
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(100, "feet")
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27115. {
  27116. front: {
  27117. height: math.unit(6.71, "feet"),
  27118. weight: math.unit(200, "lb"),
  27119. preyCapacity: math.unit(1000000, "people"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/gliss/front.svg",
  27123. extra: 2347 / 2231,
  27124. bottom: 113 / 2462
  27125. }
  27126. },
  27127. hammerspaceSize: {
  27128. height: math.unit(6.71 * 717, "feet"),
  27129. weight: math.unit(200, "lb"),
  27130. preyCapacity: math.unit(1000000, "people"),
  27131. name: "Hammerspace Size",
  27132. image: {
  27133. source: "./media/characters/gliss/front.svg",
  27134. extra: 2347 / 2231,
  27135. bottom: 113 / 2462
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Normal",
  27142. height: math.unit(6.71, "feet"),
  27143. default: true
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27149. {
  27150. side: {
  27151. height: math.unit(1.44, "m"),
  27152. weight: math.unit(80, "kg"),
  27153. name: "Side",
  27154. image: {
  27155. source: "./media/characters/dune-anderson/side.svg",
  27156. bottom: 49 / 1426
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Wolf-sized",
  27163. height: math.unit(1.44, "meters")
  27164. },
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(5.05, "meters"),
  27168. default: true
  27169. },
  27170. {
  27171. name: "Big",
  27172. height: math.unit(14.4, "meters")
  27173. },
  27174. {
  27175. name: "Huge",
  27176. height: math.unit(144, "meters")
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(7, "feet"),
  27185. weight: math.unit(425, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/hind/front.svg",
  27189. extra: 2091 / 1860,
  27190. bottom: 129 / 2220
  27191. }
  27192. },
  27193. back: {
  27194. height: math.unit(7, "feet"),
  27195. weight: math.unit(425, "lb"),
  27196. name: "Back",
  27197. image: {
  27198. source: "./media/characters/hind/back.svg",
  27199. extra: 2091 / 1860,
  27200. bottom: 24.6 / 2309
  27201. }
  27202. },
  27203. tail: {
  27204. height: math.unit(2.8, "feet"),
  27205. name: "Tail",
  27206. image: {
  27207. source: "./media/characters/hind/tail.svg"
  27208. }
  27209. },
  27210. head: {
  27211. height: math.unit(2.55, "feet"),
  27212. name: "Head",
  27213. image: {
  27214. source: "./media/characters/hind/head.svg"
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "XS",
  27221. height: math.unit(0.7, "feet")
  27222. },
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(7, "feet"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "XL",
  27230. height: math.unit(70, "feet")
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(2.1, "meters"),
  27239. weight: math.unit(150, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/tharquench-sizestealer/front.svg",
  27243. extra: 1605/1470,
  27244. bottom: 36/1641
  27245. }
  27246. },
  27247. frontAlt: {
  27248. height: math.unit(2.1, "meters"),
  27249. weight: math.unit(150, "lb"),
  27250. name: "Front (Alt)",
  27251. image: {
  27252. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27253. extra: 2318 / 2063,
  27254. bottom: 93.4 / 2410
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Nano",
  27261. height: math.unit(1, "mm")
  27262. },
  27263. {
  27264. name: "Micro",
  27265. height: math.unit(1, "cm")
  27266. },
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(2.1, "meters"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(7 + 5 / 12, "feet"),
  27279. weight: math.unit(357, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/solex-draconov/front.svg",
  27283. extra: 1993 / 1865,
  27284. bottom: 117 / 2111
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Natural Height",
  27291. height: math.unit(7 + 5 / 12, "feet"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Macro",
  27296. height: math.unit(350, "feet")
  27297. },
  27298. {
  27299. name: "Macro+",
  27300. height: math.unit(1000, "feet")
  27301. },
  27302. {
  27303. name: "Megamacro",
  27304. height: math.unit(20, "km")
  27305. },
  27306. {
  27307. name: "Megamacro+",
  27308. height: math.unit(1000, "km")
  27309. },
  27310. {
  27311. name: "Gigamacro",
  27312. height: math.unit(2.5, "Gm")
  27313. },
  27314. {
  27315. name: "Teramacro",
  27316. height: math.unit(15, "Tm")
  27317. },
  27318. {
  27319. name: "Galactic",
  27320. height: math.unit(30, "Zm")
  27321. },
  27322. {
  27323. name: "Universal",
  27324. height: math.unit(21000, "Ym")
  27325. },
  27326. {
  27327. name: "Omniversal",
  27328. height: math.unit(9.861e50, "Ym")
  27329. },
  27330. {
  27331. name: "Existential",
  27332. height: math.unit(1e300, "meters")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27338. {
  27339. side: {
  27340. height: math.unit(25, "feet"),
  27341. weight: math.unit(90000, "lb"),
  27342. name: "Side",
  27343. image: {
  27344. source: "./media/characters/mandarax/side.svg",
  27345. extra: 614 / 332,
  27346. bottom: 55 / 630
  27347. }
  27348. },
  27349. lounging: {
  27350. height: math.unit(15.4, "feet"),
  27351. weight: math.unit(90000, "lb"),
  27352. name: "Lounging",
  27353. image: {
  27354. source: "./media/characters/mandarax/lounging.svg",
  27355. extra: 817/609,
  27356. bottom: 685/1502
  27357. }
  27358. },
  27359. head: {
  27360. height: math.unit(11.4, "feet"),
  27361. name: "Head",
  27362. image: {
  27363. source: "./media/characters/mandarax/head.svg"
  27364. }
  27365. },
  27366. belly: {
  27367. height: math.unit(33, "feet"),
  27368. name: "Belly",
  27369. preyCapacity: math.unit(500, "people"),
  27370. image: {
  27371. source: "./media/characters/mandarax/belly.svg"
  27372. }
  27373. },
  27374. dick: {
  27375. height: math.unit(8.46, "feet"),
  27376. name: "Dick",
  27377. image: {
  27378. source: "./media/characters/mandarax/dick.svg"
  27379. }
  27380. },
  27381. top: {
  27382. height: math.unit(28, "meters"),
  27383. name: "Top",
  27384. image: {
  27385. source: "./media/characters/mandarax/top.svg"
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(25, "feet"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27399. {
  27400. front: {
  27401. height: math.unit(5, "feet"),
  27402. weight: math.unit(90, "lb"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/pixil/front.svg",
  27406. extra: 2000 / 1618,
  27407. bottom: 12.3 / 2011
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Normal",
  27414. height: math.unit(5, "feet"),
  27415. default: true
  27416. },
  27417. {
  27418. name: "Megamacro",
  27419. height: math.unit(10, "miles"),
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27425. {
  27426. front: {
  27427. height: math.unit(7 + 2 / 12, "feet"),
  27428. weight: math.unit(200, "lb"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/angel/front.svg",
  27432. extra: 1830 / 1737,
  27433. bottom: 22.6 / 1854,
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(7 + 2 / 12, "feet"),
  27441. default: true
  27442. },
  27443. {
  27444. name: "Macro",
  27445. height: math.unit(1000, "feet")
  27446. },
  27447. {
  27448. name: "Megamacro",
  27449. height: math.unit(2, "miles")
  27450. },
  27451. {
  27452. name: "Gigamacro",
  27453. height: math.unit(20, "earths")
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(5, "feet"),
  27462. weight: math.unit(180, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/mekana/front.svg",
  27466. extra: 1671 / 1605,
  27467. bottom: 3.5 / 1691
  27468. }
  27469. },
  27470. side: {
  27471. height: math.unit(5, "feet"),
  27472. weight: math.unit(180, "lb"),
  27473. name: "Side",
  27474. image: {
  27475. source: "./media/characters/mekana/side.svg",
  27476. extra: 1671 / 1605,
  27477. bottom: 3.5 / 1691
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(5, "feet"),
  27482. weight: math.unit(180, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/mekana/back.svg",
  27486. extra: 1671 / 1605,
  27487. bottom: 3.5 / 1691
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(5, "feet"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27501. {
  27502. front: {
  27503. height: math.unit(4 + 6 / 12, "feet"),
  27504. weight: math.unit(80, "lb"),
  27505. name: "Front",
  27506. image: {
  27507. source: "./media/characters/pixie/front.svg",
  27508. extra: 1924 / 1825,
  27509. bottom: 22.4 / 1946
  27510. }
  27511. },
  27512. },
  27513. [
  27514. {
  27515. name: "Normal",
  27516. height: math.unit(4 + 6 / 12, "feet"),
  27517. default: true
  27518. },
  27519. {
  27520. name: "Macro",
  27521. height: math.unit(40, "feet")
  27522. },
  27523. ]
  27524. ))
  27525. characterMakers.push(() => makeCharacter(
  27526. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27527. {
  27528. front: {
  27529. height: math.unit(2.1, "meters"),
  27530. weight: math.unit(200, "lb"),
  27531. name: "Front",
  27532. image: {
  27533. source: "./media/characters/the-lascivious/front.svg",
  27534. extra: 1 / 0.893,
  27535. bottom: 3.5 / 573.7
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Human Scale",
  27542. height: math.unit(2.1, "meters")
  27543. },
  27544. {
  27545. name: "Wolxi Scale",
  27546. height: math.unit(46.2, "m"),
  27547. default: true
  27548. },
  27549. {
  27550. name: "Boinker of Buildings",
  27551. height: math.unit(10, "km")
  27552. },
  27553. {
  27554. name: "Shagger of Skyscrapers",
  27555. height: math.unit(40, "km")
  27556. },
  27557. {
  27558. name: "Banger of Boroughs",
  27559. height: math.unit(4000, "km")
  27560. },
  27561. {
  27562. name: "Screwer of States",
  27563. height: math.unit(100000, "km")
  27564. },
  27565. {
  27566. name: "Pounder of Planets",
  27567. height: math.unit(2000000, "km")
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(6, "feet"),
  27576. weight: math.unit(150, "lb"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/aj/front.svg",
  27580. extra: 2039 / 1562,
  27581. bottom: 40 / 2079
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(11 + 6 / 12, "feet"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Megamacro",
  27593. height: math.unit(60, "megameters")
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27599. {
  27600. side: {
  27601. height: math.unit(31 + 8 / 12, "feet"),
  27602. weight: math.unit(75000, "kg"),
  27603. name: "Side",
  27604. image: {
  27605. source: "./media/characters/koros/side.svg",
  27606. extra: 1442 / 1297,
  27607. bottom: 122.7 / 1562
  27608. }
  27609. },
  27610. dicksKingsCrown: {
  27611. height: math.unit(6, "feet"),
  27612. name: "Dicks (King's Crown)",
  27613. image: {
  27614. source: "./media/characters/koros/dicks-kings-crown.svg"
  27615. }
  27616. },
  27617. dicksTailSet: {
  27618. height: math.unit(3, "feet"),
  27619. name: "Dicks (Tail Set)",
  27620. image: {
  27621. source: "./media/characters/koros/dicks-tail-set.svg"
  27622. }
  27623. },
  27624. dickCumming: {
  27625. height: math.unit(7.98, "feet"),
  27626. name: "Dick (Cumming)",
  27627. image: {
  27628. source: "./media/characters/koros/dick-cumming.svg"
  27629. }
  27630. },
  27631. dicksBack: {
  27632. height: math.unit(5.9, "feet"),
  27633. name: "Dicks (Back)",
  27634. image: {
  27635. source: "./media/characters/koros/dicks-back.svg"
  27636. }
  27637. },
  27638. dicksFront: {
  27639. height: math.unit(3.72, "feet"),
  27640. name: "Dicks (Front)",
  27641. image: {
  27642. source: "./media/characters/koros/dicks-front.svg"
  27643. }
  27644. },
  27645. dicksPeeking: {
  27646. height: math.unit(3.0, "feet"),
  27647. name: "Dicks (Peeking)",
  27648. image: {
  27649. source: "./media/characters/koros/dicks-peeking.svg"
  27650. }
  27651. },
  27652. eye: {
  27653. height: math.unit(1.7, "feet"),
  27654. name: "Eye",
  27655. image: {
  27656. source: "./media/characters/koros/eye.svg"
  27657. }
  27658. },
  27659. headFront: {
  27660. height: math.unit(11.69, "feet"),
  27661. name: "Head (Front)",
  27662. image: {
  27663. source: "./media/characters/koros/head-front.svg"
  27664. }
  27665. },
  27666. headSide: {
  27667. height: math.unit(14, "feet"),
  27668. name: "Head (Side)",
  27669. image: {
  27670. source: "./media/characters/koros/head-side.svg"
  27671. }
  27672. },
  27673. leg: {
  27674. height: math.unit(17, "feet"),
  27675. name: "Leg",
  27676. image: {
  27677. source: "./media/characters/koros/leg.svg"
  27678. }
  27679. },
  27680. mawSide: {
  27681. height: math.unit(12.8, "feet"),
  27682. name: "Maw (Side)",
  27683. image: {
  27684. source: "./media/characters/koros/maw-side.svg"
  27685. }
  27686. },
  27687. mawSpitting: {
  27688. height: math.unit(17, "feet"),
  27689. name: "Maw (Spitting)",
  27690. image: {
  27691. source: "./media/characters/koros/maw-spitting.svg"
  27692. }
  27693. },
  27694. slit: {
  27695. height: math.unit(2.8, "feet"),
  27696. name: "Slit",
  27697. image: {
  27698. source: "./media/characters/koros/slit.svg"
  27699. }
  27700. },
  27701. stomach: {
  27702. height: math.unit(6.8, "feet"),
  27703. preyCapacity: math.unit(20, "people"),
  27704. name: "Stomach",
  27705. image: {
  27706. source: "./media/characters/koros/stomach.svg"
  27707. }
  27708. },
  27709. wingspanBottom: {
  27710. height: math.unit(114, "feet"),
  27711. name: "Wingspan (Bottom)",
  27712. image: {
  27713. source: "./media/characters/koros/wingspan-bottom.svg"
  27714. }
  27715. },
  27716. wingspanTop: {
  27717. height: math.unit(104, "feet"),
  27718. name: "Wingspan (Top)",
  27719. image: {
  27720. source: "./media/characters/koros/wingspan-top.svg"
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(31 + 8 / 12, "feet"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(18 + 5 / 12, "feet"),
  27737. weight: math.unit(3750, "kg"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/vexx/front.svg",
  27741. extra: 426 / 396,
  27742. bottom: 31.5 / 458
  27743. }
  27744. },
  27745. maw: {
  27746. height: math.unit(6, "feet"),
  27747. name: "Maw",
  27748. image: {
  27749. source: "./media/characters/vexx/maw.svg"
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(18 + 5 / 12, "feet"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(17 + 6 / 12, "feet"),
  27766. weight: math.unit(150, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/baadra/front.svg",
  27770. extra: 1694/1553,
  27771. bottom: 179/1873
  27772. }
  27773. },
  27774. frontAlt: {
  27775. height: math.unit(17 + 6 / 12, "feet"),
  27776. weight: math.unit(150, "lb"),
  27777. name: "Front (Alt)",
  27778. image: {
  27779. source: "./media/characters/baadra/front-alt.svg",
  27780. extra: 3137 / 2890,
  27781. bottom: 168.4 / 3305
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(17 + 6 / 12, "feet"),
  27786. weight: math.unit(150, "lb"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/baadra/back.svg",
  27790. extra: 3142 / 2890,
  27791. bottom: 220 / 3371
  27792. }
  27793. },
  27794. head: {
  27795. height: math.unit(5.45, "feet"),
  27796. name: "Head",
  27797. image: {
  27798. source: "./media/characters/baadra/head.svg"
  27799. }
  27800. },
  27801. headAngry: {
  27802. height: math.unit(4.95, "feet"),
  27803. name: "Head (Angry)",
  27804. image: {
  27805. source: "./media/characters/baadra/head-angry.svg"
  27806. }
  27807. },
  27808. headOpen: {
  27809. height: math.unit(6, "feet"),
  27810. name: "Head (Open)",
  27811. image: {
  27812. source: "./media/characters/baadra/head-open.svg"
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(17 + 6 / 12, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(7 + 3 / 12, "feet"),
  27829. weight: math.unit(180, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/juri/front.svg",
  27833. extra: 1401 / 1237,
  27834. bottom: 18.5 / 1418
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(7 + 3 / 12, "feet"),
  27839. weight: math.unit(180, "lb"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/juri/side.svg",
  27843. extra: 1424 / 1242,
  27844. bottom: 18.5 / 1447
  27845. }
  27846. },
  27847. sitting: {
  27848. height: math.unit(6, "feet"),
  27849. weight: math.unit(180, "lb"),
  27850. name: "Sitting",
  27851. image: {
  27852. source: "./media/characters/juri/sitting.svg",
  27853. extra: 1270 / 1143,
  27854. bottom: 100 / 1343
  27855. }
  27856. },
  27857. back: {
  27858. height: math.unit(7 + 3 / 12, "feet"),
  27859. weight: math.unit(180, "lb"),
  27860. name: "Back",
  27861. image: {
  27862. source: "./media/characters/juri/back.svg",
  27863. extra: 1377 / 1240,
  27864. bottom: 23.7 / 1405
  27865. }
  27866. },
  27867. maw: {
  27868. height: math.unit(2.8, "feet"),
  27869. name: "Maw",
  27870. image: {
  27871. source: "./media/characters/juri/maw.svg"
  27872. }
  27873. },
  27874. stomach: {
  27875. height: math.unit(0.89, "feet"),
  27876. preyCapacity: math.unit(4, "liters"),
  27877. name: "Stomach",
  27878. image: {
  27879. source: "./media/characters/juri/stomach.svg"
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(7 + 3 / 12, "feet"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27893. {
  27894. fox: {
  27895. height: math.unit(5 + 6 / 12, "feet"),
  27896. weight: math.unit(140, "lb"),
  27897. name: "Fox",
  27898. image: {
  27899. source: "./media/characters/maxene-sita/fox.svg",
  27900. extra: 146 / 138,
  27901. bottom: 2.1 / 148.19
  27902. }
  27903. },
  27904. foxLaying: {
  27905. height: math.unit(1.70, "feet"),
  27906. weight: math.unit(140, "lb"),
  27907. name: "Fox (Laying)",
  27908. image: {
  27909. source: "./media/characters/maxene-sita/fox-laying.svg",
  27910. extra: 910 / 572,
  27911. bottom: 71 / 981
  27912. }
  27913. },
  27914. kitsune: {
  27915. height: math.unit(10, "feet"),
  27916. weight: math.unit(800, "lb"),
  27917. name: "Kitsune",
  27918. image: {
  27919. source: "./media/characters/maxene-sita/kitsune.svg",
  27920. extra: 185 / 176,
  27921. bottom: 4.7 / 189.9
  27922. }
  27923. },
  27924. hellhound: {
  27925. height: math.unit(10, "feet"),
  27926. weight: math.unit(700, "lb"),
  27927. name: "Hellhound",
  27928. image: {
  27929. source: "./media/characters/maxene-sita/hellhound.svg",
  27930. extra: 1600 / 1545,
  27931. bottom: 81 / 1681
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(5 + 6 / 12, "feet"),
  27939. default: true
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27945. {
  27946. front: {
  27947. height: math.unit(3 + 4 / 12, "feet"),
  27948. weight: math.unit(70, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/maia/front.svg",
  27952. extra: 227 / 219.5,
  27953. bottom: 40 / 267
  27954. }
  27955. },
  27956. back: {
  27957. height: math.unit(3 + 4 / 12, "feet"),
  27958. weight: math.unit(70, "lb"),
  27959. name: "Back",
  27960. image: {
  27961. source: "./media/characters/maia/back.svg",
  27962. extra: 237 / 225
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(3 + 4 / 12, "feet"),
  27970. default: true
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(5 + 10 / 12, "feet"),
  27979. weight: math.unit(197, "lb"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/jabaro/front.svg",
  27983. extra: 225 / 216,
  27984. bottom: 5.06 / 230
  27985. }
  27986. },
  27987. back: {
  27988. height: math.unit(5 + 10 / 12, "feet"),
  27989. weight: math.unit(197, "lb"),
  27990. name: "Back",
  27991. image: {
  27992. source: "./media/characters/jabaro/back.svg",
  27993. extra: 225 / 219,
  27994. bottom: 1.9 / 227
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(5 + 10 / 12, "feet"),
  28002. default: true
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(5 + 8 / 12, "feet"),
  28011. weight: math.unit(139, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/risa/front.svg",
  28015. extra: 270 / 260,
  28016. bottom: 11.2 / 282
  28017. }
  28018. },
  28019. back: {
  28020. height: math.unit(5 + 8 / 12, "feet"),
  28021. weight: math.unit(139, "lb"),
  28022. name: "Back",
  28023. image: {
  28024. source: "./media/characters/risa/back.svg",
  28025. extra: 264 / 255,
  28026. bottom: 4 / 268
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Normal",
  28033. height: math.unit(5 + 8 / 12, "feet"),
  28034. default: true
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(2 + 11 / 12, "feet"),
  28043. weight: math.unit(30, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/weatley/front.svg",
  28047. bottom: 10.7 / 414,
  28048. extra: 403.5 / 362
  28049. }
  28050. },
  28051. back: {
  28052. height: math.unit(2 + 11 / 12, "feet"),
  28053. weight: math.unit(30, "lb"),
  28054. name: "Back",
  28055. image: {
  28056. source: "./media/characters/weatley/back.svg",
  28057. bottom: 10.7 / 414,
  28058. extra: 403.5 / 362
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(2 + 11 / 12, "feet"),
  28066. default: true
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(5 + 2 / 12, "feet"),
  28075. weight: math.unit(50, "kg"),
  28076. name: "Front",
  28077. image: {
  28078. source: "./media/characters/mercury-crescent/front.svg",
  28079. extra: 1088 / 1033,
  28080. bottom: 18.9 / 1109
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(5 + 2 / 12, "feet"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(2, "feet"),
  28097. weight: math.unit(15, "kg"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/diamond-jones/front.svg",
  28101. extra: 727/723,
  28102. bottom: 46/773
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(2, "feet"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(3, "feet"),
  28119. weight: math.unit(30, "kg"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/sweet-bit/front.svg",
  28123. extra: 675 / 567,
  28124. bottom: 27.7 / 703
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(3, "feet"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28138. {
  28139. side: {
  28140. height: math.unit(9.178, "feet"),
  28141. weight: math.unit(500, "lb"),
  28142. name: "Side",
  28143. image: {
  28144. source: "./media/characters/umbrazen/side.svg",
  28145. extra: 1730 / 1473,
  28146. bottom: 34.6 / 1765
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(9.178, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(10, "feet"),
  28163. weight: math.unit(750, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/arlist/front.svg",
  28167. extra: 961 / 778,
  28168. bottom: 6.2 / 986
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(10, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(5 + 1 / 12, "feet"),
  28185. weight: math.unit(110, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/aradel/front.svg",
  28189. extra: 324 / 303,
  28190. bottom: 3.6 / 329.4
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(5 + 1 / 12, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28204. {
  28205. dressed: {
  28206. height: math.unit(3 + 8 / 12, "feet"),
  28207. weight: math.unit(50, "lb"),
  28208. name: "Dressed",
  28209. image: {
  28210. source: "./media/characters/serryn/dressed.svg",
  28211. extra: 1792 / 1656,
  28212. bottom: 43.5 / 1840
  28213. }
  28214. },
  28215. nude: {
  28216. height: math.unit(3 + 8 / 12, "feet"),
  28217. weight: math.unit(50, "lb"),
  28218. name: "Nude",
  28219. image: {
  28220. source: "./media/characters/serryn/nude.svg",
  28221. extra: 1792 / 1656,
  28222. bottom: 43.5 / 1840
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(3 + 8 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(7 + 10 / 12, "feet"),
  28239. weight: math.unit(255, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/xavier-thyme/front.svg",
  28243. extra: 3733 / 3642,
  28244. bottom: 131 / 3869
  28245. }
  28246. },
  28247. frontRaven: {
  28248. height: math.unit(7 + 10 / 12, "feet"),
  28249. weight: math.unit(255, "lb"),
  28250. name: "Front (Raven)",
  28251. image: {
  28252. source: "./media/characters/xavier-thyme/front-raven.svg",
  28253. extra: 4385 / 3642,
  28254. bottom: 131 / 4517
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(7 + 10 / 12, "feet"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(1.6, "m"),
  28271. weight: math.unit(50, "kg"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/kiki/front.svg",
  28275. extra: 4682 / 3610,
  28276. bottom: 115 / 4777
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(1.6, "meters"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(50, "m"),
  28293. weight: math.unit(500, "tonnes"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/ryoko/front.svg",
  28297. extra: 4632 / 3926,
  28298. bottom: 193 / 4823
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(50, "meters"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(30, "m"),
  28315. weight: math.unit(22, "tonnes"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/elio/front.svg",
  28319. extra: 4582 / 3720,
  28320. bottom: 236 / 4828
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(30, "meters"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(6 + 3 / 12, "feet"),
  28337. weight: math.unit(120, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/azura/front.svg",
  28341. extra: 1149 / 1135,
  28342. bottom: 45 / 1194
  28343. }
  28344. },
  28345. frontClothed: {
  28346. height: math.unit(6 + 3 / 12, "feet"),
  28347. weight: math.unit(120, "lb"),
  28348. name: "Front (Clothed)",
  28349. image: {
  28350. source: "./media/characters/azura/front-clothed.svg",
  28351. extra: 1149 / 1135,
  28352. bottom: 45 / 1194
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(6 + 3 / 12, "feet"),
  28360. default: true
  28361. },
  28362. {
  28363. name: "Macro",
  28364. height: math.unit(20 + 6 / 12, "feet")
  28365. },
  28366. {
  28367. name: "Megamacro",
  28368. height: math.unit(12, "miles")
  28369. },
  28370. {
  28371. name: "Gigamacro",
  28372. height: math.unit(10000, "miles")
  28373. },
  28374. {
  28375. name: "Teramacro",
  28376. height: math.unit(900000, "miles")
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(12, "feet"),
  28385. weight: math.unit(1, "ton"),
  28386. capacity: math.unit(660000, "gallons"),
  28387. name: "Front",
  28388. image: {
  28389. source: "./media/characters/zeus/front.svg",
  28390. extra: 5005 / 4717,
  28391. bottom: 363 / 5388
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(12, "feet")
  28399. },
  28400. {
  28401. name: "Preferred Size",
  28402. height: math.unit(0.5, "miles"),
  28403. default: true
  28404. },
  28405. {
  28406. name: "Giga Horse",
  28407. height: math.unit(300, "miles")
  28408. },
  28409. {
  28410. name: "Riding Planets",
  28411. height: math.unit(30, "megameters")
  28412. },
  28413. {
  28414. name: "Cosmic Giant",
  28415. height: math.unit(3, "zettameters")
  28416. },
  28417. {
  28418. name: "Breeding God",
  28419. height: math.unit(9.92e22, "yottameters")
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28425. {
  28426. side: {
  28427. height: math.unit(9, "feet"),
  28428. weight: math.unit(1500, "kg"),
  28429. name: "Side",
  28430. image: {
  28431. source: "./media/characters/fang/side.svg",
  28432. extra: 924 / 866,
  28433. bottom: 47.5 / 972.3
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(9, "feet"),
  28441. default: true
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(75 + 6 / 12, "feet")
  28446. },
  28447. {
  28448. name: "Teramacro",
  28449. height: math.unit(50000, "miles")
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(10, "feet"),
  28458. weight: math.unit(2, "tons"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/rekhit/front.svg",
  28462. extra: 2796 / 2590,
  28463. bottom: 225 / 3022
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(10, "feet"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(500, "feet")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(7 + 6.451 / 12, "feet"),
  28484. weight: math.unit(310, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/dahlia-verrick/front.svg",
  28488. extra: 1488 / 1365,
  28489. bottom: 6.2 / 1495
  28490. }
  28491. },
  28492. back: {
  28493. height: math.unit(7 + 6.451 / 12, "feet"),
  28494. weight: math.unit(310, "lb"),
  28495. name: "Back",
  28496. image: {
  28497. source: "./media/characters/dahlia-verrick/back.svg",
  28498. extra: 1472 / 1351,
  28499. bottom: 5.28 / 1477
  28500. }
  28501. },
  28502. frontBusiness: {
  28503. height: math.unit(7 + 6.451 / 12, "feet"),
  28504. weight: math.unit(200, "lb"),
  28505. name: "Front (Business)",
  28506. image: {
  28507. source: "./media/characters/dahlia-verrick/front-business.svg",
  28508. extra: 1478 / 1381,
  28509. bottom: 5.5 / 1484
  28510. }
  28511. },
  28512. frontCasual: {
  28513. height: math.unit(7 + 6.451 / 12, "feet"),
  28514. weight: math.unit(200, "lb"),
  28515. name: "Front (Casual)",
  28516. image: {
  28517. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28518. extra: 1478 / 1381,
  28519. bottom: 5.5 / 1484
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Travel-Sized",
  28526. height: math.unit(7.45, "inches")
  28527. },
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(7 + 6.451 / 12, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Hitting the Town",
  28535. height: math.unit(37 + 8 / 12, "feet")
  28536. },
  28537. {
  28538. name: "Stomp in the Suburbs",
  28539. height: math.unit(964 + 9.728 / 12, "feet")
  28540. },
  28541. {
  28542. name: "Sit on the City",
  28543. height: math.unit(61747 + 10.592 / 12, "feet")
  28544. },
  28545. {
  28546. name: "Glomp the Globe",
  28547. height: math.unit(252919327 + 4.832 / 12, "feet")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(6 + 4 / 12, "feet"),
  28556. weight: math.unit(320, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/balina-mahigan/front.svg",
  28560. extra: 447 / 428,
  28561. bottom: 18 / 466
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(6 + 4 / 12, "feet"),
  28566. weight: math.unit(320, "lb"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/balina-mahigan/back.svg",
  28570. extra: 445 / 428,
  28571. bottom: 4.07 / 448
  28572. }
  28573. },
  28574. arm: {
  28575. height: math.unit(1.88, "feet"),
  28576. name: "Arm",
  28577. image: {
  28578. source: "./media/characters/balina-mahigan/arm.svg"
  28579. }
  28580. },
  28581. backPort: {
  28582. height: math.unit(0.685, "feet"),
  28583. name: "Back Port",
  28584. image: {
  28585. source: "./media/characters/balina-mahigan/back-port.svg"
  28586. }
  28587. },
  28588. hoofpaw: {
  28589. height: math.unit(1.41, "feet"),
  28590. name: "Hoofpaw",
  28591. image: {
  28592. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28593. }
  28594. },
  28595. leftHandBack: {
  28596. height: math.unit(0.938, "feet"),
  28597. name: "Left Hand (Back)",
  28598. image: {
  28599. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28600. }
  28601. },
  28602. leftHandFront: {
  28603. height: math.unit(0.938, "feet"),
  28604. name: "Left Hand (Front)",
  28605. image: {
  28606. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28607. }
  28608. },
  28609. rightHandBack: {
  28610. height: math.unit(0.95, "feet"),
  28611. name: "Right Hand (Back)",
  28612. image: {
  28613. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28614. }
  28615. },
  28616. rightHandFront: {
  28617. height: math.unit(0.95, "feet"),
  28618. name: "Right Hand (Front)",
  28619. image: {
  28620. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(6 + 4 / 12, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(6, "feet"),
  28637. weight: math.unit(320, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/balina-mejeri/front.svg",
  28641. extra: 517 / 488,
  28642. bottom: 44.2 / 561
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Normal",
  28649. height: math.unit(6 + 4 / 12, "feet")
  28650. },
  28651. {
  28652. name: "Business",
  28653. height: math.unit(155, "feet"),
  28654. default: true
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28660. {
  28661. kneeling: {
  28662. height: math.unit(6 + 4 / 12, "feet"),
  28663. weight: math.unit(300 * 20, "lb"),
  28664. name: "Kneeling",
  28665. image: {
  28666. source: "./media/characters/balbarian/kneeling.svg",
  28667. extra: 922 / 862,
  28668. bottom: 42.4 / 965
  28669. }
  28670. },
  28671. },
  28672. [
  28673. {
  28674. name: "Normal",
  28675. height: math.unit(6 + 4 / 12, "feet")
  28676. },
  28677. {
  28678. name: "Treasured",
  28679. height: math.unit(18 + 9 / 12, "feet"),
  28680. default: true
  28681. },
  28682. {
  28683. name: "Macro",
  28684. height: math.unit(900, "feet")
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28690. {
  28691. front: {
  28692. height: math.unit(6 + 4 / 12, "feet"),
  28693. weight: math.unit(325, "lb"),
  28694. name: "Front",
  28695. image: {
  28696. source: "./media/characters/balina-amarini/front.svg",
  28697. extra: 415 / 403,
  28698. bottom: 19 / 433.4
  28699. }
  28700. },
  28701. back: {
  28702. height: math.unit(6 + 4 / 12, "feet"),
  28703. weight: math.unit(325, "lb"),
  28704. name: "Back",
  28705. image: {
  28706. source: "./media/characters/balina-amarini/back.svg",
  28707. extra: 415 / 403,
  28708. bottom: 13.5 / 432
  28709. }
  28710. },
  28711. overdrive: {
  28712. height: math.unit(6 + 4 / 12, "feet"),
  28713. weight: math.unit(400, "lb"),
  28714. name: "Overdrive",
  28715. image: {
  28716. source: "./media/characters/balina-amarini/overdrive.svg",
  28717. extra: 269 / 259,
  28718. bottom: 12 / 282
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Boom",
  28725. height: math.unit(9 + 10 / 12, "feet"),
  28726. default: true
  28727. },
  28728. {
  28729. name: "Macro",
  28730. height: math.unit(280, "feet")
  28731. },
  28732. ]
  28733. ))
  28734. characterMakers.push(() => makeCharacter(
  28735. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28736. {
  28737. goddess: {
  28738. height: math.unit(600, "feet"),
  28739. weight: math.unit(2000000, "tons"),
  28740. name: "Goddess",
  28741. image: {
  28742. source: "./media/characters/lady-kubwa/goddess.svg",
  28743. extra: 1240.5 / 1223,
  28744. bottom: 22 / 1263
  28745. }
  28746. },
  28747. goddesser: {
  28748. height: math.unit(900, "feet"),
  28749. weight: math.unit(20000000, "lb"),
  28750. name: "Goddess-er",
  28751. image: {
  28752. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28753. extra: 899 / 888,
  28754. bottom: 12.6 / 912
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(600, "feet"),
  28762. default: true
  28763. },
  28764. {
  28765. name: "Megamacro",
  28766. height: math.unit(250, "miles")
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(7 + 7 / 12, "feet"),
  28775. weight: math.unit(250, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/tala-grovehorn/front.svg",
  28779. extra: 2636 / 2525,
  28780. bottom: 147 / 2781
  28781. }
  28782. },
  28783. back: {
  28784. height: math.unit(7 + 7 / 12, "feet"),
  28785. weight: math.unit(250, "lb"),
  28786. name: "Back",
  28787. image: {
  28788. source: "./media/characters/tala-grovehorn/back.svg",
  28789. extra: 2635 / 2539,
  28790. bottom: 100 / 2732.8
  28791. }
  28792. },
  28793. mouth: {
  28794. height: math.unit(1.15, "feet"),
  28795. name: "Mouth",
  28796. image: {
  28797. source: "./media/characters/tala-grovehorn/mouth.svg"
  28798. }
  28799. },
  28800. dick: {
  28801. height: math.unit(2.36, "feet"),
  28802. name: "Dick",
  28803. image: {
  28804. source: "./media/characters/tala-grovehorn/dick.svg"
  28805. }
  28806. },
  28807. slit: {
  28808. height: math.unit(0.61, "feet"),
  28809. name: "Slit",
  28810. image: {
  28811. source: "./media/characters/tala-grovehorn/slit.svg"
  28812. }
  28813. },
  28814. },
  28815. [
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(7 + 7 / 12, "feet"),
  28823. weight: math.unit(225, "lb"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/epona/front.svg",
  28827. extra: 2445 / 2290,
  28828. bottom: 251 / 2696
  28829. }
  28830. },
  28831. back: {
  28832. height: math.unit(7 + 7 / 12, "feet"),
  28833. weight: math.unit(225, "lb"),
  28834. name: "Back",
  28835. image: {
  28836. source: "./media/characters/epona/back.svg",
  28837. extra: 2546 / 2408,
  28838. bottom: 44 / 2589
  28839. }
  28840. },
  28841. genitals: {
  28842. height: math.unit(1.5, "feet"),
  28843. name: "Genitals",
  28844. image: {
  28845. source: "./media/characters/epona/genitals.svg"
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(7 + 7 / 12, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(7, "feet"),
  28862. weight: math.unit(518, "lb"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/avia-bloodbourn/front.svg",
  28866. extra: 1466 / 1350,
  28867. bottom: 65 / 1527
  28868. }
  28869. },
  28870. },
  28871. [
  28872. ]
  28873. ))
  28874. characterMakers.push(() => makeCharacter(
  28875. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28876. {
  28877. front: {
  28878. height: math.unit(9.35, "feet"),
  28879. weight: math.unit(600, "lb"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/amera/front.svg",
  28883. extra: 891 / 818,
  28884. bottom: 30 / 922.7
  28885. }
  28886. },
  28887. back: {
  28888. height: math.unit(9.35, "feet"),
  28889. weight: math.unit(600, "lb"),
  28890. name: "Back",
  28891. image: {
  28892. source: "./media/characters/amera/back.svg",
  28893. extra: 876 / 824,
  28894. bottom: 6.8 / 884
  28895. }
  28896. },
  28897. dick: {
  28898. height: math.unit(2.14, "feet"),
  28899. name: "Dick",
  28900. image: {
  28901. source: "./media/characters/amera/dick.svg"
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(9.35, "feet"),
  28909. default: true
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28915. {
  28916. kneeling: {
  28917. height: math.unit(3 + 4 / 12, "feet"),
  28918. weight: math.unit(90, "lb"),
  28919. name: "Kneeling",
  28920. image: {
  28921. source: "./media/characters/rosewen/kneeling.svg",
  28922. extra: 1835 / 1571,
  28923. bottom: 27.7 / 1862
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(3 + 4 / 12, "feet"),
  28931. default: true
  28932. },
  28933. ]
  28934. ))
  28935. characterMakers.push(() => makeCharacter(
  28936. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28937. {
  28938. front: {
  28939. height: math.unit(5 + 10 / 12, "feet"),
  28940. weight: math.unit(200, "lb"),
  28941. name: "Front",
  28942. image: {
  28943. source: "./media/characters/sabah/front.svg",
  28944. extra: 849 / 763,
  28945. bottom: 33.9 / 881
  28946. }
  28947. },
  28948. },
  28949. [
  28950. {
  28951. name: "Normal",
  28952. height: math.unit(5 + 10 / 12, "feet"),
  28953. default: true
  28954. },
  28955. ]
  28956. ))
  28957. characterMakers.push(() => makeCharacter(
  28958. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28959. {
  28960. front: {
  28961. height: math.unit(3 + 5 / 12, "feet"),
  28962. weight: math.unit(40, "kg"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/purple-flame/front.svg",
  28966. extra: 1577 / 1412,
  28967. bottom: 97 / 1694
  28968. }
  28969. },
  28970. frontDressed: {
  28971. height: math.unit(3 + 5 / 12, "feet"),
  28972. weight: math.unit(40, "kg"),
  28973. name: "Front (Dressed)",
  28974. image: {
  28975. source: "./media/characters/purple-flame/front-dressed.svg",
  28976. extra: 1577 / 1412,
  28977. bottom: 97 / 1694
  28978. }
  28979. },
  28980. headphones: {
  28981. height: math.unit(0.85, "feet"),
  28982. name: "Headphones",
  28983. image: {
  28984. source: "./media/characters/purple-flame/headphones.svg"
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Really Small",
  28991. height: math.unit(5, "cm")
  28992. },
  28993. {
  28994. name: "Micro",
  28995. height: math.unit(1 + 5 / 12, "feet")
  28996. },
  28997. {
  28998. name: "Normal",
  28999. height: math.unit(3 + 5 / 12, "feet"),
  29000. default: true
  29001. },
  29002. {
  29003. name: "Minimacro",
  29004. height: math.unit(125, "feet")
  29005. },
  29006. {
  29007. name: "Macro",
  29008. height: math.unit(0.5, "miles")
  29009. },
  29010. {
  29011. name: "Megamacro",
  29012. height: math.unit(50, "miles")
  29013. },
  29014. {
  29015. name: "Gigantic",
  29016. height: math.unit(750, "miles")
  29017. },
  29018. {
  29019. name: "Planetary",
  29020. height: math.unit(15000, "miles")
  29021. },
  29022. ]
  29023. ))
  29024. characterMakers.push(() => makeCharacter(
  29025. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29026. {
  29027. front: {
  29028. height: math.unit(14, "feet"),
  29029. weight: math.unit(959, "lb"),
  29030. name: "Front",
  29031. image: {
  29032. source: "./media/characters/arsenal/front.svg",
  29033. extra: 2357 / 2157,
  29034. bottom: 93 / 2458
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(14, "feet"),
  29042. default: true
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(6, "feet"),
  29051. weight: math.unit(150, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/adira/front.svg",
  29055. extra: 1078 / 1029,
  29056. bottom: 87 / 1166
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Micro",
  29063. height: math.unit(4, "inches"),
  29064. default: true
  29065. },
  29066. {
  29067. name: "Macro",
  29068. height: math.unit(50, "feet")
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(16, "feet"),
  29077. weight: math.unit(1000, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/grim/front.svg",
  29081. extra: 622 / 614,
  29082. bottom: 18.1 / 642
  29083. }
  29084. },
  29085. back: {
  29086. height: math.unit(16, "feet"),
  29087. weight: math.unit(1000, "lb"),
  29088. name: "Back",
  29089. image: {
  29090. source: "./media/characters/grim/back.svg",
  29091. extra: 610.6 / 602,
  29092. bottom: 40.8 / 652
  29093. }
  29094. },
  29095. hunched: {
  29096. height: math.unit(9.75, "feet"),
  29097. weight: math.unit(1000, "lb"),
  29098. name: "Hunched",
  29099. image: {
  29100. source: "./media/characters/grim/hunched.svg",
  29101. extra: 304 / 297,
  29102. bottom: 35.4 / 394
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(16, "feet"),
  29110. default: true
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29116. {
  29117. front: {
  29118. height: math.unit(2.3, "meters"),
  29119. weight: math.unit(300, "lb"),
  29120. name: "Front",
  29121. image: {
  29122. source: "./media/characters/sinja/front-sfw.svg",
  29123. extra: 1393 / 1294,
  29124. bottom: 70 / 1463
  29125. }
  29126. },
  29127. frontNsfw: {
  29128. height: math.unit(2.3, "meters"),
  29129. weight: math.unit(300, "lb"),
  29130. name: "Front (NSFW)",
  29131. image: {
  29132. source: "./media/characters/sinja/front-nsfw.svg",
  29133. extra: 1393 / 1294,
  29134. bottom: 70 / 1463
  29135. }
  29136. },
  29137. back: {
  29138. height: math.unit(2.3, "meters"),
  29139. weight: math.unit(300, "lb"),
  29140. name: "Back",
  29141. image: {
  29142. source: "./media/characters/sinja/back.svg",
  29143. extra: 1393 / 1294,
  29144. bottom: 70 / 1463
  29145. }
  29146. },
  29147. head: {
  29148. height: math.unit(1.771, "feet"),
  29149. name: "Head",
  29150. image: {
  29151. source: "./media/characters/sinja/head.svg"
  29152. }
  29153. },
  29154. slit: {
  29155. height: math.unit(0.8, "feet"),
  29156. name: "Slit",
  29157. image: {
  29158. source: "./media/characters/sinja/slit.svg"
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Normal",
  29165. height: math.unit(2.3, "meters")
  29166. },
  29167. {
  29168. name: "Macro",
  29169. height: math.unit(91, "meters"),
  29170. default: true
  29171. },
  29172. {
  29173. name: "Megamacro",
  29174. height: math.unit(91440, "meters")
  29175. },
  29176. {
  29177. name: "Gigamacro",
  29178. height: math.unit(60960000, "meters")
  29179. },
  29180. {
  29181. name: "Teramacro",
  29182. height: math.unit(9144000000, "meters")
  29183. },
  29184. ]
  29185. ))
  29186. characterMakers.push(() => makeCharacter(
  29187. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29188. {
  29189. front: {
  29190. height: math.unit(1.7, "meters"),
  29191. weight: math.unit(130, "lb"),
  29192. name: "Front",
  29193. image: {
  29194. source: "./media/characters/kyu/front.svg",
  29195. extra: 415 / 395,
  29196. bottom: 5 / 420
  29197. }
  29198. },
  29199. head: {
  29200. height: math.unit(1.75, "feet"),
  29201. name: "Head",
  29202. image: {
  29203. source: "./media/characters/kyu/head.svg"
  29204. }
  29205. },
  29206. foot: {
  29207. height: math.unit(0.81, "feet"),
  29208. name: "Foot",
  29209. image: {
  29210. source: "./media/characters/kyu/foot.svg"
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(1.7, "meters")
  29218. },
  29219. {
  29220. name: "Macro",
  29221. height: math.unit(131, "feet"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Megamacro",
  29226. height: math.unit(91440, "meters")
  29227. },
  29228. {
  29229. name: "Gigamacro",
  29230. height: math.unit(60960000, "meters")
  29231. },
  29232. {
  29233. name: "Teramacro",
  29234. height: math.unit(9144000000, "meters")
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(7 + 1 / 12, "feet"),
  29243. weight: math.unit(250, "lb"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/joey/front.svg",
  29247. extra: 1791 / 1537,
  29248. bottom: 28 / 1816
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Micro",
  29255. height: math.unit(3, "inches")
  29256. },
  29257. {
  29258. name: "Normal",
  29259. height: math.unit(7 + 1 / 12, "feet"),
  29260. default: true
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29266. {
  29267. front: {
  29268. height: math.unit(165, "cm"),
  29269. weight: math.unit(140, "lb"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/sam-evans/front.svg",
  29273. extra: 3417 / 3230,
  29274. bottom: 41.3 / 3417
  29275. }
  29276. },
  29277. frontSixTails: {
  29278. height: math.unit(165, "cm"),
  29279. weight: math.unit(140, "lb"),
  29280. name: "Front-six-tails",
  29281. image: {
  29282. source: "./media/characters/sam-evans/front-six-tails.svg",
  29283. extra: 3417 / 3230,
  29284. bottom: 41.3 / 3417
  29285. }
  29286. },
  29287. back: {
  29288. height: math.unit(165, "cm"),
  29289. weight: math.unit(140, "lb"),
  29290. name: "Back",
  29291. image: {
  29292. source: "./media/characters/sam-evans/back.svg",
  29293. extra: 3227 / 3032,
  29294. bottom: 6.8 / 3234
  29295. }
  29296. },
  29297. face: {
  29298. height: math.unit(0.68, "feet"),
  29299. name: "Face",
  29300. image: {
  29301. source: "./media/characters/sam-evans/face.svg"
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(165, "cm"),
  29309. default: true
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(100, "meters")
  29314. },
  29315. {
  29316. name: "Macro+",
  29317. height: math.unit(800, "meters")
  29318. },
  29319. {
  29320. name: "Macro++",
  29321. height: math.unit(3, "km")
  29322. },
  29323. {
  29324. name: "Macro+++",
  29325. height: math.unit(30, "km")
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(10, "feet"),
  29334. weight: math.unit(750, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/juliet-a/front.svg",
  29338. extra: 1766 / 1720,
  29339. bottom: 43 / 1809
  29340. }
  29341. },
  29342. back: {
  29343. height: math.unit(10, "feet"),
  29344. weight: math.unit(750, "lb"),
  29345. name: "Back",
  29346. image: {
  29347. source: "./media/characters/juliet-a/back.svg",
  29348. extra: 1781 / 1734,
  29349. bottom: 35 / 1810,
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(10, "feet"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Dragon Form",
  29361. height: math.unit(250, "feet")
  29362. },
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(1000, "feet")
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(10000, "feet")
  29370. }
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29375. {
  29376. regular: {
  29377. height: math.unit(7 + 3 / 12, "feet"),
  29378. weight: math.unit(260, "lb"),
  29379. name: "Regular",
  29380. image: {
  29381. source: "./media/characters/wild/regular.svg",
  29382. extra: 97.45 / 92,
  29383. bottom: 6.8 / 104.3
  29384. }
  29385. },
  29386. biggums: {
  29387. height: math.unit(8 + 6 / 12, "feet"),
  29388. weight: math.unit(425, "lb"),
  29389. name: "Biggums",
  29390. image: {
  29391. source: "./media/characters/wild/biggums.svg",
  29392. extra: 97.45 / 92,
  29393. bottom: 7.5 / 132.34
  29394. }
  29395. },
  29396. mawRegular: {
  29397. height: math.unit(1.24, "feet"),
  29398. name: "Maw (Regular)",
  29399. image: {
  29400. source: "./media/characters/wild/maw.svg"
  29401. }
  29402. },
  29403. mawBiggums: {
  29404. height: math.unit(1.47, "feet"),
  29405. name: "Maw (Biggums)",
  29406. image: {
  29407. source: "./media/characters/wild/maw.svg"
  29408. }
  29409. },
  29410. },
  29411. [
  29412. {
  29413. name: "Normal",
  29414. height: math.unit(7 + 3 / 12, "feet"),
  29415. default: true
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29421. {
  29422. front: {
  29423. height: math.unit(2.5, "meters"),
  29424. weight: math.unit(200, "kg"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/vidar/front.svg",
  29428. extra: 2994 / 2795,
  29429. bottom: 56 / 3061
  29430. }
  29431. },
  29432. back: {
  29433. height: math.unit(2.5, "meters"),
  29434. weight: math.unit(200, "kg"),
  29435. name: "Back",
  29436. image: {
  29437. source: "./media/characters/vidar/back.svg",
  29438. extra: 3131 / 2928,
  29439. bottom: 13.5 / 3141.5
  29440. }
  29441. },
  29442. feral: {
  29443. height: math.unit(2.5, "meters"),
  29444. weight: math.unit(2000, "kg"),
  29445. name: "Feral",
  29446. image: {
  29447. source: "./media/characters/vidar/feral.svg",
  29448. extra: 2790 / 1765,
  29449. bottom: 6 / 2796
  29450. }
  29451. },
  29452. },
  29453. [
  29454. {
  29455. name: "Normal",
  29456. height: math.unit(2.5, "meters"),
  29457. default: true
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(100, "meters")
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(5 + 9 / 12, "feet"),
  29470. weight: math.unit(120, "lb"),
  29471. name: "Front",
  29472. image: {
  29473. source: "./media/characters/ash/front.svg",
  29474. extra: 2189 / 1961,
  29475. bottom: 5.2 / 2194
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Normal",
  29482. height: math.unit(5 + 9 / 12, "feet"),
  29483. default: true
  29484. },
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29489. {
  29490. front: {
  29491. height: math.unit(9, "feet"),
  29492. weight: math.unit(10000, "lb"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/gygabite/front.svg",
  29496. bottom: 31.7 / 537.8,
  29497. extra: 505 / 370
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Normal",
  29504. height: math.unit(9, "feet"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(12, "feet"),
  29514. weight: math.unit(4000, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/p0tat0/front.svg",
  29518. extra: 1065 / 921,
  29519. bottom: 55.7 / 1121.25
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Normal",
  29526. height: math.unit(12, "feet"),
  29527. default: true
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29533. {
  29534. side: {
  29535. height: math.unit(6.5, "feet"),
  29536. weight: math.unit(800, "lb"),
  29537. name: "Side",
  29538. image: {
  29539. source: "./media/characters/dusk/side.svg",
  29540. extra: 615 / 373,
  29541. bottom: 53 / 664
  29542. }
  29543. },
  29544. sitting: {
  29545. height: math.unit(7, "feet"),
  29546. weight: math.unit(800, "lb"),
  29547. name: "Sitting",
  29548. image: {
  29549. source: "./media/characters/dusk/sitting.svg",
  29550. extra: 753 / 425,
  29551. bottom: 33 / 774
  29552. }
  29553. },
  29554. head: {
  29555. height: math.unit(6.1, "feet"),
  29556. name: "Head",
  29557. image: {
  29558. source: "./media/characters/dusk/head.svg"
  29559. }
  29560. },
  29561. },
  29562. [
  29563. {
  29564. name: "Normal",
  29565. height: math.unit(7, "feet"),
  29566. default: true
  29567. },
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(15, "feet"),
  29575. weight: math.unit(7000, "lb"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/jay-direwolf/front.svg",
  29579. extra: 1810 / 1732,
  29580. bottom: 66 / 1892
  29581. }
  29582. },
  29583. },
  29584. [
  29585. {
  29586. name: "Normal",
  29587. height: math.unit(15, "feet"),
  29588. default: true
  29589. },
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(4 + 9 / 12, "feet"),
  29597. weight: math.unit(130, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/anchovie/front.svg",
  29601. extra: 382 / 350,
  29602. bottom: 25 / 409
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(4 + 9 / 12, "feet"),
  29607. weight: math.unit(130, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/anchovie/back.svg",
  29611. extra: 385 / 352,
  29612. bottom: 16.6 / 402
  29613. }
  29614. },
  29615. frontDressed: {
  29616. height: math.unit(4 + 9 / 12, "feet"),
  29617. weight: math.unit(130, "lb"),
  29618. name: "Front (Dressed)",
  29619. image: {
  29620. source: "./media/characters/anchovie/front-dressed.svg",
  29621. extra: 382 / 350,
  29622. bottom: 25 / 409
  29623. }
  29624. },
  29625. backDressed: {
  29626. height: math.unit(4 + 9 / 12, "feet"),
  29627. weight: math.unit(130, "lb"),
  29628. name: "Back (Dressed)",
  29629. image: {
  29630. source: "./media/characters/anchovie/back-dressed.svg",
  29631. extra: 385 / 352,
  29632. bottom: 16.6 / 402
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Micro",
  29639. height: math.unit(6.4, "inches")
  29640. },
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(4 + 9 / 12, "feet"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(2, "meters"),
  29653. weight: math.unit(180, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/acidrenamon/front.svg",
  29657. extra: 987 / 890,
  29658. bottom: 22.8 / 1009
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(2, "meters"),
  29663. weight: math.unit(180, "lb"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/acidrenamon/back.svg",
  29667. extra: 983 / 891,
  29668. bottom: 8.4 / 992
  29669. }
  29670. },
  29671. head: {
  29672. height: math.unit(1.92, "feet"),
  29673. name: "Head",
  29674. image: {
  29675. source: "./media/characters/acidrenamon/head.svg"
  29676. }
  29677. },
  29678. rump: {
  29679. height: math.unit(1.72, "feet"),
  29680. name: "Rump",
  29681. image: {
  29682. source: "./media/characters/acidrenamon/rump.svg"
  29683. }
  29684. },
  29685. tail: {
  29686. height: math.unit(4.2, "feet"),
  29687. name: "Tail",
  29688. image: {
  29689. source: "./media/characters/acidrenamon/tail.svg"
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(2, "meters"),
  29697. default: true
  29698. },
  29699. {
  29700. name: "Minimacro",
  29701. height: math.unit(7, "meters")
  29702. },
  29703. {
  29704. name: "Macro",
  29705. height: math.unit(200, "meters")
  29706. },
  29707. {
  29708. name: "Gigamacro",
  29709. height: math.unit(0.2, "earths")
  29710. },
  29711. ]
  29712. ))
  29713. characterMakers.push(() => makeCharacter(
  29714. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29715. {
  29716. front: {
  29717. height: math.unit(152, "feet"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/kenzie-lee/front.svg",
  29721. extra: 1869/1774,
  29722. bottom: 128/1997
  29723. }
  29724. },
  29725. side: {
  29726. height: math.unit(86, "feet"),
  29727. name: "Side",
  29728. image: {
  29729. source: "./media/characters/kenzie-lee/side.svg",
  29730. extra: 930/815,
  29731. bottom: 177/1107
  29732. }
  29733. },
  29734. paw: {
  29735. height: math.unit(15, "feet"),
  29736. name: "Paw",
  29737. image: {
  29738. source: "./media/characters/kenzie-lee/paw.svg"
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Kenzie Flea",
  29745. height: math.unit(2, "mm"),
  29746. default: true
  29747. },
  29748. {
  29749. name: "Micro",
  29750. height: math.unit(2, "inches")
  29751. },
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(152, "feet")
  29755. },
  29756. {
  29757. name: "Megamacro",
  29758. height: math.unit(7, "miles")
  29759. },
  29760. {
  29761. name: "Gigamacro",
  29762. height: math.unit(8000, "miles")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(6, "feet"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/withers/front.svg",
  29774. extra: 1935/1760,
  29775. bottom: 72/2007
  29776. }
  29777. },
  29778. back: {
  29779. height: math.unit(6, "feet"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/withers/back.svg",
  29783. extra: 1944/1792,
  29784. bottom: 12/1956
  29785. }
  29786. },
  29787. dressed: {
  29788. height: math.unit(6, "feet"),
  29789. name: "Dressed",
  29790. image: {
  29791. source: "./media/characters/withers/dressed.svg",
  29792. extra: 1937/1765,
  29793. bottom: 73/2010
  29794. }
  29795. },
  29796. phase1: {
  29797. height: math.unit(1.1, "feet"),
  29798. name: "Phase 1",
  29799. image: {
  29800. source: "./media/characters/withers/phase-1.svg",
  29801. extra: 1885/1232,
  29802. bottom: 0/1885
  29803. }
  29804. },
  29805. phase2: {
  29806. height: math.unit(1.05, "feet"),
  29807. name: "Phase 2",
  29808. image: {
  29809. source: "./media/characters/withers/phase-2.svg",
  29810. extra: 1792/1090,
  29811. bottom: 0/1792
  29812. }
  29813. },
  29814. partyWipe: {
  29815. height: math.unit(1.1, "feet"),
  29816. name: "Party Wipe",
  29817. image: {
  29818. source: "./media/characters/withers/party-wipe.svg",
  29819. extra: 1864/1207,
  29820. bottom: 0/1864
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Macro",
  29827. height: math.unit(167, "feet"),
  29828. default: true
  29829. },
  29830. {
  29831. name: "Megamacro",
  29832. height: math.unit(15, "miles")
  29833. }
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(6 + 7 / 12, "feet"),
  29841. weight: math.unit(250, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/nemoskii/front.svg",
  29845. extra: 2270 / 1734,
  29846. bottom: 86 / 2354
  29847. }
  29848. },
  29849. back: {
  29850. height: math.unit(6 + 7 / 12, "feet"),
  29851. weight: math.unit(250, "lb"),
  29852. name: "Back",
  29853. image: {
  29854. source: "./media/characters/nemoskii/back.svg",
  29855. extra: 1845 / 1788,
  29856. bottom: 10.5 / 1852
  29857. }
  29858. },
  29859. head: {
  29860. height: math.unit(1.31, "feet"),
  29861. name: "Head",
  29862. image: {
  29863. source: "./media/characters/nemoskii/head.svg"
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Micro",
  29870. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29871. },
  29872. {
  29873. name: "Normal",
  29874. height: math.unit(6 + 7 / 12, "feet"),
  29875. default: true
  29876. },
  29877. {
  29878. name: "Macro",
  29879. height: math.unit((6 + 7 / 12) * 150, "feet")
  29880. },
  29881. {
  29882. name: "Macro+",
  29883. height: math.unit((6 + 7 / 12) * 500, "feet")
  29884. },
  29885. {
  29886. name: "Megamacro",
  29887. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29893. {
  29894. front: {
  29895. height: math.unit(1, "mile"),
  29896. weight: math.unit(265261.9, "lb"),
  29897. name: "Front",
  29898. image: {
  29899. source: "./media/characters/shui/front.svg",
  29900. extra: 1633 / 1564,
  29901. bottom: 91.5 / 1726
  29902. }
  29903. },
  29904. },
  29905. [
  29906. {
  29907. name: "Macro",
  29908. height: math.unit(1, "mile"),
  29909. default: true
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(12 + 6 / 12, "feet"),
  29918. weight: math.unit(1342, "lb"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/arokh-takakura/front.svg",
  29922. extra: 1089 / 1043,
  29923. bottom: 77.4 / 1176.7
  29924. }
  29925. },
  29926. back: {
  29927. height: math.unit(12 + 6 / 12, "feet"),
  29928. weight: math.unit(1342, "lb"),
  29929. name: "Back",
  29930. image: {
  29931. source: "./media/characters/arokh-takakura/back.svg",
  29932. extra: 1046 / 1019,
  29933. bottom: 102 / 1150
  29934. }
  29935. },
  29936. },
  29937. [
  29938. {
  29939. name: "Big",
  29940. height: math.unit(12 + 6 / 12, "feet"),
  29941. default: true
  29942. },
  29943. ]
  29944. ))
  29945. characterMakers.push(() => makeCharacter(
  29946. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29947. {
  29948. front: {
  29949. height: math.unit(5 + 6 / 12, "feet"),
  29950. weight: math.unit(150, "lb"),
  29951. name: "Front",
  29952. image: {
  29953. source: "./media/characters/theo/front.svg",
  29954. extra: 1184 / 1131,
  29955. bottom: 7.4 / 1191
  29956. }
  29957. },
  29958. },
  29959. [
  29960. {
  29961. name: "Micro",
  29962. height: math.unit(5, "inches")
  29963. },
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(5 + 6 / 12, "feet"),
  29967. default: true
  29968. },
  29969. ]
  29970. ))
  29971. characterMakers.push(() => makeCharacter(
  29972. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29973. {
  29974. front: {
  29975. height: math.unit(5 + 9 / 12, "feet"),
  29976. weight: math.unit(130, "lb"),
  29977. name: "Front",
  29978. image: {
  29979. source: "./media/characters/cecelia-swift/front.svg",
  29980. extra: 502 / 484,
  29981. bottom: 23 / 523
  29982. }
  29983. },
  29984. back: {
  29985. height: math.unit(5 + 9 / 12, "feet"),
  29986. weight: math.unit(130, "lb"),
  29987. name: "Back",
  29988. image: {
  29989. source: "./media/characters/cecelia-swift/back.svg",
  29990. extra: 499 / 485,
  29991. bottom: 12 / 511
  29992. }
  29993. },
  29994. head: {
  29995. height: math.unit(0.90, "feet"),
  29996. name: "Head",
  29997. image: {
  29998. source: "./media/characters/cecelia-swift/head.svg"
  29999. }
  30000. },
  30001. rump: {
  30002. height: math.unit(1.75, "feet"),
  30003. name: "Rump",
  30004. image: {
  30005. source: "./media/characters/cecelia-swift/rump.svg"
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(5 + 9 / 12, "feet"),
  30013. default: true
  30014. },
  30015. {
  30016. name: "Big",
  30017. height: math.unit(50, "feet")
  30018. },
  30019. {
  30020. name: "Macro",
  30021. height: math.unit(100, "feet")
  30022. },
  30023. {
  30024. name: "Macro+",
  30025. height: math.unit(500, "feet")
  30026. },
  30027. {
  30028. name: "Macro++",
  30029. height: math.unit(1000, "feet")
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(6, "feet"),
  30038. weight: math.unit(150, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/kaunan/front.svg",
  30042. extra: 2890 / 2523,
  30043. bottom: 49 / 2939
  30044. }
  30045. },
  30046. },
  30047. [
  30048. {
  30049. name: "Macro",
  30050. height: math.unit(150, "feet"),
  30051. default: true
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30057. {
  30058. dressed: {
  30059. height: math.unit(175, "cm"),
  30060. weight: math.unit(60, "kg"),
  30061. name: "Dressed",
  30062. image: {
  30063. source: "./media/characters/fei/dressed.svg",
  30064. extra: 1402/1278,
  30065. bottom: 27/1429
  30066. }
  30067. },
  30068. nude: {
  30069. height: math.unit(175, "cm"),
  30070. weight: math.unit(60, "kg"),
  30071. name: "Nude",
  30072. image: {
  30073. source: "./media/characters/fei/nude.svg",
  30074. extra: 1402/1278,
  30075. bottom: 27/1429
  30076. }
  30077. },
  30078. heels: {
  30079. height: math.unit(0.466, "feet"),
  30080. name: "Heels",
  30081. image: {
  30082. source: "./media/characters/fei/heels.svg",
  30083. extra: 156/152,
  30084. bottom: 28/184
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Mortal",
  30091. height: math.unit(175, "cm")
  30092. },
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(3500, "m")
  30096. },
  30097. {
  30098. name: "Stroll",
  30099. height: math.unit(18.4, "km"),
  30100. default: true
  30101. },
  30102. {
  30103. name: "Showoff",
  30104. height: math.unit(175, "km")
  30105. },
  30106. ]
  30107. ))
  30108. characterMakers.push(() => makeCharacter(
  30109. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30110. {
  30111. front: {
  30112. height: math.unit(7, "feet"),
  30113. weight: math.unit(1000, "kg"),
  30114. name: "Front",
  30115. image: {
  30116. source: "./media/characters/edrax/front.svg",
  30117. extra: 2838 / 2550,
  30118. bottom: 130 / 2968
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Small",
  30125. height: math.unit(7, "feet")
  30126. },
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(1500, "meters")
  30130. },
  30131. {
  30132. name: "Mega",
  30133. height: math.unit(12000000, "km"),
  30134. default: true
  30135. },
  30136. {
  30137. name: "Megamacro",
  30138. height: math.unit(10600000, "lightyears")
  30139. },
  30140. {
  30141. name: "Hypermacro",
  30142. height: math.unit(256, "yottameters")
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(10, "feet"),
  30151. weight: math.unit(750, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/clove/front.svg",
  30155. extra: 1918/1751,
  30156. bottom: 52/1970
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(10, "feet"),
  30161. weight: math.unit(750, "lb"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/clove/back.svg",
  30165. extra: 1912/1747,
  30166. bottom: 50/1962
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(10, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(4, "feet"),
  30183. weight: math.unit(50, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/alex-rabbit/front.svg",
  30187. extra: 507 / 458,
  30188. bottom: 18.5 / 527
  30189. }
  30190. },
  30191. back: {
  30192. height: math.unit(4, "feet"),
  30193. weight: math.unit(50, "lb"),
  30194. name: "Back",
  30195. image: {
  30196. source: "./media/characters/alex-rabbit/back.svg",
  30197. extra: 502 / 460,
  30198. bottom: 18.9 / 521
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(4, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(1 + 3 / 12, "feet"),
  30215. weight: math.unit(80, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/zander-rose/front.svg",
  30219. extra: 916 / 797,
  30220. bottom: 17 / 933
  30221. }
  30222. },
  30223. back: {
  30224. height: math.unit(1 + 3 / 12, "feet"),
  30225. weight: math.unit(80, "lb"),
  30226. name: "Back",
  30227. image: {
  30228. source: "./media/characters/zander-rose/back.svg",
  30229. extra: 903 / 779,
  30230. bottom: 31 / 934
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(1 + 3 / 12, "feet"),
  30238. default: true
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30244. {
  30245. anthro: {
  30246. height: math.unit(6, "feet"),
  30247. weight: math.unit(150, "lb"),
  30248. name: "Anthro",
  30249. image: {
  30250. source: "./media/characters/razz/anthro.svg",
  30251. extra: 1437 / 1343,
  30252. bottom: 48 / 1485
  30253. }
  30254. },
  30255. feral: {
  30256. height: math.unit(6, "feet"),
  30257. weight: math.unit(150, "lb"),
  30258. name: "Feral",
  30259. image: {
  30260. source: "./media/characters/razz/feral.svg",
  30261. extra: 2569 / 1385,
  30262. bottom: 95 / 2664
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Normal",
  30269. height: math.unit(6, "feet"),
  30270. default: true
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(9 + 4 / 12, "feet"),
  30279. weight: math.unit(500, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/morrigan/front.svg",
  30283. extra: 2707 / 2579,
  30284. bottom: 156 / 2863
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Normal",
  30291. height: math.unit(9 + 4 / 12, "feet"),
  30292. default: true
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30298. {
  30299. front: {
  30300. height: math.unit(5, "stories"),
  30301. weight: math.unit(4000, "lb"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/jenene/front.svg",
  30305. extra: 1780 / 1710,
  30306. bottom: 57 / 1837
  30307. }
  30308. },
  30309. },
  30310. [
  30311. {
  30312. name: "Normal",
  30313. height: math.unit(5, "stories"),
  30314. default: true
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30320. {
  30321. taurSfw: {
  30322. height: math.unit(10, "meters"),
  30323. weight: math.unit(17500, "kg"),
  30324. name: "Taur",
  30325. image: {
  30326. source: "./media/characters/faey/taur-sfw.svg",
  30327. extra: 1200 / 968,
  30328. bottom: 41 / 1241
  30329. }
  30330. },
  30331. chestmaw: {
  30332. height: math.unit(2.01, "meters"),
  30333. name: "Chestmaw",
  30334. image: {
  30335. source: "./media/characters/faey/chestmaw.svg"
  30336. }
  30337. },
  30338. foot: {
  30339. height: math.unit(2.43, "meters"),
  30340. name: "Foot",
  30341. image: {
  30342. source: "./media/characters/faey/foot.svg"
  30343. }
  30344. },
  30345. jaws: {
  30346. height: math.unit(1.66, "meters"),
  30347. name: "Jaws",
  30348. image: {
  30349. source: "./media/characters/faey/jaws.svg"
  30350. }
  30351. },
  30352. tongues: {
  30353. height: math.unit(2.01, "meters"),
  30354. name: "Tongues",
  30355. image: {
  30356. source: "./media/characters/faey/tongues.svg"
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Small",
  30363. height: math.unit(10, "meters"),
  30364. default: true
  30365. },
  30366. {
  30367. name: "Big",
  30368. height: math.unit(500000, "km")
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(7, "feet"),
  30377. weight: math.unit(275, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/roku/front.svg",
  30381. extra: 903 / 878,
  30382. bottom: 37 / 940
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(7, "feet"),
  30390. default: true
  30391. },
  30392. {
  30393. name: "Macro",
  30394. height: math.unit(500, "feet")
  30395. },
  30396. {
  30397. name: "Megamacro",
  30398. height: math.unit(200, "miles")
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30404. {
  30405. front: {
  30406. height: math.unit(6 + 2 / 12, "feet"),
  30407. weight: math.unit(150, "lb"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/lira/front.svg",
  30411. extra: 1727 / 1605,
  30412. bottom: 26 / 1753
  30413. }
  30414. },
  30415. back: {
  30416. height: math.unit(6 + 2 / 12, "feet"),
  30417. weight: math.unit(150, "lb"),
  30418. name: "Back",
  30419. image: {
  30420. source: "./media/characters/lira/back.svg",
  30421. extra: 1713/1621,
  30422. bottom: 20/1733
  30423. }
  30424. },
  30425. hand: {
  30426. height: math.unit(0.75, "feet"),
  30427. name: "Hand",
  30428. image: {
  30429. source: "./media/characters/lira/hand.svg"
  30430. }
  30431. },
  30432. maw: {
  30433. height: math.unit(0.65, "feet"),
  30434. name: "Maw",
  30435. image: {
  30436. source: "./media/characters/lira/maw.svg"
  30437. }
  30438. },
  30439. pawDigi: {
  30440. height: math.unit(1.6, "feet"),
  30441. name: "Paw Digi",
  30442. image: {
  30443. source: "./media/characters/lira/paw-digi.svg"
  30444. }
  30445. },
  30446. pawPlanti: {
  30447. height: math.unit(1.4, "feet"),
  30448. name: "Paw Planti",
  30449. image: {
  30450. source: "./media/characters/lira/paw-planti.svg"
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(6 + 2 / 12, "feet"),
  30458. default: true
  30459. },
  30460. {
  30461. name: "Macro",
  30462. height: math.unit(100, "feet")
  30463. },
  30464. {
  30465. name: "Macro²",
  30466. height: math.unit(1600, "feet")
  30467. },
  30468. {
  30469. name: "Planetary",
  30470. height: math.unit(20, "earths")
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(6, "feet"),
  30479. weight: math.unit(150, "lb"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/hadjet/front.svg",
  30483. extra: 1480 / 1346,
  30484. bottom: 26 / 1506
  30485. }
  30486. },
  30487. frontNsfw: {
  30488. height: math.unit(6, "feet"),
  30489. weight: math.unit(150, "lb"),
  30490. name: "Front (NSFW)",
  30491. image: {
  30492. source: "./media/characters/hadjet/front-nsfw.svg",
  30493. extra: 1440 / 1358,
  30494. bottom: 52 / 1492
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Macro",
  30501. height: math.unit(10, "stories"),
  30502. default: true
  30503. },
  30504. {
  30505. name: "Megamacro",
  30506. height: math.unit(1.5, "miles")
  30507. },
  30508. {
  30509. name: "Megamacro+",
  30510. height: math.unit(5, "miles")
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30516. {
  30517. side: {
  30518. height: math.unit(106, "feet"),
  30519. weight: math.unit(500, "tonnes"),
  30520. name: "Side",
  30521. image: {
  30522. source: "./media/characters/kodran/side.svg",
  30523. extra: 553 / 480,
  30524. bottom: 33 / 586
  30525. }
  30526. },
  30527. front: {
  30528. height: math.unit(132, "feet"),
  30529. weight: math.unit(500, "tonnes"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/kodran/front.svg",
  30533. extra: 667 / 643,
  30534. bottom: 42 / 709
  30535. }
  30536. },
  30537. flying: {
  30538. height: math.unit(350, "feet"),
  30539. weight: math.unit(500, "tonnes"),
  30540. name: "Flying",
  30541. image: {
  30542. source: "./media/characters/kodran/flying.svg"
  30543. }
  30544. },
  30545. foot: {
  30546. height: math.unit(33, "feet"),
  30547. name: "Foot",
  30548. image: {
  30549. source: "./media/characters/kodran/foot.svg"
  30550. }
  30551. },
  30552. footFront: {
  30553. height: math.unit(19, "feet"),
  30554. name: "Foot (Front)",
  30555. image: {
  30556. source: "./media/characters/kodran/foot-front.svg",
  30557. extra: 261 / 261,
  30558. bottom: 91 / 352
  30559. }
  30560. },
  30561. headFront: {
  30562. height: math.unit(53, "feet"),
  30563. name: "Head (Front)",
  30564. image: {
  30565. source: "./media/characters/kodran/head-front.svg"
  30566. }
  30567. },
  30568. headSide: {
  30569. height: math.unit(65, "feet"),
  30570. name: "Head (Side)",
  30571. image: {
  30572. source: "./media/characters/kodran/head-side.svg"
  30573. }
  30574. },
  30575. throat: {
  30576. height: math.unit(79, "feet"),
  30577. name: "Throat",
  30578. image: {
  30579. source: "./media/characters/kodran/throat.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Large",
  30586. height: math.unit(106, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30593. {
  30594. side: {
  30595. height: math.unit(11, "feet"),
  30596. weight: math.unit(150, "lb"),
  30597. name: "Side",
  30598. image: {
  30599. source: "./media/characters/pyxaron/side.svg",
  30600. extra: 305 / 195,
  30601. bottom: 17 / 322
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(11, "feet"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(6, "feet"),
  30618. weight: math.unit(150, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/meep/front.svg",
  30622. extra: 88 / 80,
  30623. bottom: 6 / 94
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Fun Sized",
  30630. height: math.unit(2, "inches"),
  30631. default: true
  30632. },
  30633. {
  30634. name: "Friend Sized",
  30635. height: math.unit(8, "inches")
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(15, "feet"),
  30644. weight: math.unit(2500, "lb"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/holly-rabbit/front.svg",
  30648. extra: 1433 / 1233,
  30649. bottom: 125 / 1558
  30650. }
  30651. },
  30652. dick: {
  30653. height: math.unit(4.6, "feet"),
  30654. name: "Dick",
  30655. image: {
  30656. source: "./media/characters/holly-rabbit/dick.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(15, "feet"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "Macro",
  30668. height: math.unit(250, "feet")
  30669. },
  30670. {
  30671. name: "Macro+",
  30672. height: math.unit(2500, "feet")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(3.02, "meters"),
  30681. weight: math.unit(500, "kg"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/drena/front.svg",
  30685. extra: 282 / 243,
  30686. bottom: 8 / 290
  30687. }
  30688. },
  30689. side: {
  30690. height: math.unit(3.02, "meters"),
  30691. weight: math.unit(500, "kg"),
  30692. name: "Side",
  30693. image: {
  30694. source: "./media/characters/drena/side.svg",
  30695. extra: 280 / 245,
  30696. bottom: 10 / 290
  30697. }
  30698. },
  30699. back: {
  30700. height: math.unit(3.02, "meters"),
  30701. weight: math.unit(500, "kg"),
  30702. name: "Back",
  30703. image: {
  30704. source: "./media/characters/drena/back.svg",
  30705. extra: 278 / 243,
  30706. bottom: 2 / 280
  30707. }
  30708. },
  30709. foot: {
  30710. height: math.unit(0.75, "meters"),
  30711. name: "Foot",
  30712. image: {
  30713. source: "./media/characters/drena/foot.svg"
  30714. }
  30715. },
  30716. maw: {
  30717. height: math.unit(0.82, "meters"),
  30718. name: "Maw",
  30719. image: {
  30720. source: "./media/characters/drena/maw.svg"
  30721. }
  30722. },
  30723. eating: {
  30724. height: math.unit(0.75, "meters"),
  30725. name: "Eating",
  30726. image: {
  30727. source: "./media/characters/drena/eating.svg"
  30728. }
  30729. },
  30730. rump: {
  30731. height: math.unit(0.93, "meters"),
  30732. name: "Rump",
  30733. image: {
  30734. source: "./media/characters/drena/rump.svg"
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(3.02, "meters"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6 + 4 / 12, "feet"),
  30751. weight: math.unit(250, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/remmyzilla/front.svg",
  30755. extra: 4033 / 3588,
  30756. bottom: 123 / 4156
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(6 + 4 / 12, "feet"),
  30761. weight: math.unit(250, "lb"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/remmyzilla/back.svg",
  30765. extra: 2687 / 2555,
  30766. bottom: 48 / 2735
  30767. }
  30768. },
  30769. paw: {
  30770. height: math.unit(1.73, "feet"),
  30771. name: "Paw",
  30772. image: {
  30773. source: "./media/characters/remmyzilla/paw.svg"
  30774. },
  30775. extraAttributes: {
  30776. "toeSize": {
  30777. name: "Toe Size",
  30778. power: 2,
  30779. type: "area",
  30780. base: math.unit(0.0035, "m^2")
  30781. },
  30782. "padSize": {
  30783. name: "Pad Size",
  30784. power: 2,
  30785. type: "area",
  30786. base: math.unit(0.015, "m^2")
  30787. },
  30788. "pawsize": {
  30789. name: "Paw Size",
  30790. power: 2,
  30791. type: "area",
  30792. base: math.unit(0.072, "m^2")
  30793. },
  30794. }
  30795. },
  30796. maw: {
  30797. height: math.unit(1.73, "feet"),
  30798. name: "Maw",
  30799. image: {
  30800. source: "./media/characters/remmyzilla/maw.svg"
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Normal",
  30807. height: math.unit(6 + 4 / 12, "feet")
  30808. },
  30809. {
  30810. name: "Minimacro",
  30811. height: math.unit(12 + 8 / 12, "feet")
  30812. },
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(640, "feet"),
  30816. default: true
  30817. },
  30818. {
  30819. name: "Megamacro",
  30820. height: math.unit(6400, "feet")
  30821. },
  30822. {
  30823. name: "Gigamacro",
  30824. height: math.unit(64000, "miles")
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(2.5, "meters"),
  30833. weight: math.unit(300, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/lawrence/front.svg",
  30837. extra: 357 / 335,
  30838. bottom: 30 / 387
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(2.5, "meters"),
  30843. weight: math.unit(300, "lb"),
  30844. name: "Back",
  30845. image: {
  30846. source: "./media/characters/lawrence/back.svg",
  30847. extra: 357 / 338,
  30848. bottom: 16 / 373
  30849. }
  30850. },
  30851. head: {
  30852. height: math.unit(0.9, "meter"),
  30853. name: "Head",
  30854. image: {
  30855. source: "./media/characters/lawrence/head.svg"
  30856. }
  30857. },
  30858. maw: {
  30859. height: math.unit(0.7, "meter"),
  30860. name: "Maw",
  30861. image: {
  30862. source: "./media/characters/lawrence/maw.svg"
  30863. }
  30864. },
  30865. footBottom: {
  30866. height: math.unit(0.5, "meter"),
  30867. name: "Foot (Bottom)",
  30868. image: {
  30869. source: "./media/characters/lawrence/foot-bottom.svg"
  30870. }
  30871. },
  30872. footTop: {
  30873. height: math.unit(0.5, "meter"),
  30874. name: "Foot (Top)",
  30875. image: {
  30876. source: "./media/characters/lawrence/foot-top.svg"
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(2.5, "meters"),
  30884. default: true
  30885. },
  30886. {
  30887. name: "Macro",
  30888. height: math.unit(95, "meters")
  30889. },
  30890. {
  30891. name: "Megamacro",
  30892. height: math.unit(150, "km")
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30898. {
  30899. front: {
  30900. height: math.unit(4.2, "meters"),
  30901. preyCapacity: math.unit(50, "m^3"),
  30902. weight: math.unit(30, "tonnes"),
  30903. name: "Front",
  30904. image: {
  30905. source: "./media/characters/sydney/front.svg",
  30906. extra: 1177/1129,
  30907. bottom: 197/1374
  30908. },
  30909. extraAttributes: {
  30910. "length": {
  30911. name: "Length",
  30912. power: 1,
  30913. type: "length",
  30914. base: math.unit(21, "meters")
  30915. },
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Normal",
  30922. height: math.unit(4.2, "meters"),
  30923. default: true
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30929. {
  30930. back: {
  30931. height: math.unit(201, "feet"),
  30932. name: "Back",
  30933. image: {
  30934. source: "./media/characters/jessica/back.svg",
  30935. extra: 273 / 259,
  30936. bottom: 7 / 280
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(201, "feet"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Megamacro",
  30948. height: math.unit(8, "miles")
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30954. {
  30955. side: {
  30956. height: math.unit(5.6, "m"),
  30957. weight: math.unit(8000, "kg"),
  30958. name: "Side",
  30959. image: {
  30960. source: "./media/characters/victoria/side.svg",
  30961. extra: 1542/1229,
  30962. bottom: 124/1666
  30963. }
  30964. },
  30965. maw: {
  30966. height: math.unit(7.14, "feet"),
  30967. name: "Maw",
  30968. image: {
  30969. source: "./media/characters/victoria/maw.svg"
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(5.6, "m"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30983. {
  30984. front: {
  30985. height: math.unit(5 + 6 / 12, "feet"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/cat/front.svg",
  30989. extra: 1449/1295,
  30990. bottom: 34/1483
  30991. },
  30992. form: "cat",
  30993. default: true
  30994. },
  30995. back: {
  30996. height: math.unit(5 + 6 / 12, "feet"),
  30997. name: "Back",
  30998. image: {
  30999. source: "./media/characters/cat/back.svg",
  31000. extra: 1466/1301,
  31001. bottom: 19/1485
  31002. },
  31003. form: "cat"
  31004. },
  31005. taur: {
  31006. height: math.unit(7, "feet"),
  31007. name: "Taur",
  31008. image: {
  31009. source: "./media/characters/cat/taur.svg",
  31010. extra: 1389/1233,
  31011. bottom: 83/1472
  31012. },
  31013. form: "taur",
  31014. default: true
  31015. },
  31016. lucarioFront: {
  31017. height: math.unit(4, "feet"),
  31018. name: "Lucario (Front)",
  31019. image: {
  31020. source: "./media/characters/cat/lucario-front.svg",
  31021. extra: 1149/1019,
  31022. bottom: 84/1233
  31023. },
  31024. form: "lucario",
  31025. default: true
  31026. },
  31027. lucarioBack: {
  31028. height: math.unit(4, "feet"),
  31029. name: "Lucario (Back)",
  31030. image: {
  31031. source: "./media/characters/cat/lucario-back.svg",
  31032. extra: 1190/1059,
  31033. bottom: 33/1223
  31034. },
  31035. form: "lucario"
  31036. },
  31037. megaLucario: {
  31038. height: math.unit(4, "feet"),
  31039. name: "Mega Lucario",
  31040. image: {
  31041. source: "./media/characters/cat/mega-lucario.svg",
  31042. extra: 1515 / 1319,
  31043. bottom: 63 / 1578
  31044. },
  31045. form: "lucario"
  31046. },
  31047. nickit: {
  31048. height: math.unit(2, "feet"),
  31049. name: "Nickit",
  31050. image: {
  31051. source: "./media/characters/cat/nickit.svg",
  31052. extra: 1980 / 1585,
  31053. bottom: 102 / 2082
  31054. },
  31055. form: "nickit",
  31056. default: true
  31057. },
  31058. lopunnyFront: {
  31059. height: math.unit(5, "feet"),
  31060. name: "Lopunny (Front)",
  31061. image: {
  31062. source: "./media/characters/cat/lopunny-front.svg",
  31063. extra: 1782 / 1469,
  31064. bottom: 38 / 1820
  31065. },
  31066. form: "lopunny",
  31067. default: true
  31068. },
  31069. lopunnyBack: {
  31070. height: math.unit(5, "feet"),
  31071. name: "Lopunny (Back)",
  31072. image: {
  31073. source: "./media/characters/cat/lopunny-back.svg",
  31074. extra: 1660 / 1490,
  31075. bottom: 25 / 1685
  31076. },
  31077. form: "lopunny"
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Really small",
  31083. height: math.unit(1, "nm")
  31084. },
  31085. {
  31086. name: "Micro",
  31087. height: math.unit(5, "inches")
  31088. },
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(5 + 6 / 12, "feet"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Macro",
  31096. height: math.unit(50, "feet")
  31097. },
  31098. {
  31099. name: "Macro+",
  31100. height: math.unit(150, "feet")
  31101. },
  31102. {
  31103. name: "Megamacro",
  31104. height: math.unit(100, "miles")
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(63.4, "meters"),
  31113. weight: math.unit(3.28349e+6, "kilograms"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/kirina-violet/front.svg",
  31117. extra: 2812 / 2725,
  31118. bottom: 0 / 2812
  31119. }
  31120. },
  31121. back: {
  31122. height: math.unit(63.4, "meters"),
  31123. weight: math.unit(3.28349e+6, "kilograms"),
  31124. name: "Back",
  31125. image: {
  31126. source: "./media/characters/kirina-violet/back.svg",
  31127. extra: 2812 / 2725,
  31128. bottom: 0 / 2812
  31129. }
  31130. },
  31131. mouth: {
  31132. height: math.unit(4.35, "meters"),
  31133. name: "Mouth",
  31134. image: {
  31135. source: "./media/characters/kirina-violet/mouth.svg"
  31136. }
  31137. },
  31138. paw: {
  31139. height: math.unit(5.6, "meters"),
  31140. name: "Paw",
  31141. image: {
  31142. source: "./media/characters/kirina-violet/paw.svg"
  31143. }
  31144. },
  31145. tail: {
  31146. height: math.unit(18, "meters"),
  31147. name: "Tail",
  31148. image: {
  31149. source: "./media/characters/kirina-violet/tail.svg"
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Macro",
  31156. height: math.unit(63.4, "meters"),
  31157. default: true
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(75, "feet"),
  31166. name: "Front",
  31167. image: {
  31168. source: "./media/characters/cat-gigachu/front.svg",
  31169. extra: 1239/1027,
  31170. bottom: 32/1271
  31171. }
  31172. },
  31173. back: {
  31174. height: math.unit(75, "feet"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/cat-gigachu/back.svg",
  31178. extra: 1229/1030,
  31179. bottom: 9/1238
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Dynamax",
  31186. height: math.unit(75, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(6, "feet"),
  31196. weight: math.unit(150, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/sfaiyan/front.svg",
  31200. extra: 999 / 978,
  31201. bottom: 5 / 1004
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(1.82, "meters")
  31209. },
  31210. {
  31211. name: "Giant",
  31212. height: math.unit(2.27, "km"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(179, "cm"),
  31222. weight: math.unit(100, "kg"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/raunehkeli/front.svg",
  31226. extra: 1934 / 1926,
  31227. bottom: 0 / 1934
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(179, "cm")
  31235. },
  31236. {
  31237. name: "Maximum",
  31238. height: math.unit(575, "meters"),
  31239. default: true
  31240. },
  31241. ]
  31242. ))
  31243. characterMakers.push(() => makeCharacter(
  31244. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31245. {
  31246. front: {
  31247. height: math.unit(6, "feet"),
  31248. weight: math.unit(150, "lb"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31252. extra: 2625 / 2518,
  31253. bottom: 60 / 2685
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(6 + 2 / 12, "feet")
  31261. },
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(1180, "feet"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(5 + 6 / 12, "feet"),
  31274. weight: math.unit(108, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/lilith-zott/front.svg",
  31278. extra: 2510 / 2238,
  31279. bottom: 100 / 2610
  31280. }
  31281. },
  31282. frontDressed: {
  31283. height: math.unit(5 + 6 / 12, "feet"),
  31284. weight: math.unit(108, "lb"),
  31285. name: "Front (Dressed)",
  31286. image: {
  31287. source: "./media/characters/lilith-zott/front-dressed.svg",
  31288. extra: 2510 / 2238,
  31289. bottom: 100 / 2610
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(5 + 6 / 12, "feet")
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(1030, "feet"),
  31301. default: true
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31307. {
  31308. front: {
  31309. height: math.unit(6, "feet"),
  31310. weight: math.unit(150, "lb"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31314. extra: 2567 / 2435,
  31315. bottom: 39 / 2606
  31316. }
  31317. },
  31318. frontSuper: {
  31319. height: math.unit(6, "feet"),
  31320. name: "Front (Super)",
  31321. image: {
  31322. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31323. extra: 2567 / 2435,
  31324. bottom: 39 / 2606
  31325. }
  31326. },
  31327. },
  31328. [
  31329. {
  31330. name: "Normal",
  31331. height: math.unit(5 + 10 / 12, "feet")
  31332. },
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(1100, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(100, "miles"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/sona/front.svg",
  31348. extra: 2433 / 2201,
  31349. bottom: 53 / 2486
  31350. }
  31351. },
  31352. foot: {
  31353. height: math.unit(16.1, "miles"),
  31354. name: "Foot",
  31355. image: {
  31356. source: "./media/characters/sona/foot.svg"
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Macro",
  31363. height: math.unit(100, "miles"),
  31364. default: true
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(6, "feet"),
  31373. weight: math.unit(150, "lb"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/bailey/front.svg",
  31377. extra: 1778 / 1724,
  31378. bottom: 30 / 1808
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Micro",
  31385. height: math.unit(4, "inches")
  31386. },
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(5 + 5 / 12, "feet"),
  31390. default: true
  31391. },
  31392. {
  31393. name: "Macro",
  31394. height: math.unit(250, "feet")
  31395. },
  31396. {
  31397. name: "Megamacro",
  31398. height: math.unit(100, "miles")
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(5 + 2 / 12, "feet"),
  31407. weight: math.unit(120, "lb"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/snaps/front.svg",
  31411. extra: 2370 / 2177,
  31412. bottom: 48 / 2418
  31413. }
  31414. },
  31415. back: {
  31416. height: math.unit(5 + 2 / 12, "feet"),
  31417. weight: math.unit(120, "lb"),
  31418. name: "Back",
  31419. image: {
  31420. source: "./media/characters/snaps/back.svg",
  31421. extra: 2408 / 2258,
  31422. bottom: 15 / 2423
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Micro",
  31429. height: math.unit(9, "inches")
  31430. },
  31431. {
  31432. name: "Normal",
  31433. height: math.unit(5 + 2 / 12, "feet"),
  31434. default: true
  31435. },
  31436. {
  31437. name: "Mini Macro",
  31438. height: math.unit(10, "feet")
  31439. },
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31444. {
  31445. front: {
  31446. height: math.unit(1.8, "meters"),
  31447. weight: math.unit(85, "kg"),
  31448. name: "Front",
  31449. image: {
  31450. source: "./media/characters/azteck/front.svg",
  31451. extra: 2815 / 2625,
  31452. bottom: 89 / 2904
  31453. }
  31454. },
  31455. back: {
  31456. height: math.unit(1.8, "meters"),
  31457. weight: math.unit(85, "kg"),
  31458. name: "Back",
  31459. image: {
  31460. source: "./media/characters/azteck/back.svg",
  31461. extra: 2856 / 2648,
  31462. bottom: 85 / 2941
  31463. }
  31464. },
  31465. frontDressed: {
  31466. height: math.unit(1.8, "meters"),
  31467. weight: math.unit(85, "kg"),
  31468. name: "Front (Dressed)",
  31469. image: {
  31470. source: "./media/characters/azteck/front-dressed.svg",
  31471. extra: 2147 / 2003,
  31472. bottom: 68 / 2215
  31473. }
  31474. },
  31475. head: {
  31476. height: math.unit(0.47, "meters"),
  31477. weight: math.unit(85, "kg"),
  31478. name: "Head",
  31479. image: {
  31480. source: "./media/characters/azteck/head.svg"
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Bite sized",
  31487. height: math.unit(16, "cm")
  31488. },
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(1.8, "meters"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(6, "feet"),
  31501. weight: math.unit(150, "lb"),
  31502. name: "Front",
  31503. image: {
  31504. source: "./media/characters/pidge/front.svg",
  31505. extra: 1936/1820,
  31506. bottom: 0/1936
  31507. }
  31508. },
  31509. back: {
  31510. height: math.unit(6, "feet"),
  31511. weight: math.unit(150, "lb"),
  31512. name: "Back",
  31513. image: {
  31514. source: "./media/characters/pidge/back.svg",
  31515. extra: 1938/1843,
  31516. bottom: 0/1938
  31517. }
  31518. },
  31519. casual: {
  31520. height: math.unit(6, "feet"),
  31521. weight: math.unit(150, "lb"),
  31522. name: "Casual",
  31523. image: {
  31524. source: "./media/characters/pidge/casual.svg",
  31525. extra: 1936/1820,
  31526. bottom: 0/1936
  31527. }
  31528. },
  31529. tech: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(150, "lb"),
  31532. name: "Tech",
  31533. image: {
  31534. source: "./media/characters/pidge/tech.svg",
  31535. extra: 1802/1682,
  31536. bottom: 0/1802
  31537. }
  31538. },
  31539. head: {
  31540. height: math.unit(1.61, "feet"),
  31541. name: "Head",
  31542. image: {
  31543. source: "./media/characters/pidge/head.svg"
  31544. }
  31545. },
  31546. collar: {
  31547. height: math.unit(0.82, "feet"),
  31548. name: "Collar",
  31549. image: {
  31550. source: "./media/characters/pidge/collar.svg"
  31551. }
  31552. },
  31553. },
  31554. [
  31555. {
  31556. name: "Macro",
  31557. height: math.unit(2, "mile"),
  31558. default: true
  31559. },
  31560. {
  31561. name: "PUPPY",
  31562. height: math.unit(20, "miles")
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31568. {
  31569. front: {
  31570. height: math.unit(6, "feet"),
  31571. weight: math.unit(150, "lb"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/en/front.svg",
  31575. extra: 1697 / 1563,
  31576. bottom: 103 / 1800
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(6, "feet"),
  31581. weight: math.unit(150, "lb"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/en/back.svg",
  31585. extra: 1700 / 1570,
  31586. bottom: 51 / 1751
  31587. }
  31588. },
  31589. frontDressed: {
  31590. height: math.unit(6, "feet"),
  31591. weight: math.unit(150, "lb"),
  31592. name: "Front (Dressed)",
  31593. image: {
  31594. source: "./media/characters/en/front-dressed.svg",
  31595. extra: 1697 / 1563,
  31596. bottom: 103 / 1800
  31597. }
  31598. },
  31599. backDressed: {
  31600. height: math.unit(6, "feet"),
  31601. weight: math.unit(150, "lb"),
  31602. name: "Back (Dressed)",
  31603. image: {
  31604. source: "./media/characters/en/back-dressed.svg",
  31605. extra: 1700 / 1570,
  31606. bottom: 51 / 1751
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(210, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(6, "feet"),
  31623. weight: math.unit(150, "lb"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/haze-orris/front.svg",
  31627. extra: 3975 / 3525,
  31628. bottom: 137 / 4112
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Micro",
  31635. height: math.unit(150, "mm"),
  31636. default: true
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(6, "feet"),
  31645. weight: math.unit(150, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/casselene-yaro/front.svg",
  31649. extra: 4721 / 4541,
  31650. bottom: 82 / 4803
  31651. }
  31652. },
  31653. back: {
  31654. height: math.unit(6, "feet"),
  31655. weight: math.unit(150, "lb"),
  31656. name: "Back",
  31657. image: {
  31658. source: "./media/characters/casselene-yaro/back.svg",
  31659. extra: 4569 / 4377,
  31660. bottom: 69 / 4638
  31661. }
  31662. },
  31663. dressed: {
  31664. height: math.unit(6, "feet"),
  31665. weight: math.unit(150, "lb"),
  31666. name: "Dressed",
  31667. image: {
  31668. source: "./media/characters/casselene-yaro/dressed.svg",
  31669. extra: 4721 / 4541,
  31670. bottom: 82 / 4803
  31671. }
  31672. },
  31673. maw: {
  31674. height: math.unit(1, "feet"),
  31675. name: "Maw",
  31676. image: {
  31677. source: "./media/characters/casselene-yaro/maw.svg"
  31678. }
  31679. },
  31680. },
  31681. [
  31682. {
  31683. name: "Macro",
  31684. height: math.unit(190, "feet"),
  31685. default: true
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31691. {
  31692. front: {
  31693. height: math.unit(10, "feet"),
  31694. weight: math.unit(15015, "lb"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/platine/front.svg",
  31698. extra: 1741/1650,
  31699. bottom: 84/1825
  31700. }
  31701. },
  31702. side: {
  31703. height: math.unit(10, "feet"),
  31704. weight: math.unit(15015, "lb"),
  31705. name: "Side",
  31706. image: {
  31707. source: "./media/characters/platine/side.svg",
  31708. extra: 1790/1705,
  31709. bottom: 29/1819
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(10, "feet"),
  31717. default: true
  31718. },
  31719. {
  31720. name: "Macro",
  31721. height: math.unit(100, "feet")
  31722. },
  31723. {
  31724. name: "Megamacro",
  31725. height: math.unit(1000, "feet")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(15 + 5 / 12, "feet"),
  31734. weight: math.unit(4600, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/neapolitan-ananassa/front.svg",
  31738. extra: 2903 / 2736,
  31739. bottom: 0 / 2903
  31740. }
  31741. },
  31742. side: {
  31743. height: math.unit(15 + 5 / 12, "feet"),
  31744. weight: math.unit(4600, "lb"),
  31745. name: "Side",
  31746. image: {
  31747. source: "./media/characters/neapolitan-ananassa/side.svg",
  31748. extra: 2925 / 2719,
  31749. bottom: 0 / 2925
  31750. }
  31751. },
  31752. back: {
  31753. height: math.unit(15 + 5 / 12, "feet"),
  31754. weight: math.unit(4600, "lb"),
  31755. name: "Back",
  31756. image: {
  31757. source: "./media/characters/neapolitan-ananassa/back.svg",
  31758. extra: 2903 / 2736,
  31759. bottom: 0 / 2903
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(15 + 5 / 12, "feet"),
  31767. default: true
  31768. },
  31769. {
  31770. name: "Post-Millenium",
  31771. height: math.unit(35 + 5 / 12, "feet")
  31772. },
  31773. {
  31774. name: "Post-Era",
  31775. height: math.unit(450 + 5 / 12, "feet")
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(300, "meters"),
  31784. weight: math.unit(125000, "tonnes"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/pazuzu/front.svg",
  31788. extra: 877 / 794,
  31789. bottom: 47 / 924
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Macro",
  31796. height: math.unit(300, "meters"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31803. {
  31804. side: {
  31805. height: math.unit(10 + 7 / 12, "feet"),
  31806. weight: math.unit(2.5, "tons"),
  31807. name: "Side",
  31808. image: {
  31809. source: "./media/characters/aasha/side.svg",
  31810. extra: 1345 / 1245,
  31811. bottom: 111 / 1456
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(10 + 7 / 12, "feet"),
  31816. weight: math.unit(2.5, "tons"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/aasha/back.svg",
  31820. extra: 1133 / 1057,
  31821. bottom: 257 / 1390
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(10 + 7 / 12, "feet"),
  31829. default: true
  31830. },
  31831. ]
  31832. ))
  31833. characterMakers.push(() => makeCharacter(
  31834. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31835. {
  31836. front: {
  31837. height: math.unit(6 + 3 / 12, "feet"),
  31838. name: "Front",
  31839. image: {
  31840. source: "./media/characters/nevan/front.svg",
  31841. extra: 704 / 704,
  31842. bottom: 28 / 732
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(6 + 3 / 12, "feet"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/nevan/back.svg",
  31850. extra: 714 / 714,
  31851. bottom: 21 / 735
  31852. }
  31853. },
  31854. frontFlaccid: {
  31855. height: math.unit(6 + 3 / 12, "feet"),
  31856. name: "Front (Flaccid)",
  31857. image: {
  31858. source: "./media/characters/nevan/front-flaccid.svg",
  31859. extra: 704 / 704,
  31860. bottom: 28 / 732
  31861. }
  31862. },
  31863. frontErect: {
  31864. height: math.unit(6 + 3 / 12, "feet"),
  31865. name: "Front (Erect)",
  31866. image: {
  31867. source: "./media/characters/nevan/front-erect.svg",
  31868. extra: 704 / 704,
  31869. bottom: 28 / 732
  31870. }
  31871. },
  31872. backFlaccid: {
  31873. height: math.unit(6 + 3 / 12, "feet"),
  31874. name: "Back (Flaccid)",
  31875. image: {
  31876. source: "./media/characters/nevan/back-flaccid.svg",
  31877. extra: 714 / 714,
  31878. bottom: 21 / 735
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(6 + 3 / 12, "feet"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(4, "feet"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/arhan/front.svg",
  31898. extra: 3368 / 3133,
  31899. bottom: 0 / 3368
  31900. }
  31901. },
  31902. side: {
  31903. height: math.unit(4, "feet"),
  31904. name: "Side",
  31905. image: {
  31906. source: "./media/characters/arhan/side.svg",
  31907. extra: 3347 / 3105,
  31908. bottom: 0 / 3347
  31909. }
  31910. },
  31911. tongue: {
  31912. height: math.unit(1.42, "feet"),
  31913. name: "Tongue",
  31914. image: {
  31915. source: "./media/characters/arhan/tongue.svg"
  31916. }
  31917. },
  31918. head: {
  31919. height: math.unit(0.85, "feet"),
  31920. name: "Head",
  31921. image: {
  31922. source: "./media/characters/arhan/head.svg"
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(4, "feet"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(5 + 7.5 / 12, "feet"),
  31939. weight: math.unit(120, "lb"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/digi-duncan/front.svg",
  31943. extra: 330 / 326,
  31944. bottom: 16 / 346
  31945. }
  31946. },
  31947. side: {
  31948. height: math.unit(5 + 7.5 / 12, "feet"),
  31949. weight: math.unit(120, "lb"),
  31950. name: "Side",
  31951. image: {
  31952. source: "./media/characters/digi-duncan/side.svg",
  31953. extra: 341 / 337,
  31954. bottom: 1 / 342
  31955. }
  31956. },
  31957. back: {
  31958. height: math.unit(5 + 7.5 / 12, "feet"),
  31959. weight: math.unit(120, "lb"),
  31960. name: "Back",
  31961. image: {
  31962. source: "./media/characters/digi-duncan/back.svg",
  31963. extra: 330 / 326,
  31964. bottom: 12 / 342
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Speck",
  31971. height: math.unit(0.25, "mm")
  31972. },
  31973. {
  31974. name: "Micro",
  31975. height: math.unit(5, "mm")
  31976. },
  31977. {
  31978. name: "Tiny",
  31979. height: math.unit(0.5, "inches"),
  31980. default: true
  31981. },
  31982. {
  31983. name: "Human",
  31984. height: math.unit(5 + 7.5 / 12, "feet")
  31985. },
  31986. {
  31987. name: "Minigiant",
  31988. height: math.unit(8 + 5.25, "feet")
  31989. },
  31990. {
  31991. name: "Giant",
  31992. height: math.unit(2000, "feet")
  31993. },
  31994. {
  31995. name: "Mega",
  31996. height: math.unit(371.1, "miles")
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32002. {
  32003. front: {
  32004. height: math.unit(2, "meters"),
  32005. weight: math.unit(350, "kg"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32009. extra: 898 / 838,
  32010. bottom: 9 / 907
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Micro",
  32017. height: math.unit(8, "meters")
  32018. },
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(50, "meters"),
  32022. default: true
  32023. },
  32024. {
  32025. name: "Macro",
  32026. height: math.unit(500, "meters")
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(6 + 6 / 12, "feet"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/khardesh/front.svg",
  32038. extra: 1788/1596,
  32039. bottom: 66/1854
  32040. }
  32041. },
  32042. back: {
  32043. height: math.unit(6 + 6 / 12, "feet"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/khardesh/back.svg",
  32047. extra: 1781/1584,
  32048. bottom: 68/1849
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(6 + 6 / 12, "feet"),
  32056. default: true
  32057. },
  32058. {
  32059. name: "Normal+",
  32060. height: math.unit(4, "meters")
  32061. },
  32062. {
  32063. name: "Macro",
  32064. height: math.unit(50, "meters")
  32065. },
  32066. {
  32067. name: "Macro+",
  32068. height: math.unit(100, "meters")
  32069. },
  32070. {
  32071. name: "Megamacro",
  32072. height: math.unit(20, "km")
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32078. {
  32079. front: {
  32080. height: math.unit(6, "feet"),
  32081. weight: math.unit(150, "lb"),
  32082. name: "Front",
  32083. image: {
  32084. source: "./media/characters/kosho/front.svg",
  32085. extra: 1847 / 1847,
  32086. bottom: 86 / 1933
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Second-stage micro",
  32093. height: math.unit(0.5, "inches")
  32094. },
  32095. {
  32096. name: "First-stage micro",
  32097. height: math.unit(6, "inches")
  32098. },
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(6, "feet"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "First-stage macro",
  32106. height: math.unit(72, "feet")
  32107. },
  32108. {
  32109. name: "Second-stage macro",
  32110. height: math.unit(864, "feet")
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32116. {
  32117. normal: {
  32118. height: math.unit(4 + 6 / 12, "feet"),
  32119. name: "Normal",
  32120. image: {
  32121. source: "./media/characters/hydra/normal.svg",
  32122. extra: 2833 / 2634,
  32123. bottom: 68 / 2901
  32124. }
  32125. },
  32126. smol: {
  32127. height: math.unit(0.705, "inches"),
  32128. name: "Smol",
  32129. image: {
  32130. source: "./media/characters/hydra/smol.svg",
  32131. extra: 2715 / 2540,
  32132. bottom: 0 / 2715
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Normal",
  32139. height: math.unit(4 + 6 / 12, "feet"),
  32140. default: true
  32141. }
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(0.6, "cm"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/daz/front.svg",
  32152. extra: 1682 / 1164,
  32153. bottom: 42 / 1724
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(0.6, "cm"),
  32161. default: true
  32162. },
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32167. {
  32168. front: {
  32169. height: math.unit(6, "feet"),
  32170. weight: math.unit(235, "lb"),
  32171. name: "Front",
  32172. image: {
  32173. source: "./media/characters/theo-pangolin/front.svg",
  32174. extra: 1996 / 1969,
  32175. bottom: 115 / 2111
  32176. }
  32177. },
  32178. back: {
  32179. height: math.unit(6, "feet"),
  32180. weight: math.unit(235, "lb"),
  32181. name: "Back",
  32182. image: {
  32183. source: "./media/characters/theo-pangolin/back.svg",
  32184. extra: 1979 / 1979,
  32185. bottom: 40 / 2019
  32186. }
  32187. },
  32188. feral: {
  32189. height: math.unit(2, "feet"),
  32190. weight: math.unit(30, "lb"),
  32191. name: "Feral",
  32192. image: {
  32193. source: "./media/characters/theo-pangolin/feral.svg",
  32194. extra: 803 / 791,
  32195. bottom: 181 / 984
  32196. }
  32197. },
  32198. footFive: {
  32199. height: math.unit(1.43, "feet"),
  32200. name: "Foot (Five Toes)",
  32201. image: {
  32202. source: "./media/characters/theo-pangolin/foot-five.svg"
  32203. }
  32204. },
  32205. footFour: {
  32206. height: math.unit(1.43, "feet"),
  32207. name: "Foot (Four Toes)",
  32208. image: {
  32209. source: "./media/characters/theo-pangolin/foot-four.svg"
  32210. }
  32211. },
  32212. handFour: {
  32213. height: math.unit(0.81, "feet"),
  32214. name: "Hand (Four Fingers)",
  32215. image: {
  32216. source: "./media/characters/theo-pangolin/hand-four.svg"
  32217. }
  32218. },
  32219. handThree: {
  32220. height: math.unit(0.81, "feet"),
  32221. name: "Hand (Three Fingers)",
  32222. image: {
  32223. source: "./media/characters/theo-pangolin/hand-three.svg"
  32224. }
  32225. },
  32226. headFront: {
  32227. height: math.unit(1.37, "feet"),
  32228. name: "Head (Front)",
  32229. image: {
  32230. source: "./media/characters/theo-pangolin/head-front.svg"
  32231. }
  32232. },
  32233. headSide: {
  32234. height: math.unit(1.43, "feet"),
  32235. name: "Head (Side)",
  32236. image: {
  32237. source: "./media/characters/theo-pangolin/head-side.svg"
  32238. }
  32239. },
  32240. tongue: {
  32241. height: math.unit(2.29, "feet"),
  32242. name: "Tongue",
  32243. image: {
  32244. source: "./media/characters/theo-pangolin/tongue.svg"
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Normal",
  32251. height: math.unit(6, "feet")
  32252. },
  32253. {
  32254. name: "Macro",
  32255. height: math.unit(400, "feet"),
  32256. default: true
  32257. },
  32258. ]
  32259. ))
  32260. characterMakers.push(() => makeCharacter(
  32261. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32262. {
  32263. front: {
  32264. height: math.unit(6, "inches"),
  32265. weight: math.unit(0.036, "kg"),
  32266. name: "Front",
  32267. image: {
  32268. source: "./media/characters/renée/front.svg",
  32269. extra: 900 / 886,
  32270. bottom: 8 / 908
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Nano",
  32277. height: math.unit(1, "nm")
  32278. },
  32279. {
  32280. name: "Micro",
  32281. height: math.unit(1, "mm")
  32282. },
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(6, "inches")
  32286. },
  32287. {
  32288. name: "Macro",
  32289. height: math.unit(2000, "feet"),
  32290. default: true
  32291. },
  32292. {
  32293. name: "Megamacro",
  32294. height: math.unit(2, "km")
  32295. },
  32296. {
  32297. name: "Gigamacro",
  32298. height: math.unit(2000, "km")
  32299. },
  32300. {
  32301. name: "Teramacro",
  32302. height: math.unit(250000, "km")
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(4, "meters"),
  32311. weight: math.unit(150, "kg"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/caledvwlch/front.svg",
  32315. extra: 1757/1537,
  32316. bottom: 31/1788
  32317. }
  32318. },
  32319. side: {
  32320. height: math.unit(4, "meters"),
  32321. weight: math.unit(150, "kg"),
  32322. name: "Side",
  32323. image: {
  32324. source: "./media/characters/caledvwlch/side.svg",
  32325. extra: 1605 / 1536,
  32326. bottom: 31 / 1636
  32327. }
  32328. },
  32329. back: {
  32330. height: math.unit(4, "meters"),
  32331. weight: math.unit(150, "kg"),
  32332. name: "Back",
  32333. image: {
  32334. source: "./media/characters/caledvwlch/back.svg",
  32335. extra: 1635 / 1565,
  32336. bottom: 27 / 1662
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "\"Incognito\"",
  32343. height: math.unit(4, "meters")
  32344. },
  32345. {
  32346. name: "Small rampage",
  32347. height: math.unit(600, "meters")
  32348. },
  32349. {
  32350. name: "Mega",
  32351. height: math.unit(30, "km")
  32352. },
  32353. {
  32354. name: "Home-size",
  32355. height: math.unit(50, "km"),
  32356. default: true
  32357. },
  32358. {
  32359. name: "Giga",
  32360. height: math.unit(300, "km")
  32361. },
  32362. {
  32363. name: "Lounging",
  32364. height: math.unit(11000, "km")
  32365. },
  32366. {
  32367. name: "Planet snacking",
  32368. height: math.unit(2000000, "km")
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(6, "feet"),
  32377. weight: math.unit(215, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/sapphire-svell/front.svg",
  32381. extra: 495 / 455,
  32382. bottom: 20 / 515
  32383. }
  32384. },
  32385. back: {
  32386. height: math.unit(6, "feet"),
  32387. weight: math.unit(216, "lb"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/sapphire-svell/back.svg",
  32391. extra: 497 / 477,
  32392. bottom: 7 / 504
  32393. }
  32394. },
  32395. maw: {
  32396. height: math.unit(1.57, "feet"),
  32397. name: "Maw",
  32398. image: {
  32399. source: "./media/characters/sapphire-svell/maw.svg"
  32400. }
  32401. },
  32402. foot: {
  32403. height: math.unit(1.07, "feet"),
  32404. name: "Foot",
  32405. image: {
  32406. source: "./media/characters/sapphire-svell/foot.svg"
  32407. }
  32408. },
  32409. toering: {
  32410. height: math.unit(1.7, "inch"),
  32411. name: "Toering",
  32412. image: {
  32413. source: "./media/characters/sapphire-svell/toering.svg"
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(300, "feet"),
  32421. default: true
  32422. },
  32423. {
  32424. name: "Augmented",
  32425. height: math.unit(1250, "feet")
  32426. },
  32427. {
  32428. name: "Unleashed",
  32429. height: math.unit(3000, "feet")
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32435. {
  32436. side: {
  32437. height: math.unit(2 + 3 / 12, "feet"),
  32438. weight: math.unit(110, "lb"),
  32439. name: "Side",
  32440. image: {
  32441. source: "./media/characters/glitch-flux/side.svg",
  32442. extra: 997 / 805,
  32443. bottom: 20 / 1017
  32444. }
  32445. },
  32446. },
  32447. [
  32448. {
  32449. name: "Normal",
  32450. height: math.unit(2 + 3 / 12, "feet"),
  32451. default: true
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(4, "meters"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/mid/front.svg",
  32463. extra: 507 / 476,
  32464. bottom: 17 / 524
  32465. }
  32466. },
  32467. back: {
  32468. height: math.unit(4, "meters"),
  32469. name: "Back",
  32470. image: {
  32471. source: "./media/characters/mid/back.svg",
  32472. extra: 519 / 487,
  32473. bottom: 7 / 526
  32474. }
  32475. },
  32476. stuck: {
  32477. height: math.unit(2.2, "meters"),
  32478. name: "Stuck",
  32479. image: {
  32480. source: "./media/characters/mid/stuck.svg",
  32481. extra: 1951 / 1869,
  32482. bottom: 88 / 2039
  32483. }
  32484. }
  32485. },
  32486. [
  32487. {
  32488. name: "Normal",
  32489. height: math.unit(4, "meters"),
  32490. default: true
  32491. },
  32492. {
  32493. name: "Big",
  32494. height: math.unit(10, "meters")
  32495. },
  32496. {
  32497. name: "Macro",
  32498. height: math.unit(800, "meters")
  32499. },
  32500. {
  32501. name: "Megamacro",
  32502. height: math.unit(100, "km")
  32503. },
  32504. {
  32505. name: "Overgrown",
  32506. height: math.unit(1, "parsec")
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(2.5, "meters"),
  32515. weight: math.unit(225, "kg"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/iris/front.svg",
  32519. extra: 3348 / 3251,
  32520. bottom: 205 / 3553
  32521. }
  32522. },
  32523. maw: {
  32524. height: math.unit(0.56, "meter"),
  32525. name: "Maw",
  32526. image: {
  32527. source: "./media/characters/iris/maw.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Mewter cat",
  32534. height: math.unit(1.2, "meters")
  32535. },
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(2.5, "meters"),
  32539. default: true
  32540. },
  32541. {
  32542. name: "Minimacro",
  32543. height: math.unit(18, "feet")
  32544. },
  32545. {
  32546. name: "Macro",
  32547. height: math.unit(140, "feet")
  32548. },
  32549. {
  32550. name: "Macro+",
  32551. height: math.unit(180, "meters")
  32552. },
  32553. {
  32554. name: "Megamacro",
  32555. height: math.unit(2746, "meters")
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(6, "feet"),
  32564. weight: math.unit(135, "lb"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/axel/front.svg",
  32568. extra: 908 / 908,
  32569. bottom: 58 / 966
  32570. }
  32571. },
  32572. side: {
  32573. height: math.unit(6, "feet"),
  32574. weight: math.unit(135, "lb"),
  32575. name: "Side",
  32576. image: {
  32577. source: "./media/characters/axel/side.svg",
  32578. extra: 958 / 958,
  32579. bottom: 11 / 969
  32580. }
  32581. },
  32582. back: {
  32583. height: math.unit(6, "feet"),
  32584. weight: math.unit(135, "lb"),
  32585. name: "Back",
  32586. image: {
  32587. source: "./media/characters/axel/back.svg",
  32588. extra: 887 / 887,
  32589. bottom: 34 / 921
  32590. }
  32591. },
  32592. head: {
  32593. height: math.unit(1.07, "feet"),
  32594. name: "Head",
  32595. image: {
  32596. source: "./media/characters/axel/head.svg"
  32597. }
  32598. },
  32599. beak: {
  32600. height: math.unit(1.4, "feet"),
  32601. name: "Beak",
  32602. image: {
  32603. source: "./media/characters/axel/beak.svg"
  32604. }
  32605. },
  32606. beakSide: {
  32607. height: math.unit(1.4, "feet"),
  32608. name: "Beak Side",
  32609. image: {
  32610. source: "./media/characters/axel/beak-side.svg"
  32611. }
  32612. },
  32613. sheath: {
  32614. height: math.unit(0.5, "feet"),
  32615. name: "Sheath",
  32616. image: {
  32617. source: "./media/characters/axel/sheath.svg"
  32618. }
  32619. },
  32620. dick: {
  32621. height: math.unit(0.98, "feet"),
  32622. name: "Dick",
  32623. image: {
  32624. source: "./media/characters/axel/dick.svg"
  32625. }
  32626. },
  32627. },
  32628. [
  32629. {
  32630. name: "Macro",
  32631. height: math.unit(68, "meters"),
  32632. default: true
  32633. },
  32634. ]
  32635. ))
  32636. characterMakers.push(() => makeCharacter(
  32637. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32638. {
  32639. front: {
  32640. height: math.unit(3.5, "meters"),
  32641. weight: math.unit(1200, "kg"),
  32642. name: "Front",
  32643. image: {
  32644. source: "./media/characters/joanna/front.svg",
  32645. extra: 1596 / 1488,
  32646. bottom: 29 / 1625
  32647. }
  32648. },
  32649. back: {
  32650. height: math.unit(3.5, "meters"),
  32651. weight: math.unit(1200, "kg"),
  32652. name: "Back",
  32653. image: {
  32654. source: "./media/characters/joanna/back.svg",
  32655. extra: 1594 / 1495,
  32656. bottom: 26 / 1620
  32657. }
  32658. },
  32659. frontShorts: {
  32660. height: math.unit(3.5, "meters"),
  32661. weight: math.unit(1200, "kg"),
  32662. name: "Front (Shorts)",
  32663. image: {
  32664. source: "./media/characters/joanna/front-shorts.svg",
  32665. extra: 1596 / 1488,
  32666. bottom: 29 / 1625
  32667. }
  32668. },
  32669. frontBiker: {
  32670. height: math.unit(3.5, "meters"),
  32671. weight: math.unit(1200, "kg"),
  32672. name: "Front (Biker)",
  32673. image: {
  32674. source: "./media/characters/joanna/front-biker.svg",
  32675. extra: 1596 / 1488,
  32676. bottom: 29 / 1625
  32677. }
  32678. },
  32679. backBiker: {
  32680. height: math.unit(3.5, "meters"),
  32681. weight: math.unit(1200, "kg"),
  32682. name: "Back (Biker)",
  32683. image: {
  32684. source: "./media/characters/joanna/back-biker.svg",
  32685. extra: 1594 / 1495,
  32686. bottom: 88 / 1682
  32687. }
  32688. },
  32689. bikeLeft: {
  32690. height: math.unit(2.4, "meters"),
  32691. weight: math.unit(1600, "kg"),
  32692. name: "Bike (Left)",
  32693. image: {
  32694. source: "./media/characters/joanna/bike-left.svg",
  32695. extra: 720 / 720,
  32696. bottom: 8 / 728
  32697. }
  32698. },
  32699. bikeRight: {
  32700. height: math.unit(2.4, "meters"),
  32701. weight: math.unit(1600, "kg"),
  32702. name: "Bike (Right)",
  32703. image: {
  32704. source: "./media/characters/joanna/bike-right.svg",
  32705. extra: 720 / 720,
  32706. bottom: 8 / 728
  32707. }
  32708. },
  32709. },
  32710. [
  32711. {
  32712. name: "Incognito",
  32713. height: math.unit(3.5, "meters")
  32714. },
  32715. {
  32716. name: "Casual Big",
  32717. height: math.unit(200, "meters")
  32718. },
  32719. {
  32720. name: "Macro",
  32721. height: math.unit(600, "meters")
  32722. },
  32723. {
  32724. name: "Original",
  32725. height: math.unit(20, "km"),
  32726. default: true
  32727. },
  32728. {
  32729. name: "Giga",
  32730. height: math.unit(400, "km")
  32731. },
  32732. {
  32733. name: "Lounging",
  32734. height: math.unit(1500, "km")
  32735. },
  32736. {
  32737. name: "Planetary",
  32738. height: math.unit(200000, "km")
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(6, "feet"),
  32747. weight: math.unit(150, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/hugo-sigil/front.svg",
  32751. extra: 522 / 500,
  32752. bottom: 2 / 524
  32753. }
  32754. },
  32755. back: {
  32756. height: math.unit(6, "feet"),
  32757. weight: math.unit(150, "lb"),
  32758. name: "Back",
  32759. image: {
  32760. source: "./media/characters/hugo-sigil/back.svg",
  32761. extra: 519 / 495,
  32762. bottom: 5 / 524
  32763. }
  32764. },
  32765. maw: {
  32766. height: math.unit(1.4, "feet"),
  32767. weight: math.unit(150, "lb"),
  32768. name: "Maw",
  32769. image: {
  32770. source: "./media/characters/hugo-sigil/maw.svg"
  32771. }
  32772. },
  32773. feet: {
  32774. height: math.unit(1.56, "feet"),
  32775. weight: math.unit(150, "lb"),
  32776. name: "Feet",
  32777. image: {
  32778. source: "./media/characters/hugo-sigil/feet.svg",
  32779. extra: 177 / 177,
  32780. bottom: 12 / 189
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Normal",
  32787. height: math.unit(6, "feet")
  32788. },
  32789. {
  32790. name: "Macro",
  32791. height: math.unit(200, "feet"),
  32792. default: true
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(6, "feet"),
  32801. weight: math.unit(150, "lb"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/peri/front.svg",
  32805. extra: 2354 / 2233,
  32806. bottom: 49 / 2403
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Really Small",
  32813. height: math.unit(1, "nm")
  32814. },
  32815. {
  32816. name: "Micro",
  32817. height: math.unit(4, "inches")
  32818. },
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(7, "inches"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Macro",
  32826. height: math.unit(400, "feet")
  32827. },
  32828. {
  32829. name: "Megamacro",
  32830. height: math.unit(100, "miles")
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32836. {
  32837. frontSlim: {
  32838. height: math.unit(7, "feet"),
  32839. name: "Front (Slim)",
  32840. image: {
  32841. source: "./media/characters/issilora/front-slim.svg",
  32842. extra: 529 / 449,
  32843. bottom: 53 / 582
  32844. }
  32845. },
  32846. sideSlim: {
  32847. height: math.unit(7, "feet"),
  32848. name: "Side (Slim)",
  32849. image: {
  32850. source: "./media/characters/issilora/side-slim.svg",
  32851. extra: 570 / 480,
  32852. bottom: 30 / 600
  32853. }
  32854. },
  32855. backSlim: {
  32856. height: math.unit(7, "feet"),
  32857. name: "Back (Slim)",
  32858. image: {
  32859. source: "./media/characters/issilora/back-slim.svg",
  32860. extra: 537 / 455,
  32861. bottom: 46 / 583
  32862. }
  32863. },
  32864. frontBuff: {
  32865. height: math.unit(7, "feet"),
  32866. name: "Front (Buff)",
  32867. image: {
  32868. source: "./media/characters/issilora/front-buff.svg",
  32869. extra: 2310 / 2035,
  32870. bottom: 335 / 2645
  32871. }
  32872. },
  32873. head: {
  32874. height: math.unit(1.94, "feet"),
  32875. name: "Head",
  32876. image: {
  32877. source: "./media/characters/issilora/head.svg"
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Minimum",
  32884. height: math.unit(7, "feet")
  32885. },
  32886. {
  32887. name: "Comfortable",
  32888. height: math.unit(17, "feet")
  32889. },
  32890. {
  32891. name: "Fun Size",
  32892. height: math.unit(47, "feet")
  32893. },
  32894. {
  32895. name: "Natural Macro",
  32896. height: math.unit(137, "feet"),
  32897. default: true
  32898. },
  32899. {
  32900. name: "Maximum Kaiju",
  32901. height: math.unit(397, "feet")
  32902. },
  32903. ]
  32904. ))
  32905. characterMakers.push(() => makeCharacter(
  32906. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32907. {
  32908. front: {
  32909. height: math.unit(50 + 9/12, "feet"),
  32910. weight: math.unit(32.8, "tons"),
  32911. name: "Front",
  32912. image: {
  32913. source: "./media/characters/irb'iiritaahn/front.svg",
  32914. extra: 1878/1826,
  32915. bottom: 326/2204
  32916. }
  32917. },
  32918. back: {
  32919. height: math.unit(50 + 9/12, "feet"),
  32920. weight: math.unit(32.8, "tons"),
  32921. name: "Back",
  32922. image: {
  32923. source: "./media/characters/irb'iiritaahn/back.svg",
  32924. extra: 2052/2018,
  32925. bottom: 152/2204
  32926. }
  32927. },
  32928. head: {
  32929. height: math.unit(12.86, "feet"),
  32930. name: "Head",
  32931. image: {
  32932. source: "./media/characters/irb'iiritaahn/head.svg"
  32933. }
  32934. },
  32935. maw: {
  32936. height: math.unit(9.66, "feet"),
  32937. name: "Maw",
  32938. image: {
  32939. source: "./media/characters/irb'iiritaahn/maw.svg"
  32940. }
  32941. },
  32942. frontDick: {
  32943. height: math.unit(8.78461, "feet"),
  32944. name: "Front Dick",
  32945. image: {
  32946. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32947. }
  32948. },
  32949. rearDick: {
  32950. height: math.unit(8.78461, "feet"),
  32951. name: "Rear Dick",
  32952. image: {
  32953. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32954. }
  32955. },
  32956. rearDickUnfolded: {
  32957. height: math.unit(8.78, "feet"),
  32958. name: "Rear Dick (Unfolded)",
  32959. image: {
  32960. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32961. }
  32962. },
  32963. wings: {
  32964. height: math.unit(43, "feet"),
  32965. name: "Wings",
  32966. image: {
  32967. source: "./media/characters/irb'iiritaahn/wings.svg"
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Macro",
  32974. height: math.unit(50 + 9/12, "feet"),
  32975. default: true
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32981. {
  32982. front: {
  32983. height: math.unit(205, "cm"),
  32984. weight: math.unit(102, "kg"),
  32985. name: "Front",
  32986. image: {
  32987. source: "./media/characters/irbisgreif/front.svg",
  32988. extra: 785/706,
  32989. bottom: 13/798
  32990. }
  32991. },
  32992. back: {
  32993. height: math.unit(205, "cm"),
  32994. weight: math.unit(102, "kg"),
  32995. name: "Back",
  32996. image: {
  32997. source: "./media/characters/irbisgreif/back.svg",
  32998. extra: 713/701,
  32999. bottom: 26/739
  33000. }
  33001. },
  33002. frontDressed: {
  33003. height: math.unit(216, "cm"),
  33004. weight: math.unit(102, "kg"),
  33005. name: "Front-dressed",
  33006. image: {
  33007. source: "./media/characters/irbisgreif/front-dressed.svg",
  33008. extra: 902/776,
  33009. bottom: 14/916
  33010. }
  33011. },
  33012. sideDressed: {
  33013. height: math.unit(195, "cm"),
  33014. weight: math.unit(102, "kg"),
  33015. name: "Side-dressed",
  33016. image: {
  33017. source: "./media/characters/irbisgreif/side-dressed.svg",
  33018. extra: 788/688,
  33019. bottom: 21/809
  33020. }
  33021. },
  33022. backDressed: {
  33023. height: math.unit(216, "cm"),
  33024. weight: math.unit(102, "kg"),
  33025. name: "Back-dressed",
  33026. image: {
  33027. source: "./media/characters/irbisgreif/back-dressed.svg",
  33028. extra: 901/783,
  33029. bottom: 10/911
  33030. }
  33031. },
  33032. dick: {
  33033. height: math.unit(0.49, "feet"),
  33034. name: "Dick",
  33035. image: {
  33036. source: "./media/characters/irbisgreif/dick.svg"
  33037. }
  33038. },
  33039. wingTop: {
  33040. height: math.unit(1.93 , "feet"),
  33041. name: "Wing-top",
  33042. image: {
  33043. source: "./media/characters/irbisgreif/wing-top.svg"
  33044. }
  33045. },
  33046. wingBottom: {
  33047. height: math.unit(1.93 , "feet"),
  33048. name: "Wing-bottom",
  33049. image: {
  33050. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33051. }
  33052. },
  33053. },
  33054. [
  33055. {
  33056. name: "Normal",
  33057. height: math.unit(216, "cm"),
  33058. default: true
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33064. {
  33065. front: {
  33066. height: math.unit(6, "feet"),
  33067. weight: math.unit(150, "lb"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/pride/front.svg",
  33071. extra: 1299/1230,
  33072. bottom: 18/1317
  33073. }
  33074. },
  33075. },
  33076. [
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(7, "feet")
  33080. },
  33081. {
  33082. name: "Mini-macro",
  33083. height: math.unit(11, "feet")
  33084. },
  33085. {
  33086. name: "Macro",
  33087. height: math.unit(15, "meters"),
  33088. default: true
  33089. },
  33090. {
  33091. name: "Macro+",
  33092. height: math.unit(40, "meters")
  33093. },
  33094. ]
  33095. ))
  33096. characterMakers.push(() => makeCharacter(
  33097. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33098. {
  33099. front: {
  33100. height: math.unit(4 + 2 / 12, "feet"),
  33101. weight: math.unit(95, "lb"),
  33102. name: "Front",
  33103. image: {
  33104. source: "./media/characters/vaelophis-nyx/front.svg",
  33105. extra: 2532/2330,
  33106. bottom: 0/2532
  33107. }
  33108. },
  33109. back: {
  33110. height: math.unit(4 + 2 / 12, "feet"),
  33111. weight: math.unit(95, "lb"),
  33112. name: "Back",
  33113. image: {
  33114. source: "./media/characters/vaelophis-nyx/back.svg",
  33115. extra: 2484/2361,
  33116. bottom: 0/2484
  33117. }
  33118. },
  33119. feralSide: {
  33120. height: math.unit(2 + 1/12, "feet"),
  33121. weight: math.unit(20, "lb"),
  33122. name: "Feral (Side)",
  33123. image: {
  33124. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33125. extra: 1721/1581,
  33126. bottom: 70/1791
  33127. }
  33128. },
  33129. feralLazing: {
  33130. height: math.unit(1.08, "feet"),
  33131. weight: math.unit(20, "lb"),
  33132. name: "Feral (Lazing)",
  33133. image: {
  33134. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33135. extra: 822/822,
  33136. bottom: 248/1070
  33137. }
  33138. },
  33139. ear: {
  33140. height: math.unit(0.416, "feet"),
  33141. name: "Ear",
  33142. image: {
  33143. source: "./media/characters/vaelophis-nyx/ear.svg"
  33144. }
  33145. },
  33146. eye: {
  33147. height: math.unit(0.0748, "feet"),
  33148. name: "Eye",
  33149. image: {
  33150. source: "./media/characters/vaelophis-nyx/eye.svg"
  33151. }
  33152. },
  33153. mouth: {
  33154. height: math.unit(0.378, "feet"),
  33155. name: "Mouth",
  33156. image: {
  33157. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33158. }
  33159. },
  33160. spade: {
  33161. height: math.unit(0.55, "feet"),
  33162. name: "Spade",
  33163. image: {
  33164. source: "./media/characters/vaelophis-nyx/spade.svg"
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(4 + 2/12, "feet"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33178. {
  33179. front: {
  33180. height: math.unit(7, "feet"),
  33181. weight: math.unit(231, "lb"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/flux/front.svg",
  33185. extra: 919/871,
  33186. bottom: 0/919
  33187. }
  33188. },
  33189. back: {
  33190. height: math.unit(7, "feet"),
  33191. weight: math.unit(231, "lb"),
  33192. name: "Back",
  33193. image: {
  33194. source: "./media/characters/flux/back.svg",
  33195. extra: 1040/992,
  33196. bottom: 0/1040
  33197. }
  33198. },
  33199. frontDressed: {
  33200. height: math.unit(7, "feet"),
  33201. weight: math.unit(231, "lb"),
  33202. name: "Front (Dressed)",
  33203. image: {
  33204. source: "./media/characters/flux/front-dressed.svg",
  33205. extra: 919/871,
  33206. bottom: 0/919
  33207. }
  33208. },
  33209. feralSide: {
  33210. height: math.unit(5, "feet"),
  33211. weight: math.unit(150, "lb"),
  33212. name: "Feral (Side)",
  33213. image: {
  33214. source: "./media/characters/flux/feral-side.svg",
  33215. extra: 598/528,
  33216. bottom: 28/626
  33217. }
  33218. },
  33219. head: {
  33220. height: math.unit(1.585, "feet"),
  33221. name: "Head",
  33222. image: {
  33223. source: "./media/characters/flux/head.svg"
  33224. }
  33225. },
  33226. headSide: {
  33227. height: math.unit(1.74, "feet"),
  33228. name: "Head (Side)",
  33229. image: {
  33230. source: "./media/characters/flux/head-side.svg"
  33231. }
  33232. },
  33233. headSideFire: {
  33234. height: math.unit(1.76, "feet"),
  33235. name: "Head (Side, Fire)",
  33236. image: {
  33237. source: "./media/characters/flux/head-side-fire.svg"
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(7, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(9, "feet"),
  33254. weight: math.unit(1012, "lb"),
  33255. name: "Front",
  33256. image: {
  33257. source: "./media/characters/ulfra-lupae/front.svg",
  33258. extra: 1083/1011,
  33259. bottom: 67/1150
  33260. }
  33261. },
  33262. },
  33263. [
  33264. {
  33265. name: "Micro",
  33266. height: math.unit(6, "inches")
  33267. },
  33268. {
  33269. name: "Socializing",
  33270. height: math.unit(6 + 5/12, "feet")
  33271. },
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(9, "feet"),
  33275. default: true
  33276. },
  33277. {
  33278. name: "Macro",
  33279. height: math.unit(150, "feet")
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(5 + 2/12, "feet"),
  33288. weight: math.unit(120, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/timber/front.svg",
  33292. extra: 2814/2705,
  33293. bottom: 181/2995
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(5 + 2/12, "feet"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33307. {
  33308. front: {
  33309. height: math.unit(9, "feet"),
  33310. name: "Front",
  33311. image: {
  33312. source: "./media/characters/nicki/front.svg",
  33313. extra: 1240/990,
  33314. bottom: 45/1285
  33315. },
  33316. form: "anthro",
  33317. default: true
  33318. },
  33319. side: {
  33320. height: math.unit(9, "feet"),
  33321. name: "Side",
  33322. image: {
  33323. source: "./media/characters/nicki/side.svg",
  33324. extra: 1047/973,
  33325. bottom: 61/1108
  33326. },
  33327. form: "anthro"
  33328. },
  33329. back: {
  33330. height: math.unit(9, "feet"),
  33331. name: "Back",
  33332. image: {
  33333. source: "./media/characters/nicki/back.svg",
  33334. extra: 1006/965,
  33335. bottom: 39/1045
  33336. },
  33337. form: "anthro"
  33338. },
  33339. taur: {
  33340. height: math.unit(15, "feet"),
  33341. name: "Taur",
  33342. image: {
  33343. source: "./media/characters/nicki/taur.svg",
  33344. extra: 1592/1347,
  33345. bottom: 0/1592
  33346. },
  33347. form: "taur",
  33348. default: true
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(9, "feet"),
  33355. form: "anthro",
  33356. default: true
  33357. },
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(15, "feet"),
  33361. form: "taur",
  33362. default: true
  33363. }
  33364. ],
  33365. {
  33366. "anthro": {
  33367. name: "Anthro",
  33368. default: true
  33369. },
  33370. "taur": {
  33371. name: "Taur"
  33372. }
  33373. }
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(7 + 10/12, "feet"),
  33380. weight: math.unit(3.5, "tons"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/lee/front.svg",
  33384. extra: 1773/1615,
  33385. bottom: 86/1859
  33386. }
  33387. },
  33388. hand: {
  33389. height: math.unit(1.78, "feet"),
  33390. name: "Hand",
  33391. image: {
  33392. source: "./media/characters/lee/hand.svg"
  33393. }
  33394. },
  33395. maw: {
  33396. height: math.unit(1.18, "feet"),
  33397. name: "Maw",
  33398. image: {
  33399. source: "./media/characters/lee/maw.svg"
  33400. }
  33401. },
  33402. },
  33403. [
  33404. {
  33405. name: "Normal",
  33406. height: math.unit(7 + 10/12, "feet"),
  33407. default: true
  33408. },
  33409. ]
  33410. ))
  33411. characterMakers.push(() => makeCharacter(
  33412. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33413. {
  33414. front: {
  33415. height: math.unit(9, "feet"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/guti/front.svg",
  33419. extra: 4551/4355,
  33420. bottom: 123/4674
  33421. }
  33422. },
  33423. tongue: {
  33424. height: math.unit(1, "feet"),
  33425. name: "Tongue",
  33426. image: {
  33427. source: "./media/characters/guti/tongue.svg"
  33428. }
  33429. },
  33430. paw: {
  33431. height: math.unit(1.18, "feet"),
  33432. name: "Paw",
  33433. image: {
  33434. source: "./media/characters/guti/paw.svg"
  33435. }
  33436. },
  33437. },
  33438. [
  33439. {
  33440. name: "Normal",
  33441. height: math.unit(9, "feet"),
  33442. default: true
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33448. {
  33449. side: {
  33450. height: math.unit(5, "meters"),
  33451. name: "Side",
  33452. image: {
  33453. source: "./media/characters/vesper/side.svg",
  33454. extra: 1605/1518,
  33455. bottom: 0/1605
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Small",
  33462. height: math.unit(5, "meters")
  33463. },
  33464. {
  33465. name: "Sage",
  33466. height: math.unit(100, "meters"),
  33467. default: true
  33468. },
  33469. {
  33470. name: "Fun Size",
  33471. height: math.unit(600, "meters")
  33472. },
  33473. {
  33474. name: "Goddess",
  33475. height: math.unit(20000, "km")
  33476. },
  33477. {
  33478. name: "Maximum",
  33479. height: math.unit(5, "galaxies")
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(6 + 3/12, "feet"),
  33488. weight: math.unit(190, "lb"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/gawain/front.svg",
  33492. extra: 2222/2139,
  33493. bottom: 90/2312
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(6 + 3/12, "feet"),
  33498. weight: math.unit(190, "lb"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/gawain/back.svg",
  33502. extra: 2199/2111,
  33503. bottom: 73/2272
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Normal",
  33510. height: math.unit(6 + 3/12, "feet"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33517. {
  33518. side: {
  33519. height: math.unit(3.5, "meters"),
  33520. weight: math.unit(16000, "lb"),
  33521. name: "Side",
  33522. image: {
  33523. source: "./media/characters/dascalti/side.svg",
  33524. extra: 392/273,
  33525. bottom: 47/439
  33526. }
  33527. },
  33528. breath: {
  33529. height: math.unit(7.4, "feet"),
  33530. name: "Breath",
  33531. image: {
  33532. source: "./media/characters/dascalti/breath.svg"
  33533. }
  33534. },
  33535. fed: {
  33536. height: math.unit(3.6, "meters"),
  33537. weight: math.unit(16000, "lb"),
  33538. name: "Fed",
  33539. image: {
  33540. source: "./media/characters/dascalti/fed.svg",
  33541. extra: 1419/820,
  33542. bottom: 95/1514
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(3.5, "meters"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(3 + 5/12, "feet"),
  33559. name: "Front",
  33560. image: {
  33561. source: "./media/characters/mauve/front.svg",
  33562. extra: 1126/1033,
  33563. bottom: 65/1191
  33564. }
  33565. },
  33566. side: {
  33567. height: math.unit(3 + 5/12, "feet"),
  33568. name: "Side",
  33569. image: {
  33570. source: "./media/characters/mauve/side.svg",
  33571. extra: 1089/1001,
  33572. bottom: 29/1118
  33573. }
  33574. },
  33575. back: {
  33576. height: math.unit(3 + 5/12, "feet"),
  33577. name: "Back",
  33578. image: {
  33579. source: "./media/characters/mauve/back.svg",
  33580. extra: 1173/1053,
  33581. bottom: 109/1282
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Normal",
  33588. height: math.unit(3 + 5/12, "feet"),
  33589. default: true
  33590. },
  33591. ]
  33592. ))
  33593. characterMakers.push(() => makeCharacter(
  33594. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33595. {
  33596. front: {
  33597. height: math.unit(6 + 3/12, "feet"),
  33598. weight: math.unit(430, "lb"),
  33599. name: "Front",
  33600. image: {
  33601. source: "./media/characters/carlos/front.svg",
  33602. extra: 1964/1913,
  33603. bottom: 70/2034
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(6 + 3/12, "feet"),
  33611. default: true
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33617. {
  33618. back: {
  33619. height: math.unit(5 + 10/12, "feet"),
  33620. weight: math.unit(200, "lb"),
  33621. name: "Back",
  33622. image: {
  33623. source: "./media/characters/jax/back.svg",
  33624. extra: 764/739,
  33625. bottom: 25/789
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(5 + 10/12, "feet"),
  33633. default: true
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(8, "feet"),
  33642. weight: math.unit(250, "lb"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/eikthynir/front.svg",
  33646. extra: 1332/1166,
  33647. bottom: 82/1414
  33648. }
  33649. },
  33650. back: {
  33651. height: math.unit(8, "feet"),
  33652. weight: math.unit(250, "lb"),
  33653. name: "Back",
  33654. image: {
  33655. source: "./media/characters/eikthynir/back.svg",
  33656. extra: 1342/1190,
  33657. bottom: 19/1361
  33658. }
  33659. },
  33660. dick: {
  33661. height: math.unit(2.35, "feet"),
  33662. name: "Dick",
  33663. image: {
  33664. source: "./media/characters/eikthynir/dick.svg"
  33665. }
  33666. },
  33667. },
  33668. [
  33669. {
  33670. name: "Normal",
  33671. height: math.unit(8, "feet"),
  33672. default: true
  33673. },
  33674. ]
  33675. ))
  33676. characterMakers.push(() => makeCharacter(
  33677. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33678. {
  33679. front: {
  33680. height: math.unit(99, "meters"),
  33681. weight: math.unit(13000, "tons"),
  33682. name: "Front",
  33683. image: {
  33684. source: "./media/characters/zlmos/front.svg",
  33685. extra: 2202/1992,
  33686. bottom: 315/2517
  33687. }
  33688. },
  33689. },
  33690. [
  33691. {
  33692. name: "Macro",
  33693. height: math.unit(99, "meters"),
  33694. default: true
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(6 + 5/12, "feet"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/purri/front.svg",
  33706. extra: 1698/1610,
  33707. bottom: 32/1730
  33708. }
  33709. },
  33710. frontAlt: {
  33711. height: math.unit(6 + 5/12, "feet"),
  33712. name: "Front (Alt)",
  33713. image: {
  33714. source: "./media/characters/purri/front-alt.svg",
  33715. extra: 450/420,
  33716. bottom: 26/476
  33717. }
  33718. },
  33719. boots: {
  33720. height: math.unit(5.5, "feet"),
  33721. name: "Boots",
  33722. image: {
  33723. source: "./media/characters/purri/boots.svg",
  33724. extra: 905/853,
  33725. bottom: 18/923
  33726. }
  33727. },
  33728. lying: {
  33729. height: math.unit(2, "feet"),
  33730. name: "Lying",
  33731. image: {
  33732. source: "./media/characters/purri/lying.svg",
  33733. extra: 940/843,
  33734. bottom: 146/1086
  33735. }
  33736. },
  33737. devious: {
  33738. height: math.unit(1.77, "feet"),
  33739. name: "Devious",
  33740. image: {
  33741. source: "./media/characters/purri/devious.svg",
  33742. extra: 1440/1155,
  33743. bottom: 147/1587
  33744. }
  33745. },
  33746. bean: {
  33747. height: math.unit(1.94, "feet"),
  33748. name: "Bean",
  33749. image: {
  33750. source: "./media/characters/purri/bean.svg"
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Micro",
  33757. height: math.unit(1, "mm")
  33758. },
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(6 + 5/12, "feet"),
  33762. default: true
  33763. },
  33764. {
  33765. name: "Macro :3c",
  33766. height: math.unit(2, "miles")
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(6 + 2/12, "feet"),
  33775. weight: math.unit(250, "lb"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/moonlight/front.svg",
  33779. extra: 1044/908,
  33780. bottom: 56/1100
  33781. }
  33782. },
  33783. feral: {
  33784. height: math.unit(3 + 1/12, "feet"),
  33785. weight: math.unit(50, "kg"),
  33786. name: "Feral",
  33787. image: {
  33788. source: "./media/characters/moonlight/feral.svg",
  33789. extra: 3705/2791,
  33790. bottom: 145/3850
  33791. }
  33792. },
  33793. paw: {
  33794. height: math.unit(1, "feet"),
  33795. name: "Paw",
  33796. image: {
  33797. source: "./media/characters/moonlight/paw.svg"
  33798. }
  33799. },
  33800. paws: {
  33801. height: math.unit(0.98, "feet"),
  33802. name: "Paws",
  33803. image: {
  33804. source: "./media/characters/moonlight/paws.svg",
  33805. extra: 939/939,
  33806. bottom: 50/989
  33807. }
  33808. },
  33809. mouth: {
  33810. height: math.unit(0.48, "feet"),
  33811. name: "Mouth",
  33812. image: {
  33813. source: "./media/characters/moonlight/mouth.svg"
  33814. }
  33815. },
  33816. dick: {
  33817. height: math.unit(1.46, "feet"),
  33818. name: "Dick",
  33819. image: {
  33820. source: "./media/characters/moonlight/dick.svg"
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(6 + 2/12, "feet"),
  33828. default: true
  33829. },
  33830. {
  33831. name: "Macro",
  33832. height: math.unit(300, "feet")
  33833. },
  33834. {
  33835. name: "Macro+",
  33836. height: math.unit(1, "mile")
  33837. },
  33838. {
  33839. name: "Mt. Moon",
  33840. height: math.unit(5, "miles")
  33841. },
  33842. {
  33843. name: "Megamacro",
  33844. height: math.unit(15, "miles")
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33850. {
  33851. back: {
  33852. height: math.unit(6, "feet"),
  33853. weight: math.unit(150, "lb"),
  33854. name: "Back",
  33855. image: {
  33856. source: "./media/characters/sylen/back.svg",
  33857. extra: 1335/1273,
  33858. bottom: 107/1442
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(5 + 5/12, "feet")
  33866. },
  33867. {
  33868. name: "Megamacro",
  33869. height: math.unit(3, "miles"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(6, "feet"),
  33879. weight: math.unit(190, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/huttser/front.svg",
  33883. extra: 1152/1058,
  33884. bottom: 23/1175
  33885. }
  33886. },
  33887. side: {
  33888. height: math.unit(6, "feet"),
  33889. weight: math.unit(190, "lb"),
  33890. name: "Side",
  33891. image: {
  33892. source: "./media/characters/huttser/side.svg",
  33893. extra: 1174/1065,
  33894. bottom: 18/1192
  33895. }
  33896. },
  33897. back: {
  33898. height: math.unit(6, "feet"),
  33899. weight: math.unit(190, "lb"),
  33900. name: "Back",
  33901. image: {
  33902. source: "./media/characters/huttser/back.svg",
  33903. extra: 1158/1056,
  33904. bottom: 12/1170
  33905. }
  33906. },
  33907. },
  33908. [
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33913. {
  33914. side: {
  33915. height: math.unit(12 + 9/12, "feet"),
  33916. weight: math.unit(15000, "lb"),
  33917. name: "Side",
  33918. image: {
  33919. source: "./media/characters/faan/side.svg",
  33920. extra: 2747/2697,
  33921. bottom: 0/2747
  33922. }
  33923. },
  33924. front: {
  33925. height: math.unit(12 + 9/12, "feet"),
  33926. weight: math.unit(15000, "lb"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/faan/front.svg",
  33930. extra: 607/571,
  33931. bottom: 24/631
  33932. }
  33933. },
  33934. head: {
  33935. height: math.unit(2.85, "feet"),
  33936. name: "Head",
  33937. image: {
  33938. source: "./media/characters/faan/head.svg"
  33939. }
  33940. },
  33941. headAlt: {
  33942. height: math.unit(3.13, "feet"),
  33943. name: "Head-alt",
  33944. image: {
  33945. source: "./media/characters/faan/head-alt.svg"
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Normal",
  33952. height: math.unit(12 + 9/12, "feet"),
  33953. default: true
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33959. {
  33960. front: {
  33961. height: math.unit(6, "feet"),
  33962. weight: math.unit(300, "lb"),
  33963. name: "Front",
  33964. image: {
  33965. source: "./media/characters/tanio/front.svg",
  33966. extra: 711/673,
  33967. bottom: 25/736
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Normal",
  33974. height: math.unit(6, "feet"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33981. {
  33982. front: {
  33983. height: math.unit(3, "inches"),
  33984. name: "Front",
  33985. image: {
  33986. source: "./media/characters/noboru/front.svg",
  33987. extra: 1039/932,
  33988. bottom: 18/1057
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Micro",
  33995. height: math.unit(3, "inches"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(1.85, "meters"),
  34005. weight: math.unit(80, "kg"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/daniel-barrett/front.svg",
  34009. extra: 355/337,
  34010. bottom: 9/364
  34011. }
  34012. },
  34013. },
  34014. [
  34015. {
  34016. name: "Pico",
  34017. height: math.unit(0.0433, "mm")
  34018. },
  34019. {
  34020. name: "Nano",
  34021. height: math.unit(1.5, "mm")
  34022. },
  34023. {
  34024. name: "Micro",
  34025. height: math.unit(5.3, "cm"),
  34026. default: true
  34027. },
  34028. {
  34029. name: "Normal",
  34030. height: math.unit(1.85, "meters")
  34031. },
  34032. {
  34033. name: "Macro",
  34034. height: math.unit(64.7, "meters")
  34035. },
  34036. {
  34037. name: "Megamacro",
  34038. height: math.unit(2.26, "km")
  34039. },
  34040. {
  34041. name: "Gigamacro",
  34042. height: math.unit(79, "km")
  34043. },
  34044. {
  34045. name: "Teramacro",
  34046. height: math.unit(2765, "km")
  34047. },
  34048. {
  34049. name: "Petamacro",
  34050. height: math.unit(96678, "km")
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(30, "meters"),
  34059. weight: math.unit(400, "tons"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/zeel/front.svg",
  34063. extra: 2599/2599,
  34064. bottom: 226/2825
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Macro",
  34071. height: math.unit(30, "meters"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(6 + 7/12, "feet"),
  34081. weight: math.unit(210, "lb"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/tarn/front.svg",
  34085. extra: 3517/3220,
  34086. bottom: 91/3608
  34087. }
  34088. },
  34089. back: {
  34090. height: math.unit(6 + 7/12, "feet"),
  34091. weight: math.unit(210, "lb"),
  34092. name: "Back",
  34093. image: {
  34094. source: "./media/characters/tarn/back.svg",
  34095. extra: 3566/3241,
  34096. bottom: 34/3600
  34097. }
  34098. },
  34099. dick: {
  34100. height: math.unit(1.65, "feet"),
  34101. name: "Dick",
  34102. image: {
  34103. source: "./media/characters/tarn/dick.svg"
  34104. }
  34105. },
  34106. paw: {
  34107. height: math.unit(1.80, "feet"),
  34108. name: "Paw",
  34109. image: {
  34110. source: "./media/characters/tarn/paw.svg"
  34111. }
  34112. },
  34113. tongue: {
  34114. height: math.unit(0.97, "feet"),
  34115. name: "Tongue",
  34116. image: {
  34117. source: "./media/characters/tarn/tongue.svg"
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Micro",
  34124. height: math.unit(4, "inches")
  34125. },
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(6 + 7/12, "feet"),
  34129. default: true
  34130. },
  34131. {
  34132. name: "Macro",
  34133. height: math.unit(300, "feet")
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34139. {
  34140. front: {
  34141. height: math.unit(5 + 7/12, "feet"),
  34142. weight: math.unit(80, "kg"),
  34143. name: "Front",
  34144. image: {
  34145. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34146. extra: 3023/2865,
  34147. bottom: 33/3056
  34148. }
  34149. },
  34150. back: {
  34151. height: math.unit(5 + 7/12, "feet"),
  34152. weight: math.unit(80, "kg"),
  34153. name: "Back",
  34154. image: {
  34155. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34156. extra: 3020/2886,
  34157. bottom: 30/3050
  34158. }
  34159. },
  34160. dick: {
  34161. height: math.unit(0.98, "feet"),
  34162. name: "Dick",
  34163. image: {
  34164. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34165. }
  34166. },
  34167. anatomy: {
  34168. height: math.unit(2.86, "feet"),
  34169. name: "Anatomy",
  34170. image: {
  34171. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Really Small",
  34178. height: math.unit(2, "inches")
  34179. },
  34180. {
  34181. name: "Micro",
  34182. height: math.unit(5.583, "inches")
  34183. },
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(5 + 7/12, "feet"),
  34187. default: true
  34188. },
  34189. {
  34190. name: "Macro",
  34191. height: math.unit(67, "feet")
  34192. },
  34193. {
  34194. name: "Megamacro",
  34195. height: math.unit(134, "feet")
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(9, "feet"),
  34204. weight: math.unit(120, "lb"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/sally/front.svg",
  34208. extra: 1506/1349,
  34209. bottom: 66/1572
  34210. }
  34211. },
  34212. },
  34213. [
  34214. {
  34215. name: "Normal",
  34216. height: math.unit(9, "feet"),
  34217. default: true
  34218. },
  34219. ]
  34220. ))
  34221. characterMakers.push(() => makeCharacter(
  34222. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34223. {
  34224. front: {
  34225. height: math.unit(8, "feet"),
  34226. weight: math.unit(900, "lb"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/owen/front.svg",
  34230. extra: 1761/1657,
  34231. bottom: 74/1835
  34232. }
  34233. },
  34234. side: {
  34235. height: math.unit(8, "feet"),
  34236. weight: math.unit(900, "lb"),
  34237. name: "Side",
  34238. image: {
  34239. source: "./media/characters/owen/side.svg",
  34240. extra: 1797/1734,
  34241. bottom: 30/1827
  34242. }
  34243. },
  34244. back: {
  34245. height: math.unit(8, "feet"),
  34246. weight: math.unit(900, "lb"),
  34247. name: "Back",
  34248. image: {
  34249. source: "./media/characters/owen/back.svg",
  34250. extra: 1796/1706,
  34251. bottom: 59/1855
  34252. }
  34253. },
  34254. maw: {
  34255. height: math.unit(1.76, "feet"),
  34256. name: "Maw",
  34257. image: {
  34258. source: "./media/characters/owen/maw.svg"
  34259. }
  34260. },
  34261. },
  34262. [
  34263. {
  34264. name: "Normal",
  34265. height: math.unit(8, "feet"),
  34266. default: true
  34267. },
  34268. ]
  34269. ))
  34270. characterMakers.push(() => makeCharacter(
  34271. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34272. {
  34273. front: {
  34274. height: math.unit(4, "feet"),
  34275. weight: math.unit(400, "lb"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/ryth/front.svg",
  34279. extra: 1920/1748,
  34280. bottom: 42/1962
  34281. }
  34282. },
  34283. back: {
  34284. height: math.unit(4, "feet"),
  34285. weight: math.unit(400, "lb"),
  34286. name: "Back",
  34287. image: {
  34288. source: "./media/characters/ryth/back.svg",
  34289. extra: 1897/1690,
  34290. bottom: 89/1986
  34291. }
  34292. },
  34293. mouth: {
  34294. height: math.unit(1.39, "feet"),
  34295. name: "Mouth",
  34296. image: {
  34297. source: "./media/characters/ryth/mouth.svg"
  34298. }
  34299. },
  34300. tailmaw: {
  34301. height: math.unit(1.23, "feet"),
  34302. name: "Tailmaw",
  34303. image: {
  34304. source: "./media/characters/ryth/tailmaw.svg"
  34305. }
  34306. },
  34307. goia: {
  34308. height: math.unit(4, "meters"),
  34309. weight: math.unit(10800, "lb"),
  34310. name: "Goia",
  34311. image: {
  34312. source: "./media/characters/ryth/goia.svg",
  34313. extra: 745/640,
  34314. bottom: 107/852
  34315. }
  34316. },
  34317. goiaFront: {
  34318. height: math.unit(4, "meters"),
  34319. weight: math.unit(10800, "lb"),
  34320. name: "Goia (Front)",
  34321. image: {
  34322. source: "./media/characters/ryth/goia-front.svg",
  34323. extra: 750/586,
  34324. bottom: 114/864
  34325. }
  34326. },
  34327. goiaMaw: {
  34328. height: math.unit(5.55, "feet"),
  34329. name: "Goia Maw",
  34330. image: {
  34331. source: "./media/characters/ryth/goia-maw.svg"
  34332. }
  34333. },
  34334. goiaForepaw: {
  34335. height: math.unit(3.5, "feet"),
  34336. name: "Goia Forepaw",
  34337. image: {
  34338. source: "./media/characters/ryth/goia-forepaw.svg"
  34339. }
  34340. },
  34341. goiaHindpaw: {
  34342. height: math.unit(5.55, "feet"),
  34343. name: "Goia Hindpaw",
  34344. image: {
  34345. source: "./media/characters/ryth/goia-hindpaw.svg"
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(4, "feet"),
  34353. default: true
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(7, "feet"),
  34362. weight: math.unit(180, "lb"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/necrolance/front.svg",
  34366. extra: 1062/947,
  34367. bottom: 41/1103
  34368. }
  34369. },
  34370. back: {
  34371. height: math.unit(7, "feet"),
  34372. weight: math.unit(180, "lb"),
  34373. name: "Back",
  34374. image: {
  34375. source: "./media/characters/necrolance/back.svg",
  34376. extra: 1045/984,
  34377. bottom: 14/1059
  34378. }
  34379. },
  34380. wing: {
  34381. height: math.unit(2.67, "feet"),
  34382. name: "Wing",
  34383. image: {
  34384. source: "./media/characters/necrolance/wing.svg"
  34385. }
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(7, "feet"),
  34392. default: true
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34398. {
  34399. front: {
  34400. height: math.unit(76, "meters"),
  34401. weight: math.unit(30000, "tons"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/tyler/front.svg",
  34405. extra: 1640/1640,
  34406. bottom: 114/1754
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Macro",
  34413. height: math.unit(76, "meters"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34420. {
  34421. front: {
  34422. height: math.unit(4 + 11/12, "feet"),
  34423. weight: math.unit(132, "lb"),
  34424. name: "Front",
  34425. image: {
  34426. source: "./media/characters/icey/front.svg",
  34427. extra: 2750/2550,
  34428. bottom: 33/2783
  34429. }
  34430. },
  34431. back: {
  34432. height: math.unit(4 + 11/12, "feet"),
  34433. weight: math.unit(132, "lb"),
  34434. name: "Back",
  34435. image: {
  34436. source: "./media/characters/icey/back.svg",
  34437. extra: 2624/2481,
  34438. bottom: 35/2659
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(4 + 11/12, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(100, "feet"),
  34455. weight: math.unit(0, "lb"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/smile/front.svg",
  34459. extra: 2983/2912,
  34460. bottom: 162/3145
  34461. }
  34462. },
  34463. back: {
  34464. height: math.unit(100, "feet"),
  34465. weight: math.unit(0, "lb"),
  34466. name: "Back",
  34467. image: {
  34468. source: "./media/characters/smile/back.svg",
  34469. extra: 3143/3031,
  34470. bottom: 91/3234
  34471. }
  34472. },
  34473. head: {
  34474. height: math.unit(26.3, "feet"),
  34475. weight: math.unit(0, "lb"),
  34476. name: "Head",
  34477. image: {
  34478. source: "./media/characters/smile/head.svg"
  34479. }
  34480. },
  34481. collar: {
  34482. height: math.unit(5.3, "feet"),
  34483. weight: math.unit(0, "lb"),
  34484. name: "Collar",
  34485. image: {
  34486. source: "./media/characters/smile/collar.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Macro",
  34493. height: math.unit(100, "feet"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34500. {
  34501. dragon: {
  34502. height: math.unit(26, "feet"),
  34503. weight: math.unit(36, "tons"),
  34504. name: "Dragon",
  34505. image: {
  34506. source: "./media/characters/arimphae/dragon.svg",
  34507. extra: 1574/983,
  34508. bottom: 357/1931
  34509. }
  34510. },
  34511. drake: {
  34512. height: math.unit(9, "feet"),
  34513. weight: math.unit(1.5, "tons"),
  34514. name: "Drake",
  34515. image: {
  34516. source: "./media/characters/arimphae/drake.svg",
  34517. extra: 1120/925,
  34518. bottom: 435/1555
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Small",
  34525. height: math.unit(26*5/9, "feet")
  34526. },
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(26, "feet"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(8 + 9/12, "feet"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/xander/front.svg",
  34542. extra: 1237/974,
  34543. bottom: 94/1331
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(8 + 9/12, "feet"),
  34551. default: true
  34552. },
  34553. {
  34554. name: "Gaze Grabber",
  34555. height: math.unit(13 + 8/12, "feet")
  34556. },
  34557. {
  34558. name: "Jaw Dropper",
  34559. height: math.unit(27, "feet")
  34560. },
  34561. {
  34562. name: "Show Stopper",
  34563. height: math.unit(136, "feet")
  34564. },
  34565. {
  34566. name: "Superstar",
  34567. height: math.unit(1.9e6, "miles")
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34573. {
  34574. side: {
  34575. height: math.unit(2100, "feet"),
  34576. name: "Side",
  34577. image: {
  34578. source: "./media/characters/osiris/side.svg",
  34579. extra: 1105/939,
  34580. bottom: 167/1272
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Macro",
  34587. height: math.unit(2100, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(6 + 8/12, "feet"),
  34597. weight: math.unit(225, "lb"),
  34598. name: "Front",
  34599. image: {
  34600. source: "./media/characters/rhys-londe/front.svg",
  34601. extra: 2258/2141,
  34602. bottom: 188/2446
  34603. }
  34604. },
  34605. back: {
  34606. height: math.unit(6 + 8/12, "feet"),
  34607. weight: math.unit(225, "lb"),
  34608. name: "Back",
  34609. image: {
  34610. source: "./media/characters/rhys-londe/back.svg",
  34611. extra: 2237/2137,
  34612. bottom: 63/2300
  34613. }
  34614. },
  34615. frontNsfw: {
  34616. height: math.unit(6 + 8/12, "feet"),
  34617. weight: math.unit(225, "lb"),
  34618. name: "Front (NSFW)",
  34619. image: {
  34620. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34621. extra: 2258/2141,
  34622. bottom: 188/2446
  34623. }
  34624. },
  34625. backNsfw: {
  34626. height: math.unit(6 + 8/12, "feet"),
  34627. weight: math.unit(225, "lb"),
  34628. name: "Back (NSFW)",
  34629. image: {
  34630. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34631. extra: 2237/2137,
  34632. bottom: 63/2300
  34633. }
  34634. },
  34635. dick: {
  34636. height: math.unit(30, "inches"),
  34637. name: "Dick",
  34638. image: {
  34639. source: "./media/characters/rhys-londe/dick.svg"
  34640. }
  34641. },
  34642. maw: {
  34643. height: math.unit(1.6, "feet"),
  34644. name: "Maw",
  34645. image: {
  34646. source: "./media/characters/rhys-londe/maw.svg"
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(6 + 8/12, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(3 + 10/12, "feet"),
  34663. weight: math.unit(90, "lb"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/taivas-ensim/front.svg",
  34667. extra: 1327/1216,
  34668. bottom: 96/1423
  34669. }
  34670. },
  34671. back: {
  34672. height: math.unit(3 + 10/12, "feet"),
  34673. weight: math.unit(90, "lb"),
  34674. name: "Back",
  34675. image: {
  34676. source: "./media/characters/taivas-ensim/back.svg",
  34677. extra: 1355/1247,
  34678. bottom: 11/1366
  34679. }
  34680. },
  34681. frontNsfw: {
  34682. height: math.unit(3 + 10/12, "feet"),
  34683. weight: math.unit(90, "lb"),
  34684. name: "Front (NSFW)",
  34685. image: {
  34686. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34687. extra: 1327/1216,
  34688. bottom: 96/1423
  34689. }
  34690. },
  34691. backNsfw: {
  34692. height: math.unit(3 + 10/12, "feet"),
  34693. weight: math.unit(90, "lb"),
  34694. name: "Back (NSFW)",
  34695. image: {
  34696. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34697. extra: 1355/1247,
  34698. bottom: 11/1366
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(3 + 10/12, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(9 + 6/12, "feet"),
  34715. weight: math.unit(940, "lb"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/byliss/front.svg",
  34719. extra: 1327/1290,
  34720. bottom: 82/1409
  34721. }
  34722. },
  34723. back: {
  34724. height: math.unit(9 + 6/12, "feet"),
  34725. weight: math.unit(940, "lb"),
  34726. name: "Back",
  34727. image: {
  34728. source: "./media/characters/byliss/back.svg",
  34729. extra: 1376/1349,
  34730. bottom: 9/1385
  34731. }
  34732. },
  34733. frontNsfw: {
  34734. height: math.unit(9 + 6/12, "feet"),
  34735. weight: math.unit(940, "lb"),
  34736. name: "Front (NSFW)",
  34737. image: {
  34738. source: "./media/characters/byliss/front-nsfw.svg",
  34739. extra: 1327/1290,
  34740. bottom: 82/1409
  34741. }
  34742. },
  34743. backNsfw: {
  34744. height: math.unit(9 + 6/12, "feet"),
  34745. weight: math.unit(940, "lb"),
  34746. name: "Back (NSFW)",
  34747. image: {
  34748. source: "./media/characters/byliss/back-nsfw.svg",
  34749. extra: 1376/1349,
  34750. bottom: 9/1385
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(9 + 6/12, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(5 + 2/12, "feet"),
  34767. weight: math.unit(200, "lb"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/noraly/front.svg",
  34771. extra: 4985/4773,
  34772. bottom: 150/5135
  34773. }
  34774. },
  34775. full: {
  34776. height: math.unit(5 + 2/12, "feet"),
  34777. weight: math.unit(164, "lb"),
  34778. name: "Full",
  34779. image: {
  34780. source: "./media/characters/noraly/full.svg",
  34781. extra: 1114/1059,
  34782. bottom: 35/1149
  34783. }
  34784. },
  34785. fuller: {
  34786. height: math.unit(5 + 2/12, "feet"),
  34787. weight: math.unit(230, "lb"),
  34788. name: "Fuller",
  34789. image: {
  34790. source: "./media/characters/noraly/fuller.svg",
  34791. extra: 1114/1059,
  34792. bottom: 35/1149
  34793. }
  34794. },
  34795. fullest: {
  34796. height: math.unit(5 + 2/12, "feet"),
  34797. weight: math.unit(300, "lb"),
  34798. name: "Fullest",
  34799. image: {
  34800. source: "./media/characters/noraly/fullest.svg",
  34801. extra: 1114/1059,
  34802. bottom: 35/1149
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(5 + 2/12, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34816. {
  34817. front: {
  34818. height: math.unit(5 + 2/12, "feet"),
  34819. weight: math.unit(210, "lb"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/pera/front.svg",
  34823. extra: 1560/1531,
  34824. bottom: 165/1725
  34825. }
  34826. },
  34827. back: {
  34828. height: math.unit(5 + 2/12, "feet"),
  34829. weight: math.unit(210, "lb"),
  34830. name: "Back",
  34831. image: {
  34832. source: "./media/characters/pera/back.svg",
  34833. extra: 1523/1493,
  34834. bottom: 152/1675
  34835. }
  34836. },
  34837. dick: {
  34838. height: math.unit(2.4, "feet"),
  34839. name: "Dick",
  34840. image: {
  34841. source: "./media/characters/pera/dick.svg"
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(5 + 2/12, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(12, "feet"),
  34858. weight: math.unit(3200, "lb"),
  34859. name: "Front",
  34860. image: {
  34861. source: "./media/characters/julian/front.svg",
  34862. extra: 2962/2701,
  34863. bottom: 184/3146
  34864. }
  34865. },
  34866. maw: {
  34867. height: math.unit(5.35, "feet"),
  34868. name: "Maw",
  34869. image: {
  34870. source: "./media/characters/julian/maw.svg"
  34871. }
  34872. },
  34873. paw: {
  34874. height: math.unit(3.07, "feet"),
  34875. name: "Paw",
  34876. image: {
  34877. source: "./media/characters/julian/paw.svg"
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Default",
  34884. height: math.unit(12, "feet"),
  34885. default: true
  34886. },
  34887. {
  34888. name: "Big",
  34889. height: math.unit(50, "feet")
  34890. },
  34891. {
  34892. name: "Really Big",
  34893. height: math.unit(1, "mile")
  34894. },
  34895. {
  34896. name: "Extremely Big",
  34897. height: math.unit(100, "miles")
  34898. },
  34899. {
  34900. name: "Planet Hugger",
  34901. height: math.unit(200, "megameters")
  34902. },
  34903. {
  34904. name: "Unreasonably Big",
  34905. height: math.unit(1e300, "meters")
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34911. {
  34912. solgooleo: {
  34913. height: math.unit(4, "meters"),
  34914. weight: math.unit(6000*1.5, "kg"),
  34915. volume: math.unit(6000, "liters"),
  34916. name: "Solgooleo",
  34917. image: {
  34918. source: "./media/characters/pi/solgooleo.svg",
  34919. extra: 388/331,
  34920. bottom: 29/417
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(4, "meters"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(8, "feet"),
  34937. weight: math.unit(4, "tons"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/shaun/front.svg",
  34941. extra: 503/495,
  34942. bottom: 20/523
  34943. }
  34944. },
  34945. back: {
  34946. height: math.unit(8, "feet"),
  34947. weight: math.unit(4, "tons"),
  34948. name: "Back",
  34949. image: {
  34950. source: "./media/characters/shaun/back.svg",
  34951. extra: 487/480,
  34952. bottom: 20/507
  34953. }
  34954. },
  34955. },
  34956. [
  34957. {
  34958. name: "Lorg",
  34959. height: math.unit(8, "feet"),
  34960. default: true
  34961. },
  34962. ]
  34963. ))
  34964. characterMakers.push(() => makeCharacter(
  34965. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34966. {
  34967. frontAnthro: {
  34968. height: math.unit(7, "feet"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/sini/front-anthro.svg",
  34972. extra: 726/678,
  34973. bottom: 35/761
  34974. },
  34975. form: "anthro",
  34976. default: true
  34977. },
  34978. backAnthro: {
  34979. height: math.unit(7, "feet"),
  34980. name: "Back",
  34981. image: {
  34982. source: "./media/characters/sini/back-anthro.svg",
  34983. extra: 743/701,
  34984. bottom: 12/755
  34985. },
  34986. form: "anthro",
  34987. },
  34988. frontAnthroNsfw: {
  34989. height: math.unit(7, "feet"),
  34990. name: "Front (NSFW)",
  34991. image: {
  34992. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34993. extra: 726/678,
  34994. bottom: 35/761
  34995. },
  34996. form: "anthro"
  34997. },
  34998. backAnthroNsfw: {
  34999. height: math.unit(7, "feet"),
  35000. name: "Back (NSFW)",
  35001. image: {
  35002. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35003. extra: 743/701,
  35004. bottom: 12/755
  35005. },
  35006. form: "anthro",
  35007. },
  35008. mawAnthro: {
  35009. height: math.unit(2.14, "feet"),
  35010. name: "Maw",
  35011. image: {
  35012. source: "./media/characters/sini/maw-anthro.svg"
  35013. },
  35014. form: "anthro"
  35015. },
  35016. dick: {
  35017. height: math.unit(1.45, "feet"),
  35018. name: "Dick",
  35019. image: {
  35020. source: "./media/characters/sini/dick-anthro.svg"
  35021. },
  35022. form: "anthro"
  35023. },
  35024. feral: {
  35025. height: math.unit(16, "feet"),
  35026. name: "Feral",
  35027. image: {
  35028. source: "./media/characters/sini/feral.svg",
  35029. extra: 814/605,
  35030. bottom: 11/825
  35031. },
  35032. form: "feral",
  35033. default: true
  35034. },
  35035. feralNsfw: {
  35036. height: math.unit(16, "feet"),
  35037. name: "Feral (NSFW)",
  35038. image: {
  35039. source: "./media/characters/sini/feral-nsfw.svg",
  35040. extra: 814/605,
  35041. bottom: 11/825
  35042. },
  35043. form: "feral"
  35044. },
  35045. mawFeral: {
  35046. height: math.unit(5.66, "feet"),
  35047. name: "Maw",
  35048. image: {
  35049. source: "./media/characters/sini/maw-feral.svg"
  35050. },
  35051. form: "feral",
  35052. },
  35053. pawFeral: {
  35054. height: math.unit(5.17, "feet"),
  35055. name: "Paw",
  35056. image: {
  35057. source: "./media/characters/sini/paw-feral.svg"
  35058. },
  35059. form: "feral",
  35060. },
  35061. rumpFeral: {
  35062. height: math.unit(13.11, "feet"),
  35063. name: "Rump",
  35064. image: {
  35065. source: "./media/characters/sini/rump-feral.svg"
  35066. },
  35067. form: "feral",
  35068. },
  35069. dickFeral: {
  35070. height: math.unit(1, "feet"),
  35071. name: "Dick",
  35072. image: {
  35073. source: "./media/characters/sini/dick-feral.svg"
  35074. },
  35075. form: "feral",
  35076. },
  35077. eyeFeral: {
  35078. height: math.unit(1.23, "feet"),
  35079. name: "Eye",
  35080. image: {
  35081. source: "./media/characters/sini/eye-feral.svg"
  35082. },
  35083. form: "feral",
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(7, "feet"),
  35090. default: true,
  35091. form: "anthro"
  35092. },
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(16, "feet"),
  35096. default: true,
  35097. form: "feral"
  35098. },
  35099. ],
  35100. {
  35101. "anthro": {
  35102. name: "Anthro",
  35103. default: true
  35104. },
  35105. "feral": {
  35106. name: "Feral",
  35107. }
  35108. }
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35112. {
  35113. side: {
  35114. height: math.unit(47.2, "meters"),
  35115. weight: math.unit(10000, "tons"),
  35116. name: "Side",
  35117. image: {
  35118. source: "./media/characters/raylldo/side.svg",
  35119. extra: 2363/642,
  35120. bottom: 221/2584
  35121. }
  35122. },
  35123. top: {
  35124. height: math.unit(240, "meters"),
  35125. weight: math.unit(10000, "tons"),
  35126. name: "Top",
  35127. image: {
  35128. source: "./media/characters/raylldo/top.svg"
  35129. }
  35130. },
  35131. bottom: {
  35132. height: math.unit(240, "meters"),
  35133. weight: math.unit(10000, "tons"),
  35134. name: "Bottom",
  35135. image: {
  35136. source: "./media/characters/raylldo/bottom.svg"
  35137. }
  35138. },
  35139. head: {
  35140. height: math.unit(38.6, "meters"),
  35141. name: "Head",
  35142. image: {
  35143. source: "./media/characters/raylldo/head.svg",
  35144. extra: 1335/1112,
  35145. bottom: 0/1335
  35146. }
  35147. },
  35148. maw: {
  35149. height: math.unit(16.37, "meters"),
  35150. name: "Maw",
  35151. image: {
  35152. source: "./media/characters/raylldo/maw.svg",
  35153. extra: 883/660,
  35154. bottom: 0/883
  35155. },
  35156. extraAttributes: {
  35157. preyCapacity: {
  35158. name: "Capacity",
  35159. power: 3,
  35160. type: "volume",
  35161. base: math.unit(1000, "people")
  35162. },
  35163. tongueSize: {
  35164. name: "Tongue Size",
  35165. power: 2,
  35166. type: "area",
  35167. base: math.unit(21, "m^2")
  35168. }
  35169. }
  35170. },
  35171. forepaw: {
  35172. height: math.unit(18, "meters"),
  35173. name: "Forepaw",
  35174. image: {
  35175. source: "./media/characters/raylldo/forepaw.svg"
  35176. }
  35177. },
  35178. hindpaw: {
  35179. height: math.unit(23, "meters"),
  35180. name: "Hindpaw",
  35181. image: {
  35182. source: "./media/characters/raylldo/hindpaw.svg"
  35183. }
  35184. },
  35185. genitals: {
  35186. height: math.unit(42, "meters"),
  35187. name: "Genitals",
  35188. image: {
  35189. source: "./media/characters/raylldo/genitals.svg"
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(47.2, "meters"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35203. {
  35204. anthroFront: {
  35205. height: math.unit(9, "feet"),
  35206. weight: math.unit(600, "lb"),
  35207. name: "Anthro (Front)",
  35208. image: {
  35209. source: "./media/characters/glint/anthro-front.svg",
  35210. extra: 1097/1018,
  35211. bottom: 28/1125
  35212. }
  35213. },
  35214. anthroBack: {
  35215. height: math.unit(9, "feet"),
  35216. weight: math.unit(600, "lb"),
  35217. name: "Anthro (Back)",
  35218. image: {
  35219. source: "./media/characters/glint/anthro-back.svg",
  35220. extra: 1154/997,
  35221. bottom: 36/1190
  35222. }
  35223. },
  35224. feral: {
  35225. height: math.unit(11, "feet"),
  35226. weight: math.unit(50000, "lb"),
  35227. name: "Feral",
  35228. image: {
  35229. source: "./media/characters/glint/feral.svg",
  35230. extra: 3035/1585,
  35231. bottom: 1169/4204
  35232. }
  35233. },
  35234. dickAnthro: {
  35235. height: math.unit(0.7, "meters"),
  35236. name: "Dick (Anthro)",
  35237. image: {
  35238. source: "./media/characters/glint/dick-anthro.svg"
  35239. }
  35240. },
  35241. dickFeral: {
  35242. height: math.unit(2.65, "meters"),
  35243. name: "Dick (Feral)",
  35244. image: {
  35245. source: "./media/characters/glint/dick-feral.svg"
  35246. }
  35247. },
  35248. slitHidden: {
  35249. height: math.unit(5.85, "meters"),
  35250. name: "Slit (Hidden)",
  35251. image: {
  35252. source: "./media/characters/glint/slit-hidden.svg"
  35253. }
  35254. },
  35255. slitErect: {
  35256. height: math.unit(5.85, "meters"),
  35257. name: "Slit (Erect)",
  35258. image: {
  35259. source: "./media/characters/glint/slit-erect.svg"
  35260. }
  35261. },
  35262. mawAnthro: {
  35263. height: math.unit(0.63, "meters"),
  35264. name: "Maw (Anthro)",
  35265. image: {
  35266. source: "./media/characters/glint/maw.svg"
  35267. }
  35268. },
  35269. mawFeral: {
  35270. height: math.unit(2.89, "meters"),
  35271. name: "Maw (Feral)",
  35272. image: {
  35273. source: "./media/characters/glint/maw.svg"
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(9, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35287. {
  35288. side: {
  35289. height: math.unit(15, "feet"),
  35290. weight: math.unit(5000, "kg"),
  35291. name: "Side",
  35292. image: {
  35293. source: "./media/characters/kairne/side.svg",
  35294. extra: 979/811,
  35295. bottom: 13/992
  35296. }
  35297. },
  35298. front: {
  35299. height: math.unit(15, "feet"),
  35300. weight: math.unit(5000, "kg"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/kairne/front.svg",
  35304. extra: 908/814,
  35305. bottom: 26/934
  35306. }
  35307. },
  35308. sideNsfw: {
  35309. height: math.unit(15, "feet"),
  35310. weight: math.unit(5000, "kg"),
  35311. name: "Side (NSFW)",
  35312. image: {
  35313. source: "./media/characters/kairne/side-nsfw.svg",
  35314. extra: 979/811,
  35315. bottom: 13/992
  35316. }
  35317. },
  35318. frontNsfw: {
  35319. height: math.unit(15, "feet"),
  35320. weight: math.unit(5000, "kg"),
  35321. name: "Front (NSFW)",
  35322. image: {
  35323. source: "./media/characters/kairne/front-nsfw.svg",
  35324. extra: 908/814,
  35325. bottom: 26/934
  35326. }
  35327. },
  35328. dickCaged: {
  35329. height: math.unit(0.65, "meters"),
  35330. name: "Dick-caged",
  35331. image: {
  35332. source: "./media/characters/kairne/dick-caged.svg"
  35333. }
  35334. },
  35335. dick: {
  35336. height: math.unit(0.79, "meters"),
  35337. name: "Dick",
  35338. image: {
  35339. source: "./media/characters/kairne/dick.svg"
  35340. }
  35341. },
  35342. genitals: {
  35343. height: math.unit(1.29, "meters"),
  35344. name: "Genitals",
  35345. image: {
  35346. source: "./media/characters/kairne/genitals.svg"
  35347. }
  35348. },
  35349. maw: {
  35350. height: math.unit(1.73, "meters"),
  35351. name: "Maw",
  35352. image: {
  35353. source: "./media/characters/kairne/maw.svg"
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(15, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(5 + 8/12, "feet"),
  35370. weight: math.unit(139, "lb"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/biscuit-jackal/front.svg",
  35374. extra: 2106/1961,
  35375. bottom: 58/2164
  35376. }
  35377. },
  35378. back: {
  35379. height: math.unit(5 + 8/12, "feet"),
  35380. weight: math.unit(139, "lb"),
  35381. name: "Back",
  35382. image: {
  35383. source: "./media/characters/biscuit-jackal/back.svg",
  35384. extra: 2132/1976,
  35385. bottom: 57/2189
  35386. }
  35387. },
  35388. werejackal: {
  35389. height: math.unit(6 + 3/12, "feet"),
  35390. weight: math.unit(188, "lb"),
  35391. name: "Werejackal",
  35392. image: {
  35393. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35394. extra: 2373/2178,
  35395. bottom: 53/2426
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(5 + 8/12, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(140, "cm"),
  35412. weight: math.unit(45, "kg"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/tayra-white/front.svg",
  35416. extra: 2229/2192,
  35417. bottom: 75/2304
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(140, "cm"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(4 + 5/12, "feet"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/scoop/front.svg",
  35437. extra: 1257/1136,
  35438. bottom: 69/1326
  35439. }
  35440. },
  35441. back: {
  35442. height: math.unit(4 + 5/12, "feet"),
  35443. name: "Back",
  35444. image: {
  35445. source: "./media/characters/scoop/back.svg",
  35446. extra: 1321/1152,
  35447. bottom: 32/1353
  35448. }
  35449. },
  35450. maw: {
  35451. height: math.unit(0.68, "feet"),
  35452. name: "Maw",
  35453. image: {
  35454. source: "./media/characters/scoop/maw.svg"
  35455. }
  35456. },
  35457. },
  35458. [
  35459. {
  35460. name: "Really Small",
  35461. height: math.unit(1, "mm")
  35462. },
  35463. {
  35464. name: "Micro",
  35465. height: math.unit(1, "inch")
  35466. },
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(4 + 5/12, "feet"),
  35470. default: true
  35471. },
  35472. {
  35473. name: "Macro",
  35474. height: math.unit(200, "feet")
  35475. },
  35476. {
  35477. name: "Megamacro",
  35478. height: math.unit(3240, "feet")
  35479. },
  35480. {
  35481. name: "Teramacro",
  35482. height: math.unit(2500, "miles")
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35488. {
  35489. front: {
  35490. height: math.unit(15 + 7/12, "feet"),
  35491. weight: math.unit(1150, "tons"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/saphinara/front.svg",
  35495. extra: 1837/1643,
  35496. bottom: 84/1921
  35497. },
  35498. form: "normal",
  35499. default: true
  35500. },
  35501. side: {
  35502. height: math.unit(15 + 7/12, "feet"),
  35503. weight: math.unit(1150, "tons"),
  35504. name: "Side",
  35505. image: {
  35506. source: "./media/characters/saphinara/side.svg",
  35507. extra: 605/547,
  35508. bottom: 6/611
  35509. },
  35510. form: "normal"
  35511. },
  35512. back: {
  35513. height: math.unit(15 + 7/12, "feet"),
  35514. weight: math.unit(1150, "tons"),
  35515. name: "Back",
  35516. image: {
  35517. source: "./media/characters/saphinara/back.svg",
  35518. extra: 591/531,
  35519. bottom: 13/604
  35520. },
  35521. form: "normal"
  35522. },
  35523. frontTail: {
  35524. height: math.unit(15 + 7/12, "feet"),
  35525. weight: math.unit(1150, "tons"),
  35526. name: "Front (Full Tail)",
  35527. image: {
  35528. source: "./media/characters/saphinara/front-tail.svg",
  35529. extra: 2256/1630,
  35530. bottom: 261/2517
  35531. },
  35532. form: "normal"
  35533. },
  35534. insides: {
  35535. height: math.unit(11.92, "feet"),
  35536. name: "Insides",
  35537. image: {
  35538. source: "./media/characters/saphinara/insides.svg"
  35539. },
  35540. form: "normal"
  35541. },
  35542. head: {
  35543. height: math.unit(4.17, "feet"),
  35544. name: "Head",
  35545. image: {
  35546. source: "./media/characters/saphinara/head.svg"
  35547. },
  35548. form: "normal"
  35549. },
  35550. tongue: {
  35551. height: math.unit(4.60, "feet"),
  35552. name: "Tongue",
  35553. image: {
  35554. source: "./media/characters/saphinara/tongue.svg"
  35555. },
  35556. form: "normal"
  35557. },
  35558. headEnraged: {
  35559. height: math.unit(5.55, "feet"),
  35560. name: "Head (Enraged)",
  35561. image: {
  35562. source: "./media/characters/saphinara/head-enraged.svg"
  35563. },
  35564. form: "normal"
  35565. },
  35566. wings: {
  35567. height: math.unit(11.95, "feet"),
  35568. name: "Wings",
  35569. image: {
  35570. source: "./media/characters/saphinara/wings.svg"
  35571. },
  35572. form: "normal"
  35573. },
  35574. feathers: {
  35575. height: math.unit(8.92, "feet"),
  35576. name: "Feathers",
  35577. image: {
  35578. source: "./media/characters/saphinara/feathers.svg"
  35579. },
  35580. form: "normal"
  35581. },
  35582. shackles: {
  35583. height: math.unit(2, "feet"),
  35584. name: "Shackles",
  35585. image: {
  35586. source: "./media/characters/saphinara/shackles.svg"
  35587. },
  35588. form: "normal"
  35589. },
  35590. eyes: {
  35591. height: math.unit(1.331, "feet"),
  35592. name: "Eyes",
  35593. image: {
  35594. source: "./media/characters/saphinara/eyes.svg"
  35595. },
  35596. form: "normal"
  35597. },
  35598. eyesEnraged: {
  35599. height: math.unit(1.331, "feet"),
  35600. name: "Eyes (Enraged)",
  35601. image: {
  35602. source: "./media/characters/saphinara/eyes-enraged.svg"
  35603. },
  35604. form: "normal"
  35605. },
  35606. trueFormSide: {
  35607. height: math.unit(200, "feet"),
  35608. weight: math.unit(1e7, "tons"),
  35609. name: "Side",
  35610. image: {
  35611. source: "./media/characters/saphinara/true-form-side.svg",
  35612. extra: 1399/770,
  35613. bottom: 97/1496
  35614. },
  35615. form: "true-form",
  35616. default: true
  35617. },
  35618. trueFormMaw: {
  35619. height: math.unit(71.5, "feet"),
  35620. name: "Maw",
  35621. image: {
  35622. source: "./media/characters/saphinara/true-form-maw.svg",
  35623. extra: 2302/1453,
  35624. bottom: 0/2302
  35625. },
  35626. form: "true-form"
  35627. },
  35628. meowberusSide: {
  35629. height: math.unit(75, "feet"),
  35630. weight: math.unit(180000, "kg"),
  35631. preyCapacity: math.unit(50000, "people"),
  35632. name: "Side",
  35633. image: {
  35634. source: "./media/characters/saphinara/meowberus-side.svg",
  35635. extra: 1400/711,
  35636. bottom: 126/1526
  35637. },
  35638. form: "meowberus",
  35639. extraAttributes: {
  35640. "pawArea": {
  35641. name: "Paw Size",
  35642. power: 2,
  35643. type: "area",
  35644. base: math.unit(35, "m^2")
  35645. }
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(15 + 7/12, "feet"),
  35653. default: true,
  35654. form: "normal"
  35655. },
  35656. {
  35657. name: "Angry",
  35658. height: math.unit(30 + 6/12, "feet"),
  35659. form: "normal"
  35660. },
  35661. {
  35662. name: "Enraged",
  35663. height: math.unit(102 + 1/12, "feet"),
  35664. form: "normal"
  35665. },
  35666. {
  35667. name: "True",
  35668. height: math.unit(200, "feet"),
  35669. default: true,
  35670. form: "true-form"
  35671. },
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(75, "feet"),
  35675. default: true,
  35676. form: "meowberus"
  35677. },
  35678. ],
  35679. {
  35680. "normal": {
  35681. name: "Normal",
  35682. default: true
  35683. },
  35684. "true-form": {
  35685. name: "True Form"
  35686. },
  35687. "meowberus": {
  35688. name: "Meowberus",
  35689. },
  35690. }
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(6 + 8/12, "feet"),
  35697. weight: math.unit(300, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/jrain/front.svg",
  35701. extra: 3039/2865,
  35702. bottom: 399/3438
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(6 + 8/12, "feet"),
  35707. weight: math.unit(300, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/jrain/back.svg",
  35711. extra: 3089/2938,
  35712. bottom: 172/3261
  35713. }
  35714. },
  35715. head: {
  35716. height: math.unit(2.14, "feet"),
  35717. name: "Head",
  35718. image: {
  35719. source: "./media/characters/jrain/head.svg"
  35720. }
  35721. },
  35722. maw: {
  35723. height: math.unit(1.77, "feet"),
  35724. name: "Maw",
  35725. image: {
  35726. source: "./media/characters/jrain/maw.svg"
  35727. }
  35728. },
  35729. leftHand: {
  35730. height: math.unit(1.1, "feet"),
  35731. name: "Left Hand",
  35732. image: {
  35733. source: "./media/characters/jrain/left-hand.svg"
  35734. }
  35735. },
  35736. rightHand: {
  35737. height: math.unit(1.1, "feet"),
  35738. name: "Right Hand",
  35739. image: {
  35740. source: "./media/characters/jrain/right-hand.svg"
  35741. }
  35742. },
  35743. eye: {
  35744. height: math.unit(0.35, "feet"),
  35745. name: "Eye",
  35746. image: {
  35747. source: "./media/characters/jrain/eye.svg"
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(6 + 8/12, "feet"),
  35755. default: true
  35756. },
  35757. {
  35758. name: "Casually Large",
  35759. height: math.unit(25, "feet")
  35760. },
  35761. {
  35762. name: "Giant",
  35763. height: math.unit(100, "feet")
  35764. },
  35765. {
  35766. name: "Kaiju",
  35767. height: math.unit(300, "feet")
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35773. {
  35774. dragon: {
  35775. height: math.unit(5, "meters"),
  35776. name: "Dragon",
  35777. image: {
  35778. source: "./media/characters/sabrina/dragon.svg",
  35779. extra: 3670 / 2365,
  35780. bottom: 333 / 4003
  35781. }
  35782. },
  35783. gryphon: {
  35784. height: math.unit(3, "meters"),
  35785. name: "Gryphon",
  35786. image: {
  35787. source: "./media/characters/sabrina/gryphon.svg",
  35788. extra: 1576 / 945,
  35789. bottom: 71 / 1647
  35790. }
  35791. },
  35792. snake: {
  35793. height: math.unit(12, "meters"),
  35794. name: "Snake",
  35795. image: {
  35796. source: "./media/characters/sabrina/snake.svg",
  35797. extra: 1758 / 1320,
  35798. bottom: 186 / 1944
  35799. }
  35800. },
  35801. collar: {
  35802. height: math.unit(1.86, "meters"),
  35803. name: "Collar",
  35804. image: {
  35805. source: "./media/characters/sabrina/collar.svg"
  35806. }
  35807. },
  35808. eye: {
  35809. height: math.unit(0.53, "meters"),
  35810. name: "Eye",
  35811. image: {
  35812. source: "./media/characters/sabrina/eye.svg"
  35813. }
  35814. },
  35815. foot: {
  35816. height: math.unit(1.86, "meters"),
  35817. name: "Foot",
  35818. image: {
  35819. source: "./media/characters/sabrina/foot.svg"
  35820. }
  35821. },
  35822. hand: {
  35823. height: math.unit(1.32, "meters"),
  35824. name: "Hand",
  35825. image: {
  35826. source: "./media/characters/sabrina/hand.svg"
  35827. }
  35828. },
  35829. head: {
  35830. height: math.unit(2.44, "meters"),
  35831. name: "Head",
  35832. image: {
  35833. source: "./media/characters/sabrina/head.svg"
  35834. }
  35835. },
  35836. headAngry: {
  35837. height: math.unit(2.44, "meters"),
  35838. name: "Head (Angry))",
  35839. image: {
  35840. source: "./media/characters/sabrina/head-angry.svg"
  35841. }
  35842. },
  35843. maw: {
  35844. height: math.unit(1.65, "meters"),
  35845. name: "Maw",
  35846. image: {
  35847. source: "./media/characters/sabrina/maw.svg"
  35848. }
  35849. },
  35850. spikes: {
  35851. height: math.unit(1.69, "meters"),
  35852. name: "Spikes",
  35853. image: {
  35854. source: "./media/characters/sabrina/spikes.svg"
  35855. }
  35856. },
  35857. stomach: {
  35858. height: math.unit(1.15, "meters"),
  35859. name: "Stomach",
  35860. image: {
  35861. source: "./media/characters/sabrina/stomach.svg"
  35862. }
  35863. },
  35864. tongue: {
  35865. height: math.unit(1.27, "meters"),
  35866. name: "Tongue",
  35867. image: {
  35868. source: "./media/characters/sabrina/tongue.svg"
  35869. }
  35870. },
  35871. wingDorsal: {
  35872. height: math.unit(4.85, "meters"),
  35873. name: "Wing (Dorsal)",
  35874. image: {
  35875. source: "./media/characters/sabrina/wing-dorsal.svg"
  35876. }
  35877. },
  35878. wingVentral: {
  35879. height: math.unit(4.85, "meters"),
  35880. name: "Wing (Ventral)",
  35881. image: {
  35882. source: "./media/characters/sabrina/wing-ventral.svg"
  35883. }
  35884. },
  35885. },
  35886. [
  35887. {
  35888. name: "Normal",
  35889. height: math.unit(5, "meters"),
  35890. default: true
  35891. },
  35892. ]
  35893. ))
  35894. characterMakers.push(() => makeCharacter(
  35895. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35896. {
  35897. frontMaid: {
  35898. height: math.unit(5 + 5/12, "feet"),
  35899. weight: math.unit(130, "lb"),
  35900. name: "Front (Maid)",
  35901. image: {
  35902. source: "./media/characters/midnight-tales/front-maid.svg",
  35903. extra: 489/454,
  35904. bottom: 61/550
  35905. }
  35906. },
  35907. frontFormal: {
  35908. height: math.unit(5 + 5/12, "feet"),
  35909. weight: math.unit(130, "lb"),
  35910. name: "Front (Formal)",
  35911. image: {
  35912. source: "./media/characters/midnight-tales/front-formal.svg",
  35913. extra: 489/454,
  35914. bottom: 61/550
  35915. }
  35916. },
  35917. back: {
  35918. height: math.unit(5 + 5/12, "feet"),
  35919. weight: math.unit(130, "lb"),
  35920. name: "Back",
  35921. image: {
  35922. source: "./media/characters/midnight-tales/back.svg",
  35923. extra: 498/456,
  35924. bottom: 33/531
  35925. }
  35926. },
  35927. frontBeast: {
  35928. height: math.unit(40, "feet"),
  35929. weight: math.unit(64000, "lb"),
  35930. name: "Front (Beast)",
  35931. image: {
  35932. source: "./media/characters/midnight-tales/front-beast.svg",
  35933. extra: 927/860,
  35934. bottom: 53/980
  35935. }
  35936. },
  35937. backBeast: {
  35938. height: math.unit(40, "feet"),
  35939. weight: math.unit(64000, "lb"),
  35940. name: "Back (Beast)",
  35941. image: {
  35942. source: "./media/characters/midnight-tales/back-beast.svg",
  35943. extra: 929/855,
  35944. bottom: 16/945
  35945. }
  35946. },
  35947. footBeast: {
  35948. height: math.unit(6.7, "feet"),
  35949. name: "Foot (Beast)",
  35950. image: {
  35951. source: "./media/characters/midnight-tales/foot-beast.svg"
  35952. }
  35953. },
  35954. headBeast: {
  35955. height: math.unit(8, "feet"),
  35956. name: "Head (Beast)",
  35957. image: {
  35958. source: "./media/characters/midnight-tales/head-beast.svg"
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(5 + 5 / 12, "feet"),
  35966. default: true
  35967. },
  35968. {
  35969. name: "Macro",
  35970. height: math.unit(25, "feet")
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35976. {
  35977. front: {
  35978. height: math.unit(5 + 10/12, "feet"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/argon/front.svg",
  35982. extra: 2009/1935,
  35983. bottom: 118/2127
  35984. }
  35985. },
  35986. back: {
  35987. height: math.unit(5 + 10/12, "feet"),
  35988. name: "Back",
  35989. image: {
  35990. source: "./media/characters/argon/back.svg",
  35991. extra: 2047/1992,
  35992. bottom: 20/2067
  35993. }
  35994. },
  35995. frontDressed: {
  35996. height: math.unit(5 + 10/12, "feet"),
  35997. name: "Front (Dressed)",
  35998. image: {
  35999. source: "./media/characters/argon/front-dressed.svg",
  36000. extra: 2009/1935,
  36001. bottom: 118/2127
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(5 + 10/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(8 + 6/12, "feet"),
  36018. weight: math.unit(1150, "lb"),
  36019. name: "Front",
  36020. image: {
  36021. source: "./media/characters/kichi/front.svg",
  36022. extra: 1267/1164,
  36023. bottom: 61/1328
  36024. }
  36025. },
  36026. back: {
  36027. height: math.unit(8 + 6/12, "feet"),
  36028. weight: math.unit(1150, "lb"),
  36029. name: "Back",
  36030. image: {
  36031. source: "./media/characters/kichi/back.svg",
  36032. extra: 1273/1166,
  36033. bottom: 33/1306
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(8 + 6/12, "feet"),
  36041. default: true
  36042. },
  36043. ]
  36044. ))
  36045. characterMakers.push(() => makeCharacter(
  36046. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36047. {
  36048. front: {
  36049. height: math.unit(6, "feet"),
  36050. weight: math.unit(210, "lb"),
  36051. name: "Front",
  36052. image: {
  36053. source: "./media/characters/manetel-greyscale/front.svg",
  36054. extra: 350/312,
  36055. bottom: 8/358
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Micro",
  36062. height: math.unit(2, "inches")
  36063. },
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(6, "feet"),
  36067. default: true
  36068. },
  36069. {
  36070. name: "Minimacro",
  36071. height: math.unit(17, "feet")
  36072. },
  36073. {
  36074. name: "Macro",
  36075. height: math.unit(117, "feet")
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36081. {
  36082. side: {
  36083. height: math.unit(5 + 1/12, "feet"),
  36084. weight: math.unit(418, "lb"),
  36085. name: "Side",
  36086. image: {
  36087. source: "./media/characters/softpurr/side.svg",
  36088. extra: 1993/1945,
  36089. bottom: 134/2127
  36090. }
  36091. },
  36092. front: {
  36093. height: math.unit(5 + 1/12, "feet"),
  36094. weight: math.unit(418, "lb"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/softpurr/front.svg",
  36098. extra: 1950/1856,
  36099. bottom: 174/2124
  36100. }
  36101. },
  36102. paw: {
  36103. height: math.unit(1, "feet"),
  36104. name: "Paw",
  36105. image: {
  36106. source: "./media/characters/softpurr/paw.svg"
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(5 + 1/12, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(260, "meters"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/anahita/front.svg",
  36126. extra: 665/635,
  36127. bottom: 89/754
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Macro",
  36134. height: math.unit(260, "meters"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(4 + 10/12, "feet"),
  36144. weight: math.unit(160, "lb"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/chip-mouse/front.svg",
  36148. extra: 3528/3408,
  36149. bottom: 0/3528
  36150. }
  36151. },
  36152. frontNsfw: {
  36153. height: math.unit(4 + 10/12, "feet"),
  36154. weight: math.unit(160, "lb"),
  36155. name: "Front (NSFW)",
  36156. image: {
  36157. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36158. extra: 3528/3408,
  36159. bottom: 0/3528
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(4 + 10/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36173. {
  36174. side: {
  36175. height: math.unit(10, "feet"),
  36176. weight: math.unit(14000, "lb"),
  36177. name: "Side",
  36178. image: {
  36179. source: "./media/characters/kremm/side.svg",
  36180. extra: 1390/1053,
  36181. bottom: 90/1480
  36182. }
  36183. },
  36184. gut: {
  36185. height: math.unit(5.8, "feet"),
  36186. name: "Gut",
  36187. image: {
  36188. source: "./media/characters/kremm/gut.svg"
  36189. }
  36190. },
  36191. ass: {
  36192. height: math.unit(6.1, "feet"),
  36193. name: "Ass",
  36194. image: {
  36195. source: "./media/characters/kremm/ass.svg"
  36196. }
  36197. },
  36198. jaws: {
  36199. height: math.unit(2.2, "feet"),
  36200. name: "Jaws",
  36201. image: {
  36202. source: "./media/characters/kremm/jaws.svg"
  36203. }
  36204. },
  36205. dick: {
  36206. height: math.unit(4.26, "feet"),
  36207. name: "Dick",
  36208. image: {
  36209. source: "./media/characters/kremm/dick.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(10, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(30, "stories"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/kai/front.svg",
  36229. extra: 1892/1718,
  36230. bottom: 162/2054
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Macro",
  36237. height: math.unit(30, "stories"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(6 + 4/12, "feet"),
  36247. weight: math.unit(145, "lb"),
  36248. name: "Front",
  36249. image: {
  36250. source: "./media/characters/sykes/front.svg",
  36251. extra: 1321 / 1187,
  36252. bottom: 66 / 1387
  36253. }
  36254. },
  36255. back: {
  36256. height: math.unit(6 + 4/12, "feet"),
  36257. weight: math.unit(145, "lb"),
  36258. name: "Back",
  36259. image: {
  36260. source: "./media/characters/sykes/back.svg",
  36261. extra: 1326/1181,
  36262. bottom: 31/1357
  36263. }
  36264. },
  36265. traditionalOutfit: {
  36266. height: math.unit(6 + 4/12, "feet"),
  36267. weight: math.unit(145, "lb"),
  36268. name: "Traditional Outfit",
  36269. image: {
  36270. source: "./media/characters/sykes/traditional-outfit.svg",
  36271. extra: 1321 / 1187,
  36272. bottom: 66 / 1387
  36273. }
  36274. },
  36275. adventureOutfit: {
  36276. height: math.unit(6 + 4/12, "feet"),
  36277. weight: math.unit(145, "lb"),
  36278. name: "Adventure Outfit",
  36279. image: {
  36280. source: "./media/characters/sykes/adventure-outfit.svg",
  36281. extra: 1321 / 1187,
  36282. bottom: 66 / 1387
  36283. }
  36284. },
  36285. handLeft: {
  36286. height: math.unit(0.9, "feet"),
  36287. name: "Hand (Left)",
  36288. image: {
  36289. source: "./media/characters/sykes/hand-left.svg"
  36290. }
  36291. },
  36292. handRight: {
  36293. height: math.unit(0.839, "feet"),
  36294. name: "Hand (Right)",
  36295. image: {
  36296. source: "./media/characters/sykes/hand-right.svg"
  36297. }
  36298. },
  36299. leftFoot: {
  36300. height: math.unit(1.2, "feet"),
  36301. name: "Foot (Left)",
  36302. image: {
  36303. source: "./media/characters/sykes/foot-left.svg"
  36304. }
  36305. },
  36306. rightFoot: {
  36307. height: math.unit(1.2, "feet"),
  36308. name: "Foot (Right)",
  36309. image: {
  36310. source: "./media/characters/sykes/foot-right.svg"
  36311. }
  36312. },
  36313. maw: {
  36314. height: math.unit(1.93, "feet"),
  36315. name: "Maw",
  36316. image: {
  36317. source: "./media/characters/sykes/maw.svg"
  36318. }
  36319. },
  36320. teeth: {
  36321. height: math.unit(0.51, "feet"),
  36322. name: "Teeth",
  36323. image: {
  36324. source: "./media/characters/sykes/teeth.svg"
  36325. }
  36326. },
  36327. tongue: {
  36328. height: math.unit(2.13, "feet"),
  36329. name: "Tongue",
  36330. image: {
  36331. source: "./media/characters/sykes/tongue.svg"
  36332. }
  36333. },
  36334. uvula: {
  36335. height: math.unit(0.16, "feet"),
  36336. name: "Uvula",
  36337. image: {
  36338. source: "./media/characters/sykes/uvula.svg"
  36339. }
  36340. },
  36341. collar: {
  36342. height: math.unit(0.287, "feet"),
  36343. name: "Collar",
  36344. image: {
  36345. source: "./media/characters/sykes/collar.svg"
  36346. }
  36347. },
  36348. tail: {
  36349. height: math.unit(3.8, "feet"),
  36350. name: "Tail",
  36351. image: {
  36352. source: "./media/characters/sykes/tail.svg"
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Shrunken",
  36359. height: math.unit(5, "inches")
  36360. },
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(6 + 4 / 12, "feet"),
  36364. default: true
  36365. },
  36366. {
  36367. name: "Big",
  36368. height: math.unit(15, "feet")
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(5 + 8/12, "feet"),
  36377. weight: math.unit(190, "lb"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/oven-otter/front.svg",
  36381. extra: 1809/1740,
  36382. bottom: 181/1990
  36383. }
  36384. },
  36385. back: {
  36386. height: math.unit(5 + 8/12, "feet"),
  36387. weight: math.unit(190, "lb"),
  36388. name: "Back",
  36389. image: {
  36390. source: "./media/characters/oven-otter/back.svg",
  36391. extra: 1709/1635,
  36392. bottom: 118/1827
  36393. }
  36394. },
  36395. hand: {
  36396. height: math.unit(1.07, "feet"),
  36397. name: "Hand",
  36398. image: {
  36399. source: "./media/characters/oven-otter/hand.svg"
  36400. }
  36401. },
  36402. beans: {
  36403. height: math.unit(1.74, "feet"),
  36404. name: "Beans",
  36405. image: {
  36406. source: "./media/characters/oven-otter/beans.svg"
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Micro",
  36413. height: math.unit(0.5, "inches")
  36414. },
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(5 + 8/12, "feet"),
  36418. default: true
  36419. },
  36420. {
  36421. name: "Macro",
  36422. height: math.unit(250, "feet")
  36423. },
  36424. {
  36425. name: "Really High",
  36426. height: math.unit(420, "feet")
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(5, "meters"),
  36435. weight: math.unit(292000000000000, "kg"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/devourer/front.svg",
  36439. extra: 1800/1733,
  36440. bottom: 211/2011
  36441. }
  36442. },
  36443. maw: {
  36444. height: math.unit(1.1, "meter"),
  36445. name: "Maw",
  36446. image: {
  36447. source: "./media/characters/devourer/maw.svg"
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Small",
  36454. height: math.unit(3, "meters")
  36455. },
  36456. {
  36457. name: "Large",
  36458. height: math.unit(5, "meters"),
  36459. default: true
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36465. {
  36466. front: {
  36467. height: math.unit(6, "feet"),
  36468. weight: math.unit(400, "lb"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/ellarby/front.svg",
  36472. extra: 1909/1763,
  36473. bottom: 80/1989
  36474. }
  36475. },
  36476. back: {
  36477. height: math.unit(6, "feet"),
  36478. weight: math.unit(400, "lb"),
  36479. name: "Back",
  36480. image: {
  36481. source: "./media/characters/ellarby/back.svg",
  36482. extra: 1914/1784,
  36483. bottom: 172/2086
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Mischief",
  36490. height: math.unit(18, "inches")
  36491. },
  36492. {
  36493. name: "Trouble",
  36494. height: math.unit(12, "feet")
  36495. },
  36496. {
  36497. name: "Havoc",
  36498. height: math.unit(200, "feet"),
  36499. default: true
  36500. },
  36501. {
  36502. name: "Pandemonium",
  36503. height: math.unit(1, "mile")
  36504. },
  36505. {
  36506. name: "Catastrophe",
  36507. height: math.unit(100, "miles")
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36513. {
  36514. front: {
  36515. height: math.unit(4.7, "meters"),
  36516. weight: math.unit(6500, "kg"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/vex/front.svg",
  36520. extra: 1288/1140,
  36521. bottom: 100/1388
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(4.7, "meters"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36535. {
  36536. normal: {
  36537. height: math.unit(6, "feet"),
  36538. weight: math.unit(350, "lb"),
  36539. name: "Normal",
  36540. image: {
  36541. source: "./media/characters/teshy/normal.svg",
  36542. extra: 1795/1735,
  36543. bottom: 16/1811
  36544. }
  36545. },
  36546. monsterFront: {
  36547. height: math.unit(12, "feet"),
  36548. weight: math.unit(4700, "lb"),
  36549. name: "Monster (Front)",
  36550. image: {
  36551. source: "./media/characters/teshy/monster-front.svg",
  36552. extra: 2042/2034,
  36553. bottom: 128/2170
  36554. }
  36555. },
  36556. monsterSide: {
  36557. height: math.unit(12, "feet"),
  36558. weight: math.unit(4700, "lb"),
  36559. name: "Monster (Side)",
  36560. image: {
  36561. source: "./media/characters/teshy/monster-side.svg",
  36562. extra: 2067/2056,
  36563. bottom: 70/2137
  36564. }
  36565. },
  36566. monsterBack: {
  36567. height: math.unit(12, "feet"),
  36568. weight: math.unit(4700, "lb"),
  36569. name: "Monster (Back)",
  36570. image: {
  36571. source: "./media/characters/teshy/monster-back.svg",
  36572. extra: 1921/1914,
  36573. bottom: 171/2092
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(6, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(6, "feet"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/ramey/front.svg",
  36593. extra: 790/787,
  36594. bottom: 27/817
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(6, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(5 + 5/12, "feet"),
  36611. weight: math.unit(120, "lb"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/phirae/front.svg",
  36615. extra: 2491/2436,
  36616. bottom: 38/2529
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(5 + 5/12, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36630. {
  36631. front: {
  36632. height: math.unit(5 + 3/12, "feet"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/stagglas/front.svg",
  36636. extra: 962/882,
  36637. bottom: 53/1015
  36638. }
  36639. },
  36640. feral: {
  36641. height: math.unit(335, "cm"),
  36642. name: "Feral",
  36643. image: {
  36644. source: "./media/characters/stagglas/feral.svg",
  36645. extra: 1732/1090,
  36646. bottom: 48/1780
  36647. }
  36648. },
  36649. },
  36650. [
  36651. {
  36652. name: "Normal",
  36653. height: math.unit(5 + 3/12, "feet"),
  36654. default: true
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(5 + 4/12, "feet"),
  36663. weight: math.unit(145, "lb"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/starra/front.svg",
  36667. extra: 1790/1691,
  36668. bottom: 91/1881
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(5 + 4/12, "feet"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(3.5, "meters"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36688. extra: 1248/972,
  36689. bottom: 38/1286
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(3.5, "meters"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36703. {
  36704. side: {
  36705. height: math.unit(8 + 2/12, "feet"),
  36706. weight: math.unit(1240, "lb"),
  36707. name: "Side",
  36708. image: {
  36709. source: "./media/characters/mika-valentine/side.svg",
  36710. extra: 2670/2501,
  36711. bottom: 250/2920
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(8 + 2/12, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(7 + 2/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/xoltol/front.svg",
  36731. extra: 2212/2124,
  36732. bottom: 84/2296
  36733. }
  36734. },
  36735. side: {
  36736. height: math.unit(7 + 2/12, "feet"),
  36737. name: "Side",
  36738. image: {
  36739. source: "./media/characters/xoltol/side.svg",
  36740. extra: 2273/2197,
  36741. bottom: 26/2299
  36742. }
  36743. },
  36744. hand: {
  36745. height: math.unit(2.5, "feet"),
  36746. name: "Hand",
  36747. image: {
  36748. source: "./media/characters/xoltol/hand.svg"
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Small-ish",
  36755. height: math.unit(5 + 11/12, "feet")
  36756. },
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(7 + 2/12, "feet")
  36760. },
  36761. {
  36762. name: "\"Macro\"",
  36763. height: math.unit(14 + 9/12, "feet"),
  36764. default: true
  36765. },
  36766. {
  36767. name: "Alternate Height",
  36768. height: math.unit(20, "feet")
  36769. },
  36770. {
  36771. name: "Actually Macro",
  36772. height: math.unit(100, "feet")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(5 + 2/12, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/kotetsu-redwood/front.svg",
  36784. extra: 1053/942,
  36785. bottom: 60/1113
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(5 + 2/12, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(2.4, "meters"),
  36802. weight: math.unit(125, "kg"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/lilith/front.svg",
  36806. extra: 1590/1513,
  36807. bottom: 203/1793
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Humanoid",
  36814. height: math.unit(2.4, "meters")
  36815. },
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(6, "meters"),
  36819. default: true
  36820. },
  36821. {
  36822. name: "Largest",
  36823. height: math.unit(55, "meters")
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36829. {
  36830. front: {
  36831. height: math.unit(8 + 4/12, "feet"),
  36832. weight: math.unit(535, "lb"),
  36833. name: "Front",
  36834. image: {
  36835. source: "./media/characters/beh'kah-bolger/front.svg",
  36836. extra: 1660/1603,
  36837. bottom: 37/1697
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(8 + 4/12, "feet"),
  36845. default: true
  36846. },
  36847. {
  36848. name: "Kaiju",
  36849. height: math.unit(250, "feet")
  36850. },
  36851. {
  36852. name: "Still Growing",
  36853. height: math.unit(10, "miles")
  36854. },
  36855. {
  36856. name: "Continental",
  36857. height: math.unit(5000, "miles")
  36858. },
  36859. {
  36860. name: "Final Form",
  36861. height: math.unit(2500000, "miles")
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36867. {
  36868. front: {
  36869. height: math.unit(7 + 2/12, "feet"),
  36870. weight: math.unit(230, "kg"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/tatyana-milewska/front.svg",
  36874. extra: 1199/1150,
  36875. bottom: 86/1285
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(7 + 2/12, "feet"),
  36883. default: true
  36884. },
  36885. {
  36886. name: "Big",
  36887. height: math.unit(12, "feet")
  36888. },
  36889. {
  36890. name: "Minimacro",
  36891. height: math.unit(20, "feet")
  36892. },
  36893. {
  36894. name: "Macro",
  36895. height: math.unit(120, "feet")
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(7 + 8/12, "feet"),
  36904. weight: math.unit(152, "kg"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/helen-arri/front.svg",
  36908. extra: 440/423,
  36909. bottom: 14/454
  36910. }
  36911. },
  36912. back: {
  36913. height: math.unit(7 + 8/12, "feet"),
  36914. weight: math.unit(152, "kg"),
  36915. name: "Back",
  36916. image: {
  36917. source: "./media/characters/helen-arri/back.svg",
  36918. extra: 443/426,
  36919. bottom: 8/451
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(7 + 8/12, "feet"),
  36927. default: true
  36928. },
  36929. {
  36930. name: "Big",
  36931. height: math.unit(14, "feet")
  36932. },
  36933. {
  36934. name: "Minimacro",
  36935. height: math.unit(24, "feet")
  36936. },
  36937. {
  36938. name: "Macro",
  36939. height: math.unit(140, "feet")
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(6, "meters"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/ehanu-rehu/front.svg",
  36951. extra: 1800/1800,
  36952. bottom: 59/1859
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(6, "meters"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(7 + 3/12, "feet"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/renholder/front.svg",
  36972. extra: 3096/2960,
  36973. bottom: 250/3346
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal Bat",
  36980. height: math.unit(7 + 3/12, "feet"),
  36981. default: true
  36982. },
  36983. {
  36984. name: "Slightly Tall Bat",
  36985. height: math.unit(100, "feet")
  36986. },
  36987. {
  36988. name: "Big Bat",
  36989. height: math.unit(1000, "feet")
  36990. },
  36991. {
  36992. name: "City-Sized Bat",
  36993. height: math.unit(200000, "feet")
  36994. },
  36995. {
  36996. name: "Bigger Bat",
  36997. height: math.unit(10000, "miles")
  36998. },
  36999. {
  37000. name: "Solar Sized Bat",
  37001. height: math.unit(100, "AU")
  37002. },
  37003. {
  37004. name: "Galactic Bat",
  37005. height: math.unit(200000, "lightyears")
  37006. },
  37007. {
  37008. name: "Universally Known Bat",
  37009. height: math.unit(1, "universe")
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37015. {
  37016. front: {
  37017. height: math.unit(6 + 11/12, "feet"),
  37018. weight: math.unit(250, "lb"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/cookiecat/front.svg",
  37022. extra: 893/827,
  37023. bottom: 14/907
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Micro",
  37030. height: math.unit(3, "inches")
  37031. },
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(6 + 11/12, "feet"),
  37035. default: true
  37036. },
  37037. {
  37038. name: "Macro",
  37039. height: math.unit(100, "feet")
  37040. },
  37041. {
  37042. name: "Macro+",
  37043. height: math.unit(404, "feet")
  37044. },
  37045. {
  37046. name: "Megamacro",
  37047. height: math.unit(165, "miles")
  37048. },
  37049. {
  37050. name: "Planetary",
  37051. height: math.unit(4600, "miles")
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(10 + 3/12, "feet"),
  37060. weight: math.unit(1500, "lb"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/tux-kusanagi/front.svg",
  37064. extra: 944/840,
  37065. bottom: 39/983
  37066. }
  37067. },
  37068. back: {
  37069. height: math.unit(10 + 3/12, "feet"),
  37070. weight: math.unit(1500, "lb"),
  37071. name: "Back",
  37072. image: {
  37073. source: "./media/characters/tux-kusanagi/back.svg",
  37074. extra: 941/842,
  37075. bottom: 28/969
  37076. }
  37077. },
  37078. rump: {
  37079. height: math.unit(5.25, "feet"),
  37080. name: "Rump",
  37081. image: {
  37082. source: "./media/characters/tux-kusanagi/rump.svg"
  37083. }
  37084. },
  37085. beak: {
  37086. height: math.unit(1.54, "feet"),
  37087. name: "Beak",
  37088. image: {
  37089. source: "./media/characters/tux-kusanagi/beak.svg"
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(10 + 3/12, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(58, "feet"),
  37106. weight: math.unit(200, "tons"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/uzarmazari/front.svg",
  37110. extra: 1575/1455,
  37111. bottom: 152/1727
  37112. }
  37113. },
  37114. back: {
  37115. height: math.unit(58, "feet"),
  37116. weight: math.unit(200, "tons"),
  37117. name: "Back",
  37118. image: {
  37119. source: "./media/characters/uzarmazari/back.svg",
  37120. extra: 1585/1510,
  37121. bottom: 157/1742
  37122. }
  37123. },
  37124. head: {
  37125. height: math.unit(26, "feet"),
  37126. name: "Head",
  37127. image: {
  37128. source: "./media/characters/uzarmazari/head.svg"
  37129. }
  37130. },
  37131. },
  37132. [
  37133. {
  37134. name: "Normal",
  37135. height: math.unit(58, "feet"),
  37136. default: true
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37142. {
  37143. side: {
  37144. height: math.unit(15, "feet"),
  37145. name: "Side",
  37146. image: {
  37147. source: "./media/characters/akitu/side.svg",
  37148. extra: 1421/1321,
  37149. bottom: 157/1578
  37150. }
  37151. },
  37152. front: {
  37153. height: math.unit(15, "feet"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/akitu/front.svg",
  37157. extra: 1435/1326,
  37158. bottom: 232/1667
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(15, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(10 + 8/12, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/azalie-croixland/front.svg",
  37178. extra: 1972/1856,
  37179. bottom: 31/2003
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Original Height",
  37186. height: math.unit(5 + 4/12, "feet")
  37187. },
  37188. {
  37189. name: "Normal Height",
  37190. height: math.unit(10 + 8/12, "feet"),
  37191. default: true
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37197. {
  37198. side: {
  37199. height: math.unit(7 + 1/12, "feet"),
  37200. weight: math.unit(245, "lb"),
  37201. name: "Side",
  37202. image: {
  37203. source: "./media/characters/kavus-kazian/side.svg",
  37204. extra: 349/342,
  37205. bottom: 15/364
  37206. }
  37207. },
  37208. },
  37209. [
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(7 + 1/12, "feet"),
  37213. default: true
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37219. {
  37220. normalFront: {
  37221. height: math.unit(5 + 11/12, "feet"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/moonlight-rose/normal-front.svg",
  37225. extra: 1980/1825,
  37226. bottom: 18/1998
  37227. },
  37228. form: "normal",
  37229. default: true
  37230. },
  37231. normalBack: {
  37232. height: math.unit(5 + 11/12, "feet"),
  37233. name: "Back",
  37234. image: {
  37235. source: "./media/characters/moonlight-rose/normal-back.svg",
  37236. extra: 2010/1839,
  37237. bottom: 10/2020
  37238. },
  37239. form: "normal"
  37240. },
  37241. demonFront: {
  37242. height: math.unit(1.5, "earths"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/moonlight-rose/demon.svg",
  37246. extra: 1400/1294,
  37247. bottom: 45/1445
  37248. },
  37249. form: "demon",
  37250. default: true
  37251. },
  37252. terraFront: {
  37253. height: math.unit(1.5, "earths"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/moonlight-rose/terra.svg"
  37257. },
  37258. form: "terra",
  37259. default: true
  37260. },
  37261. jupiterFront: {
  37262. height: math.unit(69911*2, "km"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37266. extra: 1367/1286,
  37267. bottom: 55/1422
  37268. },
  37269. form: "jupiter",
  37270. default: true
  37271. },
  37272. neptuneFront: {
  37273. height: math.unit(24622*2, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37277. extra: 1851/1712,
  37278. bottom: 0/1851
  37279. },
  37280. form: "neptune",
  37281. default: true
  37282. },
  37283. },
  37284. [
  37285. {
  37286. name: "\"Natural\" Height",
  37287. height: math.unit(5 + 11/12, "feet"),
  37288. form: "normal"
  37289. },
  37290. {
  37291. name: "Smallest comfortable size",
  37292. height: math.unit(40, "meters"),
  37293. form: "normal"
  37294. },
  37295. {
  37296. name: "Common size",
  37297. height: math.unit(50, "km"),
  37298. form: "normal",
  37299. default: true
  37300. },
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(1.5, "earths"),
  37304. form: "demon",
  37305. default: true
  37306. },
  37307. {
  37308. name: "Universal",
  37309. height: math.unit(15, "universes"),
  37310. form: "demon"
  37311. },
  37312. {
  37313. name: "Earth",
  37314. height: math.unit(1.5, "earths"),
  37315. form: "terra",
  37316. default: true
  37317. },
  37318. {
  37319. name: "Super Earth",
  37320. height: math.unit(67.5, "earths"),
  37321. form: "terra"
  37322. },
  37323. {
  37324. name: "Doesn't fit in a solar system...",
  37325. height: math.unit(1, "galaxy"),
  37326. form: "terra"
  37327. },
  37328. {
  37329. name: "Saturn",
  37330. height: math.unit(58232*2, "km"),
  37331. form: "jupiter"
  37332. },
  37333. {
  37334. name: "Jupiter",
  37335. height: math.unit(69911*2, "km"),
  37336. form: "jupiter",
  37337. default: true
  37338. },
  37339. {
  37340. name: "HD 100546 b",
  37341. height: math.unit(482938, "km"),
  37342. form: "jupiter"
  37343. },
  37344. {
  37345. name: "Enceladus",
  37346. height: math.unit(513*2, "km"),
  37347. form: "neptune"
  37348. },
  37349. {
  37350. name: "Europe",
  37351. height: math.unit(1560*2, "km"),
  37352. form: "neptune"
  37353. },
  37354. {
  37355. name: "Neptune",
  37356. height: math.unit(24622*2, "km"),
  37357. form: "neptune",
  37358. default: true
  37359. },
  37360. {
  37361. name: "CoRoT-9b",
  37362. height: math.unit(75067*2, "km"),
  37363. form: "neptune"
  37364. },
  37365. ],
  37366. {
  37367. "normal": {
  37368. name: "Normal",
  37369. default: true
  37370. },
  37371. "demon": {
  37372. name: "Demon"
  37373. },
  37374. "terra": {
  37375. name: "Terra"
  37376. },
  37377. "jupiter": {
  37378. name: "Jupiter"
  37379. },
  37380. "neptune": {
  37381. name: "Neptune"
  37382. }
  37383. }
  37384. ))
  37385. characterMakers.push(() => makeCharacter(
  37386. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37387. {
  37388. front: {
  37389. height: math.unit(16, "feet"),
  37390. weight: math.unit(610, "kg"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/huckle/front.svg",
  37394. extra: 1731/1625,
  37395. bottom: 33/1764
  37396. }
  37397. },
  37398. back: {
  37399. height: math.unit(16, "feet"),
  37400. weight: math.unit(610, "kg"),
  37401. name: "Back",
  37402. image: {
  37403. source: "./media/characters/huckle/back.svg",
  37404. extra: 1738/1651,
  37405. bottom: 37/1775
  37406. }
  37407. },
  37408. laughing: {
  37409. height: math.unit(3.75, "feet"),
  37410. name: "Laughing",
  37411. image: {
  37412. source: "./media/characters/huckle/laughing.svg"
  37413. }
  37414. },
  37415. angry: {
  37416. height: math.unit(4.15, "feet"),
  37417. name: "Angry",
  37418. image: {
  37419. source: "./media/characters/huckle/angry.svg"
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Normal",
  37426. height: math.unit(16, "feet"),
  37427. default: true
  37428. },
  37429. {
  37430. name: "Mini Macro",
  37431. height: math.unit(463, "feet")
  37432. },
  37433. {
  37434. name: "Macro",
  37435. height: math.unit(1680, "meters")
  37436. },
  37437. {
  37438. name: "Mega Macro",
  37439. height: math.unit(175, "km")
  37440. },
  37441. {
  37442. name: "Terra Macro",
  37443. height: math.unit(32, "gigameters")
  37444. },
  37445. {
  37446. name: "Multiverse+",
  37447. height: math.unit(2.56e23, "yottameters")
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(6 + 9/12, "feet"),
  37456. weight: math.unit(280, "lb"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/candy/front.svg",
  37460. extra: 234/217,
  37461. bottom: 11/245
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Really Small",
  37468. height: math.unit(0.1, "nm")
  37469. },
  37470. {
  37471. name: "Micro",
  37472. height: math.unit(2, "inches")
  37473. },
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(6 + 9/12, "feet"),
  37477. default: true
  37478. },
  37479. {
  37480. name: "Small Macro",
  37481. height: math.unit(69, "feet")
  37482. },
  37483. {
  37484. name: "Macro",
  37485. height: math.unit(160, "feet")
  37486. },
  37487. {
  37488. name: "Megamacro",
  37489. height: math.unit(22000, "miles")
  37490. },
  37491. {
  37492. name: "Gigamacro",
  37493. height: math.unit(50000, "miles")
  37494. },
  37495. ]
  37496. ))
  37497. characterMakers.push(() => makeCharacter(
  37498. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37499. {
  37500. front: {
  37501. height: math.unit(4, "feet"),
  37502. weight: math.unit(90, "lb"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/joey-mcdonald/front.svg",
  37506. extra: 1059/852,
  37507. bottom: 33/1092
  37508. }
  37509. },
  37510. back: {
  37511. height: math.unit(4, "feet"),
  37512. weight: math.unit(90, "lb"),
  37513. name: "Back",
  37514. image: {
  37515. source: "./media/characters/joey-mcdonald/back.svg",
  37516. extra: 1077/879,
  37517. bottom: 5/1082
  37518. }
  37519. },
  37520. frontKobold: {
  37521. height: math.unit(4, "feet"),
  37522. weight: math.unit(100, "lb"),
  37523. name: "Front-kobold",
  37524. image: {
  37525. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37526. extra: 1480/1367,
  37527. bottom: 0/1480
  37528. }
  37529. },
  37530. backKobold: {
  37531. height: math.unit(4, "feet"),
  37532. weight: math.unit(100, "lb"),
  37533. name: "Back-kobold",
  37534. image: {
  37535. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37536. extra: 1449/1361,
  37537. bottom: 0/1449
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(4, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(12 + 6/12, "feet"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/kass-lockheed/front.svg",
  37557. extra: 354/343,
  37558. bottom: 9/363
  37559. }
  37560. },
  37561. back: {
  37562. height: math.unit(12 + 6/12, "feet"),
  37563. name: "Back",
  37564. image: {
  37565. source: "./media/characters/kass-lockheed/back.svg",
  37566. extra: 364/352,
  37567. bottom: 3/367
  37568. }
  37569. },
  37570. dick: {
  37571. height: math.unit(3.12, "feet"),
  37572. name: "Dick",
  37573. image: {
  37574. source: "./media/characters/kass-lockheed/dick.svg"
  37575. }
  37576. },
  37577. head: {
  37578. height: math.unit(2.6, "feet"),
  37579. name: "Head",
  37580. image: {
  37581. source: "./media/characters/kass-lockheed/head.svg"
  37582. }
  37583. },
  37584. bleh: {
  37585. height: math.unit(2.85, "feet"),
  37586. name: "Bleh",
  37587. image: {
  37588. source: "./media/characters/kass-lockheed/bleh.svg"
  37589. }
  37590. },
  37591. smug: {
  37592. height: math.unit(2.85, "feet"),
  37593. name: "Smug",
  37594. image: {
  37595. source: "./media/characters/kass-lockheed/smug.svg"
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(12 + 6/12, "feet"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37609. {
  37610. front: {
  37611. height: math.unit(6 + 2/12, "feet"),
  37612. name: "Front",
  37613. image: {
  37614. source: "./media/characters/taylor/front.svg",
  37615. extra: 639/495,
  37616. bottom: 12/651
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Normal",
  37623. height: math.unit(6 + 2/12, "feet"),
  37624. default: true
  37625. },
  37626. {
  37627. name: "Big",
  37628. height: math.unit(15, "feet")
  37629. },
  37630. {
  37631. name: "Lorg",
  37632. height: math.unit(80, "feet")
  37633. },
  37634. {
  37635. name: "Too Lorg",
  37636. height: math.unit(120, "feet")
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(15, "feet"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/kaizer/front.svg",
  37648. extra: 1612/1436,
  37649. bottom: 43/1655
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(15, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(2, "feet"),
  37666. weight: math.unit(30, "lb"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/sandy/front.svg",
  37670. extra: 1439/1307,
  37671. bottom: 194/1633
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(2, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(3, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/mellvi/front.svg",
  37691. extra: 1831/1630,
  37692. bottom: 58/1889
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(3, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(5 + 11/12, "feet"),
  37709. weight: math.unit(200, "lb"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/shirou/front.svg",
  37713. extra: 2491/2383,
  37714. bottom: 189/2680
  37715. }
  37716. },
  37717. back: {
  37718. height: math.unit(5 + 11/12, "feet"),
  37719. weight: math.unit(200, "lb"),
  37720. name: "Back",
  37721. image: {
  37722. source: "./media/characters/shirou/back.svg",
  37723. extra: 2554/2450,
  37724. bottom: 76/2630
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(5 + 11/12, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(6 + 3/12, "feet"),
  37741. weight: math.unit(177, "lb"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/noryu/front.svg",
  37745. extra: 973/885,
  37746. bottom: 10/983
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(6 + 3/12, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37760. {
  37761. front: {
  37762. height: math.unit(5 + 6/12, "feet"),
  37763. weight: math.unit(170, "lb"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/mevolas-rubenido/front.svg",
  37767. extra: 2109/1901,
  37768. bottom: 96/2205
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(5 + 6/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(100, "feet"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/dee/front.svg",
  37788. extra: 2153/2036,
  37789. bottom: 59/2212
  37790. }
  37791. },
  37792. back: {
  37793. height: math.unit(100, "feet"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/dee/back.svg",
  37797. extra: 2183/2058,
  37798. bottom: 75/2258
  37799. }
  37800. },
  37801. foot: {
  37802. height: math.unit(19.43, "feet"),
  37803. name: "Foot",
  37804. image: {
  37805. source: "./media/characters/dee/foot.svg"
  37806. }
  37807. },
  37808. hoof: {
  37809. height: math.unit(20.6, "feet"),
  37810. name: "Hoof",
  37811. image: {
  37812. source: "./media/characters/dee/hoof.svg"
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Macro",
  37819. height: math.unit(100, "feet"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37826. {
  37827. front: {
  37828. height: math.unit(5 + 6/12, "feet"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/teh/front.svg",
  37832. extra: 1002/847,
  37833. bottom: 62/1064
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(5 + 6/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37847. {
  37848. side: {
  37849. height: math.unit(6 + 1/12, "feet"),
  37850. weight: math.unit(204, "lb"),
  37851. name: "Side",
  37852. image: {
  37853. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37854. extra: 974/775,
  37855. bottom: 169/1143
  37856. }
  37857. },
  37858. sitting: {
  37859. height: math.unit(6 + 2/12, "feet"),
  37860. weight: math.unit(204, "lb"),
  37861. name: "Sitting",
  37862. image: {
  37863. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37864. extra: 1175/964,
  37865. bottom: 378/1553
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(6 + 1/12, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(6, "inches"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/tululi/front.svg",
  37885. extra: 1997/1876,
  37886. bottom: 20/2017
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(6, "inches"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(4 + 1/12, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/star/front.svg",
  37906. extra: 1493/1189,
  37907. bottom: 48/1541
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Normal",
  37914. height: math.unit(4 + 1/12, "feet"),
  37915. default: true
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(6 + 3/12, "feet"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/comet/front.svg",
  37927. extra: 1681/1462,
  37928. bottom: 26/1707
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(6 + 3/12, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(950, "feet"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/vortex/front.svg",
  37948. extra: 1497/1434,
  37949. bottom: 56/1553
  37950. }
  37951. },
  37952. maw: {
  37953. height: math.unit(285, "feet"),
  37954. name: "Maw",
  37955. image: {
  37956. source: "./media/characters/vortex/maw.svg"
  37957. }
  37958. },
  37959. },
  37960. [
  37961. {
  37962. name: "Macro",
  37963. height: math.unit(950, "feet"),
  37964. default: true
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(600, "feet"),
  37973. weight: math.unit(0.02, "grams"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/doodle/front.svg",
  37977. extra: 1578/1413,
  37978. bottom: 37/1615
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Macro",
  37985. height: math.unit(600, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(6 + 6/12, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/jai/front.svg",
  37998. extra: 1645/1534,
  37999. bottom: 115/1760
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(6 + 6/12, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(6 + 8/12, "feet"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/pixel/front.svg",
  38019. extra: 1900/1735,
  38020. bottom: 63/1963
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(6 + 8/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38034. {
  38035. back: {
  38036. height: math.unit(4 + 1/12, "feet"),
  38037. weight: math.unit(75, "lb"),
  38038. name: "Back",
  38039. image: {
  38040. source: "./media/characters/rhett/back.svg",
  38041. extra: 930/878,
  38042. bottom: 25/955
  38043. }
  38044. },
  38045. front: {
  38046. height: math.unit(4 + 1/12, "feet"),
  38047. weight: math.unit(75, "lb"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/rhett/front.svg",
  38051. extra: 1682/1586,
  38052. bottom: 92/1774
  38053. }
  38054. },
  38055. },
  38056. [
  38057. {
  38058. name: "Micro",
  38059. height: math.unit(8, "inches")
  38060. },
  38061. {
  38062. name: "Tiny",
  38063. height: math.unit(2, "feet")
  38064. },
  38065. {
  38066. name: "Normal",
  38067. height: math.unit(4 + 1/12, "feet"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(3 + 3/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/penny/front.svg",
  38080. extra: 1406/1311,
  38081. bottom: 26/1432
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(3 + 3/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(4 + 11/12, "feet"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/monty/front.svg",
  38101. extra: 1479/1209,
  38102. bottom: 0/1479
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(4 + 11/12, "feet"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(8 + 4/12, "feet"),
  38119. name: "Front",
  38120. image: {
  38121. source: "./media/characters/sterling/front.svg",
  38122. extra: 1420/1236,
  38123. bottom: 27/1447
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(8 + 4/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(15, "feet"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/marble/front.svg",
  38143. extra: 973/937,
  38144. bottom: 32/1005
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(15, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38158. {
  38159. front: {
  38160. height: math.unit(3, "inches"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/powder/front.svg",
  38164. extra: 1504/1334,
  38165. bottom: 518/2022
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(3, "inches"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38179. {
  38180. front: {
  38181. height: math.unit(4 + 5/12, "feet"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/joey-raccoon/front.svg",
  38185. extra: 1273/1197,
  38186. bottom: 0/1273
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(4 + 5/12, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38200. {
  38201. front: {
  38202. height: math.unit(8 + 4/12, "feet"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/vick/front.svg",
  38206. extra: 2187/2118,
  38207. bottom: 47/2234
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Normal",
  38214. height: math.unit(8 + 4/12, "feet"),
  38215. default: true
  38216. },
  38217. ]
  38218. ))
  38219. characterMakers.push(() => makeCharacter(
  38220. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38221. {
  38222. front: {
  38223. height: math.unit(5 + 5/12, "feet"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/mitsy/front.svg",
  38227. extra: 1842/1695,
  38228. bottom: 0/1842
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Normal",
  38235. height: math.unit(5 + 5/12, "feet"),
  38236. default: true
  38237. },
  38238. ]
  38239. ))
  38240. characterMakers.push(() => makeCharacter(
  38241. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38242. {
  38243. front: {
  38244. height: math.unit(6 + 3/12, "feet"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/silvy/front.svg",
  38248. extra: 1995/1836,
  38249. bottom: 225/2220
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(6 + 3/12, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(3 + 8/12, "feet"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/rodney/front.svg",
  38269. extra: 1956/1747,
  38270. bottom: 31/1987
  38271. }
  38272. },
  38273. frontDressed: {
  38274. height: math.unit(2.9, "feet"),
  38275. name: "Front (Dressed)",
  38276. image: {
  38277. source: "./media/characters/rodney/front-dressed.svg",
  38278. extra: 1382/1241,
  38279. bottom: 385/1767
  38280. }
  38281. },
  38282. },
  38283. [
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(3 + 8/12, "feet"),
  38287. default: true
  38288. },
  38289. ]
  38290. ))
  38291. characterMakers.push(() => makeCharacter(
  38292. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38293. {
  38294. front: {
  38295. height: math.unit(5 + 9/12, "feet"),
  38296. weight: math.unit(194, "lbs"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/zakail-sudekai/front.svg",
  38300. extra: 2696/2533,
  38301. bottom: 248/2944
  38302. }
  38303. },
  38304. maw: {
  38305. height: math.unit(1.35, "feet"),
  38306. name: "Maw",
  38307. image: {
  38308. source: "./media/characters/zakail-sudekai/maw.svg"
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(5 + 9/12, "feet"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(8 + 4/12, "feet"),
  38325. weight: math.unit(1200, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/eleanor/front.svg",
  38329. extra: 1226/1192,
  38330. bottom: 52/1278
  38331. }
  38332. },
  38333. back: {
  38334. height: math.unit(8 + 4/12, "feet"),
  38335. weight: math.unit(1200, "lb"),
  38336. name: "Back",
  38337. image: {
  38338. source: "./media/characters/eleanor/back.svg",
  38339. extra: 1242/1184,
  38340. bottom: 60/1302
  38341. }
  38342. },
  38343. head: {
  38344. height: math.unit(2.62, "feet"),
  38345. name: "Head",
  38346. image: {
  38347. source: "./media/characters/eleanor/head.svg"
  38348. }
  38349. },
  38350. },
  38351. [
  38352. {
  38353. name: "Normal",
  38354. height: math.unit(8 + 4/12, "feet"),
  38355. default: true
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(8 + 4/12, "feet"),
  38364. weight: math.unit(750, "lb"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/tanya/front.svg",
  38368. extra: 1749/1615,
  38369. bottom: 33/1782
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(8 + 4/12, "feet"),
  38377. default: true
  38378. },
  38379. ]
  38380. ))
  38381. characterMakers.push(() => makeCharacter(
  38382. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38383. {
  38384. front: {
  38385. height: math.unit(5, "feet"),
  38386. weight: math.unit(225, "lb"),
  38387. name: "Front",
  38388. image: {
  38389. source: "./media/characters/cindy/front.svg",
  38390. extra: 1320/1250,
  38391. bottom: 42/1362
  38392. }
  38393. },
  38394. frontDressed: {
  38395. height: math.unit(5, "feet"),
  38396. weight: math.unit(225, "lb"),
  38397. name: "Front (Dressed)",
  38398. image: {
  38399. source: "./media/characters/cindy/front-dressed.svg",
  38400. extra: 1320/1250,
  38401. bottom: 42/1362
  38402. }
  38403. },
  38404. back: {
  38405. height: math.unit(5, "feet"),
  38406. weight: math.unit(225, "lb"),
  38407. name: "Back",
  38408. image: {
  38409. source: "./media/characters/cindy/back.svg",
  38410. extra: 1384/1346,
  38411. bottom: 14/1398
  38412. }
  38413. },
  38414. },
  38415. [
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(5, "feet"),
  38419. default: true
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(6 + 9/12, "feet"),
  38428. weight: math.unit(440, "lb"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/wilbur-owen/front.svg",
  38432. extra: 1575/1448,
  38433. bottom: 72/1647
  38434. }
  38435. },
  38436. back: {
  38437. height: math.unit(6 + 9/12, "feet"),
  38438. weight: math.unit(440, "lb"),
  38439. name: "Back",
  38440. image: {
  38441. source: "./media/characters/wilbur-owen/back.svg",
  38442. extra: 1578/1445,
  38443. bottom: 36/1614
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(6 + 9/12, "feet"),
  38451. default: true
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(6 + 5/12, "feet"),
  38460. weight: math.unit(650, "lb"),
  38461. name: "Front",
  38462. image: {
  38463. source: "./media/characters/keegan/front.svg",
  38464. extra: 2387/2198,
  38465. bottom: 33/2420
  38466. }
  38467. },
  38468. side: {
  38469. height: math.unit(6 + 5/12, "feet"),
  38470. weight: math.unit(650, "lb"),
  38471. name: "Side",
  38472. image: {
  38473. source: "./media/characters/keegan/side.svg",
  38474. extra: 2390/2202,
  38475. bottom: 47/2437
  38476. }
  38477. },
  38478. back: {
  38479. height: math.unit(6 + 5/12, "feet"),
  38480. weight: math.unit(650, "lb"),
  38481. name: "Back",
  38482. image: {
  38483. source: "./media/characters/keegan/back.svg",
  38484. extra: 2418/2268,
  38485. bottom: 15/2433
  38486. }
  38487. },
  38488. frontSfw: {
  38489. height: math.unit(6 + 5/12, "feet"),
  38490. weight: math.unit(650, "lb"),
  38491. name: "Front (SFW)",
  38492. image: {
  38493. source: "./media/characters/keegan/front-sfw.svg",
  38494. extra: 2387/2198,
  38495. bottom: 33/2420
  38496. }
  38497. },
  38498. beans: {
  38499. height: math.unit(1.85, "feet"),
  38500. name: "Beans",
  38501. image: {
  38502. source: "./media/characters/keegan/beans.svg"
  38503. }
  38504. },
  38505. },
  38506. [
  38507. {
  38508. name: "Normal",
  38509. height: math.unit(6 + 5/12, "feet"),
  38510. default: true
  38511. },
  38512. ]
  38513. ))
  38514. characterMakers.push(() => makeCharacter(
  38515. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38516. {
  38517. front: {
  38518. height: math.unit(9, "feet"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/colton/front.svg",
  38522. extra: 1589/1326,
  38523. bottom: 139/1728
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(9, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(2 + 9/12, "feet"),
  38540. name: "Front",
  38541. image: {
  38542. source: "./media/characters/bora/front.svg",
  38543. extra: 1265/1250,
  38544. bottom: 24/1289
  38545. }
  38546. },
  38547. },
  38548. [
  38549. {
  38550. name: "Normal",
  38551. height: math.unit(2 + 9/12, "feet"),
  38552. default: true
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(8, "feet"),
  38561. name: "Front",
  38562. image: {
  38563. source: "./media/characters/myu-myu/front.svg",
  38564. extra: 1949/1857,
  38565. bottom: 90/2039
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(8, "feet"),
  38573. default: true
  38574. },
  38575. {
  38576. name: "Big",
  38577. height: math.unit(15, "feet")
  38578. },
  38579. {
  38580. name: "BIG",
  38581. height: math.unit(25, "feet")
  38582. },
  38583. ]
  38584. ))
  38585. characterMakers.push(() => makeCharacter(
  38586. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38587. {
  38588. side: {
  38589. height: math.unit(7 + 5/12, "feet"),
  38590. weight: math.unit(2800, "lb"),
  38591. name: "Side",
  38592. image: {
  38593. source: "./media/characters/haloren/side.svg",
  38594. extra: 1793/409,
  38595. bottom: 59/1852
  38596. }
  38597. },
  38598. frontPaw: {
  38599. height: math.unit(2.36, "feet"),
  38600. name: "Front paw",
  38601. image: {
  38602. source: "./media/characters/haloren/front-paw.svg"
  38603. }
  38604. },
  38605. hindPaw: {
  38606. height: math.unit(3.18, "feet"),
  38607. name: "Hind paw",
  38608. image: {
  38609. source: "./media/characters/haloren/hind-paw.svg"
  38610. }
  38611. },
  38612. maw: {
  38613. height: math.unit(5.05, "feet"),
  38614. name: "Maw",
  38615. image: {
  38616. source: "./media/characters/haloren/maw.svg"
  38617. }
  38618. },
  38619. dick: {
  38620. height: math.unit(2.90, "feet"),
  38621. name: "Dick",
  38622. image: {
  38623. source: "./media/characters/haloren/dick.svg"
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(7 + 5/12, "feet"),
  38631. default: true
  38632. },
  38633. {
  38634. name: "Enhanced",
  38635. height: math.unit(14 + 3/12, "feet")
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(171, "cm"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/kimmy/front.svg",
  38647. extra: 1491/1435,
  38648. bottom: 53/1544
  38649. }
  38650. },
  38651. },
  38652. [
  38653. {
  38654. name: "Small",
  38655. height: math.unit(9, "cm")
  38656. },
  38657. {
  38658. name: "Normal",
  38659. height: math.unit(171, "cm"),
  38660. default: true
  38661. },
  38662. ]
  38663. ))
  38664. characterMakers.push(() => makeCharacter(
  38665. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38666. {
  38667. front: {
  38668. height: math.unit(8, "feet"),
  38669. weight: math.unit(300, "lb"),
  38670. name: "Front",
  38671. image: {
  38672. source: "./media/characters/galeboomer/front.svg",
  38673. extra: 4651/4415,
  38674. bottom: 162/4813
  38675. }
  38676. },
  38677. back: {
  38678. height: math.unit(8, "feet"),
  38679. weight: math.unit(300, "lb"),
  38680. name: "Back",
  38681. image: {
  38682. source: "./media/characters/galeboomer/back.svg",
  38683. extra: 4544/4314,
  38684. bottom: 16/4560
  38685. }
  38686. },
  38687. frontAlt: {
  38688. height: math.unit(8, "feet"),
  38689. weight: math.unit(300, "lb"),
  38690. name: "Front (Alt)",
  38691. image: {
  38692. source: "./media/characters/galeboomer/front-alt.svg",
  38693. extra: 4458/4228,
  38694. bottom: 68/4526
  38695. }
  38696. },
  38697. maw: {
  38698. height: math.unit(1.2, "feet"),
  38699. name: "Maw",
  38700. image: {
  38701. source: "./media/characters/galeboomer/maw.svg"
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(8, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(5 + 9/12, "feet"),
  38718. weight: math.unit(120, "lb"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/chyr/front.svg",
  38722. extra: 1323/1254,
  38723. bottom: 63/1386
  38724. }
  38725. },
  38726. back: {
  38727. height: math.unit(5 + 9/12, "feet"),
  38728. weight: math.unit(120, "lb"),
  38729. name: "Back",
  38730. image: {
  38731. source: "./media/characters/chyr/back.svg",
  38732. extra: 1323/1252,
  38733. bottom: 48/1371
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(5 + 9/12, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(7, "feet"),
  38750. weight: math.unit(310, "lb"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/solarus/front.svg",
  38754. extra: 2415/2021,
  38755. bottom: 103/2518
  38756. }
  38757. },
  38758. back: {
  38759. height: math.unit(7, "feet"),
  38760. weight: math.unit(310, "lb"),
  38761. name: "Back",
  38762. image: {
  38763. source: "./media/characters/solarus/back.svg",
  38764. extra: 2463/2089,
  38765. bottom: 79/2542
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(7, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(16, "feet"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38785. extra: 1844/1780,
  38786. bottom: 58/1902
  38787. }
  38788. },
  38789. winterCoat: {
  38790. height: math.unit(16, "feet"),
  38791. name: "Winter Coat",
  38792. image: {
  38793. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38794. extra: 1807/1775,
  38795. bottom: 69/1876
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(16, "feet"),
  38803. default: true
  38804. },
  38805. {
  38806. name: "Chicago Size",
  38807. height: math.unit(560, "feet")
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(11 + 6/12, "feet"),
  38816. weight: math.unit(1366, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/lexor/front.svg",
  38820. extra: 1560/1481,
  38821. bottom: 211/1771
  38822. }
  38823. },
  38824. back: {
  38825. height: math.unit(11 + 6/12, "feet"),
  38826. weight: math.unit(1366, "lb"),
  38827. name: "Back",
  38828. image: {
  38829. source: "./media/characters/lexor/back.svg",
  38830. extra: 1614/1533,
  38831. bottom: 76/1690
  38832. }
  38833. },
  38834. maw: {
  38835. height: math.unit(3, "feet"),
  38836. name: "Maw",
  38837. image: {
  38838. source: "./media/characters/lexor/maw.svg"
  38839. }
  38840. },
  38841. dick: {
  38842. height: math.unit(2.59, "feet"),
  38843. name: "Dick",
  38844. image: {
  38845. source: "./media/characters/lexor/dick.svg"
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(11 + 6/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(5 + 8/12, "feet"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/magnum/front.svg",
  38865. extra: 942/855,
  38866. bottom: 26/968
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(5 + 8/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(18 + 4/12, "feet"),
  38883. weight: math.unit(1500, "kg"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/solas-sharpsman/front.svg",
  38887. extra: 1698/1589,
  38888. bottom: 0/1698
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(18 + 4/12, "feet"),
  38896. default: true
  38897. },
  38898. ]
  38899. ))
  38900. characterMakers.push(() => makeCharacter(
  38901. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38902. {
  38903. front: {
  38904. height: math.unit(5 + 5/12, "feet"),
  38905. weight: math.unit(180, "lb"),
  38906. name: "Front",
  38907. image: {
  38908. source: "./media/characters/october/front.svg",
  38909. extra: 1800/1650,
  38910. bottom: 0/1800
  38911. }
  38912. },
  38913. frontNsfw: {
  38914. height: math.unit(5 + 5/12, "feet"),
  38915. weight: math.unit(180, "lb"),
  38916. name: "Front (NSFW)",
  38917. image: {
  38918. source: "./media/characters/october/front-nsfw.svg",
  38919. extra: 1392/1307,
  38920. bottom: 42/1434
  38921. }
  38922. },
  38923. },
  38924. [
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(5 + 5/12, "feet"),
  38928. default: true
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(8 + 6/12, "feet"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/essynkardi/front.svg",
  38940. extra: 1914/1846,
  38941. bottom: 22/1936
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Normal",
  38948. height: math.unit(8 + 6/12, "feet"),
  38949. default: true
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(6 + 6/12, "feet"),
  38958. weight: math.unit(7, "lb"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/icky/front.svg",
  38962. extra: 813/782,
  38963. bottom: 66/879
  38964. }
  38965. },
  38966. back: {
  38967. height: math.unit(6 + 6/12, "feet"),
  38968. weight: math.unit(7, "lb"),
  38969. name: "Back",
  38970. image: {
  38971. source: "./media/characters/icky/back.svg",
  38972. extra: 754/735,
  38973. bottom: 56/810
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(6 + 6/12, "feet"),
  38981. default: true
  38982. },
  38983. ]
  38984. ))
  38985. characterMakers.push(() => makeCharacter(
  38986. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38987. {
  38988. front: {
  38989. height: math.unit(15, "feet"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/rojas/front.svg",
  38993. extra: 1462/1408,
  38994. bottom: 95/1557
  38995. }
  38996. },
  38997. back: {
  38998. height: math.unit(15, "feet"),
  38999. name: "Back",
  39000. image: {
  39001. source: "./media/characters/rojas/back.svg",
  39002. extra: 1023/954,
  39003. bottom: 28/1051
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Normal",
  39010. height: math.unit(15, "feet"),
  39011. default: true
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39017. {
  39018. frontHuman: {
  39019. height: math.unit(5 + 7/12, "feet"),
  39020. name: "Front (Human)",
  39021. image: {
  39022. source: "./media/characters/alek-dryagan/front-human.svg",
  39023. extra: 1687/1667,
  39024. bottom: 69/1756
  39025. }
  39026. },
  39027. backHuman: {
  39028. height: math.unit(5 + 7/12, "feet"),
  39029. name: "Back (Human)",
  39030. image: {
  39031. source: "./media/characters/alek-dryagan/back-human.svg",
  39032. extra: 1670/1649,
  39033. bottom: 65/1735
  39034. }
  39035. },
  39036. frontDemi: {
  39037. height: math.unit(65, "feet"),
  39038. name: "Front (Demi)",
  39039. image: {
  39040. source: "./media/characters/alek-dryagan/front-demi.svg",
  39041. extra: 1669/1642,
  39042. bottom: 49/1718
  39043. }
  39044. },
  39045. backDemi: {
  39046. height: math.unit(65, "feet"),
  39047. name: "Back (Demi)",
  39048. image: {
  39049. source: "./media/characters/alek-dryagan/back-demi.svg",
  39050. extra: 1658/1637,
  39051. bottom: 40/1698
  39052. }
  39053. },
  39054. mawHuman: {
  39055. height: math.unit(0.3, "feet"),
  39056. name: "Maw (Human)",
  39057. image: {
  39058. source: "./media/characters/alek-dryagan/maw-human.svg"
  39059. }
  39060. },
  39061. mawDemi: {
  39062. height: math.unit(3.8, "feet"),
  39063. name: "Maw (Demi)",
  39064. image: {
  39065. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(5 + 7/12, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39079. {
  39080. frontHuman: {
  39081. height: math.unit(5 + 2/12, "feet"),
  39082. name: "Front (Human)",
  39083. image: {
  39084. source: "./media/characters/gen/front-human.svg",
  39085. extra: 1627/1538,
  39086. bottom: 71/1698
  39087. }
  39088. },
  39089. backHuman: {
  39090. height: math.unit(5 + 2/12, "feet"),
  39091. name: "Back (Human)",
  39092. image: {
  39093. source: "./media/characters/gen/back-human.svg",
  39094. extra: 1638/1548,
  39095. bottom: 69/1707
  39096. }
  39097. },
  39098. frontDemi: {
  39099. height: math.unit(5 + 2/12, "feet"),
  39100. name: "Front (Demi)",
  39101. image: {
  39102. source: "./media/characters/gen/front-demi.svg",
  39103. extra: 1627/1538,
  39104. bottom: 71/1698
  39105. }
  39106. },
  39107. backDemi: {
  39108. height: math.unit(5 + 2/12, "feet"),
  39109. name: "Back (Demi)",
  39110. image: {
  39111. source: "./media/characters/gen/back-demi.svg",
  39112. extra: 1638/1548,
  39113. bottom: 69/1707
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Normal",
  39120. height: math.unit(5 + 2/12, "feet"),
  39121. default: true
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39127. {
  39128. frontImp: {
  39129. height: math.unit(1 + 11/12, "feet"),
  39130. name: "Front (Imp)",
  39131. image: {
  39132. source: "./media/characters/max-kobold/front-imp.svg",
  39133. extra: 1238/1134,
  39134. bottom: 81/1319
  39135. }
  39136. },
  39137. backImp: {
  39138. height: math.unit(1 + 11/12, "feet"),
  39139. name: "Back (Imp)",
  39140. image: {
  39141. source: "./media/characters/max-kobold/back-imp.svg",
  39142. extra: 1334/1175,
  39143. bottom: 34/1368
  39144. }
  39145. },
  39146. frontDemi: {
  39147. height: math.unit(5 + 9/12, "feet"),
  39148. name: "Front (Demi)",
  39149. image: {
  39150. source: "./media/characters/max-kobold/front-demi.svg",
  39151. extra: 1715/1685,
  39152. bottom: 54/1769
  39153. }
  39154. },
  39155. backDemi: {
  39156. height: math.unit(5 + 9/12, "feet"),
  39157. name: "Back (Demi)",
  39158. image: {
  39159. source: "./media/characters/max-kobold/back-demi.svg",
  39160. extra: 1752/1729,
  39161. bottom: 41/1793
  39162. }
  39163. },
  39164. handImp: {
  39165. height: math.unit(0.45, "feet"),
  39166. name: "Hand (Imp)",
  39167. image: {
  39168. source: "./media/characters/max-kobold/hand.svg"
  39169. }
  39170. },
  39171. pawImp: {
  39172. height: math.unit(0.46, "feet"),
  39173. name: "Paw (Imp)",
  39174. image: {
  39175. source: "./media/characters/max-kobold/paw.svg"
  39176. }
  39177. },
  39178. handDemi: {
  39179. height: math.unit(0.80, "feet"),
  39180. name: "Hand (Demi)",
  39181. image: {
  39182. source: "./media/characters/max-kobold/hand.svg"
  39183. }
  39184. },
  39185. pawDemi: {
  39186. height: math.unit(1.1, "feet"),
  39187. name: "Paw (Demi)",
  39188. image: {
  39189. source: "./media/characters/max-kobold/paw.svg"
  39190. }
  39191. },
  39192. headImp: {
  39193. height: math.unit(1.33, "feet"),
  39194. name: "Head (Imp)",
  39195. image: {
  39196. source: "./media/characters/max-kobold/head-imp.svg"
  39197. }
  39198. },
  39199. mawImp: {
  39200. height: math.unit(0.75, "feet"),
  39201. name: "Maw (Imp)",
  39202. image: {
  39203. source: "./media/characters/max-kobold/maw-imp.svg"
  39204. }
  39205. },
  39206. mawDemi: {
  39207. height: math.unit(0.42, "feet"),
  39208. name: "Maw (Demi)",
  39209. image: {
  39210. source: "./media/characters/max-kobold/maw-demi.svg"
  39211. }
  39212. },
  39213. },
  39214. [
  39215. {
  39216. name: "Normal",
  39217. height: math.unit(1 + 11/12, "feet"),
  39218. default: true
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(7 + 5/12, "feet"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/carbon/front.svg",
  39230. extra: 1754/1689,
  39231. bottom: 65/1819
  39232. }
  39233. },
  39234. back: {
  39235. height: math.unit(7 + 5/12, "feet"),
  39236. name: "Back",
  39237. image: {
  39238. source: "./media/characters/carbon/back.svg",
  39239. extra: 1762/1695,
  39240. bottom: 24/1786
  39241. }
  39242. },
  39243. frontGigantamax: {
  39244. height: math.unit(150, "feet"),
  39245. name: "Front (Gigantamax)",
  39246. image: {
  39247. source: "./media/characters/carbon/front-gigantamax.svg",
  39248. extra: 1826/1669,
  39249. bottom: 59/1885
  39250. }
  39251. },
  39252. backGigantamax: {
  39253. height: math.unit(150, "feet"),
  39254. name: "Back (Gigantamax)",
  39255. image: {
  39256. source: "./media/characters/carbon/back-gigantamax.svg",
  39257. extra: 1796/1653,
  39258. bottom: 53/1849
  39259. }
  39260. },
  39261. maw: {
  39262. height: math.unit(0.48, "feet"),
  39263. name: "Maw",
  39264. image: {
  39265. source: "./media/characters/carbon/maw.svg"
  39266. }
  39267. },
  39268. mawGigantamax: {
  39269. height: math.unit(7.5, "feet"),
  39270. name: "Maw (Gigantamax)",
  39271. image: {
  39272. source: "./media/characters/carbon/maw-gigantamax.svg"
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Normal",
  39279. height: math.unit(7 + 5/12, "feet"),
  39280. default: true
  39281. },
  39282. ]
  39283. ))
  39284. characterMakers.push(() => makeCharacter(
  39285. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39286. {
  39287. front: {
  39288. height: math.unit(6, "feet"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/maverick/front.svg",
  39292. extra: 1672/1661,
  39293. bottom: 85/1757
  39294. }
  39295. },
  39296. back: {
  39297. height: math.unit(6, "feet"),
  39298. name: "Back",
  39299. image: {
  39300. source: "./media/characters/maverick/back.svg",
  39301. extra: 1642/1631,
  39302. bottom: 38/1680
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(6, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39316. {
  39317. front: {
  39318. height: math.unit(15, "feet"),
  39319. weight: math.unit(615, "lb"),
  39320. name: "Front",
  39321. image: {
  39322. source: "./media/characters/grockle/front.svg",
  39323. extra: 1535/1427,
  39324. bottom: 56/1591
  39325. }
  39326. },
  39327. },
  39328. [
  39329. {
  39330. name: "Normal",
  39331. height: math.unit(15, "feet"),
  39332. default: true
  39333. },
  39334. {
  39335. name: "Large",
  39336. height: math.unit(150, "feet")
  39337. },
  39338. {
  39339. name: "Macro",
  39340. height: math.unit(1876, "feet")
  39341. },
  39342. {
  39343. name: "Mega Macro",
  39344. height: math.unit(121940, "feet")
  39345. },
  39346. {
  39347. name: "Giga Macro",
  39348. height: math.unit(750, "km")
  39349. },
  39350. {
  39351. name: "Tera Macro",
  39352. height: math.unit(750000, "km")
  39353. },
  39354. {
  39355. name: "Galactic",
  39356. height: math.unit(1.4e5, "km")
  39357. },
  39358. {
  39359. name: "Godlike",
  39360. height: math.unit(9.8e280, "galaxies")
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(11, "meters"),
  39369. weight: math.unit(20, "tonnes"),
  39370. name: "Front",
  39371. image: {
  39372. source: "./media/characters/alistair/front.svg",
  39373. extra: 1265/1009,
  39374. bottom: 93/1358
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(11, "meters"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(5 + 8/12, "feet"),
  39391. name: "Front",
  39392. image: {
  39393. source: "./media/characters/haruka/front.svg",
  39394. extra: 2012/1952,
  39395. bottom: 0/2012
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(5 + 8/12, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39409. {
  39410. back: {
  39411. height: math.unit(9, "feet"),
  39412. name: "Back",
  39413. image: {
  39414. source: "./media/characters/vivian-sylveon/back.svg",
  39415. extra: 1853/1714,
  39416. bottom: 0/1853
  39417. }
  39418. },
  39419. },
  39420. [
  39421. {
  39422. name: "Normal",
  39423. height: math.unit(9, "feet"),
  39424. default: true
  39425. },
  39426. {
  39427. name: "Macro",
  39428. height: math.unit(500, "feet")
  39429. },
  39430. {
  39431. name: "Megamacro",
  39432. height: math.unit(600, "miles")
  39433. },
  39434. {
  39435. name: "Gigamacro",
  39436. height: math.unit(30000, "miles")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39442. {
  39443. anthro: {
  39444. height: math.unit(5 + 10/12, "feet"),
  39445. weight: math.unit(100, "lb"),
  39446. name: "Anthro",
  39447. image: {
  39448. source: "./media/characters/daiki/anthro.svg",
  39449. extra: 1115/1027,
  39450. bottom: 69/1184
  39451. }
  39452. },
  39453. feral: {
  39454. height: math.unit(200, "feet"),
  39455. name: "Feral",
  39456. image: {
  39457. source: "./media/characters/daiki/feral.svg",
  39458. extra: 1256/313,
  39459. bottom: 39/1295
  39460. }
  39461. },
  39462. feralHead: {
  39463. height: math.unit(171, "feet"),
  39464. name: "Feral Head",
  39465. image: {
  39466. source: "./media/characters/daiki/feral-head.svg"
  39467. }
  39468. },
  39469. manaDragon: {
  39470. height: math.unit(170, "meters"),
  39471. name: "Mana-dragon",
  39472. image: {
  39473. source: "./media/characters/daiki/mana-dragon.svg",
  39474. extra: 763/420,
  39475. bottom: 97/860
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(5 + 10/12, "feet"),
  39483. default: true
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39489. {
  39490. fullyEquippedFront: {
  39491. height: math.unit(3 + 1/12, "feet"),
  39492. weight: math.unit(24, "lb"),
  39493. name: "Fully Equipped (Front)",
  39494. image: {
  39495. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39496. extra: 687/605,
  39497. bottom: 18/705
  39498. }
  39499. },
  39500. fullyEquippedBack: {
  39501. height: math.unit(3 + 1/12, "feet"),
  39502. weight: math.unit(24, "lb"),
  39503. name: "Fully Equipped (Back)",
  39504. image: {
  39505. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39506. extra: 689/590,
  39507. bottom: 18/707
  39508. }
  39509. },
  39510. dailyWear: {
  39511. height: math.unit(3 + 1/12, "feet"),
  39512. weight: math.unit(24, "lb"),
  39513. name: "Daily Wear",
  39514. image: {
  39515. source: "./media/characters/tea-spot/daily-wear.svg",
  39516. extra: 701/620,
  39517. bottom: 21/722
  39518. }
  39519. },
  39520. maidWork: {
  39521. height: math.unit(3 + 1/12, "feet"),
  39522. weight: math.unit(24, "lb"),
  39523. name: "Maid Work",
  39524. image: {
  39525. source: "./media/characters/tea-spot/maid-work.svg",
  39526. extra: 693/609,
  39527. bottom: 15/708
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(3 + 1/12, "feet"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(175, "cm"),
  39544. weight: math.unit(75, "kg"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/chee/front.svg",
  39548. extra: 1796/1740,
  39549. bottom: 40/1836
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Micro-Micro",
  39556. height: math.unit(1, "nm")
  39557. },
  39558. {
  39559. name: "Micro-erst",
  39560. height: math.unit(1, "micrometer")
  39561. },
  39562. {
  39563. name: "Micro-er",
  39564. height: math.unit(1, "cm")
  39565. },
  39566. {
  39567. name: "Normal",
  39568. height: math.unit(175, "cm"),
  39569. default: true
  39570. },
  39571. {
  39572. name: "Macro",
  39573. height: math.unit(100, "m")
  39574. },
  39575. {
  39576. name: "Macro-er",
  39577. height: math.unit(1, "km")
  39578. },
  39579. {
  39580. name: "Macro-erst",
  39581. height: math.unit(10, "km")
  39582. },
  39583. {
  39584. name: "Macro-Macro",
  39585. height: math.unit(100, "km")
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39591. {
  39592. front: {
  39593. height: math.unit(11 + 9/12, "feet"),
  39594. weight: math.unit(935, "lb"),
  39595. name: "Front",
  39596. image: {
  39597. source: "./media/characters/kingsley/front.svg",
  39598. extra: 1803/1674,
  39599. bottom: 127/1930
  39600. }
  39601. },
  39602. frontNude: {
  39603. height: math.unit(11 + 9/12, "feet"),
  39604. weight: math.unit(935, "lb"),
  39605. name: "Front (Nude)",
  39606. image: {
  39607. source: "./media/characters/kingsley/front-nude.svg",
  39608. extra: 1803/1674,
  39609. bottom: 127/1930
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(11 + 9/12, "feet"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39623. {
  39624. side: {
  39625. height: math.unit(9, "feet"),
  39626. name: "Side",
  39627. image: {
  39628. source: "./media/characters/rymel/side.svg",
  39629. extra: 792/469,
  39630. bottom: 121/913
  39631. }
  39632. },
  39633. maw: {
  39634. height: math.unit(2.4, "meters"),
  39635. name: "Maw",
  39636. image: {
  39637. source: "./media/characters/rymel/maw.svg"
  39638. }
  39639. },
  39640. },
  39641. [
  39642. {
  39643. name: "House Drake",
  39644. height: math.unit(2, "feet")
  39645. },
  39646. {
  39647. name: "Reduced",
  39648. height: math.unit(4.5, "feet")
  39649. },
  39650. {
  39651. name: "Normal",
  39652. height: math.unit(9, "feet"),
  39653. default: true
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(1.74, "meters"),
  39662. weight: math.unit(55, "kg"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/rubus/front.svg",
  39666. extra: 1894/1742,
  39667. bottom: 44/1938
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(1.74, "meters"),
  39675. default: true
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(5 + 2/12, "feet"),
  39684. weight: math.unit(112, "lb"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/cassie-kingston/front.svg",
  39688. extra: 1438/1390,
  39689. bottom: 47/1485
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(5 + 2/12, "feet"),
  39697. default: true
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(128, "feet")
  39702. },
  39703. {
  39704. name: "Megamacro",
  39705. height: math.unit(2.56, "miles")
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39711. {
  39712. front: {
  39713. height: math.unit(7, "feet"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/fox/front.svg",
  39717. extra: 1798/1703,
  39718. bottom: 55/1853
  39719. }
  39720. },
  39721. back: {
  39722. height: math.unit(7, "feet"),
  39723. name: "Back",
  39724. image: {
  39725. source: "./media/characters/fox/back.svg",
  39726. extra: 1748/1649,
  39727. bottom: 32/1780
  39728. }
  39729. },
  39730. head: {
  39731. height: math.unit(1.95, "feet"),
  39732. name: "Head",
  39733. image: {
  39734. source: "./media/characters/fox/head.svg"
  39735. }
  39736. },
  39737. dick: {
  39738. height: math.unit(1.33, "feet"),
  39739. name: "Dick",
  39740. image: {
  39741. source: "./media/characters/fox/dick.svg"
  39742. }
  39743. },
  39744. foot: {
  39745. height: math.unit(1, "feet"),
  39746. name: "Foot",
  39747. image: {
  39748. source: "./media/characters/fox/foot.svg"
  39749. }
  39750. },
  39751. paw: {
  39752. height: math.unit(0.92, "feet"),
  39753. name: "Paw",
  39754. image: {
  39755. source: "./media/characters/fox/paw.svg"
  39756. }
  39757. },
  39758. },
  39759. [
  39760. {
  39761. name: "Small",
  39762. height: math.unit(3, "inches")
  39763. },
  39764. {
  39765. name: "\"Realistic\"",
  39766. height: math.unit(7, "feet")
  39767. },
  39768. {
  39769. name: "Normal",
  39770. height: math.unit(150, "feet"),
  39771. default: true
  39772. },
  39773. {
  39774. name: "BIG",
  39775. height: math.unit(1200, "feet")
  39776. },
  39777. {
  39778. name: "👀",
  39779. height: math.unit(5, "miles")
  39780. },
  39781. {
  39782. name: "👀👀👀",
  39783. height: math.unit(64, "miles")
  39784. },
  39785. ]
  39786. ))
  39787. characterMakers.push(() => makeCharacter(
  39788. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39789. {
  39790. front: {
  39791. height: math.unit(625, "feet"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/asonja-rossa/front.svg",
  39795. extra: 1833/1686,
  39796. bottom: 24/1857
  39797. }
  39798. },
  39799. back: {
  39800. height: math.unit(625, "feet"),
  39801. name: "Back",
  39802. image: {
  39803. source: "./media/characters/asonja-rossa/back.svg",
  39804. extra: 1852/1753,
  39805. bottom: 26/1878
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Macro",
  39812. height: math.unit(625, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39819. {
  39820. side: {
  39821. height: math.unit(8, "feet"),
  39822. name: "Side",
  39823. image: {
  39824. source: "./media/characters/rezukii/side.svg",
  39825. extra: 979/542,
  39826. bottom: 87/1066
  39827. }
  39828. },
  39829. sitting: {
  39830. height: math.unit(14.6, "feet"),
  39831. name: "Sitting",
  39832. image: {
  39833. source: "./media/characters/rezukii/sitting.svg",
  39834. extra: 1023/813,
  39835. bottom: 45/1068
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Tiny",
  39842. height: math.unit(2, "feet")
  39843. },
  39844. {
  39845. name: "Smol",
  39846. height: math.unit(4, "feet")
  39847. },
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(8, "feet"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Big",
  39855. height: math.unit(12, "feet")
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(30, "feet")
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39865. {
  39866. front: {
  39867. height: math.unit(14, "feet"),
  39868. weight: math.unit(9.5, "tonnes"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/dawnheart/front.svg",
  39872. extra: 2792/2675,
  39873. bottom: 64/2856
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(14, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39887. {
  39888. front: {
  39889. height: math.unit(1.7, "m"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/gladi/front.svg",
  39893. extra: 1460/1362,
  39894. bottom: 19/1479
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(1.7, "m"),
  39899. name: "Back",
  39900. image: {
  39901. source: "./media/characters/gladi/back.svg",
  39902. extra: 1459/1357,
  39903. bottom: 12/1471
  39904. }
  39905. },
  39906. feral: {
  39907. height: math.unit(2.05, "m"),
  39908. name: "Feral",
  39909. image: {
  39910. source: "./media/characters/gladi/feral.svg",
  39911. extra: 821/557,
  39912. bottom: 91/912
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Shortest",
  39919. height: math.unit(70, "cm")
  39920. },
  39921. {
  39922. name: "Normal",
  39923. height: math.unit(1.7, "m")
  39924. },
  39925. {
  39926. name: "Macro",
  39927. height: math.unit(10, "m"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Tallest",
  39932. height: math.unit(200, "m")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(5 + 7/12, "feet"),
  39941. weight: math.unit(2, "tons"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/erdno/front.svg",
  39945. extra: 1234/1129,
  39946. bottom: 35/1269
  39947. }
  39948. },
  39949. angled: {
  39950. height: math.unit(5 + 7/12, "feet"),
  39951. weight: math.unit(2, "tons"),
  39952. name: "Angled",
  39953. image: {
  39954. source: "./media/characters/erdno/angled.svg",
  39955. extra: 1185/1139,
  39956. bottom: 36/1221
  39957. }
  39958. },
  39959. side: {
  39960. height: math.unit(5 + 7/12, "feet"),
  39961. weight: math.unit(2, "tons"),
  39962. name: "Side",
  39963. image: {
  39964. source: "./media/characters/erdno/side.svg",
  39965. extra: 1191/1144,
  39966. bottom: 40/1231
  39967. }
  39968. },
  39969. back: {
  39970. height: math.unit(5 + 7/12, "feet"),
  39971. weight: math.unit(2, "tons"),
  39972. name: "Back",
  39973. image: {
  39974. source: "./media/characters/erdno/back.svg",
  39975. extra: 1202/1146,
  39976. bottom: 17/1219
  39977. }
  39978. },
  39979. frontNsfw: {
  39980. height: math.unit(5 + 7/12, "feet"),
  39981. weight: math.unit(2, "tons"),
  39982. name: "Front (NSFW)",
  39983. image: {
  39984. source: "./media/characters/erdno/front-nsfw.svg",
  39985. extra: 1234/1129,
  39986. bottom: 35/1269
  39987. }
  39988. },
  39989. angledNsfw: {
  39990. height: math.unit(5 + 7/12, "feet"),
  39991. weight: math.unit(2, "tons"),
  39992. name: "Angled (NSFW)",
  39993. image: {
  39994. source: "./media/characters/erdno/angled-nsfw.svg",
  39995. extra: 1185/1139,
  39996. bottom: 36/1221
  39997. }
  39998. },
  39999. sideNsfw: {
  40000. height: math.unit(5 + 7/12, "feet"),
  40001. weight: math.unit(2, "tons"),
  40002. name: "Side (NSFW)",
  40003. image: {
  40004. source: "./media/characters/erdno/side-nsfw.svg",
  40005. extra: 1191/1144,
  40006. bottom: 40/1231
  40007. }
  40008. },
  40009. backNsfw: {
  40010. height: math.unit(5 + 7/12, "feet"),
  40011. weight: math.unit(2, "tons"),
  40012. name: "Back (NSFW)",
  40013. image: {
  40014. source: "./media/characters/erdno/back-nsfw.svg",
  40015. extra: 1202/1146,
  40016. bottom: 17/1219
  40017. }
  40018. },
  40019. frontHyper: {
  40020. height: math.unit(5 + 7/12, "feet"),
  40021. weight: math.unit(2, "tons"),
  40022. name: "Front (Hyper)",
  40023. image: {
  40024. source: "./media/characters/erdno/front-hyper.svg",
  40025. extra: 1298/1136,
  40026. bottom: 35/1333
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(5 + 7/12, "feet"),
  40034. default: true
  40035. },
  40036. {
  40037. name: "Big",
  40038. height: math.unit(5.7, "meters")
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(5.7, "kilometers")
  40043. },
  40044. {
  40045. name: "Megamacro",
  40046. height: math.unit(5.7, "earths")
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40052. {
  40053. front: {
  40054. height: math.unit(5 + 10/12, "feet"),
  40055. weight: math.unit(150, "lb"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/jamie/front.svg",
  40059. extra: 1908/1768,
  40060. bottom: 19/1927
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Minimum",
  40067. height: math.unit(2, "cm")
  40068. },
  40069. {
  40070. name: "Micro",
  40071. height: math.unit(3, "inches")
  40072. },
  40073. {
  40074. name: "Normal",
  40075. height: math.unit(5 + 10/12, "feet"),
  40076. default: true
  40077. },
  40078. {
  40079. name: "Macro",
  40080. height: math.unit(150, "feet")
  40081. },
  40082. {
  40083. name: "Megamacro",
  40084. height: math.unit(10000, "m")
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(2, "meters"),
  40093. weight: math.unit(100, "kg"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/shiron/front.svg",
  40097. extra: 2103/1985,
  40098. bottom: 98/2201
  40099. }
  40100. },
  40101. back: {
  40102. height: math.unit(2, "meters"),
  40103. weight: math.unit(100, "kg"),
  40104. name: "Back",
  40105. image: {
  40106. source: "./media/characters/shiron/back.svg",
  40107. extra: 2110/2015,
  40108. bottom: 89/2199
  40109. }
  40110. },
  40111. hand: {
  40112. height: math.unit(0.96, "feet"),
  40113. name: "Hand",
  40114. image: {
  40115. source: "./media/characters/shiron/hand.svg"
  40116. }
  40117. },
  40118. foot: {
  40119. height: math.unit(1.464, "feet"),
  40120. name: "Foot",
  40121. image: {
  40122. source: "./media/characters/shiron/foot.svg"
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Normal",
  40129. height: math.unit(2, "meters")
  40130. },
  40131. {
  40132. name: "Macro",
  40133. height: math.unit(500, "meters"),
  40134. default: true
  40135. },
  40136. {
  40137. name: "Megamacro",
  40138. height: math.unit(20, "km")
  40139. },
  40140. ]
  40141. ))
  40142. characterMakers.push(() => makeCharacter(
  40143. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40144. {
  40145. front: {
  40146. height: math.unit(6, "feet"),
  40147. name: "Front",
  40148. image: {
  40149. source: "./media/characters/sam/front.svg",
  40150. extra: 849/826,
  40151. bottom: 19/868
  40152. }
  40153. },
  40154. },
  40155. [
  40156. {
  40157. name: "Normal",
  40158. height: math.unit(6, "feet"),
  40159. default: true
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40165. {
  40166. front: {
  40167. height: math.unit(8 + 4/12, "feet"),
  40168. weight: math.unit(122, "kg"),
  40169. name: "Front",
  40170. image: {
  40171. source: "./media/characters/namori-kurogawa/front.svg",
  40172. extra: 1894/1576,
  40173. bottom: 34/1928
  40174. }
  40175. },
  40176. },
  40177. [
  40178. {
  40179. name: "Normal",
  40180. height: math.unit(8 + 4/12, "feet"),
  40181. default: true
  40182. },
  40183. ]
  40184. ))
  40185. characterMakers.push(() => makeCharacter(
  40186. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40187. {
  40188. front: {
  40189. height: math.unit(9, "feet"),
  40190. weight: math.unit(621, "lb"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/unmru/front.svg",
  40194. extra: 1853/1747,
  40195. bottom: 73/1926
  40196. }
  40197. },
  40198. side: {
  40199. height: math.unit(9, "feet"),
  40200. weight: math.unit(621, "lb"),
  40201. name: "Side",
  40202. image: {
  40203. source: "./media/characters/unmru/side.svg",
  40204. extra: 1781/1671,
  40205. bottom: 127/1908
  40206. }
  40207. },
  40208. back: {
  40209. height: math.unit(9, "feet"),
  40210. weight: math.unit(621, "lb"),
  40211. name: "Back",
  40212. image: {
  40213. source: "./media/characters/unmru/back.svg",
  40214. extra: 1894/1765,
  40215. bottom: 75/1969
  40216. }
  40217. },
  40218. dick: {
  40219. height: math.unit(3, "feet"),
  40220. weight: math.unit(35, "lb"),
  40221. name: "Dick",
  40222. image: {
  40223. source: "./media/characters/unmru/dick.svg"
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(9, "feet")
  40231. },
  40232. {
  40233. name: "Natural",
  40234. height: math.unit(27, "feet"),
  40235. default: true
  40236. },
  40237. {
  40238. name: "Giant",
  40239. height: math.unit(90, "feet")
  40240. },
  40241. {
  40242. name: "Kaiju",
  40243. height: math.unit(270, "feet")
  40244. },
  40245. {
  40246. name: "Macro",
  40247. height: math.unit(900, "feet")
  40248. },
  40249. {
  40250. name: "Macro+",
  40251. height: math.unit(2700, "feet")
  40252. },
  40253. {
  40254. name: "Megamacro",
  40255. height: math.unit(9000, "feet")
  40256. },
  40257. {
  40258. name: "City-Crushing",
  40259. height: math.unit(27000, "feet")
  40260. },
  40261. {
  40262. name: "Mountain-Mashing",
  40263. height: math.unit(90000, "feet")
  40264. },
  40265. {
  40266. name: "Earth-Eclipsing",
  40267. height: math.unit(2.7e8, "feet")
  40268. },
  40269. {
  40270. name: "Sol-Swallowing",
  40271. height: math.unit(9e10, "feet")
  40272. },
  40273. {
  40274. name: "Majoris-Munching",
  40275. height: math.unit(2.7e13, "feet")
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40281. {
  40282. front: {
  40283. height: math.unit(1, "inch"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/squeaks-mouse/front.svg",
  40287. extra: 352/308,
  40288. bottom: 25/377
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Micro",
  40295. height: math.unit(1, "inch"),
  40296. default: true
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40302. {
  40303. side: {
  40304. height: math.unit(35, "feet"),
  40305. name: "Side",
  40306. image: {
  40307. source: "./media/characters/sayko/side.svg",
  40308. extra: 1697/1021,
  40309. bottom: 82/1779
  40310. }
  40311. },
  40312. head: {
  40313. height: math.unit(16, "feet"),
  40314. name: "Head",
  40315. image: {
  40316. source: "./media/characters/sayko/head.svg"
  40317. }
  40318. },
  40319. forepaw: {
  40320. height: math.unit(7.85, "feet"),
  40321. name: "Forepaw",
  40322. image: {
  40323. source: "./media/characters/sayko/forepaw.svg"
  40324. }
  40325. },
  40326. hindpaw: {
  40327. height: math.unit(8.8, "feet"),
  40328. name: "Hindpaw",
  40329. image: {
  40330. source: "./media/characters/sayko/hindpaw.svg"
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(35, "feet"),
  40338. default: true
  40339. },
  40340. {
  40341. name: "Colossus",
  40342. height: math.unit(100, "meters")
  40343. },
  40344. {
  40345. name: "\"Small\" Deity",
  40346. height: math.unit(1, "km")
  40347. },
  40348. {
  40349. name: "\"Large\" Deity",
  40350. height: math.unit(15, "km")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(6, "feet"),
  40359. weight: math.unit(250, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/mukiro/front.svg",
  40363. extra: 1368/1310,
  40364. bottom: 34/1402
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(6, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(12 + 4/12, "feet"),
  40381. name: "Front",
  40382. image: {
  40383. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40384. extra: 1346/1311,
  40385. bottom: 65/1411
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Base",
  40392. height: math.unit(12 + 4/12, "feet"),
  40393. default: true
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(150, "feet")
  40398. },
  40399. {
  40400. name: "Mega",
  40401. height: math.unit(2, "miles")
  40402. },
  40403. {
  40404. name: "Demi God",
  40405. height: math.unit(4, "AU")
  40406. },
  40407. {
  40408. name: "God Size",
  40409. height: math.unit(1, "universe")
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(3 + 3/12, "feet"),
  40418. weight: math.unit(88, "lb"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/trey/front.svg",
  40422. extra: 1815/1509,
  40423. bottom: 60/1875
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(3 + 3/12, "feet"),
  40431. default: true
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40437. {
  40438. front: {
  40439. height: math.unit(4, "meters"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/adelonda/front.svg",
  40443. extra: 1077/982,
  40444. bottom: 39/1116
  40445. }
  40446. },
  40447. back: {
  40448. height: math.unit(4, "meters"),
  40449. name: "Back",
  40450. image: {
  40451. source: "./media/characters/adelonda/back.svg",
  40452. extra: 1105/1003,
  40453. bottom: 25/1130
  40454. }
  40455. },
  40456. feral: {
  40457. height: math.unit(40/1.5, "meters"),
  40458. name: "Feral",
  40459. image: {
  40460. source: "./media/characters/adelonda/feral.svg",
  40461. extra: 597/271,
  40462. bottom: 387/984
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(4, "meters"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(8 + 4/12, "feet"),
  40479. weight: math.unit(670, "lb"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/acadiel/front.svg",
  40483. extra: 1901/1595,
  40484. bottom: 142/2043
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(8 + 4/12, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(200, "feet")
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40502. {
  40503. front: {
  40504. height: math.unit(6 + 2/12, "feet"),
  40505. weight: math.unit(185, "lb"),
  40506. name: "Front",
  40507. image: {
  40508. source: "./media/characters/kayne-ein/front.svg",
  40509. extra: 1780/1560,
  40510. bottom: 81/1861
  40511. }
  40512. },
  40513. },
  40514. [
  40515. {
  40516. name: "Normal",
  40517. height: math.unit(6 + 2/12, "feet"),
  40518. default: true
  40519. },
  40520. {
  40521. name: "Transformation Stage",
  40522. height: math.unit(15, "feet")
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(150, "feet")
  40527. },
  40528. {
  40529. name: "Earth's Shadow",
  40530. height: math.unit(6200, "miles")
  40531. },
  40532. {
  40533. name: "Universal Demon",
  40534. height: math.unit(28e9, "parsecs")
  40535. },
  40536. {
  40537. name: "Multiverse God",
  40538. height: math.unit(3, "multiverses")
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40544. {
  40545. front: {
  40546. height: math.unit(5 + 5/12, "feet"),
  40547. name: "Front",
  40548. image: {
  40549. source: "./media/characters/fawn/front.svg",
  40550. extra: 1873/1731,
  40551. bottom: 95/1968
  40552. }
  40553. },
  40554. back: {
  40555. height: math.unit(5 + 5/12, "feet"),
  40556. name: "Back",
  40557. image: {
  40558. source: "./media/characters/fawn/back.svg",
  40559. extra: 1813/1700,
  40560. bottom: 14/1827
  40561. }
  40562. },
  40563. hoof: {
  40564. height: math.unit(1.45, "feet"),
  40565. name: "Hoof",
  40566. image: {
  40567. source: "./media/characters/fawn/hoof.svg"
  40568. }
  40569. },
  40570. },
  40571. [
  40572. {
  40573. name: "Normal",
  40574. height: math.unit(5 + 5/12, "feet"),
  40575. default: true
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(2 + 5/12, "feet"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/orion/front.svg",
  40587. extra: 1366/1304,
  40588. bottom: 43/1409
  40589. }
  40590. },
  40591. paw: {
  40592. height: math.unit(0.52, "feet"),
  40593. name: "Paw",
  40594. image: {
  40595. source: "./media/characters/orion/paw.svg"
  40596. }
  40597. },
  40598. },
  40599. [
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(2 + 5/12, "feet"),
  40603. default: true
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(5 + 10/12, "feet"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/vera/front.svg",
  40615. extra: 1680/1575,
  40616. bottom: 49/1729
  40617. }
  40618. },
  40619. back: {
  40620. height: math.unit(5 + 10/12, "feet"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/vera/back.svg",
  40624. extra: 1700/1588,
  40625. bottom: 18/1718
  40626. }
  40627. },
  40628. arcanine: {
  40629. height: math.unit(6 + 8/12, "feet"),
  40630. name: "Arcanine",
  40631. image: {
  40632. source: "./media/characters/vera/arcanine.svg",
  40633. extra: 1590/1511,
  40634. bottom: 71/1661
  40635. }
  40636. },
  40637. maw: {
  40638. height: math.unit(0.82, "feet"),
  40639. name: "Maw",
  40640. image: {
  40641. source: "./media/characters/vera/maw.svg"
  40642. }
  40643. },
  40644. mawArcanine: {
  40645. height: math.unit(0.97, "feet"),
  40646. name: "Maw (Arcanine)",
  40647. image: {
  40648. source: "./media/characters/vera/maw-arcanine.svg"
  40649. }
  40650. },
  40651. paw: {
  40652. height: math.unit(0.75, "feet"),
  40653. name: "Paw",
  40654. image: {
  40655. source: "./media/characters/vera/paw.svg"
  40656. }
  40657. },
  40658. pawprint: {
  40659. height: math.unit(0.52, "feet"),
  40660. name: "Pawprint",
  40661. image: {
  40662. source: "./media/characters/vera/pawprint.svg"
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Normal",
  40669. height: math.unit(5 + 10/12, "feet"),
  40670. default: true
  40671. },
  40672. {
  40673. name: "Macro",
  40674. height: math.unit(75, "feet")
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40680. {
  40681. front: {
  40682. height: math.unit(4, "feet"),
  40683. weight: math.unit(40, "lb"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/orvan-rabbit/front.svg",
  40687. extra: 1896/1642,
  40688. bottom: 29/1925
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(4, "feet"),
  40696. default: true
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(6, "feet"),
  40705. weight: math.unit(168, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/lisa/front.svg",
  40709. extra: 2065/1867,
  40710. bottom: 46/2111
  40711. }
  40712. },
  40713. back: {
  40714. height: math.unit(6, "feet"),
  40715. weight: math.unit(168, "lb"),
  40716. name: "Back",
  40717. image: {
  40718. source: "./media/characters/lisa/back.svg",
  40719. extra: 1982/1838,
  40720. bottom: 29/2011
  40721. }
  40722. },
  40723. maw: {
  40724. height: math.unit(0.81, "feet"),
  40725. name: "Maw",
  40726. image: {
  40727. source: "./media/characters/lisa/maw.svg"
  40728. }
  40729. },
  40730. paw: {
  40731. height: math.unit(0.9, "feet"),
  40732. name: "Paw",
  40733. image: {
  40734. source: "./media/characters/lisa/paw.svg"
  40735. }
  40736. },
  40737. caribousune: {
  40738. height: math.unit(7 + 2/12, "feet"),
  40739. weight: math.unit(268, "lb"),
  40740. name: "Caribousune",
  40741. image: {
  40742. source: "./media/characters/lisa/caribousune.svg",
  40743. extra: 1843/1633,
  40744. bottom: 29/1872
  40745. }
  40746. },
  40747. frontCaribousune: {
  40748. height: math.unit(7 + 2/12, "feet"),
  40749. weight: math.unit(268, "lb"),
  40750. name: "Front (Caribousune)",
  40751. image: {
  40752. source: "./media/characters/lisa/front-caribousune.svg",
  40753. extra: 1818/1638,
  40754. bottom: 52/1870
  40755. }
  40756. },
  40757. sideCaribousune: {
  40758. height: math.unit(7 + 2/12, "feet"),
  40759. weight: math.unit(268, "lb"),
  40760. name: "Side (Caribousune)",
  40761. image: {
  40762. source: "./media/characters/lisa/side-caribousune.svg",
  40763. extra: 1851/1635,
  40764. bottom: 16/1867
  40765. }
  40766. },
  40767. backCaribousune: {
  40768. height: math.unit(7 + 2/12, "feet"),
  40769. weight: math.unit(268, "lb"),
  40770. name: "Back (Caribousune)",
  40771. image: {
  40772. source: "./media/characters/lisa/back-caribousune.svg",
  40773. extra: 1801/1604,
  40774. bottom: 44/1845
  40775. }
  40776. },
  40777. caribou: {
  40778. height: math.unit(7 + 2/12, "feet"),
  40779. weight: math.unit(268, "lb"),
  40780. name: "Caribou",
  40781. image: {
  40782. source: "./media/characters/lisa/caribou.svg",
  40783. extra: 1843/1633,
  40784. bottom: 29/1872
  40785. }
  40786. },
  40787. frontCaribou: {
  40788. height: math.unit(7 + 2/12, "feet"),
  40789. weight: math.unit(268, "lb"),
  40790. name: "Front (Caribou)",
  40791. image: {
  40792. source: "./media/characters/lisa/front-caribou.svg",
  40793. extra: 1818/1638,
  40794. bottom: 52/1870
  40795. }
  40796. },
  40797. sideCaribou: {
  40798. height: math.unit(7 + 2/12, "feet"),
  40799. weight: math.unit(268, "lb"),
  40800. name: "Side (Caribou)",
  40801. image: {
  40802. source: "./media/characters/lisa/side-caribou.svg",
  40803. extra: 1851/1635,
  40804. bottom: 16/1867
  40805. }
  40806. },
  40807. backCaribou: {
  40808. height: math.unit(7 + 2/12, "feet"),
  40809. weight: math.unit(268, "lb"),
  40810. name: "Back (Caribou)",
  40811. image: {
  40812. source: "./media/characters/lisa/back-caribou.svg",
  40813. extra: 1801/1604,
  40814. bottom: 44/1845
  40815. }
  40816. },
  40817. mawCaribou: {
  40818. height: math.unit(1.45, "feet"),
  40819. name: "Maw (Caribou)",
  40820. image: {
  40821. source: "./media/characters/lisa/maw-caribou.svg"
  40822. }
  40823. },
  40824. mawCaribousune: {
  40825. height: math.unit(1.45, "feet"),
  40826. name: "Maw (Caribousune)",
  40827. image: {
  40828. source: "./media/characters/lisa/maw-caribousune.svg"
  40829. }
  40830. },
  40831. pawCaribousune: {
  40832. height: math.unit(1.61, "feet"),
  40833. name: "Paw (Caribou)",
  40834. image: {
  40835. source: "./media/characters/lisa/paw-caribousune.svg"
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(6, "feet")
  40843. },
  40844. {
  40845. name: "God Size",
  40846. height: math.unit(72, "feet"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "Towering",
  40851. height: math.unit(288, "feet")
  40852. },
  40853. {
  40854. name: "City Size",
  40855. height: math.unit(48384, "feet")
  40856. },
  40857. {
  40858. name: "Continental",
  40859. height: math.unit(4200, "miles")
  40860. },
  40861. {
  40862. name: "Planet Eater",
  40863. height: math.unit(42, "earths")
  40864. },
  40865. {
  40866. name: "Star Swallower",
  40867. height: math.unit(42, "solarradii")
  40868. },
  40869. {
  40870. name: "System Swallower",
  40871. height: math.unit(84000, "AU")
  40872. },
  40873. {
  40874. name: "Galaxy Gobbler",
  40875. height: math.unit(42, "galaxies")
  40876. },
  40877. {
  40878. name: "Universe Devourer",
  40879. height: math.unit(42, "universes")
  40880. },
  40881. {
  40882. name: "Multiverse Muncher",
  40883. height: math.unit(42, "multiverses")
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(36, "feet"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/shadow-rat/front.svg",
  40895. extra: 1845/1758,
  40896. bottom: 83/1928
  40897. }
  40898. },
  40899. },
  40900. [
  40901. {
  40902. name: "Macro",
  40903. height: math.unit(36, "feet"),
  40904. default: true
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40910. {
  40911. side: {
  40912. height: math.unit(8, "feet"),
  40913. weight: math.unit(2630, "lb"),
  40914. name: "Side",
  40915. image: {
  40916. source: "./media/characters/torallia/side.svg",
  40917. extra: 2164/2021,
  40918. bottom: 371/2535
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Mortal Interaction",
  40925. height: math.unit(8, "feet")
  40926. },
  40927. {
  40928. name: "Natural",
  40929. height: math.unit(24, "feet"),
  40930. default: true
  40931. },
  40932. {
  40933. name: "Giant",
  40934. height: math.unit(80, "feet")
  40935. },
  40936. {
  40937. name: "Kaiju",
  40938. height: math.unit(240, "feet")
  40939. },
  40940. {
  40941. name: "Macro",
  40942. height: math.unit(800, "feet")
  40943. },
  40944. {
  40945. name: "Macro+",
  40946. height: math.unit(2400, "feet")
  40947. },
  40948. {
  40949. name: "Macro++",
  40950. height: math.unit(8000, "feet")
  40951. },
  40952. {
  40953. name: "City-Crushing",
  40954. height: math.unit(24000, "feet")
  40955. },
  40956. {
  40957. name: "Mountain-Mashing",
  40958. height: math.unit(80000, "feet")
  40959. },
  40960. {
  40961. name: "District Demolisher",
  40962. height: math.unit(240000, "feet")
  40963. },
  40964. {
  40965. name: "Tri-County Terror",
  40966. height: math.unit(800000, "feet")
  40967. },
  40968. {
  40969. name: "State Smasher",
  40970. height: math.unit(2.4e6, "feet")
  40971. },
  40972. {
  40973. name: "Nation Nemesis",
  40974. height: math.unit(8e6, "feet")
  40975. },
  40976. {
  40977. name: "Continent Cracker",
  40978. height: math.unit(2.4e7, "feet")
  40979. },
  40980. {
  40981. name: "Planet-Pillaging",
  40982. height: math.unit(8e7, "feet")
  40983. },
  40984. {
  40985. name: "Earth-Eclipsing",
  40986. height: math.unit(2.4e8, "feet")
  40987. },
  40988. {
  40989. name: "Jovian-Jostling",
  40990. height: math.unit(8e8, "feet")
  40991. },
  40992. {
  40993. name: "Gas Giant Gulper",
  40994. height: math.unit(2.4e9, "feet")
  40995. },
  40996. {
  40997. name: "Astral Annihilator",
  40998. height: math.unit(8e9, "feet")
  40999. },
  41000. {
  41001. name: "Celestial Conqueror",
  41002. height: math.unit(2.4e10, "feet")
  41003. },
  41004. {
  41005. name: "Sol-Swallowing",
  41006. height: math.unit(8e10, "feet")
  41007. },
  41008. {
  41009. name: "Hunter of the Heavens",
  41010. height: math.unit(2.4e13, "feet")
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(6 + 8/12, "feet"),
  41019. weight: math.unit(250, "kilograms"),
  41020. volume: math.unit(28, "liters"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/rebecca-pawlson/front.svg",
  41024. extra: 1737/1596,
  41025. bottom: 107/1844
  41026. }
  41027. },
  41028. back: {
  41029. height: math.unit(6 + 8/12, "feet"),
  41030. weight: math.unit(250, "kilograms"),
  41031. volume: math.unit(28, "liters"),
  41032. name: "Back",
  41033. image: {
  41034. source: "./media/characters/rebecca-pawlson/back.svg",
  41035. extra: 1702/1523,
  41036. bottom: 86/1788
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(6 + 8/12, "feet")
  41044. },
  41045. {
  41046. name: "Mini Macro",
  41047. height: math.unit(10, "feet"),
  41048. default: true
  41049. },
  41050. {
  41051. name: "Macro",
  41052. height: math.unit(100, "feet")
  41053. },
  41054. {
  41055. name: "Mega Macro",
  41056. height: math.unit(2500, "feet")
  41057. },
  41058. {
  41059. name: "Giga Macro",
  41060. height: math.unit(50, "miles")
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41066. {
  41067. front: {
  41068. height: math.unit(7 + 6/12, "feet"),
  41069. weight: math.unit(600, "lb"),
  41070. name: "Front",
  41071. image: {
  41072. source: "./media/characters/moxie-nova/front.svg",
  41073. extra: 1734/1652,
  41074. bottom: 41/1775
  41075. }
  41076. },
  41077. },
  41078. [
  41079. {
  41080. name: "Normal",
  41081. height: math.unit(7 + 6/12, "feet"),
  41082. default: true
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41088. {
  41089. goat: {
  41090. height: math.unit(4, "feet"),
  41091. weight: math.unit(180, "lb"),
  41092. name: "Goat",
  41093. image: {
  41094. source: "./media/characters/tiffany/goat.svg",
  41095. extra: 1845/1595,
  41096. bottom: 106/1951
  41097. }
  41098. },
  41099. front: {
  41100. height: math.unit(5, "feet"),
  41101. weight: math.unit(150, "lb"),
  41102. name: "Foxcoon",
  41103. image: {
  41104. source: "./media/characters/tiffany/foxcoon.svg",
  41105. extra: 1941/1845,
  41106. bottom: 58/1999
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(5, "feet"),
  41114. default: true
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41120. {
  41121. front: {
  41122. height: math.unit(8, "feet"),
  41123. weight: math.unit(300, "lb"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/raxinath/front.svg",
  41127. extra: 1407/1309,
  41128. bottom: 39/1446
  41129. }
  41130. },
  41131. back: {
  41132. height: math.unit(8, "feet"),
  41133. weight: math.unit(300, "lb"),
  41134. name: "Back",
  41135. image: {
  41136. source: "./media/characters/raxinath/back.svg",
  41137. extra: 1405/1315,
  41138. bottom: 9/1414
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Speck",
  41145. height: math.unit(0.5, "nm")
  41146. },
  41147. {
  41148. name: "Micro",
  41149. height: math.unit(3, "inches")
  41150. },
  41151. {
  41152. name: "Kobold",
  41153. height: math.unit(3, "feet")
  41154. },
  41155. {
  41156. name: "Normal",
  41157. height: math.unit(8, "feet"),
  41158. default: true
  41159. },
  41160. {
  41161. name: "Giant",
  41162. height: math.unit(50, "feet")
  41163. },
  41164. {
  41165. name: "Macro",
  41166. height: math.unit(1000, "feet")
  41167. },
  41168. {
  41169. name: "Megamacro",
  41170. height: math.unit(1, "mile")
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(10, "feet"),
  41179. weight: math.unit(1442, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/mal-dragon/front.svg",
  41183. extra: 1515/1444,
  41184. bottom: 113/1628
  41185. }
  41186. },
  41187. back: {
  41188. height: math.unit(10, "feet"),
  41189. weight: math.unit(1442, "lb"),
  41190. name: "Back",
  41191. image: {
  41192. source: "./media/characters/mal-dragon/back.svg",
  41193. extra: 1527/1434,
  41194. bottom: 25/1552
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Mortal Interaction",
  41201. height: math.unit(10, "feet"),
  41202. default: true
  41203. },
  41204. {
  41205. name: "Large",
  41206. height: math.unit(30, "feet")
  41207. },
  41208. {
  41209. name: "Kaiju",
  41210. height: math.unit(300, "feet")
  41211. },
  41212. {
  41213. name: "Megamacro",
  41214. height: math.unit(10000, "feet")
  41215. },
  41216. {
  41217. name: "Continent Cracker",
  41218. height: math.unit(30000000, "feet")
  41219. },
  41220. {
  41221. name: "Sol-Swallowing",
  41222. height: math.unit(1e11, "feet")
  41223. },
  41224. {
  41225. name: "Light Universal",
  41226. height: math.unit(5, "universes")
  41227. },
  41228. {
  41229. name: "Universe Atoms",
  41230. height: math.unit(1.829e9, "universes")
  41231. },
  41232. {
  41233. name: "Light Multiversal",
  41234. height: math.unit(5, "multiverses")
  41235. },
  41236. {
  41237. name: "Multiverse Atoms",
  41238. height: math.unit(1.829e9, "multiverses")
  41239. },
  41240. {
  41241. name: "Fabric of Time",
  41242. height: math.unit(1e262, "multiverses")
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(9, "feet"),
  41251. weight: math.unit(1050, "lb"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/tabitha/front.svg",
  41255. extra: 2083/1994,
  41256. bottom: 68/2151
  41257. }
  41258. },
  41259. },
  41260. [
  41261. {
  41262. name: "Baseline",
  41263. height: math.unit(9, "feet"),
  41264. default: true
  41265. },
  41266. {
  41267. name: "Giant",
  41268. height: math.unit(90, "feet")
  41269. },
  41270. {
  41271. name: "Macro",
  41272. height: math.unit(900, "feet")
  41273. },
  41274. {
  41275. name: "Megamacro",
  41276. height: math.unit(9000, "feet")
  41277. },
  41278. {
  41279. name: "City-Crushing",
  41280. height: math.unit(27000, "feet")
  41281. },
  41282. {
  41283. name: "Mountain-Mashing",
  41284. height: math.unit(90000, "feet")
  41285. },
  41286. {
  41287. name: "Nation Nemesis",
  41288. height: math.unit(9e6, "feet")
  41289. },
  41290. {
  41291. name: "Continent Cracker",
  41292. height: math.unit(27e6, "feet")
  41293. },
  41294. {
  41295. name: "Earth-Eclipsing",
  41296. height: math.unit(2.7e8, "feet")
  41297. },
  41298. {
  41299. name: "Gas Giant Gulper",
  41300. height: math.unit(2.7e9, "feet")
  41301. },
  41302. {
  41303. name: "Sol-Swallowing",
  41304. height: math.unit(9e10, "feet")
  41305. },
  41306. {
  41307. name: "Galaxy Gulper",
  41308. height: math.unit(9, "galaxies")
  41309. },
  41310. {
  41311. name: "Cosmos Churner",
  41312. height: math.unit(9, "universes")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(160, "cm"),
  41321. weight: math.unit(55, "kg"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/tow/front.svg",
  41325. extra: 1751/1722,
  41326. bottom: 74/1825
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Norm",
  41333. height: math.unit(160, "cm")
  41334. },
  41335. {
  41336. name: "Casual",
  41337. height: math.unit(3200, "m"),
  41338. default: true
  41339. },
  41340. {
  41341. name: "Show-Off",
  41342. height: math.unit(160, "km")
  41343. },
  41344. ]
  41345. ))
  41346. characterMakers.push(() => makeCharacter(
  41347. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41348. {
  41349. front: {
  41350. height: math.unit(7 + 11/12, "feet"),
  41351. weight: math.unit(342.8, "lb"),
  41352. name: "Front",
  41353. image: {
  41354. source: "./media/characters/vivian-orca-dragon/front.svg",
  41355. extra: 1890/1865,
  41356. bottom: 28/1918
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Micro",
  41363. height: math.unit(5, "inches")
  41364. },
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(7 + 11/12, "feet"),
  41368. default: true
  41369. },
  41370. {
  41371. name: "Macro",
  41372. height: math.unit(395 + 7/12, "feet")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41378. {
  41379. side: {
  41380. height: math.unit(10, "feet"),
  41381. weight: math.unit(1442, "lb"),
  41382. name: "Side",
  41383. image: {
  41384. source: "./media/characters/lotherakon/side.svg",
  41385. extra: 1604/1497,
  41386. bottom: 89/1693
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Mortal Interaction",
  41393. height: math.unit(10, "feet")
  41394. },
  41395. {
  41396. name: "Large",
  41397. height: math.unit(30, "feet"),
  41398. default: true
  41399. },
  41400. {
  41401. name: "Giant",
  41402. height: math.unit(100, "feet")
  41403. },
  41404. {
  41405. name: "Kaiju",
  41406. height: math.unit(300, "feet")
  41407. },
  41408. {
  41409. name: "Macro",
  41410. height: math.unit(1000, "feet")
  41411. },
  41412. {
  41413. name: "Macro+",
  41414. height: math.unit(3000, "feet")
  41415. },
  41416. {
  41417. name: "Megamacro",
  41418. height: math.unit(10000, "feet")
  41419. },
  41420. {
  41421. name: "City-Crushing",
  41422. height: math.unit(30000, "feet")
  41423. },
  41424. {
  41425. name: "Continent Cracker",
  41426. height: math.unit(30e6, "feet")
  41427. },
  41428. {
  41429. name: "Earth Eclipsing",
  41430. height: math.unit(3e8, "feet")
  41431. },
  41432. {
  41433. name: "Gas Giant Gulper",
  41434. height: math.unit(3e9, "feet")
  41435. },
  41436. {
  41437. name: "Sol-Swallowing",
  41438. height: math.unit(1e11, "feet")
  41439. },
  41440. {
  41441. name: "System Swallower",
  41442. height: math.unit(3e14, "feet")
  41443. },
  41444. {
  41445. name: "Galaxy Gulper",
  41446. height: math.unit(10, "galaxies")
  41447. },
  41448. {
  41449. name: "Light Universal",
  41450. height: math.unit(5, "universes")
  41451. },
  41452. {
  41453. name: "Universe Palm",
  41454. height: math.unit(20, "universes")
  41455. },
  41456. {
  41457. name: "Light Multiversal",
  41458. height: math.unit(5, "multiverses")
  41459. },
  41460. {
  41461. name: "Multiverse Palm",
  41462. height: math.unit(20, "multiverses")
  41463. },
  41464. {
  41465. name: "Inferno Incarnate",
  41466. height: math.unit(1e7, "multiverses")
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(8, "feet"),
  41475. weight: math.unit(1200, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/malithee/front.svg",
  41479. extra: 1675/1640,
  41480. bottom: 162/1837
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Mortal Interaction",
  41487. height: math.unit(8, "feet"),
  41488. default: true
  41489. },
  41490. {
  41491. name: "Large",
  41492. height: math.unit(24, "feet")
  41493. },
  41494. {
  41495. name: "Kaiju",
  41496. height: math.unit(240, "feet")
  41497. },
  41498. {
  41499. name: "Megamacro",
  41500. height: math.unit(8000, "feet")
  41501. },
  41502. {
  41503. name: "Continent Cracker",
  41504. height: math.unit(24e6, "feet")
  41505. },
  41506. {
  41507. name: "Earth-Eclipsing",
  41508. height: math.unit(2.4e8, "feet")
  41509. },
  41510. {
  41511. name: "Sol-Swallowing",
  41512. height: math.unit(8e10, "feet")
  41513. },
  41514. {
  41515. name: "Galaxy Gulper",
  41516. height: math.unit(8, "galaxies")
  41517. },
  41518. {
  41519. name: "Light Universal",
  41520. height: math.unit(4, "universes")
  41521. },
  41522. {
  41523. name: "Universe Atoms",
  41524. height: math.unit(1.829e9, "universes")
  41525. },
  41526. {
  41527. name: "Light Multiversal",
  41528. height: math.unit(4, "multiverses")
  41529. },
  41530. {
  41531. name: "Multiverse Atoms",
  41532. height: math.unit(1.829e9, "multiverses")
  41533. },
  41534. {
  41535. name: "Nigh-Omnipresence",
  41536. height: math.unit(8e261, "multiverses")
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(10, "feet"),
  41545. weight: math.unit(1500, "lb"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/miles-thestia/front.svg",
  41549. extra: 1812/1727,
  41550. bottom: 86/1898
  41551. }
  41552. },
  41553. back: {
  41554. height: math.unit(10, "feet"),
  41555. weight: math.unit(1500, "lb"),
  41556. name: "Back",
  41557. image: {
  41558. source: "./media/characters/miles-thestia/back.svg",
  41559. extra: 1799/1690,
  41560. bottom: 47/1846
  41561. }
  41562. },
  41563. frontNsfw: {
  41564. height: math.unit(10, "feet"),
  41565. weight: math.unit(1500, "lb"),
  41566. name: "Front (NSFW)",
  41567. image: {
  41568. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41569. extra: 1812/1727,
  41570. bottom: 86/1898
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Mini-Macro",
  41577. height: math.unit(10, "feet"),
  41578. default: true
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(25, "feet"),
  41587. name: "Front",
  41588. image: {
  41589. source: "./media/characters/titan-s-wulf/front.svg",
  41590. extra: 1560/1484,
  41591. bottom: 76/1636
  41592. }
  41593. },
  41594. },
  41595. [
  41596. {
  41597. name: "Smallest",
  41598. height: math.unit(25, "feet"),
  41599. default: true
  41600. },
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(200, "feet")
  41604. },
  41605. {
  41606. name: "Macro",
  41607. height: math.unit(200000, "feet")
  41608. },
  41609. {
  41610. name: "Multiversal Original",
  41611. height: math.unit(10000, "multiverses")
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(8, "feet"),
  41620. weight: math.unit(553, "lb"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/tawendeh/front.svg",
  41624. extra: 2365/2268,
  41625. bottom: 83/2448
  41626. }
  41627. },
  41628. frontClothed: {
  41629. height: math.unit(8, "feet"),
  41630. weight: math.unit(553, "lb"),
  41631. name: "Front (Clothed)",
  41632. image: {
  41633. source: "./media/characters/tawendeh/front-clothed.svg",
  41634. extra: 2365/2268,
  41635. bottom: 83/2448
  41636. }
  41637. },
  41638. back: {
  41639. height: math.unit(8, "feet"),
  41640. weight: math.unit(553, "lb"),
  41641. name: "Back",
  41642. image: {
  41643. source: "./media/characters/tawendeh/back.svg",
  41644. extra: 2397/2294,
  41645. bottom: 42/2439
  41646. }
  41647. },
  41648. },
  41649. [
  41650. {
  41651. name: "Mortal Interaction",
  41652. height: math.unit(8, "feet"),
  41653. default: true
  41654. },
  41655. {
  41656. name: "Giant",
  41657. height: math.unit(80, "feet")
  41658. },
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(800, "feet")
  41662. },
  41663. {
  41664. name: "Megamacro",
  41665. height: math.unit(8000, "feet")
  41666. },
  41667. {
  41668. name: "City-Crushing",
  41669. height: math.unit(24000, "feet")
  41670. },
  41671. {
  41672. name: "Mountain-Mashing",
  41673. height: math.unit(80000, "feet")
  41674. },
  41675. {
  41676. name: "Nation Nemesis",
  41677. height: math.unit(8e6, "feet")
  41678. },
  41679. {
  41680. name: "Continent Cracker",
  41681. height: math.unit(24e6, "feet")
  41682. },
  41683. {
  41684. name: "Earth-Eclipsing",
  41685. height: math.unit(2.4e8, "feet")
  41686. },
  41687. {
  41688. name: "Gas Giant Gulper",
  41689. height: math.unit(2.4e9, "feet")
  41690. },
  41691. {
  41692. name: "Sol-Swallowing",
  41693. height: math.unit(8e10, "feet")
  41694. },
  41695. {
  41696. name: "Galaxy Gulper",
  41697. height: math.unit(8, "galaxies")
  41698. },
  41699. {
  41700. name: "Cosmos Churner",
  41701. height: math.unit(8, "universes")
  41702. },
  41703. {
  41704. name: "Omnipotent Otter",
  41705. height: math.unit(80, "universes")
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(2.6, "meters"),
  41714. weight: math.unit(900, "kg"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/neesha/front.svg",
  41718. extra: 1803/1653,
  41719. bottom: 128/1931
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(2.6, "meters"),
  41727. default: true
  41728. },
  41729. {
  41730. name: "Macro",
  41731. height: math.unit(50, "meters")
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41737. {
  41738. front: {
  41739. height: math.unit(5, "feet"),
  41740. weight: math.unit(185, "lb"),
  41741. name: "Front",
  41742. image: {
  41743. source: "./media/characters/kyera/front.svg",
  41744. extra: 1875/1790,
  41745. bottom: 96/1971
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(5, "feet"),
  41753. default: true
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(7 + 6/12, "feet"),
  41762. weight: math.unit(540, "lb"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/yuko/front.svg",
  41766. extra: 1282/1222,
  41767. bottom: 101/1383
  41768. }
  41769. },
  41770. frontClothed: {
  41771. height: math.unit(7 + 6/12, "feet"),
  41772. weight: math.unit(540, "lb"),
  41773. name: "Front (Clothed)",
  41774. image: {
  41775. source: "./media/characters/yuko/front-clothed.svg",
  41776. extra: 1282/1222,
  41777. bottom: 101/1383
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(7 + 6/12, "feet"),
  41785. default: true
  41786. },
  41787. {
  41788. name: "Macro",
  41789. height: math.unit(26 + 9/12, "feet")
  41790. },
  41791. {
  41792. name: "Megamacro",
  41793. height: math.unit(300, "feet")
  41794. },
  41795. {
  41796. name: "Gigamacro",
  41797. height: math.unit(5000, "feet")
  41798. },
  41799. {
  41800. name: "Planetary",
  41801. height: math.unit(10000, "miles")
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(8 + 2/12, "feet"),
  41810. weight: math.unit(600, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/deam-nitrel/front.svg",
  41814. extra: 1308/1234,
  41815. bottom: 125/1433
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Normal",
  41822. height: math.unit(8 + 2/12, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(6.1, "feet"),
  41832. weight: math.unit(180, "lb"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/skyress/front.svg",
  41836. extra: 1045/915,
  41837. bottom: 28/1073
  41838. }
  41839. },
  41840. maw: {
  41841. height: math.unit(1, "feet"),
  41842. name: "Maw",
  41843. image: {
  41844. source: "./media/characters/skyress/maw.svg"
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(6.1, "feet"),
  41852. default: true
  41853. },
  41854. {
  41855. name: "Macro",
  41856. height: math.unit(200, "feet")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(4 + 2/12, "feet"),
  41865. weight: math.unit(40, "kg"),
  41866. name: "Front",
  41867. image: {
  41868. source: "./media/characters/amethyst-jones/front.svg",
  41869. extra: 1220/1150,
  41870. bottom: 101/1321
  41871. }
  41872. },
  41873. },
  41874. [
  41875. {
  41876. name: "Normal",
  41877. height: math.unit(4 + 2/12, "feet"),
  41878. default: true
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(1.7, "m"),
  41887. weight: math.unit(135, "lb"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/jade/front.svg",
  41891. extra: 1818/1767,
  41892. bottom: 32/1850
  41893. }
  41894. },
  41895. back: {
  41896. height: math.unit(1.7, "m"),
  41897. weight: math.unit(135, "lb"),
  41898. name: "Back",
  41899. image: {
  41900. source: "./media/characters/jade/back.svg",
  41901. extra: 1869/1809,
  41902. bottom: 35/1904
  41903. }
  41904. },
  41905. hand: {
  41906. height: math.unit(0.24, "m"),
  41907. name: "Hand",
  41908. image: {
  41909. source: "./media/characters/jade/hand.svg"
  41910. }
  41911. },
  41912. foot: {
  41913. height: math.unit(0.263, "m"),
  41914. name: "Foot",
  41915. image: {
  41916. source: "./media/characters/jade/foot.svg"
  41917. }
  41918. },
  41919. dick: {
  41920. height: math.unit(0.47, "m"),
  41921. name: "Dick",
  41922. image: {
  41923. source: "./media/characters/jade/dick.svg"
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Micro",
  41930. height: math.unit(22, "cm")
  41931. },
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(1.7, "m"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "Macro",
  41939. height: math.unit(152, "m")
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(100, "miles"),
  41948. weight: math.unit(20000, "tons"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/cookie/front.svg",
  41952. extra: 1125/1070,
  41953. bottom: 30/1155
  41954. }
  41955. },
  41956. },
  41957. [
  41958. {
  41959. name: "Big",
  41960. height: math.unit(50, "feet")
  41961. },
  41962. {
  41963. name: "Macro",
  41964. height: math.unit(100, "miles"),
  41965. default: true
  41966. },
  41967. {
  41968. name: "Megamacro",
  41969. height: math.unit(90000, "miles")
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(6, "feet"),
  41978. weight: math.unit(145, "lb"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/farzian/front.svg",
  41982. extra: 1902/1693,
  41983. bottom: 108/2010
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Macro",
  41990. height: math.unit(500, "feet"),
  41991. default: true
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41997. {
  41998. front: {
  41999. height: math.unit(3 + 6/12, "feet"),
  42000. weight: math.unit(50, "lb"),
  42001. name: "Front",
  42002. image: {
  42003. source: "./media/characters/kimberly-tilson/front.svg",
  42004. extra: 1400/1322,
  42005. bottom: 36/1436
  42006. }
  42007. },
  42008. back: {
  42009. height: math.unit(3 + 6/12, "feet"),
  42010. weight: math.unit(50, "lb"),
  42011. name: "Back",
  42012. image: {
  42013. source: "./media/characters/kimberly-tilson/back.svg",
  42014. extra: 1370/1307,
  42015. bottom: 20/1390
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(3 + 6/12, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(1148, "feet"),
  42032. weight: math.unit(34057, "lb"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/harthos/front.svg",
  42036. extra: 1391/1339,
  42037. bottom: 13/1404
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Macro",
  42044. height: math.unit(1148, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(15, "feet"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/hypatia/front.svg",
  42057. extra: 1653/1591,
  42058. bottom: 79/1732
  42059. }
  42060. },
  42061. },
  42062. [
  42063. {
  42064. name: "Normal",
  42065. height: math.unit(15, "feet")
  42066. },
  42067. {
  42068. name: "Small",
  42069. height: math.unit(300, "feet")
  42070. },
  42071. {
  42072. name: "Macro",
  42073. height: math.unit(2500, "feet"),
  42074. default: true
  42075. },
  42076. {
  42077. name: "Mega Macro",
  42078. height: math.unit(1500, "miles")
  42079. },
  42080. {
  42081. name: "Giga Macro",
  42082. height: math.unit(1.5e6, "miles")
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(6, "feet"),
  42091. weight: math.unit(200, "lb"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/wulver/front.svg",
  42095. extra: 1724/1632,
  42096. bottom: 130/1854
  42097. }
  42098. },
  42099. frontNsfw: {
  42100. height: math.unit(6, "feet"),
  42101. weight: math.unit(200, "lb"),
  42102. name: "Front (NSFW)",
  42103. image: {
  42104. source: "./media/characters/wulver/front-nsfw.svg",
  42105. extra: 1724/1632,
  42106. bottom: 130/1854
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Human-Sized",
  42113. height: math.unit(6, "feet")
  42114. },
  42115. {
  42116. name: "Normal",
  42117. height: math.unit(4, "meters"),
  42118. default: true
  42119. },
  42120. {
  42121. name: "Large",
  42122. height: math.unit(6, "m")
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(7, "feet"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/maru/front.svg",
  42134. extra: 1595/1570,
  42135. bottom: 0/1595
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Normal",
  42142. height: math.unit(7, "feet"),
  42143. default: true
  42144. },
  42145. {
  42146. name: "Macro",
  42147. height: math.unit(700, "feet")
  42148. },
  42149. {
  42150. name: "Mega Macro",
  42151. height: math.unit(25, "miles")
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(6, "feet"),
  42160. weight: math.unit(170, "lb"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/xenon/front.svg",
  42164. extra: 1376/1305,
  42165. bottom: 56/1432
  42166. }
  42167. },
  42168. back: {
  42169. height: math.unit(6, "feet"),
  42170. weight: math.unit(170, "lb"),
  42171. name: "Back",
  42172. image: {
  42173. source: "./media/characters/xenon/back.svg",
  42174. extra: 1328/1259,
  42175. bottom: 95/1423
  42176. }
  42177. },
  42178. maw: {
  42179. height: math.unit(0.52, "feet"),
  42180. name: "Maw",
  42181. image: {
  42182. source: "./media/characters/xenon/maw.svg"
  42183. }
  42184. },
  42185. handLeft: {
  42186. height: math.unit(0.82 * 169 / 153, "feet"),
  42187. name: "Hand (Left)",
  42188. image: {
  42189. source: "./media/characters/xenon/hand-left.svg"
  42190. }
  42191. },
  42192. handRight: {
  42193. height: math.unit(0.82, "feet"),
  42194. name: "Hand (Right)",
  42195. image: {
  42196. source: "./media/characters/xenon/hand-right.svg"
  42197. }
  42198. },
  42199. footLeft: {
  42200. height: math.unit(1.13, "feet"),
  42201. name: "Foot (Left)",
  42202. image: {
  42203. source: "./media/characters/xenon/foot-left.svg"
  42204. }
  42205. },
  42206. footRight: {
  42207. height: math.unit(1.13 * 194 / 196, "feet"),
  42208. name: "Foot (Right)",
  42209. image: {
  42210. source: "./media/characters/xenon/foot-right.svg"
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Micro",
  42217. height: math.unit(0.8, "inches")
  42218. },
  42219. {
  42220. name: "Normal",
  42221. height: math.unit(6, "feet")
  42222. },
  42223. {
  42224. name: "Macro",
  42225. height: math.unit(50, "feet"),
  42226. default: true
  42227. },
  42228. {
  42229. name: "Macro+",
  42230. height: math.unit(250, "feet")
  42231. },
  42232. {
  42233. name: "Megamacro",
  42234. height: math.unit(1500, "feet")
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(7 + 5/12, "feet"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/zane/front.svg",
  42246. extra: 1260/1203,
  42247. bottom: 94/1354
  42248. }
  42249. },
  42250. back: {
  42251. height: math.unit(5.05, "feet"),
  42252. name: "Back",
  42253. image: {
  42254. source: "./media/characters/zane/back.svg",
  42255. extra: 893/829,
  42256. bottom: 30/923
  42257. }
  42258. },
  42259. werewolf: {
  42260. height: math.unit(11, "feet"),
  42261. name: "Werewolf",
  42262. image: {
  42263. source: "./media/characters/zane/werewolf.svg",
  42264. extra: 1383/1323,
  42265. bottom: 89/1472
  42266. }
  42267. },
  42268. foot: {
  42269. height: math.unit(1.46, "feet"),
  42270. name: "Foot",
  42271. image: {
  42272. source: "./media/characters/zane/foot.svg"
  42273. }
  42274. },
  42275. footFront: {
  42276. height: math.unit(0.784, "feet"),
  42277. name: "Foot (Front)",
  42278. image: {
  42279. source: "./media/characters/zane/foot-front.svg"
  42280. }
  42281. },
  42282. dick: {
  42283. height: math.unit(1.95, "feet"),
  42284. name: "Dick",
  42285. image: {
  42286. source: "./media/characters/zane/dick.svg"
  42287. }
  42288. },
  42289. dickWerewolf: {
  42290. height: math.unit(3.77, "feet"),
  42291. name: "Dick (Werewolf)",
  42292. image: {
  42293. source: "./media/characters/zane/dick.svg"
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(7 + 5/12, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(6 + 2/12, "feet"),
  42310. weight: math.unit(284, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/benni-desparque/front.svg",
  42314. extra: 1353/1126,
  42315. bottom: 69/1422
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Civilian",
  42322. height: math.unit(6 + 2/12, "feet")
  42323. },
  42324. {
  42325. name: "Normal",
  42326. height: math.unit(98, "feet"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Kaiju Fighter",
  42331. height: math.unit(268, "feet")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(5, "feet"),
  42340. weight: math.unit(105, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/maxine/front.svg",
  42344. extra: 1386/1250,
  42345. bottom: 71/1457
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Normal",
  42352. height: math.unit(5, "feet"),
  42353. default: true
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42359. {
  42360. front: {
  42361. height: math.unit(11 + 7/12, "feet"),
  42362. weight: math.unit(9576, "lb"),
  42363. name: "Front",
  42364. image: {
  42365. source: "./media/characters/scaly/front.svg",
  42366. extra: 888/867,
  42367. bottom: 36/924
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(11 + 7/12, "feet"),
  42375. default: true
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42381. {
  42382. front: {
  42383. height: math.unit(6 + 3/12, "feet"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/saelria/front.svg",
  42387. extra: 1243/1138,
  42388. bottom: 46/1289
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Micro",
  42395. height: math.unit(6, "inches"),
  42396. },
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(6 + 3/12, "feet"),
  42400. default: true
  42401. },
  42402. {
  42403. name: "Macro",
  42404. height: math.unit(25, "feet")
  42405. },
  42406. ]
  42407. ))
  42408. characterMakers.push(() => makeCharacter(
  42409. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42410. {
  42411. front: {
  42412. height: math.unit(80, "meters"),
  42413. weight: math.unit(7000, "tonnes"),
  42414. name: "Front",
  42415. image: {
  42416. source: "./media/characters/tef/front.svg",
  42417. extra: 2036/1991,
  42418. bottom: 54/2090
  42419. }
  42420. },
  42421. back: {
  42422. height: math.unit(80, "meters"),
  42423. weight: math.unit(7000, "tonnes"),
  42424. name: "Back",
  42425. image: {
  42426. source: "./media/characters/tef/back.svg",
  42427. extra: 2036/1991,
  42428. bottom: 54/2090
  42429. }
  42430. },
  42431. },
  42432. [
  42433. {
  42434. name: "Macro",
  42435. height: math.unit(80, "meters"),
  42436. default: true
  42437. },
  42438. ]
  42439. ))
  42440. characterMakers.push(() => makeCharacter(
  42441. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42442. {
  42443. front: {
  42444. height: math.unit(13, "feet"),
  42445. weight: math.unit(6, "tons"),
  42446. name: "Front",
  42447. image: {
  42448. source: "./media/characters/rover/front.svg",
  42449. extra: 1233/1156,
  42450. bottom: 50/1283
  42451. }
  42452. },
  42453. back: {
  42454. height: math.unit(13, "feet"),
  42455. weight: math.unit(6, "tons"),
  42456. name: "Back",
  42457. image: {
  42458. source: "./media/characters/rover/back.svg",
  42459. extra: 1327/1258,
  42460. bottom: 39/1366
  42461. }
  42462. },
  42463. },
  42464. [
  42465. {
  42466. name: "Normal",
  42467. height: math.unit(13, "feet"),
  42468. default: true
  42469. },
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(1300, "feet")
  42473. },
  42474. {
  42475. name: "Megamacro",
  42476. height: math.unit(1300, "miles")
  42477. },
  42478. {
  42479. name: "Gigamacro",
  42480. height: math.unit(1300000, "miles")
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(6, "feet"),
  42489. weight: math.unit(150, "lb"),
  42490. name: "Front",
  42491. image: {
  42492. source: "./media/characters/ariz/front.svg",
  42493. extra: 1401/1346,
  42494. bottom: 5/1406
  42495. }
  42496. },
  42497. },
  42498. [
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(10, "feet"),
  42502. default: true
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(6, "feet"),
  42511. weight: math.unit(140, "lb"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/sigrun/front.svg",
  42515. extra: 1418/1359,
  42516. bottom: 27/1445
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Macro",
  42523. height: math.unit(35, "feet"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42530. {
  42531. front: {
  42532. height: math.unit(6, "feet"),
  42533. weight: math.unit(150, "lb"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/numin/front.svg",
  42537. extra: 1433/1388,
  42538. bottom: 12/1445
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Macro",
  42545. height: math.unit(21.5, "km"),
  42546. default: true
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(6, "feet"),
  42555. weight: math.unit(463, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/melwa/front.svg",
  42559. extra: 1307/1248,
  42560. bottom: 93/1400
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Macro",
  42567. height: math.unit(50, "meters"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(325, "feet"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/zorkaiju/front.svg",
  42580. extra: 1955/1814,
  42581. bottom: 40/1995
  42582. }
  42583. },
  42584. frontExtended: {
  42585. height: math.unit(325, "feet"),
  42586. name: "Front (Extended)",
  42587. image: {
  42588. source: "./media/characters/zorkaiju/front-extended.svg",
  42589. extra: 1955/1814,
  42590. bottom: 40/1995
  42591. }
  42592. },
  42593. side: {
  42594. height: math.unit(325, "feet"),
  42595. name: "Side",
  42596. image: {
  42597. source: "./media/characters/zorkaiju/side.svg",
  42598. extra: 1495/1396,
  42599. bottom: 17/1512
  42600. }
  42601. },
  42602. sideExtended: {
  42603. height: math.unit(325, "feet"),
  42604. name: "Side (Extended)",
  42605. image: {
  42606. source: "./media/characters/zorkaiju/side-extended.svg",
  42607. extra: 1495/1396,
  42608. bottom: 17/1512
  42609. }
  42610. },
  42611. back: {
  42612. height: math.unit(325, "feet"),
  42613. name: "Back",
  42614. image: {
  42615. source: "./media/characters/zorkaiju/back.svg",
  42616. extra: 1959/1821,
  42617. bottom: 31/1990
  42618. }
  42619. },
  42620. backExtended: {
  42621. height: math.unit(325, "feet"),
  42622. name: "Back (Extended)",
  42623. image: {
  42624. source: "./media/characters/zorkaiju/back-extended.svg",
  42625. extra: 1959/1821,
  42626. bottom: 31/1990
  42627. }
  42628. },
  42629. hand: {
  42630. height: math.unit(58.4, "feet"),
  42631. name: "Hand",
  42632. image: {
  42633. source: "./media/characters/zorkaiju/hand.svg"
  42634. }
  42635. },
  42636. handExtended: {
  42637. height: math.unit(61.4, "feet"),
  42638. name: "Hand (Extended)",
  42639. image: {
  42640. source: "./media/characters/zorkaiju/hand-extended.svg"
  42641. }
  42642. },
  42643. foot: {
  42644. height: math.unit(95, "feet"),
  42645. name: "Foot",
  42646. image: {
  42647. source: "./media/characters/zorkaiju/foot.svg"
  42648. }
  42649. },
  42650. leftArm: {
  42651. height: math.unit(59, "feet"),
  42652. name: "Left Arm",
  42653. image: {
  42654. source: "./media/characters/zorkaiju/left-arm.svg"
  42655. }
  42656. },
  42657. rightArm: {
  42658. height: math.unit(59, "feet"),
  42659. name: "Right Arm",
  42660. image: {
  42661. source: "./media/characters/zorkaiju/right-arm.svg"
  42662. }
  42663. },
  42664. leftArmExtended: {
  42665. height: math.unit(59 * 1.033546, "feet"),
  42666. name: "Left Arm (Extended)",
  42667. image: {
  42668. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42669. }
  42670. },
  42671. rightArmExtended: {
  42672. height: math.unit(59 * 1.0496, "feet"),
  42673. name: "Right Arm (Extended)",
  42674. image: {
  42675. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42676. }
  42677. },
  42678. tail: {
  42679. height: math.unit(104, "feet"),
  42680. name: "Tail",
  42681. image: {
  42682. source: "./media/characters/zorkaiju/tail.svg"
  42683. }
  42684. },
  42685. tailExtended: {
  42686. height: math.unit(104, "feet"),
  42687. name: "Tail (Extended)",
  42688. image: {
  42689. source: "./media/characters/zorkaiju/tail-extended.svg"
  42690. }
  42691. },
  42692. tailBottom: {
  42693. height: math.unit(104, "feet"),
  42694. name: "Tail Bottom",
  42695. image: {
  42696. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42697. }
  42698. },
  42699. crystal: {
  42700. height: math.unit(27.54, "feet"),
  42701. name: "Crystal",
  42702. image: {
  42703. source: "./media/characters/zorkaiju/crystal.svg"
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Kaiju",
  42710. height: math.unit(325, "feet"),
  42711. default: true
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(6 + 1/12, "feet"),
  42720. weight: math.unit(115, "lb"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/bailey-belfry/front.svg",
  42724. extra: 1240/1121,
  42725. bottom: 101/1341
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Normal",
  42732. height: math.unit(6 + 1/12, "feet"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42739. {
  42740. side: {
  42741. height: math.unit(4, "meters"),
  42742. weight: math.unit(250, "kg"),
  42743. name: "Side",
  42744. image: {
  42745. source: "./media/characters/blacky/side.svg",
  42746. extra: 1027/919,
  42747. bottom: 43/1070
  42748. }
  42749. },
  42750. maw: {
  42751. height: math.unit(1, "meters"),
  42752. name: "Maw",
  42753. image: {
  42754. source: "./media/characters/blacky/maw.svg"
  42755. }
  42756. },
  42757. paw: {
  42758. height: math.unit(1, "meters"),
  42759. name: "Paw",
  42760. image: {
  42761. source: "./media/characters/blacky/paw.svg"
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Normal",
  42768. height: math.unit(4, "meters"),
  42769. default: true
  42770. },
  42771. ]
  42772. ))
  42773. characterMakers.push(() => makeCharacter(
  42774. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42775. {
  42776. front: {
  42777. height: math.unit(170, "cm"),
  42778. weight: math.unit(66, "kg"),
  42779. name: "Front",
  42780. image: {
  42781. source: "./media/characters/thux-ei/front.svg",
  42782. extra: 1109/1011,
  42783. bottom: 8/1117
  42784. }
  42785. },
  42786. },
  42787. [
  42788. {
  42789. name: "Normal",
  42790. height: math.unit(170, "cm"),
  42791. default: true
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(5, "feet"),
  42800. weight: math.unit(120, "lb"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/roxanne-voltaire/front.svg",
  42804. extra: 1901/1779,
  42805. bottom: 53/1954
  42806. }
  42807. },
  42808. },
  42809. [
  42810. {
  42811. name: "Normal",
  42812. height: math.unit(5, "feet"),
  42813. default: true
  42814. },
  42815. {
  42816. name: "Giant",
  42817. height: math.unit(50, "feet")
  42818. },
  42819. {
  42820. name: "Titan",
  42821. height: math.unit(500, "feet")
  42822. },
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(5000, "feet")
  42826. },
  42827. {
  42828. name: "Megamacro",
  42829. height: math.unit(50000, "feet")
  42830. },
  42831. {
  42832. name: "Gigamacro",
  42833. height: math.unit(500000, "feet")
  42834. },
  42835. {
  42836. name: "Teramacro",
  42837. height: math.unit(5e6, "feet")
  42838. },
  42839. ]
  42840. ))
  42841. characterMakers.push(() => makeCharacter(
  42842. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42843. {
  42844. front: {
  42845. height: math.unit(6 + 2/12, "feet"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/squeaks/front.svg",
  42849. extra: 1823/1768,
  42850. bottom: 138/1961
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Micro",
  42857. height: math.unit(0.5, "inches")
  42858. },
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(6 + 2/12, "feet"),
  42862. default: true
  42863. },
  42864. {
  42865. name: "Macro",
  42866. height: math.unit(600, "feet")
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42872. {
  42873. front: {
  42874. height: math.unit(1.72, "meters"),
  42875. name: "Front",
  42876. image: {
  42877. source: "./media/characters/archinger/front.svg",
  42878. extra: 1861/1675,
  42879. bottom: 125/1986
  42880. }
  42881. },
  42882. back: {
  42883. height: math.unit(1.72, "meters"),
  42884. name: "Back",
  42885. image: {
  42886. source: "./media/characters/archinger/back.svg",
  42887. extra: 1844/1701,
  42888. bottom: 104/1948
  42889. }
  42890. },
  42891. cock: {
  42892. height: math.unit(0.59, "feet"),
  42893. name: "Cock",
  42894. image: {
  42895. source: "./media/characters/archinger/cock.svg"
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Normal",
  42902. height: math.unit(1.72, "meters"),
  42903. default: true
  42904. },
  42905. {
  42906. name: "Macro",
  42907. height: math.unit(84, "meters")
  42908. },
  42909. {
  42910. name: "Macro+",
  42911. height: math.unit(112, "meters")
  42912. },
  42913. {
  42914. name: "Macro++",
  42915. height: math.unit(960, "meters")
  42916. },
  42917. {
  42918. name: "Macro+++",
  42919. height: math.unit(4, "km")
  42920. },
  42921. {
  42922. name: "Macro++++",
  42923. height: math.unit(48, "km")
  42924. },
  42925. {
  42926. name: "Macro+++++",
  42927. height: math.unit(4500, "km")
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(5 + 5/12, "feet"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/alsnapz/front.svg",
  42939. extra: 1157/1065,
  42940. bottom: 42/1199
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(5 + 5/12, "feet"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42954. {
  42955. side: {
  42956. height: math.unit(3.2, "earths"),
  42957. name: "Side",
  42958. image: {
  42959. source: "./media/characters/mag/side.svg",
  42960. extra: 1331/1008,
  42961. bottom: 52/1383
  42962. }
  42963. },
  42964. wing: {
  42965. height: math.unit(1.94, "earths"),
  42966. name: "Wing",
  42967. image: {
  42968. source: "./media/characters/mag/wing.svg"
  42969. }
  42970. },
  42971. dick: {
  42972. height: math.unit(1.8, "earths"),
  42973. name: "Dick",
  42974. image: {
  42975. source: "./media/characters/mag/dick.svg"
  42976. }
  42977. },
  42978. ass: {
  42979. height: math.unit(1.33, "earths"),
  42980. name: "Ass",
  42981. image: {
  42982. source: "./media/characters/mag/ass.svg"
  42983. }
  42984. },
  42985. head: {
  42986. height: math.unit(1.1, "earths"),
  42987. name: "Head",
  42988. image: {
  42989. source: "./media/characters/mag/head.svg"
  42990. }
  42991. },
  42992. maw: {
  42993. height: math.unit(1.62, "earths"),
  42994. name: "Maw",
  42995. image: {
  42996. source: "./media/characters/mag/maw.svg"
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Small",
  43003. height: math.unit(162, "feet")
  43004. },
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(3.2, "earths"),
  43008. default: true
  43009. },
  43010. ]
  43011. ))
  43012. characterMakers.push(() => makeCharacter(
  43013. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43014. {
  43015. front: {
  43016. height: math.unit(512, "feet"),
  43017. weight: math.unit(63509, "tonnes"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/vorrel-harroc/front.svg",
  43021. extra: 1075/1063,
  43022. bottom: 62/1137
  43023. }
  43024. },
  43025. },
  43026. [
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(10, "feet")
  43030. },
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(512, "feet"),
  43034. default: true
  43035. },
  43036. {
  43037. name: "Megamacro",
  43038. height: math.unit(256, "miles")
  43039. },
  43040. {
  43041. name: "Gigamacro",
  43042. height: math.unit(4096, "miles")
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43048. {
  43049. side: {
  43050. height: math.unit(50, "feet"),
  43051. name: "Side",
  43052. image: {
  43053. source: "./media/characters/froimar/side.svg",
  43054. extra: 855/638,
  43055. bottom: 99/954
  43056. }
  43057. },
  43058. },
  43059. [
  43060. {
  43061. name: "Macro",
  43062. height: math.unit(50, "feet"),
  43063. default: true
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(210, "miles"),
  43072. name: "Front",
  43073. image: {
  43074. source: "./media/characters/timothy/front.svg",
  43075. extra: 1007/943,
  43076. bottom: 62/1069
  43077. }
  43078. },
  43079. frontSkirt: {
  43080. height: math.unit(210, "miles"),
  43081. name: "Front (Skirt)",
  43082. image: {
  43083. source: "./media/characters/timothy/front-skirt.svg",
  43084. extra: 1007/943,
  43085. bottom: 62/1069
  43086. }
  43087. },
  43088. frontCoat: {
  43089. height: math.unit(210, "miles"),
  43090. name: "Front (Coat)",
  43091. image: {
  43092. source: "./media/characters/timothy/front-coat.svg",
  43093. extra: 1007/943,
  43094. bottom: 62/1069
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Macro",
  43101. height: math.unit(210, "miles"),
  43102. default: true
  43103. },
  43104. {
  43105. name: "Megamacro",
  43106. height: math.unit(210000, "miles")
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(188, "feet"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/pyotr/front.svg",
  43118. extra: 1912/1826,
  43119. bottom: 18/1930
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Macro",
  43126. height: math.unit(188, "feet"),
  43127. default: true
  43128. },
  43129. {
  43130. name: "Megamacro",
  43131. height: math.unit(8, "miles")
  43132. },
  43133. ]
  43134. ))
  43135. characterMakers.push(() => makeCharacter(
  43136. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43137. {
  43138. side: {
  43139. height: math.unit(10, "feet"),
  43140. weight: math.unit(4500, "lb"),
  43141. name: "Side",
  43142. image: {
  43143. source: "./media/characters/ackart/side.svg",
  43144. extra: 1776/1668,
  43145. bottom: 116/1892
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Normal",
  43152. height: math.unit(10, "feet"),
  43153. default: true
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43159. {
  43160. side: {
  43161. height: math.unit(21, "feet"),
  43162. name: "Side",
  43163. image: {
  43164. source: "./media/characters/nolow/side.svg",
  43165. extra: 1484/1434,
  43166. bottom: 85/1569
  43167. }
  43168. },
  43169. sideErect: {
  43170. height: math.unit(21, "feet"),
  43171. name: "Side-erect",
  43172. image: {
  43173. source: "./media/characters/nolow/side-erect.svg",
  43174. extra: 1484/1434,
  43175. bottom: 85/1569
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Regular",
  43182. height: math.unit(12, "feet")
  43183. },
  43184. {
  43185. name: "Big Chee",
  43186. height: math.unit(21, "feet"),
  43187. default: true
  43188. },
  43189. ]
  43190. ))
  43191. characterMakers.push(() => makeCharacter(
  43192. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43193. {
  43194. front: {
  43195. height: math.unit(7, "feet"),
  43196. weight: math.unit(250, "lb"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/nines/front.svg",
  43200. extra: 1741/1607,
  43201. bottom: 41/1782
  43202. }
  43203. },
  43204. side: {
  43205. height: math.unit(7, "feet"),
  43206. weight: math.unit(250, "lb"),
  43207. name: "Side",
  43208. image: {
  43209. source: "./media/characters/nines/side.svg",
  43210. extra: 1854/1735,
  43211. bottom: 93/1947
  43212. }
  43213. },
  43214. back: {
  43215. height: math.unit(7, "feet"),
  43216. weight: math.unit(250, "lb"),
  43217. name: "Back",
  43218. image: {
  43219. source: "./media/characters/nines/back.svg",
  43220. extra: 1748/1615,
  43221. bottom: 20/1768
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Megamacro",
  43228. height: math.unit(99, "km"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(5 + 10/12, "feet"),
  43238. weight: math.unit(210, "lb"),
  43239. name: "Front",
  43240. image: {
  43241. source: "./media/characters/zenith/front.svg",
  43242. extra: 1531/1452,
  43243. bottom: 198/1729
  43244. }
  43245. },
  43246. back: {
  43247. height: math.unit(5 + 10/12, "feet"),
  43248. weight: math.unit(210, "lb"),
  43249. name: "Back",
  43250. image: {
  43251. source: "./media/characters/zenith/back.svg",
  43252. extra: 1571/1487,
  43253. bottom: 75/1646
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Normal",
  43260. height: math.unit(5 + 10/12, "feet"),
  43261. default: true
  43262. }
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(4, "feet"),
  43270. weight: math.unit(60, "lb"),
  43271. name: "Front",
  43272. image: {
  43273. source: "./media/characters/jasper/front.svg",
  43274. extra: 1450/1379,
  43275. bottom: 19/1469
  43276. }
  43277. },
  43278. },
  43279. [
  43280. {
  43281. name: "Normal",
  43282. height: math.unit(4, "feet"),
  43283. default: true
  43284. },
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(6 + 5/12, "feet"),
  43292. weight: math.unit(290, "lb"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/tiberius-thyben/front.svg",
  43296. extra: 757/739,
  43297. bottom: 39/796
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Micro",
  43304. height: math.unit(1.5, "inches")
  43305. },
  43306. {
  43307. name: "Normal",
  43308. height: math.unit(6 + 5/12, "feet"),
  43309. default: true
  43310. },
  43311. {
  43312. name: "Macro",
  43313. height: math.unit(300, "feet")
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(5 + 6/12, "feet"),
  43322. weight: math.unit(60, "kg"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/sabre/front.svg",
  43326. extra: 738/671,
  43327. bottom: 27/765
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Teeny",
  43334. height: math.unit(2, "inches")
  43335. },
  43336. {
  43337. name: "Smol",
  43338. height: math.unit(8, "inches")
  43339. },
  43340. {
  43341. name: "Normal",
  43342. height: math.unit(5 + 6/12, "feet"),
  43343. default: true
  43344. },
  43345. {
  43346. name: "Mini-Macro",
  43347. height: math.unit(15, "feet")
  43348. },
  43349. {
  43350. name: "Macro",
  43351. height: math.unit(50, "feet")
  43352. },
  43353. ]
  43354. ))
  43355. characterMakers.push(() => makeCharacter(
  43356. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43357. {
  43358. front: {
  43359. height: math.unit(6 + 4/12, "feet"),
  43360. weight: math.unit(170, "lb"),
  43361. name: "Front",
  43362. image: {
  43363. source: "./media/characters/charlie/front.svg",
  43364. extra: 1348/1228,
  43365. bottom: 15/1363
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Macro",
  43372. height: math.unit(1700, "meters"),
  43373. default: true
  43374. },
  43375. {
  43376. name: "MegaMacro",
  43377. height: math.unit(20400, "meters")
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43383. {
  43384. front: {
  43385. height: math.unit(6 + 3/12, "feet"),
  43386. weight: math.unit(185, "lb"),
  43387. name: "Front",
  43388. image: {
  43389. source: "./media/characters/susan-grant/front.svg",
  43390. extra: 1351/1327,
  43391. bottom: 26/1377
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Normal",
  43398. height: math.unit(6 + 3/12, "feet"),
  43399. default: true
  43400. },
  43401. {
  43402. name: "Macro",
  43403. height: math.unit(225, "feet")
  43404. },
  43405. {
  43406. name: "Macro+",
  43407. height: math.unit(900, "feet")
  43408. },
  43409. {
  43410. name: "MegaMacro",
  43411. height: math.unit(14400, "feet")
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(5 + 4/12, "feet"),
  43420. weight: math.unit(110, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/axel-isanov/front.svg",
  43424. extra: 1096/1065,
  43425. bottom: 13/1109
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(5 + 4/12, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(9, "feet"),
  43442. weight: math.unit(467, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/necahual/front.svg",
  43446. extra: 920/873,
  43447. bottom: 26/946
  43448. }
  43449. },
  43450. back: {
  43451. height: math.unit(9, "feet"),
  43452. weight: math.unit(467, "lb"),
  43453. name: "Back",
  43454. image: {
  43455. source: "./media/characters/necahual/back.svg",
  43456. extra: 930/884,
  43457. bottom: 16/946
  43458. }
  43459. },
  43460. frontUnderwear: {
  43461. height: math.unit(9, "feet"),
  43462. weight: math.unit(467, "lb"),
  43463. name: "Front (Underwear)",
  43464. image: {
  43465. source: "./media/characters/necahual/front-underwear.svg",
  43466. extra: 920/873,
  43467. bottom: 26/946
  43468. }
  43469. },
  43470. frontDressed: {
  43471. height: math.unit(9, "feet"),
  43472. weight: math.unit(467, "lb"),
  43473. name: "Front (Dressed)",
  43474. image: {
  43475. source: "./media/characters/necahual/front-dressed.svg",
  43476. extra: 920/873,
  43477. bottom: 26/946
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Comprsesed",
  43484. height: math.unit(9, "feet")
  43485. },
  43486. {
  43487. name: "Natural",
  43488. height: math.unit(15, "feet"),
  43489. default: true
  43490. },
  43491. {
  43492. name: "Boosted",
  43493. height: math.unit(50, "feet")
  43494. },
  43495. {
  43496. name: "Boosted+",
  43497. height: math.unit(150, "feet")
  43498. },
  43499. {
  43500. name: "Max",
  43501. height: math.unit(500, "feet")
  43502. },
  43503. ]
  43504. ))
  43505. characterMakers.push(() => makeCharacter(
  43506. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43507. {
  43508. front: {
  43509. height: math.unit(22 + 1/12, "feet"),
  43510. weight: math.unit(3200, "lb"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/theo-acacia/front.svg",
  43514. extra: 1796/1741,
  43515. bottom: 83/1879
  43516. }
  43517. },
  43518. frontUnderwear: {
  43519. height: math.unit(22 + 1/12, "feet"),
  43520. weight: math.unit(3200, "lb"),
  43521. name: "Front (Underwear)",
  43522. image: {
  43523. source: "./media/characters/theo-acacia/front-underwear.svg",
  43524. extra: 1796/1741,
  43525. bottom: 83/1879
  43526. }
  43527. },
  43528. frontNude: {
  43529. height: math.unit(22 + 1/12, "feet"),
  43530. weight: math.unit(3200, "lb"),
  43531. name: "Front (Nude)",
  43532. image: {
  43533. source: "./media/characters/theo-acacia/front-nude.svg",
  43534. extra: 1796/1741,
  43535. bottom: 83/1879
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(22 + 1/12, "feet"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(20, "feet"),
  43552. name: "Front",
  43553. image: {
  43554. source: "./media/characters/astra/front.svg",
  43555. extra: 1850/1714,
  43556. bottom: 106/1956
  43557. }
  43558. },
  43559. frontUndressed: {
  43560. height: math.unit(20, "feet"),
  43561. name: "Front (Undressed)",
  43562. image: {
  43563. source: "./media/characters/astra/front-undressed.svg",
  43564. extra: 1926/1749,
  43565. bottom: 0/1926
  43566. }
  43567. },
  43568. hand: {
  43569. height: math.unit(1.53, "feet"),
  43570. name: "Hand",
  43571. image: {
  43572. source: "./media/characters/astra/hand.svg"
  43573. }
  43574. },
  43575. paw: {
  43576. height: math.unit(1.53, "feet"),
  43577. name: "Paw",
  43578. image: {
  43579. source: "./media/characters/astra/paw.svg"
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Smallest",
  43586. height: math.unit(20, "feet")
  43587. },
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(1e9, "miles"),
  43591. default: true
  43592. },
  43593. {
  43594. name: "Larger",
  43595. height: math.unit(5, "multiverses")
  43596. },
  43597. {
  43598. name: "Largest",
  43599. height: math.unit(1e9, "multiverses")
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(8, "feet"),
  43608. name: "Front",
  43609. image: {
  43610. source: "./media/characters/breanna/front.svg",
  43611. extra: 1912/1632,
  43612. bottom: 33/1945
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Smallest",
  43619. height: math.unit(8, "feet")
  43620. },
  43621. {
  43622. name: "Normal",
  43623. height: math.unit(1, "mile"),
  43624. default: true
  43625. },
  43626. {
  43627. name: "Maximum",
  43628. height: math.unit(1500000000000, "lightyears")
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(5 + 11/12, "feet"),
  43637. weight: math.unit(155, "lb"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/cai/front.svg",
  43641. extra: 1823/1702,
  43642. bottom: 32/1855
  43643. }
  43644. },
  43645. back: {
  43646. height: math.unit(5 + 11/12, "feet"),
  43647. weight: math.unit(155, "lb"),
  43648. name: "Back",
  43649. image: {
  43650. source: "./media/characters/cai/back.svg",
  43651. extra: 1809/1708,
  43652. bottom: 31/1840
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(5 + 11/12, "feet"),
  43660. default: true
  43661. },
  43662. {
  43663. name: "Big",
  43664. height: math.unit(15, "feet")
  43665. },
  43666. {
  43667. name: "Macro",
  43668. height: math.unit(200, "feet")
  43669. },
  43670. ]
  43671. ))
  43672. characterMakers.push(() => makeCharacter(
  43673. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43674. {
  43675. front: {
  43676. height: math.unit(5 + 6/12, "feet"),
  43677. weight: math.unit(160, "lb"),
  43678. name: "Front",
  43679. image: {
  43680. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43681. extra: 1227/1174,
  43682. bottom: 37/1264
  43683. }
  43684. },
  43685. },
  43686. [
  43687. {
  43688. name: "Macro",
  43689. height: math.unit(444, "meters"),
  43690. default: true
  43691. },
  43692. ]
  43693. ))
  43694. characterMakers.push(() => makeCharacter(
  43695. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43696. {
  43697. front: {
  43698. height: math.unit(18 + 7/12, "feet"),
  43699. name: "Front",
  43700. image: {
  43701. source: "./media/characters/rex/front.svg",
  43702. extra: 1941/1807,
  43703. bottom: 66/2007
  43704. }
  43705. },
  43706. back: {
  43707. height: math.unit(18 + 7/12, "feet"),
  43708. name: "Back",
  43709. image: {
  43710. source: "./media/characters/rex/back.svg",
  43711. extra: 1937/1822,
  43712. bottom: 42/1979
  43713. }
  43714. },
  43715. boot: {
  43716. height: math.unit(3.45, "feet"),
  43717. name: "Boot",
  43718. image: {
  43719. source: "./media/characters/rex/boot.svg"
  43720. }
  43721. },
  43722. paw: {
  43723. height: math.unit(4.17, "feet"),
  43724. name: "Paw",
  43725. image: {
  43726. source: "./media/characters/rex/paw.svg"
  43727. }
  43728. },
  43729. head: {
  43730. height: math.unit(6.728, "feet"),
  43731. name: "Head",
  43732. image: {
  43733. source: "./media/characters/rex/head.svg"
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Nano",
  43740. height: math.unit(18 + 7/12, "feet")
  43741. },
  43742. {
  43743. name: "Micro",
  43744. height: math.unit(1.5, "megameters")
  43745. },
  43746. {
  43747. name: "Normal",
  43748. height: math.unit(440, "megameters"),
  43749. default: true
  43750. },
  43751. {
  43752. name: "Macro",
  43753. height: math.unit(2.5, "gigameters")
  43754. },
  43755. {
  43756. name: "Gigamacro",
  43757. height: math.unit(2, "galaxies")
  43758. },
  43759. ]
  43760. ))
  43761. characterMakers.push(() => makeCharacter(
  43762. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43763. {
  43764. side: {
  43765. height: math.unit(32, "feet"),
  43766. weight: math.unit(250000, "lb"),
  43767. name: "Side",
  43768. image: {
  43769. source: "./media/characters/silverwing/side.svg",
  43770. extra: 1100/1019,
  43771. bottom: 204/1304
  43772. }
  43773. },
  43774. },
  43775. [
  43776. {
  43777. name: "Normal",
  43778. height: math.unit(32, "feet"),
  43779. default: true
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43785. {
  43786. front: {
  43787. height: math.unit(6 + 6/12, "feet"),
  43788. weight: math.unit(350, "lb"),
  43789. name: "Front",
  43790. image: {
  43791. source: "./media/characters/tristan-hawthorne/front.svg",
  43792. extra: 1159/1124,
  43793. bottom: 37/1196
  43794. },
  43795. form: "labrador",
  43796. default: true
  43797. },
  43798. skunkFront: {
  43799. height: math.unit(4 + 6/12, "feet"),
  43800. weight: math.unit(120, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43804. extra: 1609/1551,
  43805. bottom: 169/1778
  43806. },
  43807. form: "skunk",
  43808. default: true
  43809. },
  43810. },
  43811. [
  43812. {
  43813. name: "Normal",
  43814. height: math.unit(6 + 6/12, "feet"),
  43815. form: "labrador",
  43816. default: true
  43817. },
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(4 + 6/12, "feet"),
  43821. form: "skunk",
  43822. default: true
  43823. },
  43824. ],
  43825. {
  43826. "labrador": {
  43827. name: "Labrador",
  43828. default: true
  43829. },
  43830. "skunk": {
  43831. name: "Skunk"
  43832. }
  43833. }
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(5 + 11/12, "feet"),
  43840. weight: math.unit(190, "lb"),
  43841. name: "Front",
  43842. image: {
  43843. source: "./media/characters/mizu/front.svg",
  43844. extra: 1988/1788,
  43845. bottom: 14/2002
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Normal",
  43852. height: math.unit(5 + 11/12, "feet"),
  43853. default: true
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43859. {
  43860. front: {
  43861. height: math.unit(1.7, "feet"),
  43862. weight: math.unit(50, "lb"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/dechroma/front.svg",
  43866. extra: 1095/859,
  43867. bottom: 64/1159
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Normal",
  43874. height: math.unit(1.7, "feet"),
  43875. default: true
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43881. {
  43882. side: {
  43883. height: math.unit(30, "feet"),
  43884. name: "Side",
  43885. image: {
  43886. source: "./media/characters/veluren-thanazel/side.svg",
  43887. extra: 1611/633,
  43888. bottom: 118/1729
  43889. }
  43890. },
  43891. front: {
  43892. height: math.unit(30, "feet"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/veluren-thanazel/front.svg",
  43896. extra: 1486/636,
  43897. bottom: 238/1724
  43898. }
  43899. },
  43900. head: {
  43901. height: math.unit(21.4, "feet"),
  43902. name: "Head",
  43903. image: {
  43904. source: "./media/characters/veluren-thanazel/head.svg"
  43905. }
  43906. },
  43907. genitals: {
  43908. height: math.unit(19.4, "feet"),
  43909. name: "Genitals",
  43910. image: {
  43911. source: "./media/characters/veluren-thanazel/genitals.svg"
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Social",
  43918. height: math.unit(6, "feet")
  43919. },
  43920. {
  43921. name: "Play",
  43922. height: math.unit(12, "feet")
  43923. },
  43924. {
  43925. name: "True",
  43926. height: math.unit(30, "feet"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(7 + 6/12, "feet"),
  43936. weight: math.unit(500, "kg"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/arcturas/front.svg",
  43940. extra: 1700/1500,
  43941. bottom: 145/1845
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(7 + 6/12, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43955. {
  43956. side: {
  43957. height: math.unit(6, "feet"),
  43958. weight: math.unit(2, "tons"),
  43959. name: "Side",
  43960. image: {
  43961. source: "./media/characters/vitaen/side.svg",
  43962. extra: 1157/617,
  43963. bottom: 122/1279
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(6, "feet"),
  43971. default: true
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43977. {
  43978. front: {
  43979. height: math.unit(19, "feet"),
  43980. name: "Front",
  43981. image: {
  43982. source: "./media/characters/fia-dreamweaver/front.svg",
  43983. extra: 1630/1504,
  43984. bottom: 25/1655
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(19, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43998. {
  43999. front: {
  44000. height: math.unit(5 + 4/12, "feet"),
  44001. name: "Front",
  44002. image: {
  44003. source: "./media/characters/artan/front.svg",
  44004. extra: 1618/1535,
  44005. bottom: 46/1664
  44006. }
  44007. },
  44008. back: {
  44009. height: math.unit(5 + 4/12, "feet"),
  44010. name: "Back",
  44011. image: {
  44012. source: "./media/characters/artan/back.svg",
  44013. extra: 1618/1543,
  44014. bottom: 31/1649
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(5 + 4/12, "feet"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44028. {
  44029. side: {
  44030. height: math.unit(182, "cm"),
  44031. weight: math.unit(1000, "lb"),
  44032. name: "Side",
  44033. image: {
  44034. source: "./media/characters/silver-dragon/side.svg",
  44035. extra: 710/287,
  44036. bottom: 88/798
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(182, "cm"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44050. {
  44051. side: {
  44052. height: math.unit(6 + 6/12, "feet"),
  44053. weight: math.unit(1.5, "tons"),
  44054. name: "Side",
  44055. image: {
  44056. source: "./media/characters/zephyr/side.svg",
  44057. extra: 1433/586,
  44058. bottom: 109/1542
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(6 + 6/12, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44072. {
  44073. side: {
  44074. height: math.unit(1, "feet"),
  44075. name: "Side",
  44076. image: {
  44077. source: "./media/characters/vixye/side.svg",
  44078. extra: 632/541,
  44079. bottom: 0/632
  44080. }
  44081. },
  44082. },
  44083. [
  44084. {
  44085. name: "Normal",
  44086. height: math.unit(1, "feet"),
  44087. default: true
  44088. },
  44089. {
  44090. name: "True",
  44091. height: math.unit(1e15, "multiverses")
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44097. {
  44098. front: {
  44099. height: math.unit(8 + 2/12, "feet"),
  44100. weight: math.unit(650, "lb"),
  44101. name: "Front",
  44102. image: {
  44103. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44104. extra: 1174/1137,
  44105. bottom: 82/1256
  44106. }
  44107. },
  44108. back: {
  44109. height: math.unit(8 + 2/12, "feet"),
  44110. weight: math.unit(650, "lb"),
  44111. name: "Back",
  44112. image: {
  44113. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44114. extra: 1204/1157,
  44115. bottom: 46/1250
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Wildform",
  44122. height: math.unit(8 + 2/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44129. {
  44130. front: {
  44131. height: math.unit(18, "feet"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/cyphin/front.svg",
  44135. extra: 970/886,
  44136. bottom: 42/1012
  44137. }
  44138. },
  44139. back: {
  44140. height: math.unit(18, "feet"),
  44141. name: "Back",
  44142. image: {
  44143. source: "./media/characters/cyphin/back.svg",
  44144. extra: 1009/894,
  44145. bottom: 24/1033
  44146. }
  44147. },
  44148. head: {
  44149. height: math.unit(5.05, "feet"),
  44150. name: "Head",
  44151. image: {
  44152. source: "./media/characters/cyphin/head.svg"
  44153. }
  44154. },
  44155. tailbud: {
  44156. height: math.unit(5, "feet"),
  44157. name: "Tailbud",
  44158. image: {
  44159. source: "./media/characters/cyphin/tailbud.svg"
  44160. }
  44161. },
  44162. },
  44163. [
  44164. ]
  44165. ))
  44166. characterMakers.push(() => makeCharacter(
  44167. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44168. {
  44169. side: {
  44170. height: math.unit(10, "feet"),
  44171. weight: math.unit(6, "tons"),
  44172. name: "Side",
  44173. image: {
  44174. source: "./media/characters/raijin/side.svg",
  44175. extra: 1529/613,
  44176. bottom: 337/1866
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(10, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44190. {
  44191. side: {
  44192. height: math.unit(9, "feet"),
  44193. name: "Side",
  44194. image: {
  44195. source: "./media/characters/nilghais/side.svg",
  44196. extra: 1047/744,
  44197. bottom: 91/1138
  44198. }
  44199. },
  44200. head: {
  44201. height: math.unit(3.14, "feet"),
  44202. name: "Head",
  44203. image: {
  44204. source: "./media/characters/nilghais/head.svg"
  44205. }
  44206. },
  44207. mouth: {
  44208. height: math.unit(4.6, "feet"),
  44209. name: "Mouth",
  44210. image: {
  44211. source: "./media/characters/nilghais/mouth.svg"
  44212. }
  44213. },
  44214. wings: {
  44215. height: math.unit(24, "feet"),
  44216. name: "Wings",
  44217. image: {
  44218. source: "./media/characters/nilghais/wings.svg"
  44219. }
  44220. },
  44221. ass: {
  44222. height: math.unit(6.12, "feet"),
  44223. name: "Ass",
  44224. image: {
  44225. source: "./media/characters/nilghais/ass.svg"
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Normal",
  44232. height: math.unit(9, "feet"),
  44233. default: true
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44239. {
  44240. regular: {
  44241. height: math.unit(16 + 2/12, "feet"),
  44242. weight: math.unit(2300, "lb"),
  44243. name: "Regular",
  44244. image: {
  44245. source: "./media/characters/zolgar/regular.svg",
  44246. extra: 1246/1004,
  44247. bottom: 124/1370
  44248. }
  44249. },
  44250. boxers: {
  44251. height: math.unit(16 + 2/12, "feet"),
  44252. weight: math.unit(2300, "lb"),
  44253. name: "Boxers",
  44254. image: {
  44255. source: "./media/characters/zolgar/boxers.svg",
  44256. extra: 1246/1004,
  44257. bottom: 124/1370
  44258. }
  44259. },
  44260. armored: {
  44261. height: math.unit(16 + 2/12, "feet"),
  44262. weight: math.unit(2300, "lb"),
  44263. name: "Armored",
  44264. image: {
  44265. source: "./media/characters/zolgar/armored.svg",
  44266. extra: 1246/1004,
  44267. bottom: 124/1370
  44268. }
  44269. },
  44270. goth: {
  44271. height: math.unit(16 + 2/12, "feet"),
  44272. weight: math.unit(2300, "lb"),
  44273. name: "Goth",
  44274. image: {
  44275. source: "./media/characters/zolgar/goth.svg",
  44276. extra: 1246/1004,
  44277. bottom: 124/1370
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Shrunken Down",
  44284. height: math.unit(9 + 2/12, "feet")
  44285. },
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(16 + 2/12, "feet"),
  44289. default: true
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44295. {
  44296. front: {
  44297. height: math.unit(6, "feet"),
  44298. weight: math.unit(168, "lb"),
  44299. name: "Front",
  44300. image: {
  44301. source: "./media/characters/luca/front.svg",
  44302. extra: 841/667,
  44303. bottom: 102/943
  44304. }
  44305. },
  44306. },
  44307. [
  44308. {
  44309. name: "Normal",
  44310. height: math.unit(6, "feet"),
  44311. default: true
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44317. {
  44318. side: {
  44319. height: math.unit(7 + 3/12, "feet"),
  44320. weight: math.unit(312, "lb"),
  44321. name: "Side",
  44322. image: {
  44323. source: "./media/characters/zezo/side.svg",
  44324. extra: 1192/1067,
  44325. bottom: 63/1255
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(7 + 3/12, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5 + 5/12, "feet"),
  44342. weight: math.unit(170, "lb"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/mayso/front.svg",
  44346. extra: 1215/1108,
  44347. bottom: 16/1231
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(5 + 5/12, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(4 + 3/12, "feet"),
  44364. weight: math.unit(80, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/hess/front.svg",
  44368. extra: 1200/1123,
  44369. bottom: 16/1216
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(4 + 3/12, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44383. {
  44384. front: {
  44385. height: math.unit(1.9, "meters"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/ashgar/front.svg",
  44389. extra: 1177/1146,
  44390. bottom: 99/1276
  44391. }
  44392. },
  44393. back: {
  44394. height: math.unit(1.9, "meters"),
  44395. name: "Back",
  44396. image: {
  44397. source: "./media/characters/ashgar/back.svg",
  44398. extra: 1201/1183,
  44399. bottom: 53/1254
  44400. }
  44401. },
  44402. feral: {
  44403. height: math.unit(1.4, "meters"),
  44404. name: "Feral",
  44405. image: {
  44406. source: "./media/characters/ashgar/feral.svg",
  44407. extra: 370/345,
  44408. bottom: 45/415
  44409. }
  44410. },
  44411. },
  44412. [
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(1.9, "meters"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44422. {
  44423. regular: {
  44424. height: math.unit(6, "feet"),
  44425. weight: math.unit(220, "lb"),
  44426. name: "Regular",
  44427. image: {
  44428. source: "./media/characters/phillip/regular.svg",
  44429. extra: 1373/1277,
  44430. bottom: 75/1448
  44431. }
  44432. },
  44433. dressed: {
  44434. height: math.unit(6, "feet"),
  44435. weight: math.unit(220, "lb"),
  44436. name: "Dressed",
  44437. image: {
  44438. source: "./media/characters/phillip/dressed.svg",
  44439. extra: 1373/1277,
  44440. bottom: 75/1448
  44441. }
  44442. },
  44443. paw: {
  44444. height: math.unit(1.44, "feet"),
  44445. name: "Paw",
  44446. image: {
  44447. source: "./media/characters/phillip/paw.svg"
  44448. }
  44449. },
  44450. },
  44451. [
  44452. {
  44453. name: "Normal",
  44454. height: math.unit(6, "feet"),
  44455. default: true
  44456. },
  44457. ]
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44461. {
  44462. side: {
  44463. height: math.unit(42, "feet"),
  44464. name: "Side",
  44465. image: {
  44466. source: "./media/characters/uvula/side.svg",
  44467. extra: 683/586,
  44468. bottom: 60/743
  44469. }
  44470. },
  44471. front: {
  44472. height: math.unit(42, "feet"),
  44473. name: "Front",
  44474. image: {
  44475. source: "./media/characters/uvula/front.svg",
  44476. extra: 705/613,
  44477. bottom: 54/759
  44478. }
  44479. },
  44480. maw: {
  44481. height: math.unit(23.5, "feet"),
  44482. name: "Maw",
  44483. image: {
  44484. source: "./media/characters/uvula/maw.svg"
  44485. }
  44486. },
  44487. },
  44488. [
  44489. {
  44490. name: "Original Size",
  44491. height: math.unit(14, "inches")
  44492. },
  44493. {
  44494. name: "Human Size",
  44495. height: math.unit(6, "feet")
  44496. },
  44497. {
  44498. name: "Big",
  44499. height: math.unit(42, "feet"),
  44500. default: true
  44501. },
  44502. {
  44503. name: "Bigger",
  44504. height: math.unit(100, "feet")
  44505. },
  44506. ]
  44507. ))
  44508. characterMakers.push(() => makeCharacter(
  44509. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44510. {
  44511. front: {
  44512. height: math.unit(5 + 11/12, "feet"),
  44513. name: "Front",
  44514. image: {
  44515. source: "./media/characters/lannah/front.svg",
  44516. extra: 1208/1113,
  44517. bottom: 97/1305
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Normal",
  44524. height: math.unit(5 + 11/12, "feet"),
  44525. default: true
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44531. {
  44532. front: {
  44533. height: math.unit(6 + 3/12, "feet"),
  44534. weight: math.unit(3.5, "tons"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/emberflame/front.svg",
  44538. extra: 1198/672,
  44539. bottom: 82/1280
  44540. }
  44541. },
  44542. side: {
  44543. height: math.unit(6 + 3/12, "feet"),
  44544. weight: math.unit(3.5, "tons"),
  44545. name: "Side",
  44546. image: {
  44547. source: "./media/characters/emberflame/side.svg",
  44548. extra: 938/527,
  44549. bottom: 56/994
  44550. }
  44551. },
  44552. },
  44553. [
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(6 + 3/12, "feet"),
  44557. default: true
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44563. {
  44564. side: {
  44565. height: math.unit(17.5, "feet"),
  44566. weight: math.unit(35, "tons"),
  44567. name: "Side",
  44568. image: {
  44569. source: "./media/characters/sophie-ambrose/side.svg",
  44570. extra: 1573/1242,
  44571. bottom: 71/1644
  44572. }
  44573. },
  44574. maw: {
  44575. height: math.unit(7.4, "feet"),
  44576. name: "Maw",
  44577. image: {
  44578. source: "./media/characters/sophie-ambrose/maw.svg"
  44579. }
  44580. },
  44581. },
  44582. [
  44583. {
  44584. name: "Normal",
  44585. height: math.unit(17.5, "feet"),
  44586. default: true
  44587. },
  44588. ]
  44589. ))
  44590. characterMakers.push(() => makeCharacter(
  44591. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44592. {
  44593. front: {
  44594. height: math.unit(280, "feet"),
  44595. weight: math.unit(550, "tons"),
  44596. name: "Front",
  44597. image: {
  44598. source: "./media/characters/king-mugi/front.svg",
  44599. extra: 1102/947,
  44600. bottom: 104/1206
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "King Mugi",
  44607. height: math.unit(280, "feet"),
  44608. default: true
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(64, "meters"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/nova-fox/front.svg",
  44620. extra: 1310/1246,
  44621. bottom: 65/1375
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Macro",
  44628. height: math.unit(64, "meters"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(6 + 3/12, "feet"),
  44638. weight: math.unit(170, "lb"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/sam-bat/front.svg",
  44642. extra: 1601/1411,
  44643. bottom: 125/1726
  44644. }
  44645. },
  44646. back: {
  44647. height: math.unit(6 + 3/12, "feet"),
  44648. weight: math.unit(170, "lb"),
  44649. name: "Back",
  44650. image: {
  44651. source: "./media/characters/sam-bat/back.svg",
  44652. extra: 1577/1405,
  44653. bottom: 58/1635
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal",
  44660. height: math.unit(6 + 3/12, "feet"),
  44661. default: true
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44667. {
  44668. front: {
  44669. height: math.unit(59, "feet"),
  44670. weight: math.unit(40000, "lb"),
  44671. name: "Front",
  44672. image: {
  44673. source: "./media/characters/inari/front.svg",
  44674. extra: 1884/1350,
  44675. bottom: 95/1979
  44676. }
  44677. },
  44678. },
  44679. [
  44680. {
  44681. name: "Gigantamax",
  44682. height: math.unit(59, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44689. {
  44690. front: {
  44691. height: math.unit(5 + 8/12, "feet"),
  44692. name: "Front",
  44693. image: {
  44694. source: "./media/characters/elizabeth/front.svg",
  44695. extra: 1395/1298,
  44696. bottom: 54/1449
  44697. }
  44698. },
  44699. mouth: {
  44700. height: math.unit(1.97, "feet"),
  44701. name: "Mouth",
  44702. image: {
  44703. source: "./media/characters/elizabeth/mouth.svg"
  44704. }
  44705. },
  44706. foot: {
  44707. height: math.unit(1.17, "feet"),
  44708. name: "Foot",
  44709. image: {
  44710. source: "./media/characters/elizabeth/foot.svg"
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(5 + 8/12, "feet"),
  44718. default: true
  44719. },
  44720. {
  44721. name: "Minimacro",
  44722. height: math.unit(18, "feet")
  44723. },
  44724. {
  44725. name: "Macro",
  44726. height: math.unit(180, "feet")
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44732. {
  44733. front: {
  44734. height: math.unit(5 + 2/12, "feet"),
  44735. name: "Front",
  44736. image: {
  44737. source: "./media/characters/october-gossamer/front.svg",
  44738. extra: 505/454,
  44739. bottom: 7/512
  44740. }
  44741. },
  44742. back: {
  44743. height: math.unit(5 + 2/12, "feet"),
  44744. name: "Back",
  44745. image: {
  44746. source: "./media/characters/october-gossamer/back.svg",
  44747. extra: 501/454,
  44748. bottom: 11/512
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(5 + 2/12, "feet"),
  44756. default: true
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(5, "feet"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/epiglottis/front.svg",
  44768. extra: 923/849,
  44769. bottom: 17/940
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Original Size",
  44776. height: math.unit(10, "inches")
  44777. },
  44778. {
  44779. name: "Human Size",
  44780. height: math.unit(5, "feet"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Big",
  44785. height: math.unit(25, "feet")
  44786. },
  44787. {
  44788. name: "Bigger",
  44789. height: math.unit(50, "feet")
  44790. },
  44791. {
  44792. name: "oh lawd",
  44793. height: math.unit(75, "feet")
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(2 + 4/12, "feet"),
  44802. weight: math.unit(60, "lb"),
  44803. name: "Front",
  44804. image: {
  44805. source: "./media/characters/lerm/front.svg",
  44806. extra: 796/790,
  44807. bottom: 79/875
  44808. }
  44809. },
  44810. },
  44811. [
  44812. {
  44813. name: "Normal",
  44814. height: math.unit(2 + 4/12, "feet"),
  44815. default: true
  44816. },
  44817. ]
  44818. ))
  44819. characterMakers.push(() => makeCharacter(
  44820. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44821. {
  44822. front: {
  44823. height: math.unit(5.5, "feet"),
  44824. weight: math.unit(130, "lb"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/xena-nebadon/front.svg",
  44828. extra: 1828/1730,
  44829. bottom: 79/1907
  44830. }
  44831. },
  44832. },
  44833. [
  44834. {
  44835. name: "Tiny Puppy",
  44836. height: math.unit(3, "inches")
  44837. },
  44838. {
  44839. name: "Normal",
  44840. height: math.unit(5.5, "feet"),
  44841. default: true
  44842. },
  44843. {
  44844. name: "Lotta Lady",
  44845. height: math.unit(12, "feet")
  44846. },
  44847. {
  44848. name: "Pretty Big",
  44849. height: math.unit(100, "feet")
  44850. },
  44851. {
  44852. name: "Big",
  44853. height: math.unit(500, "feet")
  44854. },
  44855. {
  44856. name: "Skyscraper Toys",
  44857. height: math.unit(2500, "feet")
  44858. },
  44859. {
  44860. name: "Plane Catcher",
  44861. height: math.unit(8, "miles")
  44862. },
  44863. {
  44864. name: "Planet Toys",
  44865. height: math.unit(15, "earths")
  44866. },
  44867. {
  44868. name: "Stardust",
  44869. height: math.unit(0.25, "galaxies")
  44870. },
  44871. {
  44872. name: "Snacks",
  44873. height: math.unit(70, "universes")
  44874. },
  44875. ]
  44876. ))
  44877. characterMakers.push(() => makeCharacter(
  44878. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44879. {
  44880. front: {
  44881. height: math.unit(1.6, "meters"),
  44882. weight: math.unit(60, "kg"),
  44883. name: "Front",
  44884. image: {
  44885. source: "./media/characters/bounty/front.svg",
  44886. extra: 1426/1308,
  44887. bottom: 15/1441
  44888. }
  44889. },
  44890. back: {
  44891. height: math.unit(1.6, "meters"),
  44892. weight: math.unit(60, "kg"),
  44893. name: "Back",
  44894. image: {
  44895. source: "./media/characters/bounty/back.svg",
  44896. extra: 1417/1307,
  44897. bottom: 8/1425
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(1.6, "meters"),
  44905. default: true
  44906. },
  44907. {
  44908. name: "Macro",
  44909. height: math.unit(300, "meters")
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44915. {
  44916. front: {
  44917. height: math.unit(2 + 8/12, "feet"),
  44918. weight: math.unit(15, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/mochi/front.svg",
  44922. extra: 1022/852,
  44923. bottom: 435/1457
  44924. }
  44925. },
  44926. back: {
  44927. height: math.unit(2 + 8/12, "feet"),
  44928. weight: math.unit(15, "lb"),
  44929. name: "Back",
  44930. image: {
  44931. source: "./media/characters/mochi/back.svg",
  44932. extra: 1335/1119,
  44933. bottom: 39/1374
  44934. }
  44935. },
  44936. bird: {
  44937. height: math.unit(2 + 8/12, "feet"),
  44938. weight: math.unit(15, "lb"),
  44939. name: "Bird",
  44940. image: {
  44941. source: "./media/characters/mochi/bird.svg",
  44942. extra: 1251/1113,
  44943. bottom: 178/1429
  44944. }
  44945. },
  44946. kaiju: {
  44947. height: math.unit(154, "feet"),
  44948. weight: math.unit(1e7, "lb"),
  44949. name: "Kaiju",
  44950. image: {
  44951. source: "./media/characters/mochi/kaiju.svg",
  44952. extra: 460/324,
  44953. bottom: 40/500
  44954. }
  44955. },
  44956. head: {
  44957. height: math.unit(1.21, "feet"),
  44958. name: "Head",
  44959. image: {
  44960. source: "./media/characters/mochi/head.svg"
  44961. }
  44962. },
  44963. alternateTail: {
  44964. height: math.unit(2 + 8/12, "feet"),
  44965. weight: math.unit(45, "lb"),
  44966. name: "Alternate Tail",
  44967. image: {
  44968. source: "./media/characters/mochi/alternate-tail.svg",
  44969. extra: 139/76,
  44970. bottom: 45/184
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Micro",
  44977. height: math.unit(2, "inches")
  44978. },
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(2 + 8/12, "feet"),
  44982. default: true
  44983. },
  44984. {
  44985. name: "Macro",
  44986. height: math.unit(106, "feet")
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(5.67, "feet"),
  44995. weight: math.unit(135, "lb"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/sarel/front.svg",
  44999. extra: 865/788,
  45000. bottom: 97/962
  45001. }
  45002. },
  45003. back: {
  45004. height: math.unit(5.67, "feet"),
  45005. weight: math.unit(135, "lb"),
  45006. name: "Back",
  45007. image: {
  45008. source: "./media/characters/sarel/back.svg",
  45009. extra: 857/777,
  45010. bottom: 32/889
  45011. }
  45012. },
  45013. chozoan: {
  45014. height: math.unit(5.67, "feet"),
  45015. weight: math.unit(135, "lb"),
  45016. name: "Chozoan",
  45017. image: {
  45018. source: "./media/characters/sarel/chozoan.svg",
  45019. extra: 865/788,
  45020. bottom: 97/962
  45021. }
  45022. },
  45023. current: {
  45024. height: math.unit(5.67, "feet"),
  45025. weight: math.unit(135, "lb"),
  45026. name: "Current",
  45027. image: {
  45028. source: "./media/characters/sarel/current.svg",
  45029. extra: 865/788,
  45030. bottom: 97/962
  45031. }
  45032. },
  45033. head: {
  45034. height: math.unit(1.77, "feet"),
  45035. name: "Head",
  45036. image: {
  45037. source: "./media/characters/sarel/head.svg"
  45038. }
  45039. },
  45040. claws: {
  45041. height: math.unit(1.8, "feet"),
  45042. name: "Claws",
  45043. image: {
  45044. source: "./media/characters/sarel/claws.svg"
  45045. }
  45046. },
  45047. clawsAlt: {
  45048. height: math.unit(1.8, "feet"),
  45049. name: "Claws-alt",
  45050. image: {
  45051. source: "./media/characters/sarel/claws-alt.svg"
  45052. }
  45053. },
  45054. },
  45055. [
  45056. {
  45057. name: "Normal",
  45058. height: math.unit(5.67, "feet"),
  45059. default: true
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45065. {
  45066. front: {
  45067. height: math.unit(5500, "feet"),
  45068. name: "Front",
  45069. image: {
  45070. source: "./media/characters/alyonia/front.svg",
  45071. extra: 1200/1135,
  45072. bottom: 29/1229
  45073. }
  45074. },
  45075. back: {
  45076. height: math.unit(5500, "feet"),
  45077. name: "Back",
  45078. image: {
  45079. source: "./media/characters/alyonia/back.svg",
  45080. extra: 1205/1138,
  45081. bottom: 10/1215
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Small",
  45088. height: math.unit(10, "feet")
  45089. },
  45090. {
  45091. name: "Macro",
  45092. height: math.unit(500, "feet")
  45093. },
  45094. {
  45095. name: "Mega Macro",
  45096. height: math.unit(5500, "feet"),
  45097. default: true
  45098. },
  45099. {
  45100. name: "Mega Macro+",
  45101. height: math.unit(500000, "feet")
  45102. },
  45103. {
  45104. name: "Giga Macro",
  45105. height: math.unit(3000, "miles")
  45106. },
  45107. {
  45108. name: "Tera Macro",
  45109. height: math.unit(2.8e6, "miles")
  45110. },
  45111. {
  45112. name: "Galactic",
  45113. height: math.unit(120000, "lightyears")
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45119. {
  45120. werewolf: {
  45121. height: math.unit(8, "feet"),
  45122. weight: math.unit(425, "lb"),
  45123. name: "Werewolf",
  45124. image: {
  45125. source: "./media/characters/autumn/werewolf.svg",
  45126. extra: 2154/2031,
  45127. bottom: 160/2314
  45128. }
  45129. },
  45130. human: {
  45131. height: math.unit(5 + 8/12, "feet"),
  45132. weight: math.unit(150, "lb"),
  45133. name: "Human",
  45134. image: {
  45135. source: "./media/characters/autumn/human.svg",
  45136. extra: 1200/1149,
  45137. bottom: 30/1230
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(8, "feet"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(8 + 5/12, "feet"),
  45154. weight: math.unit(825, "lb"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/cobalt-charizard/front.svg",
  45158. extra: 1268/1155,
  45159. bottom: 122/1390
  45160. }
  45161. },
  45162. side: {
  45163. height: math.unit(8 + 5/12, "feet"),
  45164. weight: math.unit(825, "lb"),
  45165. name: "Side",
  45166. image: {
  45167. source: "./media/characters/cobalt-charizard/side.svg",
  45168. extra: 1348/1257,
  45169. bottom: 58/1406
  45170. }
  45171. },
  45172. gMax: {
  45173. height: math.unit(134 + 11/12, "feet"),
  45174. name: "G-Max",
  45175. image: {
  45176. source: "./media/characters/cobalt-charizard/g-max.svg",
  45177. extra: 1835/1541,
  45178. bottom: 151/1986
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(8 + 5/12, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(6 + 3/12, "feet"),
  45195. weight: math.unit(210, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/stella/front.svg",
  45199. extra: 3549/3335,
  45200. bottom: 51/3600
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(6 + 3/12, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45214. {
  45215. front: {
  45216. height: math.unit(5, "feet"),
  45217. weight: math.unit(90, "lb"),
  45218. name: "Front",
  45219. image: {
  45220. source: "./media/characters/riley-bishop/front.svg",
  45221. extra: 1450/1428,
  45222. bottom: 152/1602
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(5, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45236. {
  45237. side: {
  45238. height: math.unit(8 + 2/12, "feet"),
  45239. weight: math.unit(500, "kg"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/theo-arcanine/side.svg",
  45243. extra: 1342/1074,
  45244. bottom: 111/1453
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Normal",
  45251. height: math.unit(8 + 2/12, "feet"),
  45252. default: true
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45258. {
  45259. front: {
  45260. height: math.unit(4, "feet"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/kali/front.svg",
  45264. extra: 1921/1357,
  45265. bottom: 70/1991
  45266. }
  45267. },
  45268. },
  45269. [
  45270. {
  45271. name: "Normal",
  45272. height: math.unit(4, "feet"),
  45273. default: true
  45274. },
  45275. {
  45276. name: "Macro",
  45277. height: math.unit(32, "meters")
  45278. },
  45279. {
  45280. name: "Macro+",
  45281. height: math.unit(150, "meters")
  45282. },
  45283. {
  45284. name: "Megamacro",
  45285. height: math.unit(7500, "meters")
  45286. },
  45287. {
  45288. name: "Megamacro+",
  45289. height: math.unit(80, "kilometers")
  45290. },
  45291. ]
  45292. ))
  45293. characterMakers.push(() => makeCharacter(
  45294. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45295. {
  45296. side: {
  45297. height: math.unit(5 + 11/12, "feet"),
  45298. weight: math.unit(236, "lb"),
  45299. name: "Side",
  45300. image: {
  45301. source: "./media/characters/gapp/side.svg",
  45302. extra: 775/340,
  45303. bottom: 58/833
  45304. }
  45305. },
  45306. mouth: {
  45307. height: math.unit(2.98, "feet"),
  45308. name: "Mouth",
  45309. image: {
  45310. source: "./media/characters/gapp/mouth.svg"
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "Normal",
  45317. height: math.unit(5 + 1/12, "feet"),
  45318. default: true
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(6, "feet"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/persephone/front.svg",
  45330. extra: 1895/1717,
  45331. bottom: 96/1991
  45332. }
  45333. },
  45334. back: {
  45335. height: math.unit(6, "feet"),
  45336. name: "Back",
  45337. image: {
  45338. source: "./media/characters/persephone/back.svg",
  45339. extra: 1868/1679,
  45340. bottom: 26/1894
  45341. }
  45342. },
  45343. casual: {
  45344. height: math.unit(6, "feet"),
  45345. name: "Casual",
  45346. image: {
  45347. source: "./media/characters/persephone/casual.svg",
  45348. extra: 1713/1541,
  45349. bottom: 76/1789
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Human Size",
  45356. height: math.unit(6, "feet")
  45357. },
  45358. {
  45359. name: "Big Steppy",
  45360. height: math.unit(600, "meters"),
  45361. default: true
  45362. },
  45363. {
  45364. name: "Galaxy Brain",
  45365. height: math.unit(1, "zettameter")
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45371. {
  45372. front: {
  45373. height: math.unit(1.85, "meters"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/riley-foxthing/front.svg",
  45377. extra: 1495/1354,
  45378. bottom: 122/1617
  45379. }
  45380. },
  45381. frontAlt: {
  45382. height: math.unit(1.85, "meters"),
  45383. name: "Front (Alt)",
  45384. image: {
  45385. source: "./media/characters/riley-foxthing/front-alt.svg",
  45386. extra: 1572/1389,
  45387. bottom: 116/1688
  45388. }
  45389. },
  45390. },
  45391. [
  45392. {
  45393. name: "Normal Sized",
  45394. height: math.unit(1.85, "meters"),
  45395. default: true
  45396. },
  45397. {
  45398. name: "Quite Sizable",
  45399. height: math.unit(5, "meters")
  45400. },
  45401. {
  45402. name: "Rather Large",
  45403. height: math.unit(20, "meters")
  45404. },
  45405. {
  45406. name: "Macro",
  45407. height: math.unit(450, "meters")
  45408. },
  45409. {
  45410. name: "Giga",
  45411. height: math.unit(5, "km")
  45412. },
  45413. ]
  45414. ))
  45415. characterMakers.push(() => makeCharacter(
  45416. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45417. {
  45418. front: {
  45419. height: math.unit(6, "feet"),
  45420. weight: math.unit(200, "lb"),
  45421. name: "Front",
  45422. image: {
  45423. source: "./media/characters/blizzard/front.svg",
  45424. extra: 1136/990,
  45425. bottom: 136/1272
  45426. }
  45427. },
  45428. back: {
  45429. height: math.unit(6, "feet"),
  45430. weight: math.unit(200, "lb"),
  45431. name: "Back",
  45432. image: {
  45433. source: "./media/characters/blizzard/back.svg",
  45434. extra: 1175/1034,
  45435. bottom: 97/1272
  45436. }
  45437. },
  45438. sitting: {
  45439. height: math.unit(3.725, "feet"),
  45440. weight: math.unit(200, "lb"),
  45441. name: "Sitting",
  45442. image: {
  45443. source: "./media/characters/blizzard/sitting.svg",
  45444. extra: 581/485,
  45445. bottom: 90/671
  45446. }
  45447. },
  45448. frontWizard: {
  45449. height: math.unit(7.9, "feet"),
  45450. weight: math.unit(200, "lb"),
  45451. name: "Front (Wizard)",
  45452. image: {
  45453. source: "./media/characters/blizzard/front-wizard.svg"
  45454. }
  45455. },
  45456. backWizard: {
  45457. height: math.unit(7.9, "feet"),
  45458. weight: math.unit(200, "lb"),
  45459. name: "Back (Wizard)",
  45460. image: {
  45461. source: "./media/characters/blizzard/back-wizard.svg"
  45462. }
  45463. },
  45464. frontNsfw: {
  45465. height: math.unit(6, "feet"),
  45466. weight: math.unit(200, "lb"),
  45467. name: "Front (NSFW)",
  45468. image: {
  45469. source: "./media/characters/blizzard/front-nsfw.svg",
  45470. extra: 1136/990,
  45471. bottom: 136/1272
  45472. }
  45473. },
  45474. backNsfw: {
  45475. height: math.unit(6, "feet"),
  45476. weight: math.unit(200, "lb"),
  45477. name: "Back (NSFW)",
  45478. image: {
  45479. source: "./media/characters/blizzard/back-nsfw.svg",
  45480. extra: 1175/1034,
  45481. bottom: 97/1272
  45482. }
  45483. },
  45484. sittingNsfw: {
  45485. height: math.unit(3.725, "feet"),
  45486. weight: math.unit(200, "lb"),
  45487. name: "Sitting (NSFW)",
  45488. image: {
  45489. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45490. extra: 581/485,
  45491. bottom: 90/671
  45492. }
  45493. },
  45494. wizardFrontNsfw: {
  45495. height: math.unit(7.9, "feet"),
  45496. weight: math.unit(200, "lb"),
  45497. name: "Wizard (Front, NSFW)",
  45498. image: {
  45499. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(6, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(5 + 2/12, "feet"),
  45516. name: "Front",
  45517. image: {
  45518. source: "./media/characters/lumi/front.svg",
  45519. extra: 1328/1268,
  45520. bottom: 103/1431
  45521. }
  45522. },
  45523. back: {
  45524. height: math.unit(5 + 2/12, "feet"),
  45525. name: "Back",
  45526. image: {
  45527. source: "./media/characters/lumi/back.svg",
  45528. extra: 1381/1327,
  45529. bottom: 43/1424
  45530. }
  45531. },
  45532. },
  45533. [
  45534. {
  45535. name: "Normal",
  45536. height: math.unit(5 + 2/12, "feet"),
  45537. default: true
  45538. },
  45539. ]
  45540. ))
  45541. characterMakers.push(() => makeCharacter(
  45542. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45543. {
  45544. front: {
  45545. height: math.unit(5 + 9/12, "feet"),
  45546. name: "Front",
  45547. image: {
  45548. source: "./media/characters/aliya-cotton/front.svg",
  45549. extra: 577/564,
  45550. bottom: 29/606
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(5 + 9/12, "feet"),
  45558. default: true
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(2.7, "meters"),
  45567. weight: math.unit(25000, "lb"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/noah-luxray/front.svg",
  45571. extra: 1644/825,
  45572. bottom: 339/1983
  45573. }
  45574. },
  45575. side: {
  45576. height: math.unit(2.97, "meters"),
  45577. weight: math.unit(25000, "lb"),
  45578. name: "Side",
  45579. image: {
  45580. source: "./media/characters/noah-luxray/side.svg",
  45581. extra: 1319/650,
  45582. bottom: 163/1482
  45583. }
  45584. },
  45585. dick: {
  45586. height: math.unit(7.4, "feet"),
  45587. weight: math.unit(2500, "lb"),
  45588. name: "Dick",
  45589. image: {
  45590. source: "./media/characters/noah-luxray/dick.svg"
  45591. }
  45592. },
  45593. dickAlt: {
  45594. height: math.unit(10.83, "feet"),
  45595. weight: math.unit(2500, "lb"),
  45596. name: "Dick-alt",
  45597. image: {
  45598. source: "./media/characters/noah-luxray/dick-alt.svg"
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "BIG",
  45605. height: math.unit(2.7, "meters"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45612. {
  45613. standing: {
  45614. height: math.unit(183, "cm"),
  45615. weight: math.unit(68, "kg"),
  45616. name: "Standing",
  45617. image: {
  45618. source: "./media/characters/arion/standing.svg",
  45619. extra: 1869/1807,
  45620. bottom: 93/1962
  45621. }
  45622. },
  45623. reclining: {
  45624. height: math.unit(70.5, "cm"),
  45625. weight: math.unit(68, "lb"),
  45626. name: "Reclining",
  45627. image: {
  45628. source: "./media/characters/arion/reclining.svg",
  45629. extra: 937/870,
  45630. bottom: 63/1000
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Colossus Size, Low",
  45637. height: math.unit(33, "meters"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Colossus Size, Mid",
  45642. height: math.unit(52, "meters")
  45643. },
  45644. {
  45645. name: "Colossus Size, High",
  45646. height: math.unit(60, "meters")
  45647. },
  45648. {
  45649. name: "Titan Size, Low",
  45650. height: math.unit(91, "meters"),
  45651. },
  45652. {
  45653. name: "Titan Size, Mid",
  45654. height: math.unit(122, "meters")
  45655. },
  45656. {
  45657. name: "Titan Size, High",
  45658. height: math.unit(162, "meters")
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45664. {
  45665. front: {
  45666. height: math.unit(53, "meters"),
  45667. name: "Front",
  45668. image: {
  45669. source: "./media/characters/stellar-marbey/front.svg",
  45670. extra: 1913/1805,
  45671. bottom: 92/2005
  45672. }
  45673. },
  45674. back: {
  45675. height: math.unit(53, "meters"),
  45676. name: "Back",
  45677. image: {
  45678. source: "./media/characters/stellar-marbey/back.svg",
  45679. extra: 1960/1851,
  45680. bottom: 28/1988
  45681. }
  45682. },
  45683. mouth: {
  45684. height: math.unit(3.5, "meters"),
  45685. name: "Mouth",
  45686. image: {
  45687. source: "./media/characters/stellar-marbey/mouth.svg"
  45688. }
  45689. },
  45690. },
  45691. [
  45692. {
  45693. name: "Macro",
  45694. height: math.unit(53, "meters"),
  45695. default: true
  45696. },
  45697. ]
  45698. ))
  45699. characterMakers.push(() => makeCharacter(
  45700. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45701. {
  45702. front: {
  45703. height: math.unit(8 + 1/12, "feet"),
  45704. weight: math.unit(233, "lb"),
  45705. name: "Front",
  45706. image: {
  45707. source: "./media/characters/matsu/front.svg",
  45708. extra: 832/772,
  45709. bottom: 40/872
  45710. }
  45711. },
  45712. back: {
  45713. height: math.unit(8 + 1/12, "feet"),
  45714. weight: math.unit(233, "lb"),
  45715. name: "Back",
  45716. image: {
  45717. source: "./media/characters/matsu/back.svg",
  45718. extra: 839/780,
  45719. bottom: 47/886
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(8 + 1/12, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(4, "feet"),
  45736. weight: math.unit(148, "lb"),
  45737. name: "Front",
  45738. image: {
  45739. source: "./media/characters/thiz/front.svg",
  45740. extra: 1913/1748,
  45741. bottom: 62/1975
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(4, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(7 + 6/12, "feet"),
  45758. weight: math.unit(267, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/marcel/front.svg",
  45762. extra: 1221/1096,
  45763. bottom: 76/1297
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(7 + 6/12, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45777. {
  45778. side: {
  45779. height: math.unit(42, "meters"),
  45780. name: "Side",
  45781. image: {
  45782. source: "./media/characters/flake/side.svg",
  45783. extra: 1525/1306,
  45784. bottom: 209/1734
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(42, "meters"),
  45792. default: true
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45798. {
  45799. dressed: {
  45800. height: math.unit(6 + 4/12, "feet"),
  45801. weight: math.unit(520, "lb"),
  45802. name: "Dressed",
  45803. image: {
  45804. source: "./media/characters/someonne/dressed.svg",
  45805. extra: 1020/1010,
  45806. bottom: 178/1198
  45807. }
  45808. },
  45809. undressed: {
  45810. height: math.unit(6 + 4/12, "feet"),
  45811. weight: math.unit(520, "lb"),
  45812. name: "Undressed",
  45813. image: {
  45814. source: "./media/characters/someonne/undressed.svg",
  45815. extra: 1019/1014,
  45816. bottom: 169/1188
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(6 + 4/12, "feet"),
  45824. default: true
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(3, "feet"),
  45833. weight: math.unit(30, "lb"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/till/front.svg",
  45837. extra: 892/823,
  45838. bottom: 55/947
  45839. }
  45840. },
  45841. },
  45842. [
  45843. {
  45844. name: "Normal",
  45845. height: math.unit(3, "feet"),
  45846. default: true
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45852. {
  45853. front: {
  45854. height: math.unit(9 + 8/12, "feet"),
  45855. weight: math.unit(800, "lb"),
  45856. name: "Front",
  45857. image: {
  45858. source: "./media/characters/sydney-heki/front.svg",
  45859. extra: 1360/1300,
  45860. bottom: 22/1382
  45861. }
  45862. },
  45863. back: {
  45864. height: math.unit(9 + 8/12, "feet"),
  45865. weight: math.unit(800, "lb"),
  45866. name: "Back",
  45867. image: {
  45868. source: "./media/characters/sydney-heki/back.svg",
  45869. extra: 1356/1293,
  45870. bottom: 12/1368
  45871. }
  45872. },
  45873. frontDressed: {
  45874. height: math.unit(9 + 8/12, "feet"),
  45875. weight: math.unit(800, "lb"),
  45876. name: "Front-dressed",
  45877. image: {
  45878. source: "./media/characters/sydney-heki/front-dressed.svg",
  45879. extra: 1360/1300,
  45880. bottom: 22/1382
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(9 + 8/12, "feet"),
  45888. default: true
  45889. },
  45890. {
  45891. name: "Macro",
  45892. height: math.unit(500, "feet")
  45893. },
  45894. {
  45895. name: "Megamacro",
  45896. height: math.unit(3.6, "miles")
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(200, "cm"),
  45905. weight: math.unit(250, "lb"),
  45906. name: "Front",
  45907. image: {
  45908. source: "./media/characters/fowler-karlsson/front.svg",
  45909. extra: 897/845,
  45910. bottom: 123/1020
  45911. }
  45912. },
  45913. back: {
  45914. height: math.unit(200, "cm"),
  45915. weight: math.unit(250, "lb"),
  45916. name: "Back",
  45917. image: {
  45918. source: "./media/characters/fowler-karlsson/back.svg",
  45919. extra: 999/944,
  45920. bottom: 26/1025
  45921. }
  45922. },
  45923. dick: {
  45924. height: math.unit(1.92, "feet"),
  45925. weight: math.unit(150, "lb"),
  45926. name: "Dick",
  45927. image: {
  45928. source: "./media/characters/fowler-karlsson/dick.svg"
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(200, "cm"),
  45936. default: true
  45937. },
  45938. {
  45939. name: "Smaller Macro",
  45940. height: math.unit(90, "m")
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(150, "m")
  45945. },
  45946. {
  45947. name: "Bigger Macro",
  45948. height: math.unit(300, "m")
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45954. {
  45955. side: {
  45956. height: math.unit(8 + 2/12, "feet"),
  45957. weight: math.unit(1, "tonne"),
  45958. name: "Side",
  45959. image: {
  45960. source: "./media/characters/rylide/side.svg",
  45961. extra: 1318/1034,
  45962. bottom: 106/1424
  45963. }
  45964. },
  45965. sitting: {
  45966. height: math.unit(303, "cm"),
  45967. weight: math.unit(1, "tonne"),
  45968. name: "Sitting",
  45969. image: {
  45970. source: "./media/characters/rylide/sitting.svg",
  45971. extra: 1303/1103,
  45972. bottom: 36/1339
  45973. }
  45974. },
  45975. },
  45976. [
  45977. {
  45978. name: "Normal",
  45979. height: math.unit(8 + 2/12, "feet"),
  45980. default: true
  45981. },
  45982. ]
  45983. ))
  45984. characterMakers.push(() => makeCharacter(
  45985. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45986. {
  45987. front: {
  45988. height: math.unit(5 + 10/12, "feet"),
  45989. weight: math.unit(160, "lb"),
  45990. name: "Front",
  45991. image: {
  45992. source: "./media/characters/pudask/front.svg",
  45993. extra: 1616/1590,
  45994. bottom: 161/1777
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Ferret Height",
  46001. height: math.unit(2 + 5/12, "feet")
  46002. },
  46003. {
  46004. name: "Canon Height",
  46005. height: math.unit(5 + 10/12, "feet"),
  46006. default: true
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46012. {
  46013. front: {
  46014. height: math.unit(3 + 6/12, "feet"),
  46015. weight: math.unit(60, "lb"),
  46016. name: "Front",
  46017. image: {
  46018. source: "./media/characters/ramita/front.svg",
  46019. extra: 1402/1232,
  46020. bottom: 62/1464
  46021. }
  46022. },
  46023. dressed: {
  46024. height: math.unit(3 + 6/12, "feet"),
  46025. weight: math.unit(60, "lb"),
  46026. name: "Dressed",
  46027. image: {
  46028. source: "./media/characters/ramita/dressed.svg",
  46029. extra: 1534/1249,
  46030. bottom: 50/1584
  46031. }
  46032. },
  46033. },
  46034. [
  46035. {
  46036. name: "Normal",
  46037. height: math.unit(3 + 6/12, "feet"),
  46038. default: true
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46044. {
  46045. front: {
  46046. height: math.unit(8, "feet"),
  46047. name: "Front",
  46048. image: {
  46049. source: "./media/characters/ark/front.svg",
  46050. extra: 772/693,
  46051. bottom: 45/817
  46052. }
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(8, "feet"),
  46059. default: true
  46060. },
  46061. ]
  46062. ))
  46063. characterMakers.push(() => makeCharacter(
  46064. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46065. {
  46066. front: {
  46067. height: math.unit(6, "feet"),
  46068. weight: math.unit(250, "lb"),
  46069. volume: math.unit(5/8, "gallons"),
  46070. name: "Front",
  46071. image: {
  46072. source: "./media/characters/ludwig-horn/front.svg",
  46073. extra: 1782/1635,
  46074. bottom: 96/1878
  46075. }
  46076. },
  46077. back: {
  46078. height: math.unit(6, "feet"),
  46079. weight: math.unit(250, "lb"),
  46080. volume: math.unit(5/8, "gallons"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/ludwig-horn/back.svg",
  46084. extra: 1874/1729,
  46085. bottom: 27/1901
  46086. }
  46087. },
  46088. dick: {
  46089. height: math.unit(1.05, "feet"),
  46090. weight: math.unit(15, "lb"),
  46091. volume: math.unit(5/8, "gallons"),
  46092. name: "Dick",
  46093. image: {
  46094. source: "./media/characters/ludwig-horn/dick.svg"
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Small",
  46101. height: math.unit(6, "feet")
  46102. },
  46103. {
  46104. name: "Typical",
  46105. height: math.unit(12, "feet"),
  46106. default: true
  46107. },
  46108. {
  46109. name: "Building",
  46110. height: math.unit(80, "feet")
  46111. },
  46112. {
  46113. name: "Town",
  46114. height: math.unit(800, "feet")
  46115. },
  46116. {
  46117. name: "Kingdom",
  46118. height: math.unit(80000, "feet")
  46119. },
  46120. {
  46121. name: "Planet",
  46122. height: math.unit(8000000, "feet")
  46123. },
  46124. {
  46125. name: "Universe",
  46126. height: math.unit(8000000000, "feet")
  46127. },
  46128. {
  46129. name: "Transcended",
  46130. height: math.unit(8e27, "feet")
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46136. {
  46137. front: {
  46138. height: math.unit(5, "feet"),
  46139. weight: math.unit(50, "kg"),
  46140. name: "Front",
  46141. image: {
  46142. source: "./media/characters/biot-avery/front.svg",
  46143. extra: 1295/1232,
  46144. bottom: 86/1381
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Normal",
  46151. height: math.unit(5, "feet"),
  46152. default: true
  46153. },
  46154. ]
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46158. {
  46159. front: {
  46160. height: math.unit(6, "feet"),
  46161. name: "Front",
  46162. image: {
  46163. source: "./media/characters/kitsune-kiro/front.svg",
  46164. extra: 1270/1158,
  46165. bottom: 42/1312
  46166. }
  46167. },
  46168. frontAlt: {
  46169. height: math.unit(6, "feet"),
  46170. name: "Front-alt",
  46171. image: {
  46172. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46173. extra: 1130/1081,
  46174. bottom: 36/1166
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Smol",
  46181. height: math.unit(3, "feet")
  46182. },
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(6, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(6, "feet"),
  46195. weight: math.unit(125, "lb"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/jack-thatcher/front.svg",
  46199. extra: 1474/1370,
  46200. bottom: 26/1500
  46201. }
  46202. },
  46203. back: {
  46204. height: math.unit(6, "feet"),
  46205. weight: math.unit(125, "lb"),
  46206. name: "Back",
  46207. image: {
  46208. source: "./media/characters/jack-thatcher/back.svg",
  46209. extra: 1489/1384,
  46210. bottom: 18/1507
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal",
  46217. height: math.unit(6, "feet"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Macro",
  46222. height: math.unit(75, "feet")
  46223. },
  46224. {
  46225. name: "Macro-er",
  46226. height: math.unit(250, "feet")
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(7, "feet"),
  46235. weight: math.unit(110, "kg"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/max-hyper/front.svg",
  46239. extra: 1969/1881,
  46240. bottom: 49/2018
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Normal",
  46247. height: math.unit(7, "feet"),
  46248. default: true
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46254. {
  46255. front: {
  46256. height: math.unit(5 + 5/12, "feet"),
  46257. weight: math.unit(160, "lb"),
  46258. name: "Front",
  46259. image: {
  46260. source: "./media/characters/spook/front.svg",
  46261. extra: 794/791,
  46262. bottom: 54/848
  46263. }
  46264. },
  46265. back: {
  46266. height: math.unit(5 + 5/12, "feet"),
  46267. weight: math.unit(160, "lb"),
  46268. name: "Back",
  46269. image: {
  46270. source: "./media/characters/spook/back.svg",
  46271. extra: 812/798,
  46272. bottom: 32/844
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(5 + 5/12, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(18, "feet"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/xeaduulix/front.svg",
  46292. extra: 1380/1166,
  46293. bottom: 110/1490
  46294. }
  46295. },
  46296. back: {
  46297. height: math.unit(18, "feet"),
  46298. name: "Back",
  46299. image: {
  46300. source: "./media/characters/xeaduulix/back.svg",
  46301. extra: 1592/1170,
  46302. bottom: 128/1720
  46303. }
  46304. },
  46305. frontNsfw: {
  46306. height: math.unit(18, "feet"),
  46307. name: "Front (NSFW)",
  46308. image: {
  46309. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46310. extra: 1380/1166,
  46311. bottom: 110/1490
  46312. }
  46313. },
  46314. backNsfw: {
  46315. height: math.unit(18, "feet"),
  46316. name: "Back (NSFW)",
  46317. image: {
  46318. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46319. extra: 1592/1170,
  46320. bottom: 128/1720
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(18, "feet"),
  46328. default: true
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46334. {
  46335. spreadWings: {
  46336. height: math.unit(20, "feet"),
  46337. name: "Spread Wings",
  46338. image: {
  46339. source: "./media/characters/fledge/spread-wings.svg",
  46340. extra: 693/635,
  46341. bottom: 26/719
  46342. }
  46343. },
  46344. front: {
  46345. height: math.unit(20, "feet"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/fledge/front.svg",
  46349. extra: 684/637,
  46350. bottom: 18/702
  46351. }
  46352. },
  46353. frontAlt: {
  46354. height: math.unit(20, "feet"),
  46355. name: "Front (Alt)",
  46356. image: {
  46357. source: "./media/characters/fledge/front-alt.svg",
  46358. extra: 708/664,
  46359. bottom: 13/721
  46360. }
  46361. },
  46362. back: {
  46363. height: math.unit(20, "feet"),
  46364. name: "Back",
  46365. image: {
  46366. source: "./media/characters/fledge/back.svg",
  46367. extra: 718/634,
  46368. bottom: 22/740
  46369. }
  46370. },
  46371. head: {
  46372. height: math.unit(5.55, "feet"),
  46373. name: "Head",
  46374. image: {
  46375. source: "./media/characters/fledge/head.svg"
  46376. }
  46377. },
  46378. headAlt: {
  46379. height: math.unit(5.1, "feet"),
  46380. name: "Head (Alt)",
  46381. image: {
  46382. source: "./media/characters/fledge/head-alt.svg"
  46383. }
  46384. },
  46385. },
  46386. [
  46387. {
  46388. name: "Small",
  46389. height: math.unit(6 + 2/12, "feet")
  46390. },
  46391. {
  46392. name: "Big",
  46393. height: math.unit(20, "feet"),
  46394. default: true
  46395. },
  46396. {
  46397. name: "Giant",
  46398. height: math.unit(100, "feet")
  46399. },
  46400. {
  46401. name: "Macro",
  46402. height: math.unit(200, "feet")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(1, "meter"),
  46411. name: "Front",
  46412. image: {
  46413. source: "./media/characters/atlas-morenai/front.svg",
  46414. extra: 1275/1043,
  46415. bottom: 19/1294
  46416. }
  46417. },
  46418. back: {
  46419. height: math.unit(1, "meter"),
  46420. name: "Back",
  46421. image: {
  46422. source: "./media/characters/atlas-morenai/back.svg",
  46423. extra: 1141/1001,
  46424. bottom: 25/1166
  46425. }
  46426. },
  46427. },
  46428. [
  46429. {
  46430. name: "Normal",
  46431. height: math.unit(1, "meter"),
  46432. default: true
  46433. },
  46434. {
  46435. name: "Magic-Infused",
  46436. height: math.unit(5, "meters")
  46437. },
  46438. ]
  46439. ))
  46440. characterMakers.push(() => makeCharacter(
  46441. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46442. {
  46443. front: {
  46444. height: math.unit(5, "meters"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/cintia/front.svg",
  46448. extra: 1312/1228,
  46449. bottom: 38/1350
  46450. }
  46451. },
  46452. back: {
  46453. height: math.unit(5, "meters"),
  46454. name: "Back",
  46455. image: {
  46456. source: "./media/characters/cintia/back.svg",
  46457. extra: 1260/1166,
  46458. bottom: 98/1358
  46459. }
  46460. },
  46461. frontDick: {
  46462. height: math.unit(5, "meters"),
  46463. name: "Front (Dick)",
  46464. image: {
  46465. source: "./media/characters/cintia/front-dick.svg",
  46466. extra: 1312/1228,
  46467. bottom: 38/1350
  46468. }
  46469. },
  46470. backDick: {
  46471. height: math.unit(5, "meters"),
  46472. name: "Back (Dick)",
  46473. image: {
  46474. source: "./media/characters/cintia/back-dick.svg",
  46475. extra: 1260/1166,
  46476. bottom: 98/1358
  46477. }
  46478. },
  46479. bust: {
  46480. height: math.unit(1.97, "meters"),
  46481. name: "Bust",
  46482. image: {
  46483. source: "./media/characters/cintia/bust.svg",
  46484. extra: 617/565,
  46485. bottom: 0/617
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(5, "meters"),
  46493. default: true
  46494. },
  46495. ]
  46496. ))
  46497. characterMakers.push(() => makeCharacter(
  46498. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46499. {
  46500. side: {
  46501. height: math.unit(100, "feet"),
  46502. name: "Side",
  46503. image: {
  46504. source: "./media/characters/denora/side.svg",
  46505. extra: 875/803,
  46506. bottom: 9/884
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Standard",
  46513. height: math.unit(100, "feet"),
  46514. default: true
  46515. },
  46516. {
  46517. name: "Grand",
  46518. height: math.unit(1000, "feet")
  46519. },
  46520. {
  46521. name: "Conquering",
  46522. height: math.unit(10000, "feet")
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46528. {
  46529. dressed: {
  46530. height: math.unit(8 + 5/12, "feet"),
  46531. weight: math.unit(700, "lb"),
  46532. name: "Dressed",
  46533. image: {
  46534. source: "./media/characters/kiva/dressed.svg",
  46535. extra: 1102/1055,
  46536. bottom: 60/1162
  46537. }
  46538. },
  46539. nude: {
  46540. height: math.unit(8 + 5/12, "feet"),
  46541. weight: math.unit(700, "lb"),
  46542. name: "Nude",
  46543. image: {
  46544. source: "./media/characters/kiva/nude.svg",
  46545. extra: 1102/1055,
  46546. bottom: 60/1162
  46547. }
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Base Height",
  46553. height: math.unit(8 + 5/12, "feet"),
  46554. default: true
  46555. },
  46556. {
  46557. name: "Macro",
  46558. height: math.unit(100, "feet")
  46559. },
  46560. {
  46561. name: "Max",
  46562. height: math.unit(3280, "feet")
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(6 + 8/12, "feet"),
  46571. weight: math.unit(250, "lb"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/ztragon/front.svg",
  46575. extra: 1825/1684,
  46576. bottom: 98/1923
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(6 + 8/12, "feet"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Macro",
  46588. height: math.unit(80, "feet")
  46589. },
  46590. ]
  46591. ))
  46592. characterMakers.push(() => makeCharacter(
  46593. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46594. {
  46595. front: {
  46596. height: math.unit(10.4, "feet"),
  46597. weight: math.unit(2, "tons"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/yesenia/front.svg",
  46601. extra: 1479/1474,
  46602. bottom: 233/1712
  46603. }
  46604. },
  46605. },
  46606. [
  46607. {
  46608. name: "Normal",
  46609. height: math.unit(10.4, "feet"),
  46610. default: true
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46616. {
  46617. normal: {
  46618. height: math.unit(6 + 1/12, "feet"),
  46619. weight: math.unit(180, "lb"),
  46620. name: "Normal",
  46621. image: {
  46622. source: "./media/characters/leanne-lycheborne/normal.svg",
  46623. extra: 1748/1660,
  46624. bottom: 98/1846
  46625. }
  46626. },
  46627. were: {
  46628. height: math.unit(12, "feet"),
  46629. weight: math.unit(1600, "lb"),
  46630. name: "Were",
  46631. image: {
  46632. source: "./media/characters/leanne-lycheborne/were.svg",
  46633. extra: 1485/1432,
  46634. bottom: 66/1551
  46635. }
  46636. },
  46637. },
  46638. [
  46639. {
  46640. name: "Normal",
  46641. height: math.unit(6 + 1/12, "feet"),
  46642. default: true
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46648. {
  46649. side: {
  46650. height: math.unit(13, "feet"),
  46651. name: "Side",
  46652. image: {
  46653. source: "./media/characters/kira-tyler/side.svg",
  46654. extra: 693/393,
  46655. bottom: 58/751
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Normal",
  46662. height: math.unit(13, "feet"),
  46663. default: true
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46669. {
  46670. front: {
  46671. height: math.unit(10.3, "feet"),
  46672. weight: math.unit(150, "lb"),
  46673. name: "Front",
  46674. image: {
  46675. source: "./media/characters/blaze/front.svg",
  46676. extra: 1378/1286,
  46677. bottom: 172/1550
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(10.3, "feet"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46691. {
  46692. side: {
  46693. height: math.unit(2, "meters"),
  46694. weight: math.unit(400, "kg"),
  46695. name: "Side",
  46696. image: {
  46697. source: "./media/characters/anu/side.svg",
  46698. extra: 506/394,
  46699. bottom: 18/524
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Humanoid",
  46706. height: math.unit(2, "meters")
  46707. },
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(5, "meters"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(5 + 5/12, "feet"),
  46720. weight: math.unit(170, "lb"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/synx-the-lynx/front.svg",
  46724. extra: 1893/1745,
  46725. bottom: 17/1910
  46726. }
  46727. },
  46728. side: {
  46729. height: math.unit(5 + 5/12, "feet"),
  46730. weight: math.unit(170, "lb"),
  46731. name: "Side",
  46732. image: {
  46733. source: "./media/characters/synx-the-lynx/side.svg",
  46734. extra: 1884/1740,
  46735. bottom: 39/1923
  46736. }
  46737. },
  46738. back: {
  46739. height: math.unit(5 + 5/12, "feet"),
  46740. weight: math.unit(170, "lb"),
  46741. name: "Back",
  46742. image: {
  46743. source: "./media/characters/synx-the-lynx/back.svg",
  46744. extra: 1903/1755,
  46745. bottom: 14/1917
  46746. }
  46747. },
  46748. },
  46749. [
  46750. {
  46751. name: "Normal",
  46752. height: math.unit(5 + 5/12, "feet"),
  46753. default: true
  46754. },
  46755. ]
  46756. ))
  46757. characterMakers.push(() => makeCharacter(
  46758. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46759. {
  46760. back: {
  46761. height: math.unit(15, "feet"),
  46762. name: "Back",
  46763. image: {
  46764. source: "./media/characters/nadezda-fex/back.svg",
  46765. extra: 1695/1481,
  46766. bottom: 25/1720
  46767. }
  46768. },
  46769. },
  46770. [
  46771. {
  46772. name: "Normal",
  46773. height: math.unit(15, "feet"),
  46774. default: true
  46775. },
  46776. {
  46777. name: "Macro",
  46778. height: math.unit(2.5, "miles")
  46779. },
  46780. {
  46781. name: "Goddess",
  46782. height: math.unit(2, "multiverses")
  46783. },
  46784. ]
  46785. ))
  46786. characterMakers.push(() => makeCharacter(
  46787. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46788. {
  46789. front: {
  46790. height: math.unit(216, "cm"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/lev/front.svg",
  46794. extra: 1728/1670,
  46795. bottom: 82/1810
  46796. }
  46797. },
  46798. back: {
  46799. height: math.unit(216, "cm"),
  46800. name: "Back",
  46801. image: {
  46802. source: "./media/characters/lev/back.svg",
  46803. extra: 1738/1675,
  46804. bottom: 24/1762
  46805. }
  46806. },
  46807. dressed: {
  46808. height: math.unit(216, "cm"),
  46809. name: "Dressed",
  46810. image: {
  46811. source: "./media/characters/lev/dressed.svg",
  46812. extra: 1397/1351,
  46813. bottom: 73/1470
  46814. }
  46815. },
  46816. head: {
  46817. height: math.unit(0.51, "meter"),
  46818. name: "Head",
  46819. image: {
  46820. source: "./media/characters/lev/head.svg"
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Normal",
  46827. height: math.unit(216, "cm"),
  46828. default: true
  46829. },
  46830. {
  46831. name: "Relatively Macro",
  46832. height: math.unit(80, "meters")
  46833. },
  46834. {
  46835. name: "Megamacro",
  46836. height: math.unit(21600, "meters")
  46837. },
  46838. {
  46839. name: "Megamacro+",
  46840. height: math.unit(64800, "meters")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(2, "meters"),
  46849. weight: math.unit(80, "kg"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/moka/front.svg",
  46853. extra: 1337/1255,
  46854. bottom: 58/1395
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Micro",
  46861. height: math.unit(15, "cm")
  46862. },
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(2, "meters"),
  46866. default: true
  46867. },
  46868. {
  46869. name: "Macro",
  46870. height: math.unit(20, "meters"),
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46876. {
  46877. front: {
  46878. height: math.unit(9, "feet"),
  46879. weight: math.unit(240, "lb"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/kuzco/front.svg",
  46883. extra: 1593/1487,
  46884. bottom: 32/1625
  46885. }
  46886. },
  46887. side: {
  46888. height: math.unit(9, "feet"),
  46889. weight: math.unit(240, "lb"),
  46890. name: "Side",
  46891. image: {
  46892. source: "./media/characters/kuzco/side.svg",
  46893. extra: 1575/1485,
  46894. bottom: 30/1605
  46895. }
  46896. },
  46897. back: {
  46898. height: math.unit(9, "feet"),
  46899. weight: math.unit(240, "lb"),
  46900. name: "Back",
  46901. image: {
  46902. source: "./media/characters/kuzco/back.svg",
  46903. extra: 1603/1514,
  46904. bottom: 14/1617
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(9, "feet"),
  46912. default: true
  46913. },
  46914. ]
  46915. ))
  46916. characterMakers.push(() => makeCharacter(
  46917. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46918. {
  46919. side: {
  46920. height: math.unit(2, "meters"),
  46921. weight: math.unit(300, "kg"),
  46922. name: "Side",
  46923. image: {
  46924. source: "./media/characters/ceruleus/side.svg",
  46925. extra: 1068/974,
  46926. bottom: 126/1194
  46927. }
  46928. },
  46929. maw: {
  46930. height: math.unit(0.8125, "meter"),
  46931. name: "Maw",
  46932. image: {
  46933. source: "./media/characters/ceruleus/maw.svg"
  46934. }
  46935. },
  46936. },
  46937. [
  46938. {
  46939. name: "Normal",
  46940. height: math.unit(16, "meters"),
  46941. default: true
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46947. {
  46948. front: {
  46949. height: math.unit(9, "feet"),
  46950. weight: math.unit(500, "kg"),
  46951. name: "Front",
  46952. image: {
  46953. source: "./media/characters/acouya/front.svg",
  46954. extra: 1660/1473,
  46955. bottom: 28/1688
  46956. }
  46957. },
  46958. },
  46959. [
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(9, "feet"),
  46963. default: true
  46964. },
  46965. ]
  46966. ))
  46967. characterMakers.push(() => makeCharacter(
  46968. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46969. {
  46970. front: {
  46971. height: math.unit(5 + 6/12, "feet"),
  46972. weight: math.unit(195, "lb"),
  46973. name: "Front",
  46974. image: {
  46975. source: "./media/characters/vant/front.svg",
  46976. extra: 1396/1320,
  46977. bottom: 20/1416
  46978. }
  46979. },
  46980. back: {
  46981. height: math.unit(5 + 6/12, "feet"),
  46982. weight: math.unit(195, "lb"),
  46983. name: "Back",
  46984. image: {
  46985. source: "./media/characters/vant/back.svg",
  46986. extra: 1396/1320,
  46987. bottom: 20/1416
  46988. }
  46989. },
  46990. maw: {
  46991. height: math.unit(0.75, "feet"),
  46992. name: "Maw",
  46993. image: {
  46994. source: "./media/characters/vant/maw.svg"
  46995. }
  46996. },
  46997. paw: {
  46998. height: math.unit(1.07, "feet"),
  46999. name: "Paw",
  47000. image: {
  47001. source: "./media/characters/vant/paw.svg"
  47002. }
  47003. },
  47004. },
  47005. [
  47006. {
  47007. name: "Micro",
  47008. height: math.unit(0.25, "inches")
  47009. },
  47010. {
  47011. name: "Normal",
  47012. height: math.unit(5 + 6/12, "feet"),
  47013. default: true
  47014. },
  47015. {
  47016. name: "Macro",
  47017. height: math.unit(75, "feet")
  47018. },
  47019. ]
  47020. ))
  47021. characterMakers.push(() => makeCharacter(
  47022. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47023. {
  47024. front: {
  47025. height: math.unit(30, "meters"),
  47026. weight: math.unit(363, "tons"),
  47027. name: "Front",
  47028. image: {
  47029. source: "./media/characters/ahra/front.svg",
  47030. extra: 1914/1814,
  47031. bottom: 46/1960
  47032. }
  47033. },
  47034. },
  47035. [
  47036. {
  47037. name: "Macro",
  47038. height: math.unit(30, "meters"),
  47039. default: true
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47045. {
  47046. undressed: {
  47047. height: math.unit(2, "m"),
  47048. weight: math.unit(250, "kg"),
  47049. name: "Undressed",
  47050. image: {
  47051. source: "./media/characters/coriander/undressed.svg",
  47052. extra: 1757/1606,
  47053. bottom: 107/1864
  47054. }
  47055. },
  47056. dressed: {
  47057. height: math.unit(2, "m"),
  47058. weight: math.unit(250, "kg"),
  47059. name: "Dressed",
  47060. image: {
  47061. source: "./media/characters/coriander/dressed.svg",
  47062. extra: 1757/1606,
  47063. bottom: 107/1864
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(4, "meters"),
  47071. default: true
  47072. },
  47073. {
  47074. name: "XL",
  47075. height: math.unit(6, "meters")
  47076. },
  47077. {
  47078. name: "XXL",
  47079. height: math.unit(8, "meters")
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47085. {
  47086. front: {
  47087. height: math.unit(6, "feet"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/syrinx/front.svg",
  47091. extra: 1557/1259,
  47092. bottom: 171/1728
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(6 + 3/12, "feet"),
  47100. default: true
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(11 + 6/12, "feet"),
  47109. weight: math.unit(1.5, "tons"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/bor/front.svg",
  47113. extra: 1189/1109,
  47114. bottom: 170/1359
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(11 + 6/12, "feet"),
  47122. default: true
  47123. },
  47124. {
  47125. name: "Macro",
  47126. height: math.unit(32 + 9/12, "feet")
  47127. },
  47128. ]
  47129. ))
  47130. characterMakers.push(() => makeCharacter(
  47131. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47132. {
  47133. anthro: {
  47134. height: math.unit(9, "feet"),
  47135. weight: math.unit(2076, "lb"),
  47136. name: "Anthro",
  47137. image: {
  47138. source: "./media/characters/abacus/anthro.svg",
  47139. extra: 1540/1494,
  47140. bottom: 233/1773
  47141. }
  47142. },
  47143. pigeon: {
  47144. height: math.unit(1, "feet"),
  47145. name: "Pigeon",
  47146. image: {
  47147. source: "./media/characters/abacus/pigeon.svg",
  47148. extra: 528/525,
  47149. bottom: 46/574
  47150. }
  47151. },
  47152. },
  47153. [
  47154. {
  47155. name: "Normal",
  47156. height: math.unit(9, "feet"),
  47157. default: true
  47158. },
  47159. ]
  47160. ))
  47161. characterMakers.push(() => makeCharacter(
  47162. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47163. {
  47164. side: {
  47165. height: math.unit(6, "feet"),
  47166. name: "Side",
  47167. image: {
  47168. source: "./media/characters/delkhan/side.svg",
  47169. extra: 1884/1786,
  47170. bottom: 308/2192
  47171. }
  47172. },
  47173. head: {
  47174. height: math.unit(3.38, "feet"),
  47175. name: "Head",
  47176. image: {
  47177. source: "./media/characters/delkhan/head.svg"
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(72, "feet"),
  47185. default: true
  47186. },
  47187. {
  47188. name: "Giant",
  47189. height: math.unit(172, "feet")
  47190. },
  47191. ]
  47192. ))
  47193. characterMakers.push(() => makeCharacter(
  47194. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47195. {
  47196. standing: {
  47197. height: math.unit(6, "feet"),
  47198. name: "Standing",
  47199. image: {
  47200. source: "./media/characters/euchidat/standing.svg",
  47201. extra: 1612/1553,
  47202. bottom: 116/1728
  47203. }
  47204. },
  47205. leaning: {
  47206. height: math.unit(6, "feet"),
  47207. name: "Leaning",
  47208. image: {
  47209. source: "./media/characters/euchidat/leaning.svg",
  47210. extra: 1719/1674,
  47211. bottom: 27/1746
  47212. }
  47213. },
  47214. },
  47215. [
  47216. {
  47217. name: "Normal",
  47218. height: math.unit(175, "feet"),
  47219. default: true
  47220. },
  47221. {
  47222. name: "Megamacro",
  47223. height: math.unit(190, "miles")
  47224. },
  47225. {
  47226. name: "Gigamacro",
  47227. height: math.unit(190000, "miles")
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47233. {
  47234. front: {
  47235. height: math.unit(6, "feet"),
  47236. weight: math.unit(150, "lb"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/rebecca-stack/front.svg",
  47240. extra: 1256/1201,
  47241. bottom: 18/1274
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(5 + 8/12, "feet"),
  47249. default: true
  47250. },
  47251. {
  47252. name: "Demolitionist",
  47253. height: math.unit(200, "feet")
  47254. },
  47255. {
  47256. name: "Out of Control",
  47257. height: math.unit(2, "miles")
  47258. },
  47259. {
  47260. name: "Giga",
  47261. height: math.unit(7200, "miles")
  47262. },
  47263. ]
  47264. ))
  47265. characterMakers.push(() => makeCharacter(
  47266. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47267. {
  47268. front: {
  47269. height: math.unit(6, "feet"),
  47270. weight: math.unit(150, "lb"),
  47271. name: "Front",
  47272. image: {
  47273. source: "./media/characters/jenny-cartwright/front.svg",
  47274. extra: 1384/1376,
  47275. bottom: 58/1442
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Normal",
  47282. height: math.unit(6 + 7/12, "feet"),
  47283. default: true
  47284. },
  47285. {
  47286. name: "Librarian",
  47287. height: math.unit(55, "feet")
  47288. },
  47289. {
  47290. name: "Sightseer",
  47291. height: math.unit(50, "miles")
  47292. },
  47293. {
  47294. name: "Giga",
  47295. height: math.unit(30000, "miles")
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47301. {
  47302. nude: {
  47303. height: math.unit(8, "feet"),
  47304. weight: math.unit(225, "lb"),
  47305. name: "Nude",
  47306. image: {
  47307. source: "./media/characters/marvy/nude.svg",
  47308. extra: 1900/1683,
  47309. bottom: 89/1989
  47310. }
  47311. },
  47312. dressed: {
  47313. height: math.unit(8, "feet"),
  47314. weight: math.unit(225, "lb"),
  47315. name: "Dressed",
  47316. image: {
  47317. source: "./media/characters/marvy/dressed.svg",
  47318. extra: 1900/1683,
  47319. bottom: 89/1989
  47320. }
  47321. },
  47322. head: {
  47323. height: math.unit(2.85, "feet"),
  47324. name: "Head",
  47325. image: {
  47326. source: "./media/characters/marvy/head.svg"
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(8, "feet"),
  47334. default: true
  47335. },
  47336. ]
  47337. ))
  47338. characterMakers.push(() => makeCharacter(
  47339. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47340. {
  47341. front: {
  47342. height: math.unit(8, "feet"),
  47343. weight: math.unit(250, "lb"),
  47344. name: "Front",
  47345. image: {
  47346. source: "./media/characters/leah/front.svg",
  47347. extra: 1257/1149,
  47348. bottom: 109/1366
  47349. }
  47350. },
  47351. },
  47352. [
  47353. {
  47354. name: "Normal",
  47355. height: math.unit(8, "feet"),
  47356. default: true
  47357. },
  47358. {
  47359. name: "Minimacro",
  47360. height: math.unit(40, "feet")
  47361. },
  47362. {
  47363. name: "Macro",
  47364. height: math.unit(124, "feet")
  47365. },
  47366. {
  47367. name: "Megamacro",
  47368. height: math.unit(850, "feet")
  47369. },
  47370. ]
  47371. ))
  47372. characterMakers.push(() => makeCharacter(
  47373. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47374. {
  47375. side: {
  47376. height: math.unit(13 + 6/12, "feet"),
  47377. weight: math.unit(3200, "lb"),
  47378. name: "Side",
  47379. image: {
  47380. source: "./media/characters/alvir/side.svg",
  47381. extra: 896/589,
  47382. bottom: 26/922
  47383. }
  47384. },
  47385. },
  47386. [
  47387. {
  47388. name: "Normal",
  47389. height: math.unit(13 + 6/12, "feet"),
  47390. default: true
  47391. },
  47392. ]
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47396. {
  47397. front: {
  47398. height: math.unit(5 + 4/12, "feet"),
  47399. weight: math.unit(236, "lb"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/zaina-khalil/front.svg",
  47403. extra: 1533/1485,
  47404. bottom: 94/1627
  47405. }
  47406. },
  47407. side: {
  47408. height: math.unit(5 + 4/12, "feet"),
  47409. weight: math.unit(236, "lb"),
  47410. name: "Side",
  47411. image: {
  47412. source: "./media/characters/zaina-khalil/side.svg",
  47413. extra: 1537/1498,
  47414. bottom: 66/1603
  47415. }
  47416. },
  47417. back: {
  47418. height: math.unit(5 + 4/12, "feet"),
  47419. weight: math.unit(236, "lb"),
  47420. name: "Back",
  47421. image: {
  47422. source: "./media/characters/zaina-khalil/back.svg",
  47423. extra: 1546/1494,
  47424. bottom: 89/1635
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(5 + 4/12, "feet"),
  47432. default: true
  47433. },
  47434. ]
  47435. ))
  47436. characterMakers.push(() => makeCharacter(
  47437. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47438. {
  47439. side: {
  47440. height: math.unit(12, "feet"),
  47441. weight: math.unit(4000, "lb"),
  47442. name: "Side",
  47443. image: {
  47444. source: "./media/characters/terry/side.svg",
  47445. extra: 1518/1439,
  47446. bottom: 149/1667
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(12, "feet"),
  47454. default: true
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(12, "feet"),
  47463. weight: math.unit(1500, "lb"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/kahea/front.svg",
  47467. extra: 1722/1617,
  47468. bottom: 179/1901
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Normal",
  47475. height: math.unit(12, "feet"),
  47476. default: true
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47482. {
  47483. demonFront: {
  47484. height: math.unit(36, "feet"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/alex-xuria/demon-front.svg",
  47488. extra: 1705/1673,
  47489. bottom: 198/1903
  47490. },
  47491. form: "demon",
  47492. default: true
  47493. },
  47494. demonBack: {
  47495. height: math.unit(36, "feet"),
  47496. name: "Back",
  47497. image: {
  47498. source: "./media/characters/alex-xuria/demon-back.svg",
  47499. extra: 1725/1693,
  47500. bottom: 70/1795
  47501. },
  47502. form: "demon"
  47503. },
  47504. demonHead: {
  47505. height: math.unit(2.14, "meters"),
  47506. name: "Head",
  47507. image: {
  47508. source: "./media/characters/alex-xuria/demon-head.svg"
  47509. },
  47510. form: "demon"
  47511. },
  47512. demonHand: {
  47513. height: math.unit(1.61, "meters"),
  47514. name: "Hand",
  47515. image: {
  47516. source: "./media/characters/alex-xuria/demon-hand.svg"
  47517. },
  47518. form: "demon"
  47519. },
  47520. demonPaw: {
  47521. height: math.unit(1.35, "meters"),
  47522. name: "Paw",
  47523. image: {
  47524. source: "./media/characters/alex-xuria/demon-paw.svg"
  47525. },
  47526. form: "demon"
  47527. },
  47528. demonFoot: {
  47529. height: math.unit(2.2, "meters"),
  47530. name: "Foot",
  47531. image: {
  47532. source: "./media/characters/alex-xuria/demon-foot.svg"
  47533. },
  47534. form: "demon"
  47535. },
  47536. demonCock: {
  47537. height: math.unit(1.74, "meters"),
  47538. name: "Cock",
  47539. image: {
  47540. source: "./media/characters/alex-xuria/demon-cock.svg"
  47541. },
  47542. form: "demon"
  47543. },
  47544. demonTailClosed: {
  47545. height: math.unit(1.47, "meters"),
  47546. name: "Tail (Closed)",
  47547. image: {
  47548. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47549. },
  47550. form: "demon"
  47551. },
  47552. demonTailOpen: {
  47553. height: math.unit(2.85, "meters"),
  47554. name: "Tail (Open)",
  47555. image: {
  47556. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47557. },
  47558. form: "demon"
  47559. },
  47560. incubusFront: {
  47561. height: math.unit(12, "feet"),
  47562. name: "Front",
  47563. image: {
  47564. source: "./media/characters/alex-xuria/incubus-front.svg",
  47565. extra: 1754/1677,
  47566. bottom: 125/1879
  47567. },
  47568. form: "incubus",
  47569. default: true
  47570. },
  47571. incubusBack: {
  47572. height: math.unit(12, "feet"),
  47573. name: "Back",
  47574. image: {
  47575. source: "./media/characters/alex-xuria/incubus-back.svg",
  47576. extra: 1702/1647,
  47577. bottom: 30/1732
  47578. },
  47579. form: "incubus"
  47580. },
  47581. incubusHead: {
  47582. height: math.unit(3.45, "feet"),
  47583. name: "Head",
  47584. image: {
  47585. source: "./media/characters/alex-xuria/incubus-head.svg"
  47586. },
  47587. form: "incubus"
  47588. },
  47589. rabbitFront: {
  47590. height: math.unit(6, "feet"),
  47591. name: "Front",
  47592. image: {
  47593. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47594. extra: 1369/1349,
  47595. bottom: 45/1414
  47596. },
  47597. form: "rabbit",
  47598. default: true
  47599. },
  47600. rabbitSide: {
  47601. height: math.unit(6, "feet"),
  47602. name: "Side",
  47603. image: {
  47604. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47605. extra: 1370/1356,
  47606. bottom: 37/1407
  47607. },
  47608. form: "rabbit"
  47609. },
  47610. rabbitBack: {
  47611. height: math.unit(6, "feet"),
  47612. name: "Back",
  47613. image: {
  47614. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47615. extra: 1375/1358,
  47616. bottom: 43/1418
  47617. },
  47618. form: "rabbit"
  47619. },
  47620. },
  47621. [
  47622. {
  47623. name: "Normal",
  47624. height: math.unit(6, "feet"),
  47625. default: true,
  47626. form: "rabbit"
  47627. },
  47628. {
  47629. name: "Incubus",
  47630. height: math.unit(12, "feet"),
  47631. default: true,
  47632. form: "incubus"
  47633. },
  47634. {
  47635. name: "Demon",
  47636. height: math.unit(36, "feet"),
  47637. default: true,
  47638. form: "demon"
  47639. }
  47640. ],
  47641. {
  47642. "demon": {
  47643. name: "Demon",
  47644. default: true
  47645. },
  47646. "incubus": {
  47647. name: "Incubus",
  47648. },
  47649. "rabbit": {
  47650. name: "Rabbit"
  47651. }
  47652. }
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47656. {
  47657. front: {
  47658. height: math.unit(7 + 5/12, "feet"),
  47659. weight: math.unit(510, "lb"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/syrup/front.svg",
  47663. extra: 932/916,
  47664. bottom: 26/958
  47665. }
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(7 + 5/12, "feet"),
  47672. default: true
  47673. },
  47674. {
  47675. name: "Big",
  47676. height: math.unit(50, "feet")
  47677. },
  47678. {
  47679. name: "Macro",
  47680. height: math.unit(300, "feet")
  47681. },
  47682. {
  47683. name: "Megamacro",
  47684. height: math.unit(1, "mile")
  47685. },
  47686. ]
  47687. ))
  47688. characterMakers.push(() => makeCharacter(
  47689. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47690. {
  47691. front: {
  47692. height: math.unit(6 + 9/12, "feet"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/zeimne/front.svg",
  47696. extra: 1969/1806,
  47697. bottom: 53/2022
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(6 + 9/12, "feet"),
  47705. default: true
  47706. },
  47707. {
  47708. name: "Giant",
  47709. height: math.unit(550, "feet")
  47710. },
  47711. {
  47712. name: "Mega",
  47713. height: math.unit(3, "miles")
  47714. },
  47715. {
  47716. name: "Giga",
  47717. height: math.unit(250, "miles")
  47718. },
  47719. {
  47720. name: "Tera",
  47721. height: math.unit(1, "AU")
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47727. {
  47728. front: {
  47729. height: math.unit(5 + 2/12, "feet"),
  47730. name: "Front",
  47731. image: {
  47732. source: "./media/characters/grar/front.svg",
  47733. extra: 1331/1119,
  47734. bottom: 60/1391
  47735. }
  47736. },
  47737. back: {
  47738. height: math.unit(5 + 2/12, "feet"),
  47739. name: "Back",
  47740. image: {
  47741. source: "./media/characters/grar/back.svg",
  47742. extra: 1385/1169,
  47743. bottom: 23/1408
  47744. }
  47745. },
  47746. },
  47747. [
  47748. {
  47749. name: "Normal",
  47750. height: math.unit(5 + 2/12, "feet"),
  47751. default: true
  47752. },
  47753. ]
  47754. ))
  47755. characterMakers.push(() => makeCharacter(
  47756. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47757. {
  47758. front: {
  47759. height: math.unit(13 + 7/12, "feet"),
  47760. weight: math.unit(2200, "lb"),
  47761. name: "Front",
  47762. image: {
  47763. source: "./media/characters/endraya/front.svg",
  47764. extra: 1289/1215,
  47765. bottom: 50/1339
  47766. }
  47767. },
  47768. nude: {
  47769. height: math.unit(13 + 7/12, "feet"),
  47770. weight: math.unit(2200, "lb"),
  47771. name: "Nude",
  47772. image: {
  47773. source: "./media/characters/endraya/nude.svg",
  47774. extra: 1247/1171,
  47775. bottom: 40/1287
  47776. }
  47777. },
  47778. head: {
  47779. height: math.unit(2.6, "feet"),
  47780. name: "Head",
  47781. image: {
  47782. source: "./media/characters/endraya/head.svg"
  47783. }
  47784. },
  47785. slit: {
  47786. height: math.unit(3.4, "feet"),
  47787. name: "Slit",
  47788. image: {
  47789. source: "./media/characters/endraya/slit.svg"
  47790. }
  47791. },
  47792. },
  47793. [
  47794. {
  47795. name: "Normal",
  47796. height: math.unit(13 + 7/12, "feet"),
  47797. default: true
  47798. },
  47799. {
  47800. name: "Macro",
  47801. height: math.unit(200, "feet")
  47802. },
  47803. ]
  47804. ))
  47805. characterMakers.push(() => makeCharacter(
  47806. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47807. {
  47808. front: {
  47809. height: math.unit(1.81, "meters"),
  47810. weight: math.unit(69, "kg"),
  47811. name: "Front",
  47812. image: {
  47813. source: "./media/characters/rodryana/front.svg",
  47814. extra: 2002/1921,
  47815. bottom: 53/2055
  47816. }
  47817. },
  47818. back: {
  47819. height: math.unit(1.81, "meters"),
  47820. weight: math.unit(69, "kg"),
  47821. name: "Back",
  47822. image: {
  47823. source: "./media/characters/rodryana/back.svg",
  47824. extra: 1993/1926,
  47825. bottom: 48/2041
  47826. }
  47827. },
  47828. maw: {
  47829. height: math.unit(0.19769417475, "meters"),
  47830. name: "Maw",
  47831. image: {
  47832. source: "./media/characters/rodryana/maw.svg"
  47833. }
  47834. },
  47835. slit: {
  47836. height: math.unit(0.31631067961, "meters"),
  47837. name: "Slit",
  47838. image: {
  47839. source: "./media/characters/rodryana/slit.svg"
  47840. }
  47841. },
  47842. },
  47843. [
  47844. {
  47845. name: "Normal",
  47846. height: math.unit(1.81, "meters")
  47847. },
  47848. {
  47849. name: "Mini Macro",
  47850. height: math.unit(181, "meters")
  47851. },
  47852. {
  47853. name: "Macro",
  47854. height: math.unit(452, "meters"),
  47855. default: true
  47856. },
  47857. {
  47858. name: "Mega Macro",
  47859. height: math.unit(1.375, "km")
  47860. },
  47861. {
  47862. name: "Giga Macro",
  47863. height: math.unit(13.575, "km")
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(6, "feet"),
  47872. weight: math.unit(1000, "lb"),
  47873. name: "Front",
  47874. image: {
  47875. source: "./media/characters/asaya/front.svg",
  47876. extra: 1460/1200,
  47877. bottom: 71/1531
  47878. }
  47879. },
  47880. },
  47881. [
  47882. {
  47883. name: "Normal",
  47884. height: math.unit(8, "km"),
  47885. default: true
  47886. },
  47887. ]
  47888. ))
  47889. characterMakers.push(() => makeCharacter(
  47890. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47891. {
  47892. front: {
  47893. height: math.unit(3.5, "meters"),
  47894. name: "Front",
  47895. image: {
  47896. source: "./media/characters/sarzu-and-israz/front.svg",
  47897. extra: 1570/1558,
  47898. bottom: 150/1720
  47899. },
  47900. },
  47901. back: {
  47902. height: math.unit(3.5, "meters"),
  47903. name: "Back",
  47904. image: {
  47905. source: "./media/characters/sarzu-and-israz/back.svg",
  47906. extra: 1523/1509,
  47907. bottom: 132/1655
  47908. },
  47909. },
  47910. frontFemale: {
  47911. height: math.unit(3.5, "meters"),
  47912. name: "Front (Female)",
  47913. image: {
  47914. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47915. extra: 1570/1558,
  47916. bottom: 150/1720
  47917. },
  47918. },
  47919. frontHerm: {
  47920. height: math.unit(3.5, "meters"),
  47921. name: "Front (Herm)",
  47922. image: {
  47923. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47924. extra: 1570/1558,
  47925. bottom: 150/1720
  47926. },
  47927. },
  47928. },
  47929. [
  47930. {
  47931. name: "Normal",
  47932. height: math.unit(3.5, "meters"),
  47933. default: true,
  47934. },
  47935. {
  47936. name: "Macro",
  47937. height: math.unit(65.5, "meters"),
  47938. },
  47939. ],
  47940. ))
  47941. characterMakers.push(() => makeCharacter(
  47942. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47943. {
  47944. front: {
  47945. height: math.unit(6, "feet"),
  47946. weight: math.unit(250, "lb"),
  47947. name: "Front",
  47948. image: {
  47949. source: "./media/characters/zenimma/front.svg",
  47950. extra: 1346/1320,
  47951. bottom: 58/1404
  47952. }
  47953. },
  47954. back: {
  47955. height: math.unit(6, "feet"),
  47956. weight: math.unit(250, "lb"),
  47957. name: "Back",
  47958. image: {
  47959. source: "./media/characters/zenimma/back.svg",
  47960. extra: 1324/1308,
  47961. bottom: 44/1368
  47962. }
  47963. },
  47964. dick: {
  47965. height: math.unit(1.44, "feet"),
  47966. name: "Dick",
  47967. image: {
  47968. source: "./media/characters/zenimma/dick.svg"
  47969. }
  47970. },
  47971. },
  47972. [
  47973. {
  47974. name: "Canon Height",
  47975. height: math.unit(66, "miles"),
  47976. default: true
  47977. },
  47978. ]
  47979. ))
  47980. characterMakers.push(() => makeCharacter(
  47981. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47982. {
  47983. nude: {
  47984. height: math.unit(6, "feet"),
  47985. weight: math.unit(150, "lb"),
  47986. name: "Nude",
  47987. image: {
  47988. source: "./media/characters/shavon/nude.svg",
  47989. extra: 1242/1096,
  47990. bottom: 98/1340
  47991. }
  47992. },
  47993. dressed: {
  47994. height: math.unit(6, "feet"),
  47995. weight: math.unit(150, "lb"),
  47996. name: "Dressed",
  47997. image: {
  47998. source: "./media/characters/shavon/dressed.svg",
  47999. extra: 1242/1096,
  48000. bottom: 98/1340
  48001. }
  48002. },
  48003. },
  48004. [
  48005. {
  48006. name: "Macro",
  48007. height: math.unit(255, "feet"),
  48008. default: true
  48009. },
  48010. ]
  48011. ))
  48012. characterMakers.push(() => makeCharacter(
  48013. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48014. {
  48015. front: {
  48016. height: math.unit(6, "feet"),
  48017. name: "Front",
  48018. image: {
  48019. source: "./media/characters/steph/front.svg",
  48020. extra: 1430/1330,
  48021. bottom: 54/1484
  48022. }
  48023. },
  48024. },
  48025. [
  48026. {
  48027. name: "Normal",
  48028. height: math.unit(6, "feet"),
  48029. default: true
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48035. {
  48036. front: {
  48037. height: math.unit(9, "feet"),
  48038. weight: math.unit(400, "lb"),
  48039. name: "Front",
  48040. image: {
  48041. source: "./media/characters/kil'aman/front.svg",
  48042. extra: 1210/1159,
  48043. bottom: 109/1319
  48044. }
  48045. },
  48046. head: {
  48047. height: math.unit(2.14, "feet"),
  48048. name: "Head",
  48049. image: {
  48050. source: "./media/characters/kil'aman/head.svg"
  48051. }
  48052. },
  48053. maw: {
  48054. height: math.unit(1.21, "feet"),
  48055. name: "Maw",
  48056. image: {
  48057. source: "./media/characters/kil'aman/maw.svg"
  48058. }
  48059. },
  48060. foot: {
  48061. height: math.unit(1.7, "feet"),
  48062. name: "Foot",
  48063. image: {
  48064. source: "./media/characters/kil'aman/foot.svg"
  48065. }
  48066. },
  48067. dick: {
  48068. height: math.unit(2.1, "feet"),
  48069. name: "Dick",
  48070. image: {
  48071. source: "./media/characters/kil'aman/dick.svg"
  48072. }
  48073. },
  48074. },
  48075. [
  48076. {
  48077. name: "Normal",
  48078. height: math.unit(9, "feet")
  48079. },
  48080. {
  48081. name: "Canon Height",
  48082. height: math.unit(10, "miles"),
  48083. default: true
  48084. },
  48085. {
  48086. name: "Maximum",
  48087. height: math.unit(6e9, "miles")
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(90, "feet"),
  48096. weight: math.unit(675000, "lb"),
  48097. name: "Front",
  48098. image: {
  48099. source: "./media/characters/qadan/front.svg",
  48100. extra: 1012/1004,
  48101. bottom: 78/1090
  48102. }
  48103. },
  48104. back: {
  48105. height: math.unit(90, "feet"),
  48106. weight: math.unit(675000, "lb"),
  48107. name: "Back",
  48108. image: {
  48109. source: "./media/characters/qadan/back.svg",
  48110. extra: 1042/1031,
  48111. bottom: 55/1097
  48112. }
  48113. },
  48114. armored: {
  48115. height: math.unit(90, "feet"),
  48116. weight: math.unit(675000, "lb"),
  48117. name: "Armored",
  48118. image: {
  48119. source: "./media/characters/qadan/armored.svg",
  48120. extra: 1047/1037,
  48121. bottom: 48/1095
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(90, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48135. {
  48136. front: {
  48137. height: math.unit(6, "feet"),
  48138. weight: math.unit(225, "lb"),
  48139. name: "Front",
  48140. image: {
  48141. source: "./media/characters/brooke/front.svg",
  48142. extra: 1050/1010,
  48143. bottom: 66/1116
  48144. }
  48145. },
  48146. back: {
  48147. height: math.unit(6, "feet"),
  48148. weight: math.unit(225, "lb"),
  48149. name: "Back",
  48150. image: {
  48151. source: "./media/characters/brooke/back.svg",
  48152. extra: 1053/1013,
  48153. bottom: 41/1094
  48154. }
  48155. },
  48156. dressed: {
  48157. height: math.unit(6, "feet"),
  48158. weight: math.unit(225, "lb"),
  48159. name: "Dressed",
  48160. image: {
  48161. source: "./media/characters/brooke/dressed.svg",
  48162. extra: 1050/1010,
  48163. bottom: 66/1116
  48164. }
  48165. },
  48166. },
  48167. [
  48168. {
  48169. name: "Canon Height",
  48170. height: math.unit(500, "miles"),
  48171. default: true
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48177. {
  48178. front: {
  48179. height: math.unit(6 + 2/12, "feet"),
  48180. weight: math.unit(210, "lb"),
  48181. name: "Front",
  48182. image: {
  48183. source: "./media/characters/wubs/front.svg",
  48184. extra: 1345/1325,
  48185. bottom: 70/1415
  48186. }
  48187. },
  48188. back: {
  48189. height: math.unit(6 + 2/12, "feet"),
  48190. weight: math.unit(210, "lb"),
  48191. name: "Back",
  48192. image: {
  48193. source: "./media/characters/wubs/back.svg",
  48194. extra: 1296/1275,
  48195. bottom: 58/1354
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(6 + 2/12, "feet"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Macro",
  48207. height: math.unit(1000, "feet")
  48208. },
  48209. {
  48210. name: "Megamacro",
  48211. height: math.unit(1, "mile")
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(4, "feet"),
  48220. weight: math.unit(120, "lb"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/blue/front.svg",
  48224. extra: 1636/1525,
  48225. bottom: 43/1679
  48226. }
  48227. },
  48228. back: {
  48229. height: math.unit(4, "feet"),
  48230. weight: math.unit(120, "lb"),
  48231. name: "Back",
  48232. image: {
  48233. source: "./media/characters/blue/back.svg",
  48234. extra: 1660/1560,
  48235. bottom: 57/1717
  48236. }
  48237. },
  48238. paws: {
  48239. height: math.unit(0.826, "feet"),
  48240. name: "Paws",
  48241. image: {
  48242. source: "./media/characters/blue/paws.svg"
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Micro",
  48249. height: math.unit(3, "inches")
  48250. },
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(4, "feet"),
  48254. default: true
  48255. },
  48256. {
  48257. name: "Femenine Form",
  48258. height: math.unit(14, "feet")
  48259. },
  48260. {
  48261. name: "Werebat Form",
  48262. height: math.unit(18, "feet")
  48263. },
  48264. ]
  48265. ))
  48266. characterMakers.push(() => makeCharacter(
  48267. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48268. {
  48269. female: {
  48270. height: math.unit(7 + 4/12, "feet"),
  48271. weight: math.unit(243, "lb"),
  48272. name: "Female",
  48273. image: {
  48274. source: "./media/characters/kaya/female.svg",
  48275. extra: 975/898,
  48276. bottom: 34/1009
  48277. }
  48278. },
  48279. herm: {
  48280. height: math.unit(7 + 4/12, "feet"),
  48281. weight: math.unit(243, "lb"),
  48282. name: "Herm",
  48283. image: {
  48284. source: "./media/characters/kaya/herm.svg",
  48285. extra: 975/898,
  48286. bottom: 34/1009
  48287. }
  48288. },
  48289. },
  48290. [
  48291. {
  48292. name: "Normal",
  48293. height: math.unit(7 + 4/12, "feet"),
  48294. default: true
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48300. {
  48301. female: {
  48302. height: math.unit(9 + 4/12, "feet"),
  48303. weight: math.unit(398, "lb"),
  48304. name: "Female",
  48305. image: {
  48306. source: "./media/characters/kassandra/female.svg",
  48307. extra: 908/839,
  48308. bottom: 61/969
  48309. }
  48310. },
  48311. intersex: {
  48312. height: math.unit(9 + 4/12, "feet"),
  48313. weight: math.unit(398, "lb"),
  48314. name: "Intersex",
  48315. image: {
  48316. source: "./media/characters/kassandra/intersex.svg",
  48317. extra: 908/839,
  48318. bottom: 61/969
  48319. }
  48320. },
  48321. },
  48322. [
  48323. {
  48324. name: "Normal",
  48325. height: math.unit(9 + 4/12, "feet"),
  48326. default: true
  48327. },
  48328. ]
  48329. ))
  48330. characterMakers.push(() => makeCharacter(
  48331. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48332. {
  48333. front: {
  48334. height: math.unit(3, "meters"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/amy/front.svg",
  48338. extra: 1380/1343,
  48339. bottom: 70/1450
  48340. }
  48341. },
  48342. back: {
  48343. height: math.unit(3, "meters"),
  48344. name: "Back",
  48345. image: {
  48346. source: "./media/characters/amy/back.svg",
  48347. extra: 1380/1347,
  48348. bottom: 66/1446
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(3, "meters"),
  48356. default: true
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48362. {
  48363. side: {
  48364. height: math.unit(47, "cm"),
  48365. weight: math.unit(10.8, "kg"),
  48366. name: "Side",
  48367. image: {
  48368. source: "./media/characters/alphaschakal/side.svg",
  48369. extra: 1058/568,
  48370. bottom: 62/1120
  48371. }
  48372. },
  48373. back: {
  48374. height: math.unit(78, "cm"),
  48375. weight: math.unit(10.8, "kg"),
  48376. name: "Back",
  48377. image: {
  48378. source: "./media/characters/alphaschakal/back.svg",
  48379. extra: 1102/942,
  48380. bottom: 185/1287
  48381. }
  48382. },
  48383. head: {
  48384. height: math.unit(28, "cm"),
  48385. name: "Head",
  48386. image: {
  48387. source: "./media/characters/alphaschakal/head.svg",
  48388. extra: 696/508,
  48389. bottom: 0/696
  48390. }
  48391. },
  48392. paw: {
  48393. height: math.unit(16, "cm"),
  48394. name: "Paw",
  48395. image: {
  48396. source: "./media/characters/alphaschakal/paw.svg"
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(47, "cm"),
  48404. default: true
  48405. },
  48406. {
  48407. name: "Macro",
  48408. height: math.unit(340, "cm")
  48409. },
  48410. ]
  48411. ))
  48412. characterMakers.push(() => makeCharacter(
  48413. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48414. {
  48415. front: {
  48416. height: math.unit(36, "earths"),
  48417. name: "Front",
  48418. image: {
  48419. source: "./media/characters/ecobyss/front.svg",
  48420. extra: 1282/1215,
  48421. bottom: 11/1293
  48422. }
  48423. },
  48424. back: {
  48425. height: math.unit(36, "earths"),
  48426. name: "Back",
  48427. image: {
  48428. source: "./media/characters/ecobyss/back.svg",
  48429. extra: 1291/1222,
  48430. bottom: 8/1299
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(36, "earths"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48444. {
  48445. front: {
  48446. height: math.unit(12, "feet"),
  48447. name: "Front",
  48448. image: {
  48449. source: "./media/characters/vasuk/front.svg",
  48450. extra: 1326/1207,
  48451. bottom: 64/1390
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(12, "feet"),
  48459. default: true
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48465. {
  48466. side: {
  48467. height: math.unit(100, "feet"),
  48468. name: "Side",
  48469. image: {
  48470. source: "./media/characters/linneaus/side.svg",
  48471. extra: 987/807,
  48472. bottom: 47/1034
  48473. }
  48474. },
  48475. },
  48476. [
  48477. {
  48478. name: "Macro",
  48479. height: math.unit(100, "feet"),
  48480. default: true
  48481. },
  48482. ]
  48483. ))
  48484. characterMakers.push(() => makeCharacter(
  48485. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48486. {
  48487. front: {
  48488. height: math.unit(8, "feet"),
  48489. weight: math.unit(1200, "lb"),
  48490. name: "Front",
  48491. image: {
  48492. source: "./media/characters/nyterious-daligdig/front.svg",
  48493. extra: 1284/1094,
  48494. bottom: 84/1368
  48495. }
  48496. },
  48497. back: {
  48498. height: math.unit(8, "feet"),
  48499. weight: math.unit(1200, "lb"),
  48500. name: "Back",
  48501. image: {
  48502. source: "./media/characters/nyterious-daligdig/back.svg",
  48503. extra: 1301/1121,
  48504. bottom: 129/1430
  48505. }
  48506. },
  48507. mouth: {
  48508. height: math.unit(1.464, "feet"),
  48509. name: "Mouth",
  48510. image: {
  48511. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48512. }
  48513. },
  48514. },
  48515. [
  48516. {
  48517. name: "Small",
  48518. height: math.unit(8, "feet"),
  48519. default: true
  48520. },
  48521. {
  48522. name: "Normal",
  48523. height: math.unit(15, "feet")
  48524. },
  48525. {
  48526. name: "Macro",
  48527. height: math.unit(90, "feet")
  48528. },
  48529. ]
  48530. ))
  48531. characterMakers.push(() => makeCharacter(
  48532. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48533. {
  48534. front: {
  48535. height: math.unit(7 + 4/12, "feet"),
  48536. weight: math.unit(252, "lb"),
  48537. name: "Front",
  48538. image: {
  48539. source: "./media/characters/bandel/front.svg",
  48540. extra: 1946/1775,
  48541. bottom: 26/1972
  48542. }
  48543. },
  48544. back: {
  48545. height: math.unit(7 + 4/12, "feet"),
  48546. weight: math.unit(252, "lb"),
  48547. name: "Back",
  48548. image: {
  48549. source: "./media/characters/bandel/back.svg",
  48550. extra: 1940/1770,
  48551. bottom: 25/1965
  48552. }
  48553. },
  48554. maw: {
  48555. height: math.unit(2.15, "feet"),
  48556. name: "Maw",
  48557. image: {
  48558. source: "./media/characters/bandel/maw.svg"
  48559. }
  48560. },
  48561. stomach: {
  48562. height: math.unit(1.95, "feet"),
  48563. name: "Stomach",
  48564. image: {
  48565. source: "./media/characters/bandel/stomach.svg"
  48566. }
  48567. },
  48568. },
  48569. [
  48570. {
  48571. name: "Normal",
  48572. height: math.unit(7 + 4/12, "feet"),
  48573. default: true
  48574. },
  48575. ]
  48576. ))
  48577. characterMakers.push(() => makeCharacter(
  48578. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48579. {
  48580. front: {
  48581. height: math.unit(10 + 5/12, "feet"),
  48582. weight: math.unit(773.5, "kg"),
  48583. name: "Front",
  48584. image: {
  48585. source: "./media/characters/zed/front.svg",
  48586. extra: 987/941,
  48587. bottom: 52/1039
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Short",
  48594. height: math.unit(5 + 4/12, "feet")
  48595. },
  48596. {
  48597. name: "Average",
  48598. height: math.unit(10 + 5/12, "feet"),
  48599. default: true
  48600. },
  48601. {
  48602. name: "Mini-Macro",
  48603. height: math.unit(24 + 9/12, "feet")
  48604. },
  48605. {
  48606. name: "Macro",
  48607. height: math.unit(249, "feet")
  48608. },
  48609. {
  48610. name: "Mega-Macro",
  48611. height: math.unit(12490, "feet")
  48612. },
  48613. {
  48614. name: "Giga-Macro",
  48615. height: math.unit(24.9, "miles")
  48616. },
  48617. {
  48618. name: "Tera-Macro",
  48619. height: math.unit(24900, "miles")
  48620. },
  48621. {
  48622. name: "Cosmic Scale",
  48623. height: math.unit(38.9, "lightyears")
  48624. },
  48625. {
  48626. name: "Universal Scale",
  48627. height: math.unit(138e12, "lightyears")
  48628. },
  48629. ]
  48630. ))
  48631. characterMakers.push(() => makeCharacter(
  48632. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48633. {
  48634. front: {
  48635. height: math.unit(1561, "inches"),
  48636. name: "Front",
  48637. image: {
  48638. source: "./media/characters/ivan/front.svg",
  48639. extra: 1126/1071,
  48640. bottom: 26/1152
  48641. }
  48642. },
  48643. back: {
  48644. height: math.unit(1561, "inches"),
  48645. name: "Back",
  48646. image: {
  48647. source: "./media/characters/ivan/back.svg",
  48648. extra: 1134/1079,
  48649. bottom: 30/1164
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Normal",
  48656. height: math.unit(1561, "inches"),
  48657. default: true
  48658. },
  48659. ]
  48660. ))
  48661. characterMakers.push(() => makeCharacter(
  48662. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48663. {
  48664. front: {
  48665. height: math.unit(5 + 7/12, "feet"),
  48666. weight: math.unit(150, "lb"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/robin-arctic-hare/front.svg",
  48670. extra: 1148/974,
  48671. bottom: 20/1168
  48672. }
  48673. },
  48674. },
  48675. [
  48676. {
  48677. name: "Normal",
  48678. height: math.unit(5 + 7/12, "feet"),
  48679. default: true
  48680. },
  48681. ]
  48682. ))
  48683. characterMakers.push(() => makeCharacter(
  48684. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48685. {
  48686. side: {
  48687. height: math.unit(5, "feet"),
  48688. name: "Side",
  48689. image: {
  48690. source: "./media/characters/birch/side.svg",
  48691. extra: 985/796,
  48692. bottom: 111/1096
  48693. }
  48694. },
  48695. },
  48696. [
  48697. {
  48698. name: "Normal",
  48699. height: math.unit(5, "feet"),
  48700. default: true
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48706. {
  48707. front: {
  48708. height: math.unit(4, "feet"),
  48709. name: "Front",
  48710. image: {
  48711. source: "./media/characters/rasp/front.svg",
  48712. extra: 561/478,
  48713. bottom: 74/635
  48714. }
  48715. },
  48716. },
  48717. [
  48718. {
  48719. name: "Normal",
  48720. height: math.unit(4, "feet"),
  48721. default: true
  48722. },
  48723. ]
  48724. ))
  48725. characterMakers.push(() => makeCharacter(
  48726. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48727. {
  48728. front: {
  48729. height: math.unit(4 + 6/12, "feet"),
  48730. name: "Front",
  48731. image: {
  48732. source: "./media/characters/agatha/front.svg",
  48733. extra: 947/933,
  48734. bottom: 42/989
  48735. }
  48736. },
  48737. back: {
  48738. height: math.unit(4 + 6/12, "feet"),
  48739. name: "Back",
  48740. image: {
  48741. source: "./media/characters/agatha/back.svg",
  48742. extra: 935/922,
  48743. bottom: 48/983
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(4 + 6 /12, "feet"),
  48751. default: true
  48752. },
  48753. {
  48754. name: "Max Size",
  48755. height: math.unit(500, "feet")
  48756. },
  48757. ]
  48758. ))
  48759. characterMakers.push(() => makeCharacter(
  48760. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48761. {
  48762. side: {
  48763. height: math.unit(30, "feet"),
  48764. name: "Side",
  48765. image: {
  48766. source: "./media/characters/roggy/side.svg",
  48767. extra: 909/643,
  48768. bottom: 63/972
  48769. }
  48770. },
  48771. lounging: {
  48772. height: math.unit(20, "feet"),
  48773. name: "Lounging",
  48774. image: {
  48775. source: "./media/characters/roggy/lounging.svg",
  48776. extra: 643/479,
  48777. bottom: 145/788
  48778. }
  48779. },
  48780. handpaw: {
  48781. height: math.unit(13.1, "feet"),
  48782. name: "Handpaw",
  48783. image: {
  48784. source: "./media/characters/roggy/handpaw.svg"
  48785. }
  48786. },
  48787. footpaw: {
  48788. height: math.unit(15.8, "feet"),
  48789. name: "Footpaw",
  48790. image: {
  48791. source: "./media/characters/roggy/footpaw.svg"
  48792. }
  48793. },
  48794. },
  48795. [
  48796. {
  48797. name: "Menacing",
  48798. height: math.unit(30, "feet"),
  48799. default: true
  48800. },
  48801. ]
  48802. ))
  48803. characterMakers.push(() => makeCharacter(
  48804. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48805. {
  48806. front: {
  48807. height: math.unit(5 + 7/12, "feet"),
  48808. weight: math.unit(135, "lb"),
  48809. name: "Front",
  48810. image: {
  48811. source: "./media/characters/naomi/front.svg",
  48812. extra: 1209/1154,
  48813. bottom: 129/1338
  48814. }
  48815. },
  48816. back: {
  48817. height: math.unit(5 + 7/12, "feet"),
  48818. weight: math.unit(135, "lb"),
  48819. name: "Back",
  48820. image: {
  48821. source: "./media/characters/naomi/back.svg",
  48822. extra: 1252/1190,
  48823. bottom: 23/1275
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(5 + 7 /12, "feet"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48837. {
  48838. side: {
  48839. height: math.unit(35, "meters"),
  48840. name: "Side",
  48841. image: {
  48842. source: "./media/characters/kimpi/side.svg",
  48843. extra: 419/382,
  48844. bottom: 63/482
  48845. }
  48846. },
  48847. hand: {
  48848. height: math.unit(8.96, "meters"),
  48849. name: "Hand",
  48850. image: {
  48851. source: "./media/characters/kimpi/hand.svg"
  48852. }
  48853. },
  48854. },
  48855. [
  48856. {
  48857. name: "Normal",
  48858. height: math.unit(35, "meters"),
  48859. default: true
  48860. },
  48861. ]
  48862. ))
  48863. characterMakers.push(() => makeCharacter(
  48864. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48865. {
  48866. front: {
  48867. height: math.unit(4 + 4/12, "feet"),
  48868. name: "Front",
  48869. image: {
  48870. source: "./media/characters/pepper-purrloin/front.svg",
  48871. extra: 1141/1024,
  48872. bottom: 21/1162
  48873. }
  48874. },
  48875. },
  48876. [
  48877. {
  48878. name: "Normal",
  48879. height: math.unit(4 + 4/12, "feet"),
  48880. default: true
  48881. },
  48882. ]
  48883. ))
  48884. characterMakers.push(() => makeCharacter(
  48885. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48886. {
  48887. front: {
  48888. height: math.unit(6 + 2/12, "feet"),
  48889. name: "Front",
  48890. image: {
  48891. source: "./media/characters/raphael/front.svg",
  48892. extra: 1101/962,
  48893. bottom: 59/1160
  48894. }
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(6 + 2/12, "feet"),
  48901. default: true
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48907. {
  48908. front: {
  48909. height: math.unit(6, "feet"),
  48910. weight: math.unit(150, "lb"),
  48911. name: "Front",
  48912. image: {
  48913. source: "./media/characters/victor-williams/front.svg",
  48914. extra: 1894/1825,
  48915. bottom: 67/1961
  48916. }
  48917. },
  48918. },
  48919. [
  48920. {
  48921. name: "Normal",
  48922. height: math.unit(6, "feet"),
  48923. default: true
  48924. },
  48925. ]
  48926. ))
  48927. characterMakers.push(() => makeCharacter(
  48928. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48929. {
  48930. front: {
  48931. height: math.unit(5 + 8/12, "feet"),
  48932. weight: math.unit(150, "lb"),
  48933. name: "Front",
  48934. image: {
  48935. source: "./media/characters/rachel/front.svg",
  48936. extra: 1902/1787,
  48937. bottom: 46/1948
  48938. }
  48939. },
  48940. },
  48941. [
  48942. {
  48943. name: "Base Height",
  48944. height: math.unit(5 + 8/12, "feet"),
  48945. default: true
  48946. },
  48947. {
  48948. name: "Macro",
  48949. height: math.unit(200, "feet")
  48950. },
  48951. {
  48952. name: "Mega Macro",
  48953. height: math.unit(1, "mile")
  48954. },
  48955. {
  48956. name: "Giga Macro",
  48957. height: math.unit(1500, "miles")
  48958. },
  48959. {
  48960. name: "Tera Macro",
  48961. height: math.unit(8000, "miles")
  48962. },
  48963. {
  48964. name: "Tera Macro+",
  48965. height: math.unit(2e5, "miles")
  48966. },
  48967. ]
  48968. ))
  48969. characterMakers.push(() => makeCharacter(
  48970. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48971. {
  48972. front: {
  48973. height: math.unit(6.5, "feet"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48977. extra: 860/819,
  48978. bottom: 307/1167
  48979. }
  48980. },
  48981. back: {
  48982. height: math.unit(6.5, "feet"),
  48983. name: "Back",
  48984. image: {
  48985. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48986. extra: 880/837,
  48987. bottom: 395/1275
  48988. }
  48989. },
  48990. sleeping: {
  48991. height: math.unit(2.79, "feet"),
  48992. name: "Sleeping",
  48993. image: {
  48994. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48995. extra: 465/383,
  48996. bottom: 263/728
  48997. }
  48998. },
  48999. maw: {
  49000. height: math.unit(2.52, "feet"),
  49001. name: "Maw",
  49002. image: {
  49003. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(6.5, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49017. {
  49018. front: {
  49019. height: math.unit(5, "feet"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/nova-nerium/front.svg",
  49023. extra: 1548/1392,
  49024. bottom: 374/1922
  49025. }
  49026. },
  49027. back: {
  49028. height: math.unit(5, "feet"),
  49029. name: "Back",
  49030. image: {
  49031. source: "./media/characters/nova-nerium/back.svg",
  49032. extra: 1658/1468,
  49033. bottom: 257/1915
  49034. }
  49035. },
  49036. },
  49037. [
  49038. {
  49039. name: "Normal",
  49040. height: math.unit(5, "feet"),
  49041. default: true
  49042. },
  49043. ]
  49044. ))
  49045. characterMakers.push(() => makeCharacter(
  49046. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49047. {
  49048. front: {
  49049. height: math.unit(5 + 4/12, "feet"),
  49050. name: "Front",
  49051. image: {
  49052. source: "./media/characters/ashe-pyriph/front.svg",
  49053. extra: 1935/1747,
  49054. bottom: 60/1995
  49055. }
  49056. },
  49057. },
  49058. [
  49059. {
  49060. name: "Normal",
  49061. height: math.unit(5 + 4/12, "feet"),
  49062. default: true
  49063. },
  49064. ]
  49065. ))
  49066. characterMakers.push(() => makeCharacter(
  49067. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49068. {
  49069. front: {
  49070. height: math.unit(8.7, "feet"),
  49071. name: "Front",
  49072. image: {
  49073. source: "./media/characters/flicker-wisp/front.svg",
  49074. extra: 1835/1613,
  49075. bottom: 449/2284
  49076. }
  49077. },
  49078. side: {
  49079. height: math.unit(8.7, "feet"),
  49080. name: "Side",
  49081. image: {
  49082. source: "./media/characters/flicker-wisp/side.svg",
  49083. extra: 1841/1642,
  49084. bottom: 336/2177
  49085. },
  49086. default: true
  49087. },
  49088. maw: {
  49089. height: math.unit(3.35, "feet"),
  49090. name: "Maw",
  49091. image: {
  49092. source: "./media/characters/flicker-wisp/maw.svg",
  49093. extra: 2338/1506,
  49094. bottom: 0/2338
  49095. }
  49096. },
  49097. ovipositor: {
  49098. height: math.unit(4.95, "feet"),
  49099. name: "Ovipositor",
  49100. image: {
  49101. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49102. }
  49103. },
  49104. egg: {
  49105. height: math.unit(0.385, "feet"),
  49106. weight: math.unit(2, "lb"),
  49107. name: "Egg",
  49108. image: {
  49109. source: "./media/characters/flicker-wisp/egg.svg"
  49110. }
  49111. },
  49112. },
  49113. [
  49114. {
  49115. name: "Normal",
  49116. height: math.unit(8.7, "feet"),
  49117. default: true
  49118. },
  49119. ]
  49120. ))
  49121. characterMakers.push(() => makeCharacter(
  49122. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49123. {
  49124. side: {
  49125. height: math.unit(11, "feet"),
  49126. name: "Side",
  49127. image: {
  49128. source: "./media/characters/faefnul/side.svg",
  49129. extra: 1100/1007,
  49130. bottom: 0/1100
  49131. }
  49132. },
  49133. },
  49134. [
  49135. {
  49136. name: "Normal",
  49137. height: math.unit(11, "feet"),
  49138. default: true
  49139. },
  49140. ]
  49141. ))
  49142. characterMakers.push(() => makeCharacter(
  49143. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49144. {
  49145. front: {
  49146. height: math.unit(6 + 2/12, "feet"),
  49147. name: "Front",
  49148. image: {
  49149. source: "./media/characters/shady/front.svg",
  49150. extra: 502/461,
  49151. bottom: 9/511
  49152. }
  49153. },
  49154. kneeling: {
  49155. height: math.unit(4.6, "feet"),
  49156. name: "Kneeling",
  49157. image: {
  49158. source: "./media/characters/shady/kneeling.svg",
  49159. extra: 1328/1219,
  49160. bottom: 117/1445
  49161. }
  49162. },
  49163. maw: {
  49164. height: math.unit(2, "feet"),
  49165. name: "Maw",
  49166. image: {
  49167. source: "./media/characters/shady/maw.svg"
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Nano",
  49174. height: math.unit(1, "mm")
  49175. },
  49176. {
  49177. name: "Micro",
  49178. height: math.unit(12, "mm")
  49179. },
  49180. {
  49181. name: "Tiny",
  49182. height: math.unit(3, "inches")
  49183. },
  49184. {
  49185. name: "Normal",
  49186. height: math.unit(6 + 2/12, "feet"),
  49187. default: true
  49188. },
  49189. {
  49190. name: "Big",
  49191. height: math.unit(15, "feet")
  49192. },
  49193. {
  49194. name: "Macro",
  49195. height: math.unit(150, "feet")
  49196. },
  49197. {
  49198. name: "Titanic",
  49199. height: math.unit(500, "feet")
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49205. {
  49206. front: {
  49207. height: math.unit(12, "feet"),
  49208. name: "Front",
  49209. image: {
  49210. source: "./media/characters/fenrir/front.svg",
  49211. extra: 968/875,
  49212. bottom: 22/990
  49213. }
  49214. },
  49215. },
  49216. [
  49217. {
  49218. name: "Big",
  49219. height: math.unit(12, "feet"),
  49220. default: true
  49221. },
  49222. ]
  49223. ))
  49224. characterMakers.push(() => makeCharacter(
  49225. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49226. {
  49227. front: {
  49228. height: math.unit(5 + 4/12, "feet"),
  49229. name: "Front",
  49230. image: {
  49231. source: "./media/characters/makar/front.svg",
  49232. extra: 1181/1112,
  49233. bottom: 78/1259
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Normal",
  49240. height: math.unit(5 + 4/12, "feet"),
  49241. default: true
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49247. {
  49248. front: {
  49249. height: math.unit(5 + 7/12, "feet"),
  49250. name: "Front",
  49251. image: {
  49252. source: "./media/characters/callow/front.svg",
  49253. extra: 1482/1304,
  49254. bottom: 23/1505
  49255. }
  49256. },
  49257. back: {
  49258. height: math.unit(5 + 7/12, "feet"),
  49259. name: "Back",
  49260. image: {
  49261. source: "./media/characters/callow/back.svg",
  49262. extra: 1484/1296,
  49263. bottom: 25/1509
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Micro",
  49270. height: math.unit(3, "inches"),
  49271. default: true
  49272. },
  49273. {
  49274. name: "Normal",
  49275. height: math.unit(5 + 7/12, "feet")
  49276. },
  49277. ]
  49278. ))
  49279. characterMakers.push(() => makeCharacter(
  49280. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49281. {
  49282. front: {
  49283. height: math.unit(6 + 2/12, "feet"),
  49284. name: "Front",
  49285. image: {
  49286. source: "./media/characters/natel/front.svg",
  49287. extra: 1833/1692,
  49288. bottom: 166/1999
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(6 + 2/12, "feet"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49302. {
  49303. front: {
  49304. height: math.unit(1.75, "meters"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/misu/front.svg",
  49308. extra: 1690/1558,
  49309. bottom: 234/1924
  49310. }
  49311. },
  49312. back: {
  49313. height: math.unit(1.75, "meters"),
  49314. name: "Back",
  49315. image: {
  49316. source: "./media/characters/misu/back.svg",
  49317. extra: 1762/1618,
  49318. bottom: 146/1908
  49319. }
  49320. },
  49321. frontNude: {
  49322. height: math.unit(1.75, "meters"),
  49323. name: "Front (Nude)",
  49324. image: {
  49325. source: "./media/characters/misu/front-nude.svg",
  49326. extra: 1690/1558,
  49327. bottom: 234/1924
  49328. }
  49329. },
  49330. backNude: {
  49331. height: math.unit(1.75, "meters"),
  49332. name: "Back (Nude)",
  49333. image: {
  49334. source: "./media/characters/misu/back-nude.svg",
  49335. extra: 1762/1618,
  49336. bottom: 146/1908
  49337. }
  49338. },
  49339. frontErect: {
  49340. height: math.unit(1.75, "meters"),
  49341. name: "Front (Erect)",
  49342. image: {
  49343. source: "./media/characters/misu/front-erect.svg",
  49344. extra: 1690/1558,
  49345. bottom: 234/1924
  49346. }
  49347. },
  49348. maw: {
  49349. height: math.unit(0.47, "meters"),
  49350. name: "Maw",
  49351. image: {
  49352. source: "./media/characters/misu/maw.svg"
  49353. }
  49354. },
  49355. head: {
  49356. height: math.unit(0.35, "meters"),
  49357. name: "Head",
  49358. image: {
  49359. source: "./media/characters/misu/head.svg"
  49360. }
  49361. },
  49362. rear: {
  49363. height: math.unit(0.47, "meters"),
  49364. name: "Rear",
  49365. image: {
  49366. source: "./media/characters/misu/rear.svg"
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(1.75, "meters")
  49374. },
  49375. {
  49376. name: "Not good for the people",
  49377. height: math.unit(42, "meters")
  49378. },
  49379. {
  49380. name: "Not good for the neighborhood",
  49381. height: math.unit(135, "meters")
  49382. },
  49383. {
  49384. name: "Bit bigger problem",
  49385. height: math.unit(380, "meters"),
  49386. default: true
  49387. },
  49388. {
  49389. name: "Not good for the city",
  49390. height: math.unit(1.5, "km")
  49391. },
  49392. {
  49393. name: "Not good for the county",
  49394. height: math.unit(5.5, "km")
  49395. },
  49396. {
  49397. name: "Not good for the state",
  49398. height: math.unit(25, "km")
  49399. },
  49400. {
  49401. name: "Not good for the country",
  49402. height: math.unit(125, "km")
  49403. },
  49404. {
  49405. name: "Not good for the continent",
  49406. height: math.unit(2100, "km")
  49407. },
  49408. {
  49409. name: "Not good for the planet",
  49410. height: math.unit(35000, "km")
  49411. },
  49412. {
  49413. name: "Just no",
  49414. height: math.unit(8.5e18, "km")
  49415. },
  49416. ]
  49417. ))
  49418. characterMakers.push(() => makeCharacter(
  49419. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49420. {
  49421. front: {
  49422. height: math.unit(6.5, "feet"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/poppy/front.svg",
  49426. extra: 1878/1812,
  49427. bottom: 43/1921
  49428. }
  49429. },
  49430. feet: {
  49431. height: math.unit(1.06, "feet"),
  49432. name: "Feet",
  49433. image: {
  49434. source: "./media/characters/poppy/feet.svg",
  49435. extra: 1083/1083,
  49436. bottom: 87/1170
  49437. }
  49438. },
  49439. },
  49440. [
  49441. {
  49442. name: "Human",
  49443. height: math.unit(6.5, "feet")
  49444. },
  49445. {
  49446. name: "Default",
  49447. height: math.unit(300, "feet"),
  49448. default: true
  49449. },
  49450. {
  49451. name: "Huge",
  49452. height: math.unit(850, "feet")
  49453. },
  49454. {
  49455. name: "Mega",
  49456. height: math.unit(8000, "feet")
  49457. },
  49458. {
  49459. name: "Giga",
  49460. height: math.unit(300, "miles")
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49466. {
  49467. bipedal: {
  49468. height: math.unit(7, "feet"),
  49469. name: "Bipedal",
  49470. image: {
  49471. source: "./media/characters/zener/bipedal.svg",
  49472. extra: 874/805,
  49473. bottom: 109/983
  49474. }
  49475. },
  49476. quadrupedal: {
  49477. height: math.unit(4.64, "feet"),
  49478. name: "Quadrupedal",
  49479. image: {
  49480. source: "./media/characters/zener/quadrupedal.svg",
  49481. extra: 638/507,
  49482. bottom: 190/828
  49483. }
  49484. },
  49485. cock: {
  49486. height: math.unit(18, "inches"),
  49487. name: "Cock",
  49488. image: {
  49489. source: "./media/characters/zener/cock.svg"
  49490. }
  49491. },
  49492. },
  49493. [
  49494. {
  49495. name: "Normal",
  49496. height: math.unit(7, "feet"),
  49497. default: true
  49498. },
  49499. ]
  49500. ))
  49501. characterMakers.push(() => makeCharacter(
  49502. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49503. {
  49504. nude: {
  49505. height: math.unit(5 + 6/12, "feet"),
  49506. name: "Nude",
  49507. image: {
  49508. source: "./media/characters/charlie-dog/nude.svg",
  49509. extra: 768/734,
  49510. bottom: 26/794
  49511. }
  49512. },
  49513. dressed: {
  49514. height: math.unit(5 + 6/12, "feet"),
  49515. name: "Dressed",
  49516. image: {
  49517. source: "./media/characters/charlie-dog/dressed.svg",
  49518. extra: 768/734,
  49519. bottom: 26/794
  49520. }
  49521. },
  49522. },
  49523. [
  49524. {
  49525. name: "Normal",
  49526. height: math.unit(5 + 6/12, "feet"),
  49527. default: true
  49528. },
  49529. ]
  49530. ))
  49531. characterMakers.push(() => makeCharacter(
  49532. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49533. {
  49534. front: {
  49535. height: math.unit(6 + 4/12, "feet"),
  49536. name: "Front",
  49537. image: {
  49538. source: "./media/characters/ir'istrasz/front.svg",
  49539. extra: 1014/977,
  49540. bottom: 65/1079
  49541. }
  49542. },
  49543. back: {
  49544. height: math.unit(6 + 4/12, "feet"),
  49545. name: "Back",
  49546. image: {
  49547. source: "./media/characters/ir'istrasz/back.svg",
  49548. extra: 1024/992,
  49549. bottom: 34/1058
  49550. }
  49551. },
  49552. },
  49553. [
  49554. {
  49555. name: "Normal",
  49556. height: math.unit(6 + 4/12, "feet"),
  49557. default: true
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49563. {
  49564. front: {
  49565. height: math.unit(5 + 8/12, "feet"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/dee-ditto/front.svg",
  49569. extra: 1874/1785,
  49570. bottom: 68/1942
  49571. }
  49572. },
  49573. back: {
  49574. height: math.unit(5 + 8/12, "feet"),
  49575. name: "Back",
  49576. image: {
  49577. source: "./media/characters/dee-ditto/back.svg",
  49578. extra: 1870/1783,
  49579. bottom: 77/1947
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(5 + 8/12, "feet"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(7 + 6/12, "feet"),
  49596. name: "Front",
  49597. image: {
  49598. source: "./media/characters/fey/front.svg",
  49599. extra: 995/979,
  49600. bottom: 30/1025
  49601. }
  49602. },
  49603. back: {
  49604. height: math.unit(7 + 6/12, "feet"),
  49605. name: "Back",
  49606. image: {
  49607. source: "./media/characters/fey/back.svg",
  49608. extra: 1079/1008,
  49609. bottom: 5/1084
  49610. }
  49611. },
  49612. dressed: {
  49613. height: math.unit(7 + 6/12, "feet"),
  49614. name: "Dressed",
  49615. image: {
  49616. source: "./media/characters/fey/dressed.svg",
  49617. extra: 995/979,
  49618. bottom: 30/1025
  49619. }
  49620. },
  49621. },
  49622. [
  49623. {
  49624. name: "Normal",
  49625. height: math.unit(7 + 6/12, "feet"),
  49626. default: true
  49627. },
  49628. ]
  49629. ))
  49630. characterMakers.push(() => makeCharacter(
  49631. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49632. {
  49633. standing: {
  49634. height: math.unit(17, "feet"),
  49635. name: "Standing",
  49636. image: {
  49637. source: "./media/characters/aster/standing.svg",
  49638. extra: 1798/1598,
  49639. bottom: 117/1915
  49640. }
  49641. },
  49642. },
  49643. [
  49644. {
  49645. name: "Normal",
  49646. height: math.unit(17, "feet"),
  49647. default: true
  49648. },
  49649. {
  49650. name: "Homewrecker",
  49651. height: math.unit(95, "feet")
  49652. },
  49653. {
  49654. name: "Planet Devourer",
  49655. height: math.unit(1008000, "miles")
  49656. },
  49657. ]
  49658. ))
  49659. characterMakers.push(() => makeCharacter(
  49660. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49661. {
  49662. front: {
  49663. height: math.unit(6 + 5/12, "feet"),
  49664. weight: math.unit(265, "lb"),
  49665. name: "Front",
  49666. image: {
  49667. source: "./media/characters/devon-childs/front.svg",
  49668. extra: 1795/1721,
  49669. bottom: 41/1836
  49670. }
  49671. },
  49672. side: {
  49673. height: math.unit(6 + 5/12, "feet"),
  49674. weight: math.unit(265, "lb"),
  49675. name: "Side",
  49676. image: {
  49677. source: "./media/characters/devon-childs/side.svg",
  49678. extra: 1812/1738,
  49679. bottom: 30/1842
  49680. }
  49681. },
  49682. back: {
  49683. height: math.unit(6 + 5/12, "feet"),
  49684. weight: math.unit(265, "lb"),
  49685. name: "Back",
  49686. image: {
  49687. source: "./media/characters/devon-childs/back.svg",
  49688. extra: 1808/1735,
  49689. bottom: 23/1831
  49690. }
  49691. },
  49692. hand: {
  49693. height: math.unit(1.464, "feet"),
  49694. name: "Hand",
  49695. image: {
  49696. source: "./media/characters/devon-childs/hand.svg"
  49697. }
  49698. },
  49699. foot: {
  49700. height: math.unit(1.6, "feet"),
  49701. name: "Foot",
  49702. image: {
  49703. source: "./media/characters/devon-childs/foot.svg"
  49704. }
  49705. },
  49706. },
  49707. [
  49708. {
  49709. name: "Micro",
  49710. height: math.unit(7, "cm")
  49711. },
  49712. {
  49713. name: "Normal",
  49714. height: math.unit(6 + 5/12, "feet"),
  49715. default: true
  49716. },
  49717. {
  49718. name: "Macro",
  49719. height: math.unit(154, "feet")
  49720. },
  49721. ]
  49722. ))
  49723. characterMakers.push(() => makeCharacter(
  49724. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49725. {
  49726. front: {
  49727. height: math.unit(6, "feet"),
  49728. weight: math.unit(180, "lb"),
  49729. name: "Front",
  49730. image: {
  49731. source: "./media/characters/lydemox-vir/front.svg",
  49732. extra: 1632/1435,
  49733. bottom: 58/1690
  49734. }
  49735. },
  49736. frontSFW: {
  49737. height: math.unit(6, "feet"),
  49738. weight: math.unit(180, "lb"),
  49739. name: "Front (SFW)",
  49740. image: {
  49741. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49742. extra: 1632/1435,
  49743. bottom: 58/1690
  49744. }
  49745. },
  49746. back: {
  49747. height: math.unit(6, "feet"),
  49748. weight: math.unit(180, "lb"),
  49749. name: "Back",
  49750. image: {
  49751. source: "./media/characters/lydemox-vir/back.svg",
  49752. extra: 1593/1408,
  49753. bottom: 31/1624
  49754. }
  49755. },
  49756. paw: {
  49757. height: math.unit(1.85, "feet"),
  49758. name: "Paw",
  49759. image: {
  49760. source: "./media/characters/lydemox-vir/paw.svg"
  49761. }
  49762. },
  49763. dick: {
  49764. height: math.unit(1.8, "feet"),
  49765. name: "Dick",
  49766. image: {
  49767. source: "./media/characters/lydemox-vir/dick.svg"
  49768. }
  49769. },
  49770. },
  49771. [
  49772. {
  49773. name: "Macro",
  49774. height: math.unit(100, "feet"),
  49775. default: true
  49776. },
  49777. {
  49778. name: "Teramacro",
  49779. height: math.unit(1, "earth")
  49780. },
  49781. {
  49782. name: "Planetary",
  49783. height: math.unit(20, "earths")
  49784. },
  49785. ]
  49786. ))
  49787. characterMakers.push(() => makeCharacter(
  49788. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49789. {
  49790. front: {
  49791. height: math.unit(15 + 8/12, "feet"),
  49792. weight: math.unit(1237, "kg"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/mia/front.svg",
  49796. extra: 1573/1446,
  49797. bottom: 58/1631
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Small",
  49804. height: math.unit(9 + 5/12, "feet")
  49805. },
  49806. {
  49807. name: "Normal",
  49808. height: math.unit(15 + 8/12, "feet"),
  49809. default: true
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49815. {
  49816. front: {
  49817. height: math.unit(10 + 6/12, "feet"),
  49818. weight: math.unit(1.3, "tons"),
  49819. name: "Front",
  49820. image: {
  49821. source: "./media/characters/mr-graves/front.svg",
  49822. extra: 1779/1695,
  49823. bottom: 198/1977
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Normal",
  49830. height: math.unit(10 + 6 /12, "feet"),
  49831. default: true
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49837. {
  49838. dressedFront: {
  49839. height: math.unit(5 + 8/12, "feet"),
  49840. weight: math.unit(125, "lb"),
  49841. name: "Dressed (Front)",
  49842. image: {
  49843. source: "./media/characters/jess/dressed-front.svg",
  49844. extra: 1176/1152,
  49845. bottom: 42/1218
  49846. }
  49847. },
  49848. dressedSide: {
  49849. height: math.unit(5 + 8/12, "feet"),
  49850. weight: math.unit(125, "lb"),
  49851. name: "Dressed (Side)",
  49852. image: {
  49853. source: "./media/characters/jess/dressed-side.svg",
  49854. extra: 1204/1190,
  49855. bottom: 6/1210
  49856. }
  49857. },
  49858. nudeFront: {
  49859. height: math.unit(5 + 8/12, "feet"),
  49860. weight: math.unit(125, "lb"),
  49861. name: "Nude (Front)",
  49862. image: {
  49863. source: "./media/characters/jess/nude-front.svg",
  49864. extra: 1176/1152,
  49865. bottom: 42/1218
  49866. }
  49867. },
  49868. nudeSide: {
  49869. height: math.unit(5 + 8/12, "feet"),
  49870. weight: math.unit(125, "lb"),
  49871. name: "Nude (Side)",
  49872. image: {
  49873. source: "./media/characters/jess/nude-side.svg",
  49874. extra: 1204/1190,
  49875. bottom: 6/1210
  49876. }
  49877. },
  49878. organsFront: {
  49879. height: math.unit(2.83799342105, "feet"),
  49880. name: "Organs (Front)",
  49881. image: {
  49882. source: "./media/characters/jess/organs-front.svg"
  49883. }
  49884. },
  49885. organsSide: {
  49886. height: math.unit(2.64225290474, "feet"),
  49887. name: "Organs (Side)",
  49888. image: {
  49889. source: "./media/characters/jess/organs-side.svg"
  49890. }
  49891. },
  49892. digestiveTractFront: {
  49893. height: math.unit(2.8106580871, "feet"),
  49894. name: "Digestive Tract (Front)",
  49895. image: {
  49896. source: "./media/characters/jess/digestive-tract-front.svg"
  49897. }
  49898. },
  49899. digestiveTractSide: {
  49900. height: math.unit(2.54365045014, "feet"),
  49901. name: "Digestive Tract (Side)",
  49902. image: {
  49903. source: "./media/characters/jess/digestive-tract-side.svg"
  49904. }
  49905. },
  49906. respiratorySystemFront: {
  49907. height: math.unit(1.11196233456, "feet"),
  49908. name: "Respiratory System (Front)",
  49909. image: {
  49910. source: "./media/characters/jess/respiratory-system-front.svg"
  49911. }
  49912. },
  49913. respiratorySystemSide: {
  49914. height: math.unit(0.89327966297, "feet"),
  49915. name: "Respiratory System (Side)",
  49916. image: {
  49917. source: "./media/characters/jess/respiratory-system-side.svg"
  49918. }
  49919. },
  49920. urinaryTractFront: {
  49921. height: math.unit(1.16126356186, "feet"),
  49922. name: "Urinary Tract (Front)",
  49923. image: {
  49924. source: "./media/characters/jess/urinary-tract-front.svg"
  49925. }
  49926. },
  49927. urinaryTractSide: {
  49928. height: math.unit(1.20910039627, "feet"),
  49929. name: "Urinary Tract (Side)",
  49930. image: {
  49931. source: "./media/characters/jess/urinary-tract-side.svg"
  49932. }
  49933. },
  49934. reproductiveOrgansFront: {
  49935. height: math.unit(0.48422591566, "feet"),
  49936. name: "Reproductive Organs (Front)",
  49937. image: {
  49938. source: "./media/characters/jess/reproductive-organs-front.svg"
  49939. }
  49940. },
  49941. reproductiveOrgansSide: {
  49942. height: math.unit(0.61553314481, "feet"),
  49943. name: "Reproductive Organs (Side)",
  49944. image: {
  49945. source: "./media/characters/jess/reproductive-organs-side.svg"
  49946. }
  49947. },
  49948. breastsFront: {
  49949. height: math.unit(0.47690395121, "feet"),
  49950. name: "Breasts (Front)",
  49951. image: {
  49952. source: "./media/characters/jess/breasts-front.svg"
  49953. }
  49954. },
  49955. breastsSide: {
  49956. height: math.unit(0.30556998307, "feet"),
  49957. name: "Breasts (Side)",
  49958. image: {
  49959. source: "./media/characters/jess/breasts-side.svg"
  49960. }
  49961. },
  49962. heartFront: {
  49963. height: math.unit(0.53011022622, "feet"),
  49964. name: "Heart (Front)",
  49965. image: {
  49966. source: "./media/characters/jess/heart-front.svg"
  49967. }
  49968. },
  49969. heartSide: {
  49970. height: math.unit(0.51790695213, "feet"),
  49971. name: "Heart (Side)",
  49972. image: {
  49973. source: "./media/characters/jess/heart-side.svg"
  49974. }
  49975. },
  49976. earsAndNoseFront: {
  49977. height: math.unit(0.29385483995, "feet"),
  49978. name: "Ears and Nose (Front)",
  49979. image: {
  49980. source: "./media/characters/jess/ears-and-nose-front.svg"
  49981. }
  49982. },
  49983. earsAndNoseSide: {
  49984. height: math.unit(0.18109658741, "feet"),
  49985. name: "Ears and Nose (Side)",
  49986. image: {
  49987. source: "./media/characters/jess/ears-and-nose-side.svg"
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Normal",
  49994. height: math.unit(5 + 8/12, "feet"),
  49995. default: true
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50001. {
  50002. front: {
  50003. height: math.unit(6, "feet"),
  50004. weight: math.unit(6.64467e-7, "grams"),
  50005. name: "Front",
  50006. image: {
  50007. source: "./media/characters/wimpering/front.svg",
  50008. extra: 597/587,
  50009. bottom: 34/631
  50010. }
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Micro",
  50016. height: math.unit(0.4, "mm"),
  50017. default: true
  50018. },
  50019. ]
  50020. ))
  50021. characterMakers.push(() => makeCharacter(
  50022. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50023. {
  50024. front: {
  50025. height: math.unit(5 + 2/12, "feet"),
  50026. weight: math.unit(110, "lb"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/keltre/front.svg",
  50030. extra: 1099/1057,
  50031. bottom: 22/1121
  50032. }
  50033. },
  50034. back: {
  50035. height: math.unit(5 + 2/12, "feet"),
  50036. weight: math.unit(110, "lb"),
  50037. name: "Back",
  50038. image: {
  50039. source: "./media/characters/keltre/back.svg",
  50040. extra: 1095/1053,
  50041. bottom: 17/1112
  50042. }
  50043. },
  50044. dressed: {
  50045. height: math.unit(5 + 2/12, "feet"),
  50046. weight: math.unit(110, "lb"),
  50047. name: "Dressed",
  50048. image: {
  50049. source: "./media/characters/keltre/dressed.svg",
  50050. extra: 1099/1057,
  50051. bottom: 22/1121
  50052. }
  50053. },
  50054. winter: {
  50055. height: math.unit(5 + 2/12, "feet"),
  50056. weight: math.unit(110, "lb"),
  50057. name: "Winter",
  50058. image: {
  50059. source: "./media/characters/keltre/winter.svg",
  50060. extra: 1099/1057,
  50061. bottom: 22/1121
  50062. }
  50063. },
  50064. head: {
  50065. height: math.unit(1.61 * 0.86, "feet"),
  50066. name: "Head",
  50067. image: {
  50068. source: "./media/characters/keltre/head.svg",
  50069. extra: 534/421,
  50070. bottom: 0/534
  50071. }
  50072. },
  50073. hand: {
  50074. height: math.unit(1.3 * 0.86, "feet"),
  50075. name: "Hand",
  50076. image: {
  50077. source: "./media/characters/keltre/hand.svg"
  50078. }
  50079. },
  50080. foot: {
  50081. height: math.unit(1.8 * 0.86, "feet"),
  50082. name: "Foot",
  50083. image: {
  50084. source: "./media/characters/keltre/foot.svg"
  50085. }
  50086. },
  50087. },
  50088. [
  50089. {
  50090. name: "Fine",
  50091. height: math.unit(1, "inch")
  50092. },
  50093. {
  50094. name: "Dimnutive",
  50095. height: math.unit(4, "inches")
  50096. },
  50097. {
  50098. name: "Tiny",
  50099. height: math.unit(1, "foot")
  50100. },
  50101. {
  50102. name: "Small",
  50103. height: math.unit(3, "feet")
  50104. },
  50105. {
  50106. name: "Normal",
  50107. height: math.unit(5 + 2/12, "feet"),
  50108. default: true
  50109. },
  50110. ]
  50111. ))
  50112. characterMakers.push(() => makeCharacter(
  50113. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50114. {
  50115. front: {
  50116. height: math.unit(6 + 2/12, "feet"),
  50117. name: "Front",
  50118. image: {
  50119. source: "./media/characters/nox/front.svg",
  50120. extra: 1917/1830,
  50121. bottom: 74/1991
  50122. }
  50123. },
  50124. back: {
  50125. height: math.unit(6 + 2/12, "feet"),
  50126. name: "Back",
  50127. image: {
  50128. source: "./media/characters/nox/back.svg",
  50129. extra: 1896/1815,
  50130. bottom: 21/1917
  50131. }
  50132. },
  50133. head: {
  50134. height: math.unit(1.1, "feet"),
  50135. name: "Head",
  50136. image: {
  50137. source: "./media/characters/nox/head.svg",
  50138. extra: 874/704,
  50139. bottom: 0/874
  50140. }
  50141. },
  50142. tattoo: {
  50143. height: math.unit(0.729, "feet"),
  50144. name: "Tattoo",
  50145. image: {
  50146. source: "./media/characters/nox/tattoo.svg"
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Normal",
  50153. height: math.unit(6 + 2/12, "feet")
  50154. },
  50155. {
  50156. name: "Gigamacro",
  50157. height: math.unit(2, "earths"),
  50158. default: true
  50159. },
  50160. {
  50161. name: "Cosmic",
  50162. height: math.unit(867, "yottameters")
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50168. {
  50169. front: {
  50170. height: math.unit(6, "feet"),
  50171. weight: math.unit(150, "lb"),
  50172. name: "Front",
  50173. image: {
  50174. source: "./media/characters/caspian/front.svg",
  50175. extra: 1443/1359,
  50176. bottom: 0/1443
  50177. }
  50178. },
  50179. back: {
  50180. height: math.unit(6, "feet"),
  50181. weight: math.unit(150, "lb"),
  50182. name: "Back",
  50183. image: {
  50184. source: "./media/characters/caspian/back.svg",
  50185. extra: 1379/1309,
  50186. bottom: 0/1379
  50187. }
  50188. },
  50189. head: {
  50190. height: math.unit(0.9, "feet"),
  50191. name: "Head",
  50192. image: {
  50193. source: "./media/characters/caspian/head.svg",
  50194. extra: 692/492,
  50195. bottom: 0/692
  50196. }
  50197. },
  50198. headAlt: {
  50199. height: math.unit(0.95, "feet"),
  50200. name: "Head (Alt)",
  50201. image: {
  50202. source: "./media/characters/caspian/head-alt.svg",
  50203. extra: 668/508,
  50204. bottom: 0/668
  50205. }
  50206. },
  50207. hand: {
  50208. height: math.unit(0.8, "feet"),
  50209. name: "Hand",
  50210. image: {
  50211. source: "./media/characters/caspian/hand.svg"
  50212. }
  50213. },
  50214. paw: {
  50215. height: math.unit(0.95, "feet"),
  50216. name: "Paw",
  50217. image: {
  50218. source: "./media/characters/caspian/paw.svg"
  50219. }
  50220. },
  50221. },
  50222. [
  50223. {
  50224. name: "Normal",
  50225. height: math.unit(162, "feet"),
  50226. default: true
  50227. },
  50228. ]
  50229. ))
  50230. characterMakers.push(() => makeCharacter(
  50231. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50232. {
  50233. front: {
  50234. height: math.unit(6, "feet"),
  50235. name: "Front",
  50236. image: {
  50237. source: "./media/characters/myra-aisling/front.svg",
  50238. extra: 1268/1166,
  50239. bottom: 73/1341
  50240. }
  50241. },
  50242. back: {
  50243. height: math.unit(6, "feet"),
  50244. name: "Back",
  50245. image: {
  50246. source: "./media/characters/myra-aisling/back.svg",
  50247. extra: 1249/1149,
  50248. bottom: 79/1328
  50249. }
  50250. },
  50251. dressed: {
  50252. height: math.unit(6, "feet"),
  50253. name: "Dressed",
  50254. image: {
  50255. source: "./media/characters/myra-aisling/dressed.svg",
  50256. extra: 1290/1189,
  50257. bottom: 47/1337
  50258. }
  50259. },
  50260. hand: {
  50261. height: math.unit(1.1, "feet"),
  50262. name: "Hand",
  50263. image: {
  50264. source: "./media/characters/myra-aisling/hand.svg"
  50265. }
  50266. },
  50267. paw: {
  50268. height: math.unit(1.23, "feet"),
  50269. name: "Paw",
  50270. image: {
  50271. source: "./media/characters/myra-aisling/paw.svg"
  50272. }
  50273. },
  50274. },
  50275. [
  50276. {
  50277. name: "Normal",
  50278. height: math.unit(160, "feet"),
  50279. default: true
  50280. },
  50281. ]
  50282. ))
  50283. characterMakers.push(() => makeCharacter(
  50284. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50285. {
  50286. front: {
  50287. height: math.unit(6, "feet"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/tenley-sidero/front.svg",
  50291. extra: 1365/1276,
  50292. bottom: 47/1412
  50293. }
  50294. },
  50295. back: {
  50296. height: math.unit(6, "feet"),
  50297. name: "Back",
  50298. image: {
  50299. source: "./media/characters/tenley-sidero/back.svg",
  50300. extra: 1383/1283,
  50301. bottom: 35/1418
  50302. }
  50303. },
  50304. dressed: {
  50305. height: math.unit(6, "feet"),
  50306. name: "Dressed",
  50307. image: {
  50308. source: "./media/characters/tenley-sidero/dressed.svg",
  50309. extra: 1364/1275,
  50310. bottom: 42/1406
  50311. }
  50312. },
  50313. head: {
  50314. height: math.unit(1.47, "feet"),
  50315. name: "Head",
  50316. image: {
  50317. source: "./media/characters/tenley-sidero/head.svg",
  50318. extra: 610/490,
  50319. bottom: 0/610
  50320. }
  50321. },
  50322. },
  50323. [
  50324. {
  50325. name: "Normal",
  50326. height: math.unit(154, "feet"),
  50327. default: true
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(5, "inches"),
  50336. name: "Front",
  50337. image: {
  50338. source: "./media/characters/mallory/front.svg",
  50339. extra: 1919/1678,
  50340. bottom: 29/1948
  50341. }
  50342. },
  50343. hand: {
  50344. height: math.unit(0.73, "inches"),
  50345. name: "Hand",
  50346. image: {
  50347. source: "./media/characters/mallory/hand.svg"
  50348. }
  50349. },
  50350. paw: {
  50351. height: math.unit(0.68, "inches"),
  50352. name: "Paw",
  50353. image: {
  50354. source: "./media/characters/mallory/paw.svg"
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Small",
  50361. height: math.unit(5, "inches"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50368. {
  50369. naked: {
  50370. height: math.unit(6, "feet"),
  50371. name: "Naked",
  50372. image: {
  50373. source: "./media/characters/mab/naked.svg",
  50374. extra: 1855/1757,
  50375. bottom: 208/2063
  50376. }
  50377. },
  50378. outside: {
  50379. height: math.unit(6, "feet"),
  50380. name: "Outside",
  50381. image: {
  50382. source: "./media/characters/mab/outside.svg",
  50383. extra: 1855/1757,
  50384. bottom: 208/2063
  50385. }
  50386. },
  50387. party: {
  50388. height: math.unit(6, "feet"),
  50389. name: "Party",
  50390. image: {
  50391. source: "./media/characters/mab/party.svg",
  50392. extra: 1855/1757,
  50393. bottom: 208/2063
  50394. }
  50395. },
  50396. },
  50397. [
  50398. {
  50399. name: "Normal",
  50400. height: math.unit(165, "feet"),
  50401. default: true
  50402. },
  50403. ]
  50404. ))
  50405. characterMakers.push(() => makeCharacter(
  50406. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50407. {
  50408. feral: {
  50409. height: math.unit(12, "feet"),
  50410. weight: math.unit(20000, "lb"),
  50411. name: "Side",
  50412. image: {
  50413. source: "./media/characters/winter/feral.svg",
  50414. extra: 1286/943,
  50415. bottom: 112/1398
  50416. },
  50417. form: "feral",
  50418. default: true
  50419. },
  50420. feralNsfw: {
  50421. height: math.unit(12, "feet"),
  50422. weight: math.unit(20000, "lb"),
  50423. name: "Side (NSFW)",
  50424. image: {
  50425. source: "./media/characters/winter/feral-nsfw.svg",
  50426. extra: 1286/943,
  50427. bottom: 112/1398
  50428. },
  50429. form: "feral"
  50430. },
  50431. dick: {
  50432. height: math.unit(3.79, "feet"),
  50433. name: "Dick",
  50434. image: {
  50435. source: "./media/characters/winter/dick.svg"
  50436. },
  50437. form: "feral"
  50438. },
  50439. anthro: {
  50440. height: math.unit(12, "feet"),
  50441. weight: math.unit(10, "tons"),
  50442. name: "Anthro",
  50443. image: {
  50444. source: "./media/characters/winter/anthro.svg",
  50445. extra: 1701/1553,
  50446. bottom: 64/1765
  50447. },
  50448. form: "anthro",
  50449. default: true
  50450. },
  50451. },
  50452. [
  50453. {
  50454. name: "Big",
  50455. height: math.unit(12, "feet"),
  50456. default: true,
  50457. form: "feral"
  50458. },
  50459. {
  50460. name: "Big",
  50461. height: math.unit(12, "feet"),
  50462. default: true,
  50463. form: "anthro"
  50464. },
  50465. ],
  50466. {
  50467. "feral": {
  50468. name: "Feral",
  50469. default: true
  50470. },
  50471. "anthro": {
  50472. name: "Anthro"
  50473. }
  50474. }
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50478. {
  50479. front: {
  50480. height: math.unit(4.1, "inches"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/alto/front.svg",
  50484. extra: 736/627,
  50485. bottom: 90/826
  50486. }
  50487. },
  50488. },
  50489. [
  50490. {
  50491. name: "Normal",
  50492. height: math.unit(4.1, "inches"),
  50493. default: true
  50494. },
  50495. ]
  50496. ))
  50497. characterMakers.push(() => makeCharacter(
  50498. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50499. {
  50500. sitting: {
  50501. height: math.unit(3, "feet"),
  50502. name: "Sitting",
  50503. image: {
  50504. source: "./media/characters/ratstrid-v/sitting.svg",
  50505. extra: 355/310,
  50506. bottom: 136/491
  50507. }
  50508. },
  50509. },
  50510. [
  50511. {
  50512. name: "Normal",
  50513. height: math.unit(3, "feet"),
  50514. default: true
  50515. },
  50516. ]
  50517. ))
  50518. characterMakers.push(() => makeCharacter(
  50519. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50520. {
  50521. back: {
  50522. height: math.unit(6, "feet"),
  50523. weight: math.unit(450, "lb"),
  50524. name: "Back",
  50525. image: {
  50526. source: "./media/characters/siz/back.svg",
  50527. extra: 1449/1274,
  50528. bottom: 13/1462
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Smallest",
  50535. height: math.unit(18 + 3/12, "feet")
  50536. },
  50537. {
  50538. name: "Modest",
  50539. height: math.unit(56 + 8/12, "feet"),
  50540. default: true
  50541. },
  50542. {
  50543. name: "Largest",
  50544. height: math.unit(3590, "feet")
  50545. },
  50546. ]
  50547. ))
  50548. characterMakers.push(() => makeCharacter(
  50549. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50550. {
  50551. front: {
  50552. height: math.unit(5 + 9/12, "feet"),
  50553. weight: math.unit(150, "lb"),
  50554. name: "Front",
  50555. image: {
  50556. source: "./media/characters/ven/front.svg",
  50557. extra: 1372/1320,
  50558. bottom: 73/1445
  50559. }
  50560. },
  50561. side: {
  50562. height: math.unit(5 + 9/12, "feet"),
  50563. weight: math.unit(1150, "lb"),
  50564. name: "Side",
  50565. image: {
  50566. source: "./media/characters/ven/side.svg",
  50567. extra: 1119/1070,
  50568. bottom: 42/1161
  50569. },
  50570. default: true
  50571. },
  50572. },
  50573. [
  50574. {
  50575. name: "Normal",
  50576. height: math.unit(5 + 9/12, "feet"),
  50577. default: true
  50578. },
  50579. ]
  50580. ))
  50581. characterMakers.push(() => makeCharacter(
  50582. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50583. {
  50584. front: {
  50585. height: math.unit(12, "feet"),
  50586. weight: math.unit(1000, "kg"),
  50587. name: "Front",
  50588. image: {
  50589. source: "./media/characters/maple/front.svg",
  50590. extra: 1193/1081,
  50591. bottom: 22/1215
  50592. }
  50593. },
  50594. },
  50595. [
  50596. {
  50597. name: "Compressed",
  50598. height: math.unit(7, "feet")
  50599. },
  50600. {
  50601. name: "Normal",
  50602. height: math.unit(12, "feet"),
  50603. default: true
  50604. },
  50605. ]
  50606. ))
  50607. characterMakers.push(() => makeCharacter(
  50608. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50609. {
  50610. front: {
  50611. height: math.unit(9, "feet"),
  50612. weight: math.unit(1500, "lb"),
  50613. name: "Front",
  50614. image: {
  50615. source: "./media/characters/nora/front.svg",
  50616. extra: 1348/1286,
  50617. bottom: 218/1566
  50618. }
  50619. },
  50620. erect: {
  50621. height: math.unit(9, "feet"),
  50622. weight: math.unit(11500, "lb"),
  50623. name: "Erect",
  50624. image: {
  50625. source: "./media/characters/nora/erect.svg",
  50626. extra: 1488/1433,
  50627. bottom: 133/1621
  50628. }
  50629. },
  50630. },
  50631. [
  50632. {
  50633. name: "Normal",
  50634. height: math.unit(9, "feet"),
  50635. default: true
  50636. },
  50637. ]
  50638. ))
  50639. characterMakers.push(() => makeCharacter(
  50640. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50641. {
  50642. front: {
  50643. height: math.unit(25, "feet"),
  50644. weight: math.unit(27500, "lb"),
  50645. name: "Front",
  50646. image: {
  50647. source: "./media/characters/north-caudin/front.svg",
  50648. extra: 1184/1082,
  50649. bottom: 23/1207
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Compressed",
  50656. height: math.unit(10, "feet")
  50657. },
  50658. {
  50659. name: "Normal",
  50660. height: math.unit(25, "feet"),
  50661. default: true
  50662. },
  50663. ]
  50664. ))
  50665. characterMakers.push(() => makeCharacter(
  50666. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50667. {
  50668. front: {
  50669. height: math.unit(9, "feet"),
  50670. weight: math.unit(1250, "lb"),
  50671. name: "Front",
  50672. image: {
  50673. source: "./media/characters/merrian/front.svg",
  50674. extra: 2393/2304,
  50675. bottom: 40/2433
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(9, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50689. {
  50690. front: {
  50691. height: math.unit(9, "feet"),
  50692. weight: math.unit(1000, "lb"),
  50693. name: "Front",
  50694. image: {
  50695. source: "./media/characters/hazel/front.svg",
  50696. extra: 2351/2298,
  50697. bottom: 38/2389
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(9, "feet"),
  50705. default: true
  50706. },
  50707. ]
  50708. ))
  50709. characterMakers.push(() => makeCharacter(
  50710. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50711. {
  50712. front: {
  50713. height: math.unit(13, "feet"),
  50714. weight: math.unit(3200, "lb"),
  50715. name: "Front",
  50716. image: {
  50717. source: "./media/characters/emma/front.svg",
  50718. extra: 2263/2029,
  50719. bottom: 68/2331
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Normal",
  50726. height: math.unit(13, "feet"),
  50727. default: true
  50728. },
  50729. ]
  50730. ))
  50731. characterMakers.push(() => makeCharacter(
  50732. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50733. {
  50734. front: {
  50735. height: math.unit(11 + 9/12, "feet"),
  50736. weight: math.unit(2500, "lb"),
  50737. name: "Front",
  50738. image: {
  50739. source: "./media/characters/ilumina/front.svg",
  50740. extra: 2248/2209,
  50741. bottom: 164/2412
  50742. }
  50743. },
  50744. },
  50745. [
  50746. {
  50747. name: "Normal",
  50748. height: math.unit(11 + 9/12, "feet"),
  50749. default: true
  50750. },
  50751. ]
  50752. ))
  50753. characterMakers.push(() => makeCharacter(
  50754. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50755. {
  50756. front: {
  50757. height: math.unit(8 + 10/12, "feet"),
  50758. weight: math.unit(1350, "lb"),
  50759. name: "Front",
  50760. image: {
  50761. source: "./media/characters/moonshine/front.svg",
  50762. extra: 2395/2288,
  50763. bottom: 40/2435
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(8 + 10/12, "feet"),
  50771. default: true
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(14, "feet"),
  50780. weight: math.unit(3400, "lb"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/aletia/front.svg",
  50784. extra: 1185/1052,
  50785. bottom: 21/1206
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Compressed",
  50792. height: math.unit(8, "feet")
  50793. },
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(14, "feet"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(17, "feet"),
  50806. weight: math.unit(6500, "lb"),
  50807. name: "Front",
  50808. image: {
  50809. source: "./media/characters/deidra/front.svg",
  50810. extra: 1201/1081,
  50811. bottom: 16/1217
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Compressed",
  50818. height: math.unit(9 + 6/12, "feet")
  50819. },
  50820. {
  50821. name: "Normal",
  50822. height: math.unit(17, "feet"),
  50823. default: true
  50824. },
  50825. ]
  50826. ))
  50827. characterMakers.push(() => makeCharacter(
  50828. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50829. {
  50830. front: {
  50831. height: math.unit(7 + 4/12, "feet"),
  50832. weight: math.unit(280, "lb"),
  50833. name: "Front",
  50834. image: {
  50835. source: "./media/characters/freki-yrmori/front.svg",
  50836. extra: 1286/1182,
  50837. bottom: 29/1315
  50838. }
  50839. },
  50840. maw: {
  50841. height: math.unit(0.9, "feet"),
  50842. name: "Maw",
  50843. image: {
  50844. source: "./media/characters/freki-yrmori/maw.svg"
  50845. }
  50846. },
  50847. },
  50848. [
  50849. {
  50850. name: "Normal",
  50851. height: math.unit(7 + 4/12, "feet"),
  50852. default: true
  50853. },
  50854. {
  50855. name: "Macro",
  50856. height: math.unit(38.5, "meters")
  50857. },
  50858. ]
  50859. ))
  50860. characterMakers.push(() => makeCharacter(
  50861. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50862. {
  50863. side: {
  50864. height: math.unit(47.2, "meters"),
  50865. weight: math.unit(10000, "tons"),
  50866. name: "Side",
  50867. image: {
  50868. source: "./media/characters/aetherios/side.svg",
  50869. extra: 2363/642,
  50870. bottom: 221/2584
  50871. }
  50872. },
  50873. top: {
  50874. height: math.unit(240, "meters"),
  50875. weight: math.unit(10000, "tons"),
  50876. name: "Top",
  50877. image: {
  50878. source: "./media/characters/aetherios/top.svg"
  50879. }
  50880. },
  50881. bottom: {
  50882. height: math.unit(240, "meters"),
  50883. weight: math.unit(10000, "tons"),
  50884. name: "Bottom",
  50885. image: {
  50886. source: "./media/characters/aetherios/bottom.svg"
  50887. }
  50888. },
  50889. head: {
  50890. height: math.unit(38.6, "meters"),
  50891. name: "Head",
  50892. image: {
  50893. source: "./media/characters/aetherios/head.svg",
  50894. extra: 1335/1112,
  50895. bottom: 0/1335
  50896. }
  50897. },
  50898. front: {
  50899. height: math.unit(29, "meters"),
  50900. name: "Front",
  50901. image: {
  50902. source: "./media/characters/aetherios/front.svg",
  50903. extra: 1266/953,
  50904. bottom: 158/1424
  50905. }
  50906. },
  50907. maw: {
  50908. height: math.unit(16.37, "meters"),
  50909. name: "Maw",
  50910. image: {
  50911. source: "./media/characters/aetherios/maw.svg",
  50912. extra: 748/637,
  50913. bottom: 0/748
  50914. },
  50915. extraAttributes: {
  50916. preyCapacity: {
  50917. name: "Capacity",
  50918. power: 3,
  50919. type: "volume",
  50920. base: math.unit(1000, "people")
  50921. },
  50922. tongueSize: {
  50923. name: "Tongue Size",
  50924. power: 2,
  50925. type: "area",
  50926. base: math.unit(21, "m^2")
  50927. }
  50928. }
  50929. },
  50930. forepaw: {
  50931. height: math.unit(18, "meters"),
  50932. name: "Forepaw",
  50933. image: {
  50934. source: "./media/characters/aetherios/forepaw.svg"
  50935. }
  50936. },
  50937. hindpaw: {
  50938. height: math.unit(23, "meters"),
  50939. name: "Hindpaw",
  50940. image: {
  50941. source: "./media/characters/aetherios/hindpaw.svg"
  50942. }
  50943. },
  50944. genitals: {
  50945. height: math.unit(42, "meters"),
  50946. name: "Genitals",
  50947. image: {
  50948. source: "./media/characters/aetherios/genitals.svg"
  50949. }
  50950. },
  50951. },
  50952. [
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(47.2, "meters"),
  50956. default: true
  50957. },
  50958. {
  50959. name: "Macro",
  50960. height: math.unit(160, "meters")
  50961. },
  50962. {
  50963. name: "Mega",
  50964. height: math.unit(1.87, "km")
  50965. },
  50966. {
  50967. name: "Giga",
  50968. height: math.unit(40000, "km")
  50969. },
  50970. {
  50971. name: "Stellar",
  50972. height: math.unit(158000000, "km")
  50973. },
  50974. {
  50975. name: "Cosmic",
  50976. height: math.unit(9.46e12, "km")
  50977. },
  50978. ]
  50979. ))
  50980. characterMakers.push(() => makeCharacter(
  50981. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50982. {
  50983. front: {
  50984. height: math.unit(5 + 4/12, "feet"),
  50985. weight: math.unit(80, "lb"),
  50986. name: "Front",
  50987. image: {
  50988. source: "./media/characters/mizu-gieeg/front.svg",
  50989. extra: 850/709,
  50990. bottom: 52/902
  50991. }
  50992. },
  50993. back: {
  50994. height: math.unit(5 + 4/12, "feet"),
  50995. weight: math.unit(80, "lb"),
  50996. name: "Back",
  50997. image: {
  50998. source: "./media/characters/mizu-gieeg/back.svg",
  50999. extra: 882/745,
  51000. bottom: 25/907
  51001. }
  51002. },
  51003. },
  51004. [
  51005. {
  51006. name: "Normal",
  51007. height: math.unit(5 + 4/12, "feet"),
  51008. default: true
  51009. },
  51010. ]
  51011. ))
  51012. characterMakers.push(() => makeCharacter(
  51013. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51014. {
  51015. front: {
  51016. height: math.unit(6, "feet"),
  51017. name: "Front",
  51018. image: {
  51019. source: "./media/characters/roselle-st-papier/front.svg",
  51020. extra: 1430/1280,
  51021. bottom: 37/1467
  51022. }
  51023. },
  51024. back: {
  51025. height: math.unit(6, "feet"),
  51026. name: "Back",
  51027. image: {
  51028. source: "./media/characters/roselle-st-papier/back.svg",
  51029. extra: 1491/1296,
  51030. bottom: 23/1514
  51031. }
  51032. },
  51033. ear: {
  51034. height: math.unit(1.26, "feet"),
  51035. name: "Ear",
  51036. image: {
  51037. source: "./media/characters/roselle-st-papier/ear.svg"
  51038. }
  51039. },
  51040. },
  51041. [
  51042. {
  51043. name: "Normal",
  51044. height: math.unit(150, "feet"),
  51045. default: true
  51046. },
  51047. ]
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51051. {
  51052. front: {
  51053. height: math.unit(1, "inches"),
  51054. name: "Front",
  51055. image: {
  51056. source: "./media/characters/valargent/front.svg",
  51057. extra: 1825/1694,
  51058. bottom: 62/1887
  51059. }
  51060. },
  51061. back: {
  51062. height: math.unit(1, "inches"),
  51063. name: "Back",
  51064. image: {
  51065. source: "./media/characters/valargent/back.svg",
  51066. extra: 1775/1682,
  51067. bottom: 88/1863
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Micro",
  51074. height: math.unit(1, "inch"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(3.4, "meters"),
  51084. name: "Front",
  51085. image: {
  51086. source: "./media/characters/zarina/front.svg",
  51087. extra: 1733/1425,
  51088. bottom: 93/1826
  51089. }
  51090. },
  51091. squatting: {
  51092. height: math.unit(2.14, "meters"),
  51093. name: "Squatting",
  51094. image: {
  51095. source: "./media/characters/zarina/squatting.svg",
  51096. extra: 1073/788,
  51097. bottom: 63/1136
  51098. }
  51099. },
  51100. back: {
  51101. height: math.unit(2.14, "meters"),
  51102. name: "Back",
  51103. image: {
  51104. source: "./media/characters/zarina/back.svg",
  51105. extra: 1128/885,
  51106. bottom: 0/1128
  51107. }
  51108. },
  51109. },
  51110. [
  51111. {
  51112. name: "Normal",
  51113. height: math.unit(3.4, "meters"),
  51114. default: true
  51115. },
  51116. {
  51117. name: "Big",
  51118. height: math.unit(5, "meters")
  51119. },
  51120. {
  51121. name: "Macro",
  51122. height: math.unit(110, "meters")
  51123. },
  51124. ]
  51125. ))
  51126. characterMakers.push(() => makeCharacter(
  51127. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51128. {
  51129. front: {
  51130. height: math.unit(7, "feet"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/ventus-astro-fox/front.svg",
  51134. extra: 1792/1623,
  51135. bottom: 28/1820
  51136. }
  51137. },
  51138. back: {
  51139. height: math.unit(7, "feet"),
  51140. name: "Back",
  51141. image: {
  51142. source: "./media/characters/ventus-astro-fox/back.svg",
  51143. extra: 1789/1620,
  51144. bottom: 31/1820
  51145. }
  51146. },
  51147. outfit: {
  51148. height: math.unit(7, "feet"),
  51149. name: "Outfit",
  51150. image: {
  51151. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51152. extra: 1054/925,
  51153. bottom: 15/1069
  51154. }
  51155. },
  51156. head: {
  51157. height: math.unit(1.12, "feet"),
  51158. name: "Head",
  51159. image: {
  51160. source: "./media/characters/ventus-astro-fox/head.svg",
  51161. extra: 866/504,
  51162. bottom: 0/866
  51163. }
  51164. },
  51165. hand: {
  51166. height: math.unit(1, "feet"),
  51167. name: "Hand",
  51168. image: {
  51169. source: "./media/characters/ventus-astro-fox/hand.svg"
  51170. }
  51171. },
  51172. paw: {
  51173. height: math.unit(1.5, "feet"),
  51174. name: "Paw",
  51175. image: {
  51176. source: "./media/characters/ventus-astro-fox/paw.svg"
  51177. }
  51178. },
  51179. },
  51180. [
  51181. {
  51182. name: "Normal",
  51183. height: math.unit(7, "feet"),
  51184. default: true
  51185. },
  51186. {
  51187. name: "Macro",
  51188. height: math.unit(200, "feet")
  51189. },
  51190. {
  51191. name: "Cosmic",
  51192. height: math.unit(3, "universes")
  51193. },
  51194. ]
  51195. ))
  51196. characterMakers.push(() => makeCharacter(
  51197. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51198. {
  51199. front: {
  51200. height: math.unit(3, "meters"),
  51201. weight: math.unit(7000, "lb"),
  51202. name: "Front",
  51203. image: {
  51204. source: "./media/characters/core-t/front.svg",
  51205. extra: 5729/4941,
  51206. bottom: 1129/6858
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Big",
  51213. height: math.unit(3, "meters"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51220. {
  51221. normal: {
  51222. height: math.unit(6 + 6/12, "feet"),
  51223. weight: math.unit(275, "lb"),
  51224. name: "Front",
  51225. image: {
  51226. source: "./media/characters/cadbunny/normal.svg",
  51227. extra: 1129/947,
  51228. bottom: 93/1222
  51229. },
  51230. default: true,
  51231. form: "normal"
  51232. },
  51233. gigantamax: {
  51234. height: math.unit(26, "feet"),
  51235. weight: math.unit(16000, "lb"),
  51236. name: "Front",
  51237. image: {
  51238. source: "./media/characters/cadbunny/gigantamax.svg",
  51239. extra: 1133/944,
  51240. bottom: 90/1223
  51241. },
  51242. default: true,
  51243. form: "gigantamax"
  51244. },
  51245. },
  51246. [
  51247. {
  51248. name: "Normal",
  51249. height: math.unit(6 + 6/12, "feet"),
  51250. default: true,
  51251. form: "normal"
  51252. },
  51253. {
  51254. name: "Small",
  51255. height: math.unit(26, "feet"),
  51256. default: true,
  51257. form: "gigantamax"
  51258. },
  51259. {
  51260. name: "Large",
  51261. height: math.unit(78, "feet"),
  51262. form: "gigantamax"
  51263. },
  51264. ],
  51265. {
  51266. "normal": {
  51267. name: "Normal",
  51268. default: true
  51269. },
  51270. "gigantamax": {
  51271. name: "Gigantamax"
  51272. }
  51273. }
  51274. ))
  51275. characterMakers.push(() => makeCharacter(
  51276. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51277. {
  51278. anthroFront: {
  51279. height: math.unit(8, "feet"),
  51280. weight: math.unit(300, "lb"),
  51281. name: "Front",
  51282. image: {
  51283. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51284. extra: 1272/1176,
  51285. bottom: 53/1325
  51286. },
  51287. form: "anthro",
  51288. default: true
  51289. },
  51290. feralSide: {
  51291. height: math.unit(4, "feet"),
  51292. weight: math.unit(250, "lb"),
  51293. name: "Side",
  51294. image: {
  51295. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51296. extra: 731/621,
  51297. bottom: 0/731
  51298. },
  51299. form: "feral",
  51300. default: true
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Regular",
  51306. height: math.unit(8, "feet"),
  51307. form: "anthro"
  51308. },
  51309. {
  51310. name: "Macro",
  51311. height: math.unit(250, "feet"),
  51312. form: "anthro",
  51313. default: true
  51314. },
  51315. {
  51316. name: "Regular",
  51317. height: math.unit(4, "feet"),
  51318. form: "feral"
  51319. },
  51320. {
  51321. name: "Macro",
  51322. height: math.unit(125, "feet"),
  51323. form: "feral",
  51324. default: true
  51325. },
  51326. ],
  51327. {
  51328. "anthro": {
  51329. name: "Anthro",
  51330. default: true
  51331. },
  51332. "feral": {
  51333. name: "Feral",
  51334. },
  51335. }
  51336. ))
  51337. characterMakers.push(() => makeCharacter(
  51338. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51339. {
  51340. front: {
  51341. height: math.unit(11 + 10/12, "feet"),
  51342. weight: math.unit(1587, "kg"),
  51343. name: "Front",
  51344. image: {
  51345. source: "./media/characters/maple-javira-dragon/front.svg",
  51346. extra: 1136/744,
  51347. bottom: 73/1209
  51348. }
  51349. },
  51350. side: {
  51351. height: math.unit(11 + 10/12, "feet"),
  51352. weight: math.unit(1587, "kg"),
  51353. name: "Side",
  51354. image: {
  51355. source: "./media/characters/maple-javira-dragon/side.svg",
  51356. extra: 712/505,
  51357. bottom: 17/729
  51358. }
  51359. },
  51360. head: {
  51361. height: math.unit(8.05, "feet"),
  51362. name: "Head",
  51363. image: {
  51364. source: "./media/characters/maple-javira-dragon/head.svg",
  51365. extra: 1420/1344,
  51366. bottom: 0/1420
  51367. }
  51368. },
  51369. },
  51370. [
  51371. {
  51372. name: "Normal",
  51373. height: math.unit(11 + 10/12, "feet"),
  51374. default: true
  51375. },
  51376. ]
  51377. ))
  51378. characterMakers.push(() => makeCharacter(
  51379. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51380. {
  51381. front: {
  51382. height: math.unit(117, "cm"),
  51383. weight: math.unit(50, "kg"),
  51384. name: "Front",
  51385. image: {
  51386. source: "./media/characters/sonia-wyverntail/front.svg",
  51387. extra: 708/592,
  51388. bottom: 25/733
  51389. }
  51390. },
  51391. },
  51392. [
  51393. {
  51394. name: "Normal",
  51395. height: math.unit(117, "cm"),
  51396. default: true
  51397. },
  51398. ]
  51399. ))
  51400. characterMakers.push(() => makeCharacter(
  51401. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51402. {
  51403. front: {
  51404. height: math.unit(6 + 5/12, "feet"),
  51405. name: "Front",
  51406. image: {
  51407. source: "./media/characters/micah/front.svg",
  51408. extra: 1758/1546,
  51409. bottom: 214/1972
  51410. }
  51411. },
  51412. },
  51413. [
  51414. {
  51415. name: "Normal",
  51416. height: math.unit(6 + 5/12, "feet"),
  51417. default: true
  51418. },
  51419. ]
  51420. ))
  51421. characterMakers.push(() => makeCharacter(
  51422. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51423. {
  51424. front: {
  51425. height: math.unit(1.75, "meters"),
  51426. weight: math.unit(100, "kg"),
  51427. name: "Front",
  51428. image: {
  51429. source: "./media/characters/zarya/front.svg",
  51430. extra: 741/735,
  51431. bottom: 44/785
  51432. },
  51433. extraAttributes: {
  51434. "tailLength": {
  51435. name: "Tail Length",
  51436. power: 1,
  51437. type: "length",
  51438. base: math.unit(180, "cm")
  51439. },
  51440. "pawLength": {
  51441. name: "Paw Length",
  51442. power: 1,
  51443. type: "length",
  51444. base: math.unit(31, "cm")
  51445. },
  51446. }
  51447. },
  51448. side: {
  51449. height: math.unit(1.75, "meters"),
  51450. weight: math.unit(100, "kg"),
  51451. name: "Side",
  51452. image: {
  51453. source: "./media/characters/zarya/side.svg",
  51454. extra: 776/770,
  51455. bottom: 17/793
  51456. },
  51457. extraAttributes: {
  51458. "tailLength": {
  51459. name: "Tail Length",
  51460. power: 1,
  51461. type: "length",
  51462. base: math.unit(180, "cm")
  51463. },
  51464. "pawLength": {
  51465. name: "Paw Length",
  51466. power: 1,
  51467. type: "length",
  51468. base: math.unit(31, "cm")
  51469. },
  51470. }
  51471. },
  51472. back: {
  51473. height: math.unit(1.75, "meters"),
  51474. weight: math.unit(100, "kg"),
  51475. name: "Back",
  51476. image: {
  51477. source: "./media/characters/zarya/back.svg",
  51478. extra: 741/735,
  51479. bottom: 44/785
  51480. },
  51481. extraAttributes: {
  51482. "tailLength": {
  51483. name: "Tail Length",
  51484. power: 1,
  51485. type: "length",
  51486. base: math.unit(180, "cm")
  51487. },
  51488. "pawLength": {
  51489. name: "Paw Length",
  51490. power: 1,
  51491. type: "length",
  51492. base: math.unit(31, "cm")
  51493. },
  51494. }
  51495. },
  51496. frontNoTail: {
  51497. height: math.unit(1.75, "meters"),
  51498. weight: math.unit(100, "kg"),
  51499. name: "Front (No Tail)",
  51500. image: {
  51501. source: "./media/characters/zarya/front-no-tail.svg",
  51502. extra: 741/735,
  51503. bottom: 44/785
  51504. },
  51505. extraAttributes: {
  51506. "tailLength": {
  51507. name: "Tail Length",
  51508. power: 1,
  51509. type: "length",
  51510. base: math.unit(180, "cm")
  51511. },
  51512. "pawLength": {
  51513. name: "Paw Length",
  51514. power: 1,
  51515. type: "length",
  51516. base: math.unit(31, "cm")
  51517. },
  51518. }
  51519. },
  51520. dressed: {
  51521. height: math.unit(1.75, "meters"),
  51522. weight: math.unit(100, "kg"),
  51523. name: "Dressed",
  51524. image: {
  51525. source: "./media/characters/zarya/dressed.svg",
  51526. extra: 683/672,
  51527. bottom: 79/762
  51528. },
  51529. extraAttributes: {
  51530. "tailLength": {
  51531. name: "Tail Length",
  51532. power: 1,
  51533. type: "length",
  51534. base: math.unit(180, "cm")
  51535. },
  51536. "pawLength": {
  51537. name: "Paw Length",
  51538. power: 1,
  51539. type: "length",
  51540. base: math.unit(31, "cm")
  51541. },
  51542. }
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Micro",
  51548. height: math.unit(5, "cm")
  51549. },
  51550. {
  51551. name: "Normal",
  51552. height: math.unit(1.75, "meters"),
  51553. default: true
  51554. },
  51555. {
  51556. name: "Macro",
  51557. height: math.unit(122, "meters")
  51558. },
  51559. ]
  51560. ))
  51561. characterMakers.push(() => makeCharacter(
  51562. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51563. {
  51564. front: {
  51565. height: math.unit(7.5, "feet"),
  51566. name: "Front",
  51567. image: {
  51568. source: "./media/characters/sven-hatisson/front.svg",
  51569. extra: 917/857,
  51570. bottom: 42/959
  51571. }
  51572. },
  51573. back: {
  51574. height: math.unit(7.5, "feet"),
  51575. name: "Back",
  51576. image: {
  51577. source: "./media/characters/sven-hatisson/back.svg",
  51578. extra: 903/856,
  51579. bottom: 15/918
  51580. }
  51581. },
  51582. },
  51583. [
  51584. {
  51585. name: "Base Height",
  51586. height: math.unit(7.5, "feet")
  51587. },
  51588. {
  51589. name: "Usual Height",
  51590. height: math.unit(13.5, "feet"),
  51591. default: true
  51592. },
  51593. {
  51594. name: "Smaller Macro",
  51595. height: math.unit(85, "feet")
  51596. },
  51597. {
  51598. name: "Moderate Macro",
  51599. height: math.unit(320, "feet")
  51600. },
  51601. {
  51602. name: "Large Macro",
  51603. height: math.unit(1000, "feet")
  51604. },
  51605. {
  51606. name: "Largest Size",
  51607. height: math.unit(2, "miles")
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51613. {
  51614. side: {
  51615. height: math.unit(1.8, "meters"),
  51616. weight: math.unit(275, "kg"),
  51617. name: "Side",
  51618. image: {
  51619. source: "./media/characters/terra/side.svg",
  51620. extra: 1273/1147,
  51621. bottom: 0/1273
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(16.2, "meters"),
  51629. default: true
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51635. {
  51636. borzoiFront: {
  51637. height: math.unit(6 + 9/12, "feet"),
  51638. name: "Front",
  51639. image: {
  51640. source: "./media/characters/rae/borzoi-front.svg",
  51641. extra: 1161/1098,
  51642. bottom: 31/1192
  51643. },
  51644. form: "borzoi",
  51645. default: true
  51646. },
  51647. werewolfFront: {
  51648. height: math.unit(8 + 7/12, "feet"),
  51649. name: "Front",
  51650. image: {
  51651. source: "./media/characters/rae/werewolf-front.svg",
  51652. extra: 1411/1334,
  51653. bottom: 127/1538
  51654. },
  51655. form: "werewolf",
  51656. default: true
  51657. },
  51658. },
  51659. [
  51660. {
  51661. name: "Normal",
  51662. height: math.unit(6 + 9/12, "feet"),
  51663. default: true,
  51664. form: "borzoi"
  51665. },
  51666. {
  51667. name: "Normal",
  51668. height: math.unit(8 + 7/12, "feet"),
  51669. default: true,
  51670. form: "werewolf"
  51671. },
  51672. ],
  51673. {
  51674. "borzoi": {
  51675. name: "Borzoi",
  51676. default: true
  51677. },
  51678. "werewolf": {
  51679. name: "Werewolf",
  51680. },
  51681. }
  51682. ))
  51683. characterMakers.push(() => makeCharacter(
  51684. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51685. {
  51686. front: {
  51687. height: math.unit(8 + 7/12, "feet"),
  51688. weight: math.unit(482, "lb"),
  51689. name: "Front",
  51690. image: {
  51691. source: "./media/characters/kit/front.svg",
  51692. extra: 1247/1103,
  51693. bottom: 41/1288
  51694. }
  51695. },
  51696. back: {
  51697. height: math.unit(8 + 7/12, "feet"),
  51698. weight: math.unit(482, "lb"),
  51699. name: "Back",
  51700. image: {
  51701. source: "./media/characters/kit/back.svg",
  51702. extra: 1252/1123,
  51703. bottom: 21/1273
  51704. }
  51705. },
  51706. paw: {
  51707. height: math.unit(1.46, "feet"),
  51708. name: "Paw",
  51709. image: {
  51710. source: "./media/characters/kit/paw.svg"
  51711. }
  51712. },
  51713. },
  51714. [
  51715. {
  51716. name: "Normal",
  51717. height: math.unit(2.61, "meters"),
  51718. default: true
  51719. },
  51720. {
  51721. name: "\"Tall\"",
  51722. height: math.unit(8.21, "meters")
  51723. },
  51724. {
  51725. name: "Tall",
  51726. height: math.unit(19.6, "meters")
  51727. },
  51728. {
  51729. name: "Very Tall",
  51730. height: math.unit(57.91, "meters")
  51731. },
  51732. {
  51733. name: "Semi-Macro",
  51734. height: math.unit(138.64, "meters")
  51735. },
  51736. {
  51737. name: "Macro",
  51738. height: math.unit(831.99, "meters")
  51739. },
  51740. {
  51741. name: "EX-Macro",
  51742. height: math.unit(96451121, "meters")
  51743. },
  51744. {
  51745. name: "S1-Omnipotent",
  51746. height: math.unit(4.42074e+9, "meters")
  51747. },
  51748. {
  51749. name: "S2-Omnipotent",
  51750. height: math.unit(9.42074e+17, "meters")
  51751. },
  51752. {
  51753. name: "Omnipotent",
  51754. height: math.unit(4.23112e+24, "meters")
  51755. },
  51756. {
  51757. name: "Hypergod",
  51758. height: math.unit(5.05176e+27, "meters")
  51759. },
  51760. {
  51761. name: "Hypergod-EX",
  51762. height: math.unit(9.45532e+49, "meters")
  51763. },
  51764. {
  51765. name: "Hypergod-SP",
  51766. height: math.unit(9.45532e+195, "meters")
  51767. },
  51768. ]
  51769. ))
  51770. characterMakers.push(() => makeCharacter(
  51771. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51772. {
  51773. side: {
  51774. height: math.unit(0.6, "meters"),
  51775. weight: math.unit(24, "kg"),
  51776. name: "Side",
  51777. image: {
  51778. source: "./media/characters/celeste/side.svg",
  51779. extra: 810/517,
  51780. bottom: 53/863
  51781. }
  51782. },
  51783. },
  51784. [
  51785. {
  51786. name: "Velociraptor",
  51787. height: math.unit(0.6, "meters"),
  51788. default: true
  51789. },
  51790. {
  51791. name: "Utahraptor",
  51792. height: math.unit(1.8, "meters")
  51793. },
  51794. {
  51795. name: "Gallimimus",
  51796. height: math.unit(4.0, "meters")
  51797. },
  51798. {
  51799. name: "Large",
  51800. height: math.unit(20, "meters")
  51801. },
  51802. {
  51803. name: "Planetary",
  51804. height: math.unit(50, "megameters")
  51805. },
  51806. {
  51807. name: "Stellar",
  51808. height: math.unit(1.5, "gigameters")
  51809. },
  51810. {
  51811. name: "Galactic",
  51812. height: math.unit(100, "exameters")
  51813. },
  51814. ]
  51815. ))
  51816. characterMakers.push(() => makeCharacter(
  51817. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51818. {
  51819. front: {
  51820. height: math.unit(6, "feet"),
  51821. weight: math.unit(210, "lb"),
  51822. name: "Front",
  51823. image: {
  51824. source: "./media/characters/glacia/front.svg",
  51825. extra: 958/901,
  51826. bottom: 45/1003
  51827. }
  51828. },
  51829. },
  51830. [
  51831. {
  51832. name: "Macro",
  51833. height: math.unit(1000, "meters"),
  51834. default: true
  51835. },
  51836. ]
  51837. ))
  51838. characterMakers.push(() => makeCharacter(
  51839. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51840. {
  51841. front: {
  51842. height: math.unit(4, "meters"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/giri/front.svg",
  51846. extra: 966/894,
  51847. bottom: 21/987
  51848. }
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(4, "meters"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51861. {
  51862. back: {
  51863. height: math.unit(4, "feet"),
  51864. weight: math.unit(37, "lb"),
  51865. name: "Back",
  51866. image: {
  51867. source: "./media/characters/tin/back.svg",
  51868. extra: 845/780,
  51869. bottom: 28/873
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(4, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51883. {
  51884. front: {
  51885. height: math.unit(25, "feet"),
  51886. name: "Front",
  51887. image: {
  51888. source: "./media/characters/cadenza-vivace/front.svg",
  51889. extra: 1842/1578,
  51890. bottom: 30/1872
  51891. }
  51892. },
  51893. },
  51894. [
  51895. {
  51896. name: "Macro",
  51897. height: math.unit(25, "feet"),
  51898. default: true
  51899. },
  51900. ]
  51901. ))
  51902. characterMakers.push(() => makeCharacter(
  51903. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51904. {
  51905. front: {
  51906. height: math.unit(10, "feet"),
  51907. weight: math.unit(625, "kg"),
  51908. name: "Front",
  51909. image: {
  51910. source: "./media/characters/zain/front.svg",
  51911. extra: 1682/1498,
  51912. bottom: 223/1905
  51913. }
  51914. },
  51915. back: {
  51916. height: math.unit(10, "feet"),
  51917. weight: math.unit(625, "kg"),
  51918. name: "Back",
  51919. image: {
  51920. source: "./media/characters/zain/back.svg",
  51921. extra: 1814/1657,
  51922. bottom: 152/1966
  51923. }
  51924. },
  51925. head: {
  51926. height: math.unit(10, "feet"),
  51927. weight: math.unit(625, "kg"),
  51928. name: "Head",
  51929. image: {
  51930. source: "./media/characters/zain/head.svg",
  51931. extra: 1059/762,
  51932. bottom: 0/1059
  51933. }
  51934. },
  51935. },
  51936. [
  51937. {
  51938. name: "Normal",
  51939. height: math.unit(10, "feet"),
  51940. default: true
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51946. {
  51947. front: {
  51948. height: math.unit(6 + 5/12, "feet"),
  51949. weight: math.unit(750, "lb"),
  51950. name: "Front",
  51951. image: {
  51952. source: "./media/characters/ruchex/front.svg",
  51953. extra: 877/820,
  51954. bottom: 17/894
  51955. },
  51956. extraAttributes: {
  51957. "width": {
  51958. name: "Width",
  51959. power: 1,
  51960. type: "length",
  51961. base: math.unit(4.757, "feet")
  51962. },
  51963. }
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(6 + 5/12, "feet"),
  51970. default: true
  51971. },
  51972. ]
  51973. ))
  51974. characterMakers.push(() => makeCharacter(
  51975. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51976. {
  51977. dressedFront: {
  51978. height: math.unit(191, "cm"),
  51979. weight: math.unit(80, "kg"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/buster/dressed-front.svg",
  51983. extra: 1022/973,
  51984. bottom: 69/1091
  51985. }
  51986. },
  51987. dressedBack: {
  51988. height: math.unit(191, "cm"),
  51989. weight: math.unit(80, "kg"),
  51990. name: "Back",
  51991. image: {
  51992. source: "./media/characters/buster/dressed-back.svg",
  51993. extra: 1018/970,
  51994. bottom: 55/1073
  51995. }
  51996. },
  51997. nudeFront: {
  51998. height: math.unit(191, "cm"),
  51999. weight: math.unit(80, "kg"),
  52000. name: "Front (Nude)",
  52001. image: {
  52002. source: "./media/characters/buster/nude-front.svg",
  52003. extra: 1022/973,
  52004. bottom: 69/1091
  52005. }
  52006. },
  52007. nudeBack: {
  52008. height: math.unit(191, "cm"),
  52009. weight: math.unit(80, "kg"),
  52010. name: "Back (Nude)",
  52011. image: {
  52012. source: "./media/characters/buster/nude-back.svg",
  52013. extra: 1018/970,
  52014. bottom: 55/1073
  52015. }
  52016. },
  52017. dick: {
  52018. height: math.unit(2.59, "feet"),
  52019. name: "Dick",
  52020. image: {
  52021. source: "./media/characters/buster/dick.svg"
  52022. }
  52023. },
  52024. ass: {
  52025. height: math.unit(1.2, "feet"),
  52026. name: "Ass",
  52027. image: {
  52028. source: "./media/characters/buster/ass.svg"
  52029. }
  52030. },
  52031. },
  52032. [
  52033. {
  52034. name: "Normal",
  52035. height: math.unit(191, "cm"),
  52036. default: true
  52037. },
  52038. ]
  52039. ))
  52040. characterMakers.push(() => makeCharacter(
  52041. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52042. {
  52043. side: {
  52044. height: math.unit(8.1, "feet"),
  52045. weight: math.unit(3500, "lb"),
  52046. name: "Side",
  52047. image: {
  52048. source: "./media/characters/sonya/side.svg",
  52049. extra: 1730/1317,
  52050. bottom: 86/1816
  52051. }
  52052. },
  52053. },
  52054. [
  52055. {
  52056. name: "Normal",
  52057. height: math.unit(8.1, "feet"),
  52058. default: true
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52064. {
  52065. front: {
  52066. height: math.unit(6, "feet"),
  52067. weight: math.unit(150, "lb"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/cadence-andrysiak/front.svg",
  52071. extra: 1164/1121,
  52072. bottom: 60/1224
  52073. }
  52074. },
  52075. back: {
  52076. height: math.unit(6, "feet"),
  52077. weight: math.unit(150, "lb"),
  52078. name: "Back",
  52079. image: {
  52080. source: "./media/characters/cadence-andrysiak/back.svg",
  52081. extra: 1200/1165,
  52082. bottom: 9/1209
  52083. }
  52084. },
  52085. dressed: {
  52086. height: math.unit(6, "feet"),
  52087. weight: math.unit(150, "lb"),
  52088. name: "Dressed",
  52089. image: {
  52090. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52091. extra: 1164/1121,
  52092. bottom: 60/1224
  52093. }
  52094. },
  52095. },
  52096. [
  52097. {
  52098. name: "Micro",
  52099. height: math.unit(1, "mm")
  52100. },
  52101. {
  52102. name: "Normal",
  52103. height: math.unit(6, "feet"),
  52104. default: true
  52105. },
  52106. ]
  52107. ))
  52108. characterMakers.push(() => makeCharacter(
  52109. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52110. {
  52111. front: {
  52112. height: math.unit(60, "inches"),
  52113. weight: math.unit(16, "lb"),
  52114. preyCapacity: math.unit(80, "liters"),
  52115. name: "Front",
  52116. image: {
  52117. source: "./media/characters/penny-lynx/front.svg",
  52118. extra: 1959/1769,
  52119. bottom: 49/2008
  52120. }
  52121. },
  52122. },
  52123. [
  52124. {
  52125. name: "Nokia",
  52126. height: math.unit(2, "inches")
  52127. },
  52128. {
  52129. name: "Desktop",
  52130. height: math.unit(24, "inches")
  52131. },
  52132. {
  52133. name: "TV",
  52134. height: math.unit(60, "inches")
  52135. },
  52136. {
  52137. name: "Jumbotron",
  52138. height: math.unit(12, "feet")
  52139. },
  52140. {
  52141. name: "Billboard",
  52142. height: math.unit(48, "feet"),
  52143. default: true
  52144. },
  52145. {
  52146. name: "IMAX",
  52147. height: math.unit(96, "feet")
  52148. },
  52149. {
  52150. name: "SINGULARITY",
  52151. height: math.unit(864938, "miles")
  52152. },
  52153. ]
  52154. ))
  52155. characterMakers.push(() => makeCharacter(
  52156. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52157. {
  52158. front: {
  52159. height: math.unit(5 + 4/12, "feet"),
  52160. weight: math.unit(230, "lb"),
  52161. name: "Front",
  52162. image: {
  52163. source: "./media/characters/sukebe/front.svg",
  52164. extra: 2130/2038,
  52165. bottom: 90/2220
  52166. }
  52167. },
  52168. back: {
  52169. height: math.unit(3.48, "feet"),
  52170. weight: math.unit(230, "lb"),
  52171. name: "Back",
  52172. image: {
  52173. source: "./media/characters/sukebe/back.svg",
  52174. extra: 1670/1604,
  52175. bottom: 0/1670
  52176. }
  52177. },
  52178. },
  52179. [
  52180. {
  52181. name: "Normal",
  52182. height: math.unit(5 + 4/12, "feet"),
  52183. default: true
  52184. },
  52185. ]
  52186. ))
  52187. characterMakers.push(() => makeCharacter(
  52188. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52189. {
  52190. front: {
  52191. height: math.unit(6, "feet"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/nylla/front.svg",
  52195. extra: 1868/1699,
  52196. bottom: 97/1965
  52197. }
  52198. },
  52199. back: {
  52200. height: math.unit(6, "feet"),
  52201. name: "Back",
  52202. image: {
  52203. source: "./media/characters/nylla/back.svg",
  52204. extra: 1889/1712,
  52205. bottom: 93/1982
  52206. }
  52207. },
  52208. frontNsfw: {
  52209. height: math.unit(6, "feet"),
  52210. name: "Front (NSFW)",
  52211. image: {
  52212. source: "./media/characters/nylla/front-nsfw.svg",
  52213. extra: 1868/1699,
  52214. bottom: 97/1965
  52215. },
  52216. extraAttributes: {
  52217. "dickLength": {
  52218. name: "Dick Length",
  52219. power: 1,
  52220. type: "length",
  52221. base: math.unit(1.4, "feet")
  52222. },
  52223. "cumVolume": {
  52224. name: "Cum Volume",
  52225. power: 3,
  52226. type: "volume",
  52227. base: math.unit(100, "mL")
  52228. },
  52229. }
  52230. },
  52231. backNsfw: {
  52232. height: math.unit(6, "feet"),
  52233. name: "Back (NSFW)",
  52234. image: {
  52235. source: "./media/characters/nylla/back-nsfw.svg",
  52236. extra: 1889/1712,
  52237. bottom: 93/1982
  52238. }
  52239. },
  52240. maw: {
  52241. height: math.unit(2.10, "feet"),
  52242. name: "Maw",
  52243. image: {
  52244. source: "./media/characters/nylla/maw.svg"
  52245. }
  52246. },
  52247. paws: {
  52248. height: math.unit(2.06, "feet"),
  52249. name: "Paws",
  52250. image: {
  52251. source: "./media/characters/nylla/paws.svg"
  52252. }
  52253. },
  52254. muzzle: {
  52255. height: math.unit(0.61, "feet"),
  52256. name: "Muzzle",
  52257. image: {
  52258. source: "./media/characters/nylla/muzzle.svg"
  52259. }
  52260. },
  52261. sheath: {
  52262. height: math.unit(1.305, "feet"),
  52263. name: "Sheath",
  52264. image: {
  52265. source: "./media/characters/nylla/sheath.svg"
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Micro",
  52272. height: math.unit(7.5, "inches")
  52273. },
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(7, "feet"),
  52277. default: true
  52278. },
  52279. {
  52280. name: "Macro",
  52281. height: math.unit(60, "feet")
  52282. },
  52283. {
  52284. name: "Mega",
  52285. height: math.unit(200, "feet")
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52291. {
  52292. front: {
  52293. height: math.unit(10, "feet"),
  52294. weight: math.unit(2300, "lb"),
  52295. name: "Front",
  52296. image: {
  52297. source: "./media/characters/hunt3r/front.svg",
  52298. extra: 1909/1742,
  52299. bottom: 46/1955
  52300. }
  52301. },
  52302. },
  52303. [
  52304. {
  52305. name: "Normal",
  52306. height: math.unit(10, "feet"),
  52307. default: true
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52313. {
  52314. dressed: {
  52315. height: math.unit(11, "feet"),
  52316. weight: math.unit(18500, "lb"),
  52317. preyCapacity: math.unit(9, "people"),
  52318. name: "Dressed",
  52319. image: {
  52320. source: "./media/characters/cylphis/dressed.svg",
  52321. extra: 1028/1003,
  52322. bottom: 75/1103
  52323. },
  52324. },
  52325. undressed: {
  52326. height: math.unit(11, "feet"),
  52327. weight: math.unit(18500, "lb"),
  52328. preyCapacity: math.unit(9, "people"),
  52329. name: "Undressed",
  52330. image: {
  52331. source: "./media/characters/cylphis/undressed.svg",
  52332. extra: 1028/1003,
  52333. bottom: 75/1103
  52334. }
  52335. },
  52336. full: {
  52337. height: math.unit(11, "feet"),
  52338. weight: math.unit(18500 + 150*9, "lb"),
  52339. preyCapacity: math.unit(9, "people"),
  52340. name: "Full",
  52341. image: {
  52342. source: "./media/characters/cylphis/full.svg",
  52343. extra: 1028/1003,
  52344. bottom: 75/1103
  52345. }
  52346. },
  52347. },
  52348. [
  52349. {
  52350. name: "Small",
  52351. height: math.unit(8, "feet")
  52352. },
  52353. {
  52354. name: "Normal",
  52355. height: math.unit(11, "feet"),
  52356. default: true
  52357. },
  52358. ]
  52359. ))
  52360. characterMakers.push(() => makeCharacter(
  52361. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52362. {
  52363. front: {
  52364. height: math.unit(2 + 7/12, "feet"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/orishan/front.svg",
  52368. extra: 1058/1023,
  52369. bottom: 23/1081
  52370. }
  52371. },
  52372. back: {
  52373. height: math.unit(2 + 7/12, "feet"),
  52374. name: "Back",
  52375. image: {
  52376. source: "./media/characters/orishan/back.svg",
  52377. extra: 1058/1023,
  52378. bottom: 23/1081
  52379. }
  52380. },
  52381. },
  52382. [
  52383. {
  52384. name: "Micro",
  52385. height: math.unit(2, "cm")
  52386. },
  52387. {
  52388. name: "Normal",
  52389. height: math.unit(2 + 7/12, "feet"),
  52390. default: true
  52391. },
  52392. ]
  52393. ))
  52394. characterMakers.push(() => makeCharacter(
  52395. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52396. {
  52397. front: {
  52398. height: math.unit(3, "meters"),
  52399. weight: math.unit(508, "kg"),
  52400. name: "Front",
  52401. image: {
  52402. source: "./media/characters/seranis/front.svg",
  52403. extra: 1478/1454,
  52404. bottom: 41/1519
  52405. }
  52406. },
  52407. },
  52408. [
  52409. {
  52410. name: "Normal",
  52411. height: math.unit(3, "meters"),
  52412. default: true
  52413. },
  52414. {
  52415. name: "Macro",
  52416. height: math.unit(108, "meters")
  52417. },
  52418. {
  52419. name: "Megamacro",
  52420. height: math.unit(1250, "meters")
  52421. },
  52422. ]
  52423. ))
  52424. characterMakers.push(() => makeCharacter(
  52425. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52426. {
  52427. undressed: {
  52428. height: math.unit(5 + 3/12, "feet"),
  52429. name: "Undressed",
  52430. image: {
  52431. source: "./media/characters/ankou/undressed.svg",
  52432. extra: 1301/1213,
  52433. bottom: 87/1388
  52434. }
  52435. },
  52436. dressed: {
  52437. height: math.unit(5 + 3/12, "feet"),
  52438. name: "Dressed",
  52439. image: {
  52440. source: "./media/characters/ankou/dressed.svg",
  52441. extra: 1301/1213,
  52442. bottom: 87/1388
  52443. }
  52444. },
  52445. head: {
  52446. height: math.unit(1.61, "feet"),
  52447. name: "Head",
  52448. image: {
  52449. source: "./media/characters/ankou/head.svg"
  52450. }
  52451. },
  52452. },
  52453. [
  52454. {
  52455. name: "Normal",
  52456. height: math.unit(5 + 3/12, "feet"),
  52457. default: true
  52458. },
  52459. ]
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52463. {
  52464. side: {
  52465. height: math.unit(6 + 3/12, "feet"),
  52466. weight: math.unit(200, "kg"),
  52467. name: "Side",
  52468. image: {
  52469. source: "./media/characters/juniper-skunktaur/side.svg",
  52470. extra: 1574/1229,
  52471. bottom: 38/1612
  52472. }
  52473. },
  52474. front: {
  52475. height: math.unit(6 + 3/12, "feet"),
  52476. weight: math.unit(200, "kg"),
  52477. name: "Front",
  52478. image: {
  52479. source: "./media/characters/juniper-skunktaur/front.svg",
  52480. extra: 1337/1278,
  52481. bottom: 22/1359
  52482. }
  52483. },
  52484. back: {
  52485. height: math.unit(6 + 3/12, "feet"),
  52486. weight: math.unit(200, "kg"),
  52487. name: "Back",
  52488. image: {
  52489. source: "./media/characters/juniper-skunktaur/back.svg",
  52490. extra: 1618/1273,
  52491. bottom: 13/1631
  52492. }
  52493. },
  52494. top: {
  52495. height: math.unit(2.62, "feet"),
  52496. weight: math.unit(200, "kg"),
  52497. name: "Top",
  52498. image: {
  52499. source: "./media/characters/juniper-skunktaur/top.svg"
  52500. }
  52501. },
  52502. },
  52503. [
  52504. {
  52505. name: "Normal",
  52506. height: math.unit(6 + 3/12, "feet"),
  52507. default: true
  52508. },
  52509. ]
  52510. ))
  52511. characterMakers.push(() => makeCharacter(
  52512. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52513. {
  52514. front: {
  52515. height: math.unit(20.5, "feet"),
  52516. name: "Front",
  52517. image: {
  52518. source: "./media/characters/rei/front.svg",
  52519. extra: 1349/1195,
  52520. bottom: 31/1380
  52521. }
  52522. },
  52523. back: {
  52524. height: math.unit(20.5, "feet"),
  52525. name: "Back",
  52526. image: {
  52527. source: "./media/characters/rei/back.svg",
  52528. extra: 1358/1204,
  52529. bottom: 22/1380
  52530. }
  52531. },
  52532. pawsDigi: {
  52533. height: math.unit(3.45, "feet"),
  52534. name: "Paws (Digi)",
  52535. image: {
  52536. source: "./media/characters/rei/paws-digi.svg"
  52537. }
  52538. },
  52539. pawsPlanti: {
  52540. height: math.unit(3.45, "feet"),
  52541. name: "Paws (Planti)",
  52542. image: {
  52543. source: "./media/characters/rei/paws-planti.svg"
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Normal",
  52550. height: math.unit(20.5, "feet"),
  52551. default: true
  52552. },
  52553. ]
  52554. ))
  52555. characterMakers.push(() => makeCharacter(
  52556. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52557. {
  52558. front: {
  52559. height: math.unit(5 + 11/12, "feet"),
  52560. name: "Front",
  52561. image: {
  52562. source: "./media/characters/carina/front.svg",
  52563. extra: 1720/1449,
  52564. bottom: 14/1734
  52565. }
  52566. },
  52567. back: {
  52568. height: math.unit(5 + 11/12, "feet"),
  52569. name: "Back",
  52570. image: {
  52571. source: "./media/characters/carina/back.svg",
  52572. extra: 1493/1445,
  52573. bottom: 17/1510
  52574. }
  52575. },
  52576. paw: {
  52577. height: math.unit(0.92, "feet"),
  52578. name: "Paw",
  52579. image: {
  52580. source: "./media/characters/carina/paw.svg"
  52581. }
  52582. },
  52583. },
  52584. [
  52585. {
  52586. name: "Normal",
  52587. height: math.unit(5 + 11/12, "feet"),
  52588. default: true
  52589. },
  52590. ]
  52591. ))
  52592. characterMakers.push(() => makeCharacter(
  52593. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52594. {
  52595. normal_front: {
  52596. height: math.unit(4.88, "meters"),
  52597. name: "Front",
  52598. image: {
  52599. source: "./media/characters/maya/normal-front.svg",
  52600. extra: 1222/1145,
  52601. bottom: 57/1279
  52602. },
  52603. form: "normal",
  52604. default: true
  52605. },
  52606. monstrous_front: {
  52607. height: math.unit(10, "meters"),
  52608. name: "Front",
  52609. image: {
  52610. source: "./media/characters/maya/monstrous-front.svg",
  52611. extra: 1523/1109,
  52612. bottom: 113/1636
  52613. },
  52614. form: "monstrous",
  52615. extraAttributes: {
  52616. "swallowSize": {
  52617. name: "Tailmaw Bite Size",
  52618. power: 3,
  52619. type: "volume",
  52620. base: math.unit(43000, "liters")
  52621. },
  52622. }
  52623. },
  52624. taur_front: {
  52625. height: math.unit(10, "meters"),
  52626. name: "Front",
  52627. image: {
  52628. source: "./media/characters/maya/taur-front.svg",
  52629. extra: 743/506,
  52630. bottom: 101/844
  52631. },
  52632. form: "taur",
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(4.88, "meters"),
  52639. default: true,
  52640. form: "normal"
  52641. },
  52642. {
  52643. name: "Macro",
  52644. height: math.unit(38.1, "meters"),
  52645. form: "normal"
  52646. },
  52647. {
  52648. name: "Macro+",
  52649. height: math.unit(152.4, "meters"),
  52650. form: "normal"
  52651. },
  52652. {
  52653. name: "Macro++",
  52654. height: math.unit(16.09, "km"),
  52655. form: "normal"
  52656. },
  52657. {
  52658. name: "Mega-macro",
  52659. height: math.unit(700, "megameters"),
  52660. form: "normal"
  52661. },
  52662. {
  52663. name: "Satiated",
  52664. height: math.unit(10, "meters"),
  52665. default: true,
  52666. form: "monstrous"
  52667. },
  52668. {
  52669. name: "Hungry",
  52670. height: math.unit(75, "meters"),
  52671. form: "monstrous"
  52672. },
  52673. {
  52674. name: "Ravenous",
  52675. height: math.unit(500, "meters"),
  52676. form: "monstrous"
  52677. },
  52678. {
  52679. name: "\"Normal\"",
  52680. height: math.unit(10, "meters"),
  52681. form: "taur"
  52682. },
  52683. {
  52684. name: "Macro",
  52685. height: math.unit(50, "meters"),
  52686. form: "taur"
  52687. },
  52688. ],
  52689. {
  52690. "normal": {
  52691. name: "Normal",
  52692. default: true
  52693. },
  52694. "monstrous": {
  52695. name: "Monstrous",
  52696. },
  52697. "taur": {
  52698. name: "Taur",
  52699. },
  52700. }
  52701. ))
  52702. characterMakers.push(() => makeCharacter(
  52703. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52704. {
  52705. front: {
  52706. height: math.unit(6 + 2/12, "feet"),
  52707. weight: math.unit(500, "lb"),
  52708. preyCapacity: math.unit(4, "people"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/yepir/front.svg"
  52712. }
  52713. },
  52714. side: {
  52715. height: math.unit(6 + 2/12, "feet"),
  52716. weight: math.unit(500, "lb"),
  52717. preyCapacity: math.unit(4, "people"),
  52718. name: "Side",
  52719. image: {
  52720. source: "./media/characters/yepir/side.svg"
  52721. }
  52722. },
  52723. paw: {
  52724. height: math.unit(1.05, "feet"),
  52725. name: "Paw",
  52726. image: {
  52727. source: "./media/characters/yepir/paw.svg"
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(6 + 2/12, "feet"),
  52735. default: true
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52741. {
  52742. front: {
  52743. height: math.unit(5 + 4/12, "feet"),
  52744. name: "Front",
  52745. image: {
  52746. source: "./media/characters/russec/front.svg",
  52747. extra: 1926/1626,
  52748. bottom: 72/1998
  52749. }
  52750. },
  52751. back: {
  52752. height: math.unit(5 + 4/12, "feet"),
  52753. name: "Back",
  52754. image: {
  52755. source: "./media/characters/russec/back.svg",
  52756. extra: 1910/1591,
  52757. bottom: 48/1958
  52758. }
  52759. },
  52760. },
  52761. [
  52762. {
  52763. name: "Small",
  52764. height: math.unit(5 + 4/12, "feet")
  52765. },
  52766. {
  52767. name: "Normal",
  52768. height: math.unit(72, "feet"),
  52769. default: true
  52770. },
  52771. ]
  52772. ))
  52773. characterMakers.push(() => makeCharacter(
  52774. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52775. {
  52776. side: {
  52777. height: math.unit(12, "feet"),
  52778. name: "Side",
  52779. image: {
  52780. source: "./media/characters/cianus/side.svg",
  52781. extra: 808/526,
  52782. bottom: 61/869
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(12, "feet"),
  52790. default: true
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52796. {
  52797. front: {
  52798. height: math.unit(9 + 6/12, "feet"),
  52799. weight: math.unit(300, "lb"),
  52800. name: "Front",
  52801. image: {
  52802. source: "./media/characters/ahab/front.svg",
  52803. extra: 1897/1868,
  52804. bottom: 121/2018
  52805. }
  52806. },
  52807. frontNsfw: {
  52808. height: math.unit(9 + 6/12, "feet"),
  52809. weight: math.unit(300, "lb"),
  52810. name: "Front-nsfw",
  52811. image: {
  52812. source: "./media/characters/ahab/front-nsfw.svg",
  52813. extra: 1897/1868,
  52814. bottom: 121/2018
  52815. }
  52816. },
  52817. },
  52818. [
  52819. {
  52820. name: "Normal",
  52821. height: math.unit(9 + 6/12, "feet")
  52822. },
  52823. {
  52824. name: "Macro",
  52825. height: math.unit(657, "feet"),
  52826. default: true
  52827. },
  52828. ]
  52829. ))
  52830. characterMakers.push(() => makeCharacter(
  52831. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52832. {
  52833. front: {
  52834. height: math.unit(2.69, "meters"),
  52835. weight: math.unit(132, "kg"),
  52836. name: "Front",
  52837. image: {
  52838. source: "./media/characters/aarkus/front.svg",
  52839. extra: 1400/1231,
  52840. bottom: 34/1434
  52841. }
  52842. },
  52843. back: {
  52844. height: math.unit(2.69, "meters"),
  52845. weight: math.unit(132, "kg"),
  52846. name: "Back",
  52847. image: {
  52848. source: "./media/characters/aarkus/back.svg",
  52849. extra: 1381/1218,
  52850. bottom: 30/1411
  52851. }
  52852. },
  52853. frontNsfw: {
  52854. height: math.unit(2.69, "meters"),
  52855. weight: math.unit(132, "kg"),
  52856. name: "Front (NSFW)",
  52857. image: {
  52858. source: "./media/characters/aarkus/front-nsfw.svg",
  52859. extra: 1400/1231,
  52860. bottom: 34/1434
  52861. }
  52862. },
  52863. foot: {
  52864. height: math.unit(1.45, "feet"),
  52865. name: "Foot",
  52866. image: {
  52867. source: "./media/characters/aarkus/foot.svg"
  52868. }
  52869. },
  52870. head: {
  52871. height: math.unit(2.85, "feet"),
  52872. name: "Head",
  52873. image: {
  52874. source: "./media/characters/aarkus/head.svg"
  52875. }
  52876. },
  52877. headAlt: {
  52878. height: math.unit(3.07, "feet"),
  52879. name: "Head (Alt)",
  52880. image: {
  52881. source: "./media/characters/aarkus/head-alt.svg"
  52882. }
  52883. },
  52884. mouth: {
  52885. height: math.unit(1.25, "feet"),
  52886. name: "Mouth",
  52887. image: {
  52888. source: "./media/characters/aarkus/mouth.svg"
  52889. }
  52890. },
  52891. dick: {
  52892. height: math.unit(1.77, "feet"),
  52893. name: "Dick",
  52894. image: {
  52895. source: "./media/characters/aarkus/dick.svg"
  52896. }
  52897. },
  52898. },
  52899. [
  52900. {
  52901. name: "Normal",
  52902. height: math.unit(2.69, "meters"),
  52903. default: true
  52904. },
  52905. {
  52906. name: "Macro",
  52907. height: math.unit(269, "meters")
  52908. },
  52909. {
  52910. name: "Macro+",
  52911. height: math.unit(672.5, "meters")
  52912. },
  52913. {
  52914. name: "Megamacro",
  52915. height: math.unit(2.017, "km")
  52916. },
  52917. ]
  52918. ))
  52919. characterMakers.push(() => makeCharacter(
  52920. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52921. {
  52922. front: {
  52923. height: math.unit(23.47, "cm"),
  52924. weight: math.unit(600, "grams"),
  52925. name: "Front",
  52926. image: {
  52927. source: "./media/characters/diode/front.svg",
  52928. extra: 1778/1396,
  52929. bottom: 95/1873
  52930. }
  52931. },
  52932. side: {
  52933. height: math.unit(23.47, "cm"),
  52934. weight: math.unit(600, "grams"),
  52935. name: "Side",
  52936. image: {
  52937. source: "./media/characters/diode/side.svg",
  52938. extra: 1831/1404,
  52939. bottom: 86/1917
  52940. }
  52941. },
  52942. wings: {
  52943. height: math.unit(0.683, "feet"),
  52944. name: "Wings",
  52945. image: {
  52946. source: "./media/characters/diode/wings.svg"
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(23.47, "cm"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52960. {
  52961. front: {
  52962. height: math.unit(6 + 3/12, "feet"),
  52963. weight: math.unit(250, "lb"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/reika/front.svg",
  52967. extra: 1120/1078,
  52968. bottom: 86/1206
  52969. }
  52970. },
  52971. },
  52972. [
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(6 + 3/12, "feet"),
  52976. default: true
  52977. },
  52978. ]
  52979. ))
  52980. characterMakers.push(() => makeCharacter(
  52981. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52982. {
  52983. front: {
  52984. height: math.unit(16 + 8/12, "feet"),
  52985. weight: math.unit(9000, "lb"),
  52986. name: "Front",
  52987. image: {
  52988. source: "./media/characters/lokuto-takama/front.svg",
  52989. extra: 1774/1632,
  52990. bottom: 147/1921
  52991. },
  52992. extraAttributes: {
  52993. "bustWidth": {
  52994. name: "Bust Width",
  52995. power: 1,
  52996. type: "length",
  52997. base: math.unit(2.4, "meters")
  52998. },
  52999. "breastWeight": {
  53000. name: "Breast Weight",
  53001. power: 3,
  53002. type: "mass",
  53003. base: math.unit(1000, "kg")
  53004. },
  53005. }
  53006. },
  53007. },
  53008. [
  53009. {
  53010. name: "Normal",
  53011. height: math.unit(16 + 8/12, "feet"),
  53012. default: true
  53013. },
  53014. ]
  53015. ))
  53016. characterMakers.push(() => makeCharacter(
  53017. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53018. {
  53019. front: {
  53020. height: math.unit(10, "cm"),
  53021. weight: math.unit(850, "grams"),
  53022. name: "Front",
  53023. image: {
  53024. source: "./media/characters/owak-bone/front.svg",
  53025. extra: 1965/1801,
  53026. bottom: 31/1996
  53027. }
  53028. },
  53029. },
  53030. [
  53031. {
  53032. name: "Normal",
  53033. height: math.unit(10, "cm"),
  53034. default: true
  53035. },
  53036. ]
  53037. ))
  53038. characterMakers.push(() => makeCharacter(
  53039. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53040. {
  53041. front: {
  53042. height: math.unit(2 + 6/12, "feet"),
  53043. weight: math.unit(9, "lb"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/muffin/front.svg",
  53047. extra: 1220/1195,
  53048. bottom: 84/1304
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(2 + 6/12, "feet"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(7, "feet"),
  53065. name: "Front",
  53066. image: {
  53067. source: "./media/characters/chimera/front.svg",
  53068. extra: 1752/1614,
  53069. bottom: 68/1820
  53070. }
  53071. },
  53072. },
  53073. [
  53074. {
  53075. name: "Normal",
  53076. height: math.unit(7, "feet")
  53077. },
  53078. {
  53079. name: "Gigamacro",
  53080. height: math.unit(2.9, "gigameters"),
  53081. default: true
  53082. },
  53083. {
  53084. name: "Universal",
  53085. height: math.unit(1.56e26, "yottameters")
  53086. },
  53087. ]
  53088. ))
  53089. characterMakers.push(() => makeCharacter(
  53090. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53091. {
  53092. front: {
  53093. height: math.unit(3, "feet"),
  53094. weight: math.unit(20, "lb"),
  53095. name: "Front",
  53096. image: {
  53097. source: "./media/characters/kit-fennec-fox/front.svg",
  53098. extra: 1027/932,
  53099. bottom: 16/1043
  53100. }
  53101. },
  53102. back: {
  53103. height: math.unit(3, "feet"),
  53104. weight: math.unit(20, "lb"),
  53105. name: "Back",
  53106. image: {
  53107. source: "./media/characters/kit-fennec-fox/back.svg",
  53108. extra: 1027/932,
  53109. bottom: 16/1043
  53110. }
  53111. },
  53112. },
  53113. [
  53114. {
  53115. name: "Normal",
  53116. height: math.unit(3, "feet"),
  53117. default: true
  53118. },
  53119. ]
  53120. ))
  53121. characterMakers.push(() => makeCharacter(
  53122. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53123. {
  53124. front: {
  53125. height: math.unit(167, "cm"),
  53126. name: "Front",
  53127. image: {
  53128. source: "./media/characters/blue-otter/front.svg",
  53129. extra: 1951/1920,
  53130. bottom: 31/1982
  53131. }
  53132. },
  53133. },
  53134. [
  53135. {
  53136. name: "Otter-Sized",
  53137. height: math.unit(100, "cm")
  53138. },
  53139. {
  53140. name: "Normal",
  53141. height: math.unit(167, "cm"),
  53142. default: true
  53143. },
  53144. ]
  53145. ))
  53146. characterMakers.push(() => makeCharacter(
  53147. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53148. {
  53149. front: {
  53150. height: math.unit(4 + 4/12, "feet"),
  53151. name: "Front",
  53152. image: {
  53153. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53154. extra: 1072/1067,
  53155. bottom: 117/1189
  53156. }
  53157. },
  53158. back: {
  53159. height: math.unit(4 + 4/12, "feet"),
  53160. name: "Back",
  53161. image: {
  53162. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53163. extra: 1135/1129,
  53164. bottom: 57/1192
  53165. }
  53166. },
  53167. head: {
  53168. height: math.unit(1.77, "feet"),
  53169. name: "Head",
  53170. image: {
  53171. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53172. }
  53173. },
  53174. },
  53175. [
  53176. {
  53177. name: "Normal",
  53178. height: math.unit(4 + 4/12, "feet"),
  53179. default: true
  53180. },
  53181. ]
  53182. ))
  53183. characterMakers.push(() => makeCharacter(
  53184. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53185. {
  53186. front: {
  53187. height: math.unit(2, "inches"),
  53188. name: "Front",
  53189. image: {
  53190. source: "./media/characters/carley-hartford/front.svg",
  53191. extra: 1035/988,
  53192. bottom: 23/1058
  53193. }
  53194. },
  53195. back: {
  53196. height: math.unit(2, "inches"),
  53197. name: "Back",
  53198. image: {
  53199. source: "./media/characters/carley-hartford/back.svg",
  53200. extra: 1035/988,
  53201. bottom: 23/1058
  53202. }
  53203. },
  53204. dressed: {
  53205. height: math.unit(2, "inches"),
  53206. name: "Dressed",
  53207. image: {
  53208. source: "./media/characters/carley-hartford/dressed.svg",
  53209. extra: 651/620,
  53210. bottom: 0/651
  53211. }
  53212. },
  53213. },
  53214. [
  53215. {
  53216. name: "Micro",
  53217. height: math.unit(2, "inches"),
  53218. default: true
  53219. },
  53220. {
  53221. name: "Macro",
  53222. height: math.unit(6 + 3/12, "feet")
  53223. },
  53224. ]
  53225. ))
  53226. characterMakers.push(() => makeCharacter(
  53227. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53228. {
  53229. front: {
  53230. height: math.unit(2 + 3/12, "feet"),
  53231. weight: math.unit(15 + 7/16, "lb"),
  53232. name: "Front",
  53233. image: {
  53234. source: "./media/characters/duke/front.svg",
  53235. extra: 910/815,
  53236. bottom: 30/940
  53237. }
  53238. },
  53239. },
  53240. [
  53241. {
  53242. name: "Normal",
  53243. height: math.unit(2 + 3/12, "feet"),
  53244. default: true
  53245. },
  53246. ]
  53247. ))
  53248. characterMakers.push(() => makeCharacter(
  53249. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53250. {
  53251. front: {
  53252. height: math.unit(5 + 4/12, "feet"),
  53253. weight: math.unit(156, "lb"),
  53254. name: "Front",
  53255. image: {
  53256. source: "./media/characters/dein/front.svg",
  53257. extra: 855/815,
  53258. bottom: 48/903
  53259. }
  53260. },
  53261. side: {
  53262. height: math.unit(5 + 4/12, "feet"),
  53263. weight: math.unit(156, "lb"),
  53264. name: "side",
  53265. image: {
  53266. source: "./media/characters/dein/side.svg",
  53267. extra: 846/803,
  53268. bottom: 25/871
  53269. }
  53270. },
  53271. maw: {
  53272. height: math.unit(1.45, "feet"),
  53273. name: "Maw",
  53274. image: {
  53275. source: "./media/characters/dein/maw.svg"
  53276. }
  53277. },
  53278. },
  53279. [
  53280. {
  53281. name: "Ferret Sized",
  53282. height: math.unit(2 + 5/12, "feet")
  53283. },
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(5 + 4/12, "feet"),
  53287. default: true
  53288. },
  53289. ]
  53290. ))
  53291. characterMakers.push(() => makeCharacter(
  53292. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53293. {
  53294. front: {
  53295. height: math.unit(84 + 8/12, "feet"),
  53296. weight: math.unit(942180, "lb"),
  53297. name: "Front",
  53298. image: {
  53299. source: "./media/characters/daurine-arima/front.svg",
  53300. extra: 1989/1782,
  53301. bottom: 37/2026
  53302. }
  53303. },
  53304. side: {
  53305. height: math.unit(84 + 8/12, "feet"),
  53306. weight: math.unit(942180, "lb"),
  53307. name: "Side",
  53308. image: {
  53309. source: "./media/characters/daurine-arima/side.svg",
  53310. extra: 1997/1790,
  53311. bottom: 21/2018
  53312. }
  53313. },
  53314. back: {
  53315. height: math.unit(84 + 8/12, "feet"),
  53316. weight: math.unit(942180, "lb"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/daurine-arima/back.svg",
  53320. extra: 1992/1800,
  53321. bottom: 12/2004
  53322. }
  53323. },
  53324. head: {
  53325. height: math.unit(15.5, "feet"),
  53326. name: "Head",
  53327. image: {
  53328. source: "./media/characters/daurine-arima/head.svg"
  53329. }
  53330. },
  53331. headAlt: {
  53332. height: math.unit(19.19, "feet"),
  53333. name: "Head (Alt)",
  53334. image: {
  53335. source: "./media/characters/daurine-arima/head-alt.svg"
  53336. }
  53337. },
  53338. },
  53339. [
  53340. {
  53341. name: "Minimum height",
  53342. height: math.unit(8 + 10/12, "feet")
  53343. },
  53344. {
  53345. name: "Comfort height",
  53346. height: math.unit(19 + 6 /12, "feet")
  53347. },
  53348. {
  53349. name: "\"Normal\" height",
  53350. height: math.unit(28 + 10/12, "feet")
  53351. },
  53352. {
  53353. name: "Base height",
  53354. height: math.unit(84 + 8/12, "feet"),
  53355. default: true
  53356. },
  53357. {
  53358. name: "Mini-macro",
  53359. height: math.unit(2360, "feet")
  53360. },
  53361. {
  53362. name: "Macro",
  53363. height: math.unit(10, "miles")
  53364. },
  53365. {
  53366. name: "Goddess",
  53367. height: math.unit(9.99e40, "yottameters")
  53368. },
  53369. ]
  53370. ))
  53371. characterMakers.push(() => makeCharacter(
  53372. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53373. {
  53374. front: {
  53375. height: math.unit(2.3, "meters"),
  53376. name: "Front",
  53377. image: {
  53378. source: "./media/characters/cilenomon/front.svg",
  53379. extra: 1963/1778,
  53380. bottom: 54/2017
  53381. }
  53382. },
  53383. },
  53384. [
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(2.3, "meters"),
  53388. default: true
  53389. },
  53390. {
  53391. name: "Big",
  53392. height: math.unit(5, "meters")
  53393. },
  53394. {
  53395. name: "Macro",
  53396. height: math.unit(30, "meters")
  53397. },
  53398. {
  53399. name: "True",
  53400. height: math.unit(1, "universe")
  53401. },
  53402. ]
  53403. ))
  53404. characterMakers.push(() => makeCharacter(
  53405. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53406. {
  53407. front: {
  53408. height: math.unit(5, "feet"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/sen-mink/front.svg",
  53412. extra: 1727/1675,
  53413. bottom: 35/1762
  53414. }
  53415. },
  53416. },
  53417. [
  53418. {
  53419. name: "Normal",
  53420. height: math.unit(5, "feet"),
  53421. default: true
  53422. },
  53423. ]
  53424. ))
  53425. characterMakers.push(() => makeCharacter(
  53426. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53427. {
  53428. front: {
  53429. height: math.unit(5.42999, "feet"),
  53430. weight: math.unit(100, "lb"),
  53431. name: "Front",
  53432. image: {
  53433. source: "./media/characters/ophois/front.svg",
  53434. extra: 1429/1286,
  53435. bottom: 60/1489
  53436. }
  53437. },
  53438. },
  53439. [
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(5.42999, "feet"),
  53443. default: true
  53444. },
  53445. ]
  53446. ))
  53447. characterMakers.push(() => makeCharacter(
  53448. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53449. {
  53450. front: {
  53451. height: math.unit(2, "meters"),
  53452. name: "Front",
  53453. image: {
  53454. source: "./media/characters/riley/front.svg",
  53455. extra: 1779/1754,
  53456. bottom: 139/1918
  53457. }
  53458. },
  53459. },
  53460. [
  53461. {
  53462. name: "Normal",
  53463. height: math.unit(2, "meters"),
  53464. default: true
  53465. },
  53466. ]
  53467. ))
  53468. characterMakers.push(() => makeCharacter(
  53469. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53470. {
  53471. front: {
  53472. height: math.unit(6 + 2/12, "feet"),
  53473. weight: math.unit(195, "lb"),
  53474. preyCapacity: math.unit(6, "people"),
  53475. name: "Front",
  53476. image: {
  53477. source: "./media/characters/shuken-flash/front.svg",
  53478. extra: 1905/1739,
  53479. bottom: 65/1970
  53480. }
  53481. },
  53482. back: {
  53483. height: math.unit(6 + 2/12, "feet"),
  53484. weight: math.unit(195, "lb"),
  53485. preyCapacity: math.unit(6, "people"),
  53486. name: "Back",
  53487. image: {
  53488. source: "./media/characters/shuken-flash/back.svg",
  53489. extra: 1912/1751,
  53490. bottom: 13/1925
  53491. }
  53492. },
  53493. },
  53494. [
  53495. {
  53496. name: "Normal",
  53497. height: math.unit(6 + 2/12, "feet"),
  53498. default: true
  53499. },
  53500. ]
  53501. ))
  53502. characterMakers.push(() => makeCharacter(
  53503. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53504. {
  53505. front: {
  53506. height: math.unit(5 + 9/12, "feet"),
  53507. weight: math.unit(150, "lb"),
  53508. name: "Front",
  53509. image: {
  53510. source: "./media/characters/plat/front.svg",
  53511. extra: 1816/1703,
  53512. bottom: 43/1859
  53513. }
  53514. },
  53515. side: {
  53516. height: math.unit(5 + 9/12, "feet"),
  53517. weight: math.unit(300, "lb"),
  53518. name: "Side",
  53519. image: {
  53520. source: "./media/characters/plat/side.svg",
  53521. extra: 1824/1699,
  53522. bottom: 18/1842
  53523. }
  53524. },
  53525. },
  53526. [
  53527. {
  53528. name: "Normal",
  53529. height: math.unit(5 + 9/12, "feet"),
  53530. default: true
  53531. },
  53532. ]
  53533. ))
  53534. characterMakers.push(() => makeCharacter(
  53535. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53536. {
  53537. front: {
  53538. height: math.unit(9, "feet"),
  53539. weight: math.unit(1800, "lb"),
  53540. name: "Front",
  53541. image: {
  53542. source: "./media/characters/elaine/front.svg",
  53543. extra: 1833/1354,
  53544. bottom: 25/1858
  53545. }
  53546. },
  53547. back: {
  53548. height: math.unit(8.8, "feet"),
  53549. weight: math.unit(1800, "lb"),
  53550. name: "Back",
  53551. image: {
  53552. source: "./media/characters/elaine/back.svg",
  53553. extra: 1641/1233,
  53554. bottom: 53/1694
  53555. }
  53556. },
  53557. },
  53558. [
  53559. {
  53560. name: "Normal",
  53561. height: math.unit(9, "feet"),
  53562. default: true
  53563. },
  53564. ]
  53565. ))
  53566. characterMakers.push(() => makeCharacter(
  53567. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53568. {
  53569. front: {
  53570. height: math.unit(17 + 9/12, "feet"),
  53571. weight: math.unit(8000, "lb"),
  53572. name: "Front",
  53573. image: {
  53574. source: "./media/characters/vera-raven/front.svg",
  53575. extra: 1457/1412,
  53576. bottom: 121/1578
  53577. }
  53578. },
  53579. side: {
  53580. height: math.unit(17 + 9/12, "feet"),
  53581. weight: math.unit(8000, "lb"),
  53582. name: "Side",
  53583. image: {
  53584. source: "./media/characters/vera-raven/side.svg",
  53585. extra: 1510/1464,
  53586. bottom: 54/1564
  53587. }
  53588. },
  53589. },
  53590. [
  53591. {
  53592. name: "Normal",
  53593. height: math.unit(17 + 9/12, "feet"),
  53594. default: true
  53595. },
  53596. ]
  53597. ))
  53598. characterMakers.push(() => makeCharacter(
  53599. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53600. {
  53601. dressed: {
  53602. height: math.unit(6 + 9/12, "feet"),
  53603. name: "Dressed",
  53604. image: {
  53605. source: "./media/characters/nakisha/dressed.svg",
  53606. extra: 1909/1757,
  53607. bottom: 48/1957
  53608. }
  53609. },
  53610. nude: {
  53611. height: math.unit(6 + 9/12, "feet"),
  53612. name: "Nude",
  53613. image: {
  53614. source: "./media/characters/nakisha/nude.svg",
  53615. extra: 1917/1765,
  53616. bottom: 34/1951
  53617. }
  53618. },
  53619. },
  53620. [
  53621. {
  53622. name: "Normal",
  53623. height: math.unit(6 + 9/12, "feet"),
  53624. default: true
  53625. },
  53626. ]
  53627. ))
  53628. characterMakers.push(() => makeCharacter(
  53629. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53630. {
  53631. front: {
  53632. height: math.unit(87, "meters"),
  53633. name: "Front",
  53634. image: {
  53635. source: "./media/characters/serafin/front.svg",
  53636. extra: 1919/1776,
  53637. bottom: 65/1984
  53638. }
  53639. },
  53640. },
  53641. [
  53642. {
  53643. name: "Normal",
  53644. height: math.unit(87, "meters"),
  53645. default: true
  53646. },
  53647. ]
  53648. ))
  53649. characterMakers.push(() => makeCharacter(
  53650. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53651. {
  53652. front: {
  53653. height: math.unit(6, "feet"),
  53654. weight: math.unit(200, "lb"),
  53655. name: "Front",
  53656. image: {
  53657. source: "./media/characters/poptart/front.svg",
  53658. extra: 615/583,
  53659. bottom: 23/638
  53660. }
  53661. },
  53662. back: {
  53663. height: math.unit(6, "feet"),
  53664. weight: math.unit(200, "lb"),
  53665. name: "Back",
  53666. image: {
  53667. source: "./media/characters/poptart/back.svg",
  53668. extra: 617/584,
  53669. bottom: 22/639
  53670. }
  53671. },
  53672. frontNsfw: {
  53673. height: math.unit(6, "feet"),
  53674. weight: math.unit(200, "lb"),
  53675. name: "Front (NSFW)",
  53676. image: {
  53677. source: "./media/characters/poptart/front-nsfw.svg",
  53678. extra: 615/583,
  53679. bottom: 23/638
  53680. }
  53681. },
  53682. backNsfw: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(200, "lb"),
  53685. name: "Back (NSFW)",
  53686. image: {
  53687. source: "./media/characters/poptart/back-nsfw.svg",
  53688. extra: 617/584,
  53689. bottom: 22/639
  53690. }
  53691. },
  53692. hand: {
  53693. height: math.unit(1.14, "feet"),
  53694. name: "Hand",
  53695. image: {
  53696. source: "./media/characters/poptart/hand.svg"
  53697. }
  53698. },
  53699. foot: {
  53700. height: math.unit(1.5, "feet"),
  53701. name: "Foot",
  53702. image: {
  53703. source: "./media/characters/poptart/foot.svg"
  53704. }
  53705. },
  53706. },
  53707. [
  53708. {
  53709. name: "Normal",
  53710. height: math.unit(6, "feet"),
  53711. default: true
  53712. },
  53713. {
  53714. name: "Grande",
  53715. height: math.unit(350, "feet")
  53716. },
  53717. {
  53718. name: "Massif",
  53719. height: math.unit(967, "feet")
  53720. },
  53721. ]
  53722. ))
  53723. characterMakers.push(() => makeCharacter(
  53724. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53725. {
  53726. hyenaSide: {
  53727. height: math.unit(120, "cm"),
  53728. weight: math.unit(120, "lb"),
  53729. name: "Side",
  53730. image: {
  53731. source: "./media/characters/trance/hyena-side.svg",
  53732. extra: 998/904,
  53733. bottom: 76/1074
  53734. }
  53735. },
  53736. },
  53737. [
  53738. {
  53739. name: "Normal",
  53740. height: math.unit(120, "cm"),
  53741. default: true
  53742. },
  53743. {
  53744. name: "Dire",
  53745. height: math.unit(230, "cm")
  53746. },
  53747. {
  53748. name: "Macro",
  53749. height: math.unit(37, "feet")
  53750. },
  53751. ]
  53752. ))
  53753. characterMakers.push(() => makeCharacter(
  53754. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53755. {
  53756. front: {
  53757. height: math.unit(6 + 3/12, "feet"),
  53758. name: "Front",
  53759. image: {
  53760. source: "./media/characters/michael-berretta/front.svg",
  53761. extra: 515/494,
  53762. bottom: 20/535
  53763. }
  53764. },
  53765. back: {
  53766. height: math.unit(6 + 3/12, "feet"),
  53767. name: "Back",
  53768. image: {
  53769. source: "./media/characters/michael-berretta/back.svg",
  53770. extra: 520/497,
  53771. bottom: 21/541
  53772. }
  53773. },
  53774. frontNsfw: {
  53775. height: math.unit(6 + 3/12, "feet"),
  53776. name: "Front (NSFW)",
  53777. image: {
  53778. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53779. extra: 515/494,
  53780. bottom: 20/535
  53781. }
  53782. },
  53783. dick: {
  53784. height: math.unit(1, "feet"),
  53785. name: "Dick",
  53786. image: {
  53787. source: "./media/characters/michael-berretta/dick.svg"
  53788. }
  53789. },
  53790. },
  53791. [
  53792. {
  53793. name: "Normal",
  53794. height: math.unit(6 + 3/12, "feet"),
  53795. default: true
  53796. },
  53797. {
  53798. name: "Big",
  53799. height: math.unit(12, "feet")
  53800. },
  53801. {
  53802. name: "Macro",
  53803. height: math.unit(187.5, "feet")
  53804. },
  53805. ]
  53806. ))
  53807. characterMakers.push(() => makeCharacter(
  53808. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53809. {
  53810. front: {
  53811. height: math.unit(9 + 9/12, "feet"),
  53812. weight: math.unit(1244, "lb"),
  53813. name: "Front",
  53814. image: {
  53815. source: "./media/characters/stella-edgecomb/front.svg",
  53816. extra: 1835/1706,
  53817. bottom: 49/1884
  53818. }
  53819. },
  53820. pen: {
  53821. height: math.unit(0.95, "feet"),
  53822. name: "Pen",
  53823. image: {
  53824. source: "./media/characters/stella-edgecomb/pen.svg"
  53825. }
  53826. },
  53827. },
  53828. [
  53829. {
  53830. name: "Cozy Bear",
  53831. height: math.unit(0.5, "inches")
  53832. },
  53833. {
  53834. name: "Normal",
  53835. height: math.unit(9 + 9/12, "feet"),
  53836. default: true
  53837. },
  53838. {
  53839. name: "Giga Bear",
  53840. height: math.unit(1, "mile")
  53841. },
  53842. {
  53843. name: "Great Bear",
  53844. height: math.unit(53, "miles")
  53845. },
  53846. {
  53847. name: "Goddess Bear",
  53848. height: math.unit(40000, "miles")
  53849. },
  53850. {
  53851. name: "Sun Bear",
  53852. height: math.unit(900000, "miles")
  53853. },
  53854. ]
  53855. ))
  53856. characterMakers.push(() => makeCharacter(
  53857. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53858. {
  53859. anthroFront: {
  53860. height: math.unit(556, "cm"),
  53861. weight: math.unit(2650, "kg"),
  53862. preyCapacity: math.unit(3, "people"),
  53863. name: "Front",
  53864. image: {
  53865. source: "./media/characters/ash´iika/front.svg",
  53866. extra: 710/673,
  53867. bottom: 15/725
  53868. },
  53869. form: "anthro",
  53870. default: true
  53871. },
  53872. anthroSide: {
  53873. height: math.unit(556, "cm"),
  53874. weight: math.unit(2650, "kg"),
  53875. preyCapacity: math.unit(3, "people"),
  53876. name: "Side",
  53877. image: {
  53878. source: "./media/characters/ash´iika/side.svg",
  53879. extra: 696/676,
  53880. bottom: 13/709
  53881. },
  53882. form: "anthro"
  53883. },
  53884. anthroDressed: {
  53885. height: math.unit(556, "cm"),
  53886. weight: math.unit(2650, "kg"),
  53887. preyCapacity: math.unit(3, "people"),
  53888. name: "Dressed",
  53889. image: {
  53890. source: "./media/characters/ash´iika/dressed.svg",
  53891. extra: 710/673,
  53892. bottom: 15/725
  53893. },
  53894. form: "anthro"
  53895. },
  53896. anthroHead: {
  53897. height: math.unit(3.5, "feet"),
  53898. name: "Head",
  53899. image: {
  53900. source: "./media/characters/ash´iika/head.svg",
  53901. extra: 348/291,
  53902. bottom: 45/393
  53903. },
  53904. form: "anthro"
  53905. },
  53906. feralSide: {
  53907. height: math.unit(870, "cm"),
  53908. weight: math.unit(17500, "kg"),
  53909. preyCapacity: math.unit(15, "people"),
  53910. name: "Side",
  53911. image: {
  53912. source: "./media/characters/ash´iika/feral.svg",
  53913. extra: 595/199,
  53914. bottom: 7/602
  53915. },
  53916. form: "feral",
  53917. default: true,
  53918. },
  53919. },
  53920. [
  53921. {
  53922. name: "Normal",
  53923. height: math.unit(556, "cm"),
  53924. default: true,
  53925. form: "anthro"
  53926. },
  53927. {
  53928. name: "Macro",
  53929. height: math.unit(88, "meters"),
  53930. form: "anthro"
  53931. },
  53932. {
  53933. name: "Normal",
  53934. height: math.unit(870, "cm"),
  53935. default: true,
  53936. form: "feral"
  53937. },
  53938. {
  53939. name: "Large",
  53940. height: math.unit(25, "meters"),
  53941. form: "feral"
  53942. },
  53943. ],
  53944. {
  53945. "anthro": {
  53946. name: "Anthro",
  53947. default: true
  53948. },
  53949. "feral": {
  53950. name: "Feral",
  53951. },
  53952. }
  53953. ))
  53954. characterMakers.push(() => makeCharacter(
  53955. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53956. {
  53957. front: {
  53958. height: math.unit(10, "feet"),
  53959. weight: math.unit(800, "lb"),
  53960. name: "Front",
  53961. image: {
  53962. source: "./media/characters/yen/front.svg",
  53963. extra: 443/411,
  53964. bottom: 6/449
  53965. }
  53966. },
  53967. sleeping: {
  53968. height: math.unit(10, "feet"),
  53969. weight: math.unit(800, "lb"),
  53970. name: "Sleeping",
  53971. image: {
  53972. source: "./media/characters/yen/sleeping.svg",
  53973. extra: 470/422,
  53974. bottom: 0/470
  53975. }
  53976. },
  53977. head: {
  53978. height: math.unit(2.2, "feet"),
  53979. name: "Head",
  53980. image: {
  53981. source: "./media/characters/yen/head.svg"
  53982. }
  53983. },
  53984. headAlt: {
  53985. height: math.unit(2.1, "feet"),
  53986. name: "Head (Alt)",
  53987. image: {
  53988. source: "./media/characters/yen/head-alt.svg"
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Normal",
  53995. height: math.unit(10, "feet"),
  53996. default: true
  53997. },
  53998. ]
  53999. ))
  54000. characterMakers.push(() => makeCharacter(
  54001. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54002. {
  54003. front: {
  54004. height: math.unit(12, "feet"),
  54005. name: "Front",
  54006. image: {
  54007. source: "./media/characters/citra/front.svg",
  54008. extra: 1950/1710,
  54009. bottom: 47/1997
  54010. }
  54011. },
  54012. },
  54013. [
  54014. {
  54015. name: "Normal",
  54016. height: math.unit(12, "feet"),
  54017. default: true
  54018. },
  54019. ]
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54023. {
  54024. side: {
  54025. height: math.unit(7 + 10/12, "feet"),
  54026. name: "Side",
  54027. image: {
  54028. source: "./media/characters/sholstim/side.svg",
  54029. extra: 786/682,
  54030. bottom: 40/826
  54031. }
  54032. },
  54033. },
  54034. [
  54035. {
  54036. name: "Normal",
  54037. height: math.unit(7 + 10/12, "feet"),
  54038. default: true
  54039. },
  54040. ]
  54041. ))
  54042. characterMakers.push(() => makeCharacter(
  54043. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54044. {
  54045. front: {
  54046. height: math.unit(3.10, "meters"),
  54047. name: "Front",
  54048. image: {
  54049. source: "./media/characters/aggyn/front.svg",
  54050. extra: 1188/963,
  54051. bottom: 24/1212
  54052. }
  54053. },
  54054. },
  54055. [
  54056. {
  54057. name: "Normal",
  54058. height: math.unit(3.10, "meters"),
  54059. default: true
  54060. },
  54061. ]
  54062. ))
  54063. characterMakers.push(() => makeCharacter(
  54064. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54065. {
  54066. front: {
  54067. height: math.unit(7 + 5/12, "feet"),
  54068. weight: math.unit(687, "lb"),
  54069. name: "Front",
  54070. image: {
  54071. source: "./media/characters/alsandair-hergenroether/front.svg",
  54072. extra: 1251/1186,
  54073. bottom: 75/1326
  54074. }
  54075. },
  54076. back: {
  54077. height: math.unit(7 + 5/12, "feet"),
  54078. weight: math.unit(687, "lb"),
  54079. name: "Back",
  54080. image: {
  54081. source: "./media/characters/alsandair-hergenroether/back.svg",
  54082. extra: 1290/1229,
  54083. bottom: 17/1307
  54084. }
  54085. },
  54086. },
  54087. [
  54088. {
  54089. name: "Max Compression",
  54090. height: math.unit(7 + 5/12, "feet"),
  54091. default: true
  54092. },
  54093. {
  54094. name: "\"Normal\"",
  54095. height: math.unit(2, "universes")
  54096. },
  54097. ]
  54098. ))
  54099. characterMakers.push(() => makeCharacter(
  54100. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54101. {
  54102. front: {
  54103. height: math.unit(4 + 1/12, "feet"),
  54104. weight: math.unit(92, "lb"),
  54105. name: "Front",
  54106. image: {
  54107. source: "./media/characters/ie/front.svg",
  54108. extra: 1585/1352,
  54109. bottom: 91/1676
  54110. }
  54111. },
  54112. },
  54113. [
  54114. {
  54115. name: "Normal",
  54116. height: math.unit(4 + 1/12, "feet"),
  54117. default: true
  54118. },
  54119. ]
  54120. ))
  54121. characterMakers.push(() => makeCharacter(
  54122. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54123. {
  54124. anthro: {
  54125. height: math.unit(6, "feet"),
  54126. weight: math.unit(150, "lb"),
  54127. name: "Front",
  54128. image: {
  54129. source: "./media/characters/willow/anthro.svg",
  54130. extra: 1073/986,
  54131. bottom: 34/1107
  54132. },
  54133. form: "anthro",
  54134. default: true
  54135. },
  54136. taur: {
  54137. height: math.unit(6, "feet"),
  54138. weight: math.unit(150, "lb"),
  54139. name: "Side",
  54140. image: {
  54141. source: "./media/characters/willow/taur.svg",
  54142. extra: 647/512,
  54143. bottom: 136/783
  54144. },
  54145. form: "taur",
  54146. default: true
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Humanoid",
  54152. height: math.unit(2.7, "meters"),
  54153. form: "anthro"
  54154. },
  54155. {
  54156. name: "Normal",
  54157. height: math.unit(9, "meters"),
  54158. form: "anthro",
  54159. default: true
  54160. },
  54161. {
  54162. name: "Humanoid",
  54163. height: math.unit(2.1, "meters"),
  54164. form: "taur"
  54165. },
  54166. {
  54167. name: "Normal",
  54168. height: math.unit(7, "meters"),
  54169. form: "taur",
  54170. default: true
  54171. },
  54172. ],
  54173. {
  54174. "anthro": {
  54175. name: "Anthro",
  54176. default: true
  54177. },
  54178. "taur": {
  54179. name: "Taur",
  54180. },
  54181. }
  54182. ))
  54183. characterMakers.push(() => makeCharacter(
  54184. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54185. {
  54186. front: {
  54187. height: math.unit(2 + 5/12, "feet"),
  54188. name: "Front",
  54189. image: {
  54190. source: "./media/characters/kyan/front.svg",
  54191. extra: 460/334,
  54192. bottom: 23/483
  54193. },
  54194. extraAttributes: {
  54195. "toeLength": {
  54196. name: "Toe Length",
  54197. power: 1,
  54198. type: "length",
  54199. base: math.unit(7, "cm")
  54200. },
  54201. "toeclawLength": {
  54202. name: "Toeclaw Length",
  54203. power: 1,
  54204. type: "length",
  54205. base: math.unit(4.7, "cm")
  54206. },
  54207. "earHeight": {
  54208. name: "Ear Height",
  54209. power: 1,
  54210. type: "length",
  54211. base: math.unit(14.1, "cm")
  54212. },
  54213. }
  54214. },
  54215. paws: {
  54216. height: math.unit(0.45, "feet"),
  54217. name: "Paws",
  54218. image: {
  54219. source: "./media/characters/kyan/paws.svg",
  54220. extra: 581/581,
  54221. bottom: 114/695
  54222. }
  54223. },
  54224. },
  54225. [
  54226. {
  54227. name: "Normal",
  54228. height: math.unit(2 + 5/12, "feet"),
  54229. default: true
  54230. },
  54231. ]
  54232. ))
  54233. characterMakers.push(() => makeCharacter(
  54234. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54235. {
  54236. front: {
  54237. height: math.unit(2 + 2/3, "feet"),
  54238. name: "Front",
  54239. image: {
  54240. source: "./media/characters/xazzon/front.svg",
  54241. extra: 1109/984,
  54242. bottom: 42/1151
  54243. }
  54244. },
  54245. back: {
  54246. height: math.unit(2 + 2/3, "feet"),
  54247. name: "Back",
  54248. image: {
  54249. source: "./media/characters/xazzon/back.svg",
  54250. extra: 1095/971,
  54251. bottom: 23/1118
  54252. }
  54253. },
  54254. },
  54255. [
  54256. {
  54257. name: "Normal",
  54258. height: math.unit(2 + 2/3, "feet"),
  54259. default: true
  54260. },
  54261. ]
  54262. ))
  54263. characterMakers.push(() => makeCharacter(
  54264. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54265. {
  54266. dressed: {
  54267. height: math.unit(5 + 7/12, "feet"),
  54268. weight: math.unit(173, "lb"),
  54269. name: "Dressed",
  54270. image: {
  54271. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54272. extra: 3262/2862,
  54273. bottom: 188/3450
  54274. }
  54275. },
  54276. undressed: {
  54277. height: math.unit(5 + 7/12, "feet"),
  54278. weight: math.unit(173, "lb"),
  54279. name: "Undressed",
  54280. image: {
  54281. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54282. extra: 3262/2862,
  54283. bottom: 188/3450
  54284. }
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "The void",
  54290. height: math.unit(7.29193e-34, "angstroms")
  54291. },
  54292. {
  54293. name: "Uh-Oh.",
  54294. height: math.unit(5.734e-7, "angstroms")
  54295. },
  54296. {
  54297. name: "Pico",
  54298. height: math.unit(0.876, "angstroms")
  54299. },
  54300. {
  54301. name: "Nano",
  54302. height: math.unit(0.000134200, "mm")
  54303. },
  54304. {
  54305. name: "Micro",
  54306. height: math.unit(0.0673020, "mm")
  54307. },
  54308. {
  54309. name: "Tiny",
  54310. height: math.unit(2.4, "mm")
  54311. },
  54312. {
  54313. name: "Actual Normal",
  54314. height: math.unit(3, "inches"),
  54315. default: true
  54316. },
  54317. {
  54318. name: "Normal",
  54319. height: math.unit(5 + 8/12, "feet")
  54320. },
  54321. {
  54322. name: "Giant",
  54323. height: math.unit(12, "feet")
  54324. },
  54325. {
  54326. name: "City Ruler",
  54327. height: math.unit(270, "meters")
  54328. },
  54329. {
  54330. name: "Giga",
  54331. height: math.unit(1117.6, "km")
  54332. },
  54333. {
  54334. name: "All-Powerful Queen",
  54335. height: math.unit(70.8, "gigameters")
  54336. },
  54337. {
  54338. name: "'Goddess'",
  54339. height: math.unit(600, "yottameters")
  54340. },
  54341. {
  54342. name: "Biggest!",
  54343. height: math.unit(4.23e5, "yottameters")
  54344. },
  54345. ]
  54346. ))
  54347. characterMakers.push(() => makeCharacter(
  54348. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54349. {
  54350. front: {
  54351. height: math.unit(8, "feet"),
  54352. weight: math.unit(300, "lb"),
  54353. name: "Front",
  54354. image: {
  54355. source: "./media/characters/khyla-shadowsong/front.svg",
  54356. extra: 861/798,
  54357. bottom: 32/893
  54358. }
  54359. },
  54360. side: {
  54361. height: math.unit(8, "feet"),
  54362. weight: math.unit(300, "lb"),
  54363. name: "Side",
  54364. image: {
  54365. source: "./media/characters/khyla-shadowsong/side.svg",
  54366. extra: 790/750,
  54367. bottom: 87/877
  54368. }
  54369. },
  54370. back: {
  54371. height: math.unit(8, "feet"),
  54372. weight: math.unit(300, "lb"),
  54373. name: "Back",
  54374. image: {
  54375. source: "./media/characters/khyla-shadowsong/back.svg",
  54376. extra: 855/808,
  54377. bottom: 14/869
  54378. }
  54379. },
  54380. head: {
  54381. height: math.unit(2.7, "feet"),
  54382. name: "Head",
  54383. image: {
  54384. source: "./media/characters/khyla-shadowsong/head.svg"
  54385. }
  54386. },
  54387. },
  54388. [
  54389. {
  54390. name: "Micro",
  54391. height: math.unit(6, "inches")
  54392. },
  54393. {
  54394. name: "Normal",
  54395. height: math.unit(8, "feet"),
  54396. default: true
  54397. },
  54398. ]
  54399. ))
  54400. characterMakers.push(() => makeCharacter(
  54401. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54402. {
  54403. hyperFront: {
  54404. height: math.unit(9 + 4/12, "feet"),
  54405. weight: math.unit(2000, "lb"),
  54406. name: "Front",
  54407. image: {
  54408. source: "./media/characters/tiden/hyper-front.svg",
  54409. extra: 400/382,
  54410. bottom: 6/406
  54411. },
  54412. form: "hyper",
  54413. },
  54414. regularFront: {
  54415. height: math.unit(7 + 10/12, "feet"),
  54416. weight: math.unit(470, "lb"),
  54417. name: "Front",
  54418. image: {
  54419. source: "./media/characters/tiden/regular-front.svg",
  54420. extra: 468/442,
  54421. bottom: 6/474
  54422. },
  54423. form: "regular",
  54424. },
  54425. },
  54426. [
  54427. {
  54428. name: "Normal",
  54429. height: math.unit(9 + 4/12, "feet"),
  54430. default: true,
  54431. form: "hyper"
  54432. },
  54433. {
  54434. name: "Normal",
  54435. height: math.unit(7 + 10/12, "feet"),
  54436. default: true,
  54437. form: "regular"
  54438. },
  54439. ],
  54440. {
  54441. "hyper": {
  54442. name: "Hyper",
  54443. default: true
  54444. },
  54445. "regular": {
  54446. name: "Regular",
  54447. },
  54448. }
  54449. ))
  54450. characterMakers.push(() => makeCharacter(
  54451. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54452. {
  54453. side: {
  54454. height: math.unit(6, "feet"),
  54455. weight: math.unit(150, "lb"),
  54456. name: "Side",
  54457. image: {
  54458. source: "./media/characters/jason-crowe/side.svg",
  54459. extra: 1771/766,
  54460. bottom: 219/1990
  54461. }
  54462. },
  54463. },
  54464. [
  54465. {
  54466. name: "Pocket Gryphon",
  54467. height: math.unit(6, "cm")
  54468. },
  54469. {
  54470. name: "Raven",
  54471. height: math.unit(60, "cm")
  54472. },
  54473. {
  54474. name: "Normal",
  54475. height: math.unit(1, "meter"),
  54476. default: true
  54477. },
  54478. ]
  54479. ))
  54480. characterMakers.push(() => makeCharacter(
  54481. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54482. {
  54483. front: {
  54484. height: math.unit(9 + 6/12, "feet"),
  54485. weight: math.unit(1100, "lb"),
  54486. name: "Front",
  54487. image: {
  54488. source: "./media/characters/django/front.svg",
  54489. extra: 1231/1136,
  54490. bottom: 34/1265
  54491. }
  54492. },
  54493. side: {
  54494. height: math.unit(9 + 6/12, "feet"),
  54495. weight: math.unit(1100, "lb"),
  54496. name: "Side",
  54497. image: {
  54498. source: "./media/characters/django/side.svg",
  54499. extra: 1267/1174,
  54500. bottom: 9/1276
  54501. }
  54502. },
  54503. },
  54504. [
  54505. {
  54506. name: "Normal",
  54507. height: math.unit(9 + 6/12, "feet"),
  54508. default: true
  54509. },
  54510. {
  54511. name: "Macro 1",
  54512. height: math.unit(50, "feet")
  54513. },
  54514. {
  54515. name: "Macro 2",
  54516. height: math.unit(500, "feet")
  54517. },
  54518. {
  54519. name: "Mega Macro",
  54520. height: math.unit(5300, "feet")
  54521. },
  54522. ]
  54523. ))
  54524. characterMakers.push(() => makeCharacter(
  54525. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54526. {
  54527. frontSfw: {
  54528. height: math.unit(120, "cm"),
  54529. weight: math.unit(15, "kg"),
  54530. name: "Front (SFW)",
  54531. image: {
  54532. source: "./media/characters/eri/front-sfw.svg",
  54533. extra: 1014/939,
  54534. bottom: 37/1051
  54535. },
  54536. form: "moth",
  54537. },
  54538. frontNsfw: {
  54539. height: math.unit(120, "cm"),
  54540. weight: math.unit(15, "kg"),
  54541. name: "Front (NSFW)",
  54542. image: {
  54543. source: "./media/characters/eri/front-nsfw.svg",
  54544. extra: 1014/939,
  54545. bottom: 37/1051
  54546. },
  54547. form: "moth",
  54548. default: true
  54549. },
  54550. egg: {
  54551. height: math.unit(10, "cm"),
  54552. name: "Egg",
  54553. image: {
  54554. source: "./media/characters/eri/egg.svg"
  54555. },
  54556. form: "egg",
  54557. default: true
  54558. },
  54559. },
  54560. [
  54561. {
  54562. name: "Normal",
  54563. height: math.unit(120, "cm"),
  54564. default: true,
  54565. form: "moth"
  54566. },
  54567. {
  54568. name: "Normal",
  54569. height: math.unit(10, "cm"),
  54570. default: true,
  54571. form: "egg"
  54572. },
  54573. ],
  54574. {
  54575. "moth": {
  54576. name: "Moth",
  54577. default: true
  54578. },
  54579. "egg": {
  54580. name: "Egg",
  54581. },
  54582. }
  54583. ))
  54584. characterMakers.push(() => makeCharacter(
  54585. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54586. {
  54587. front: {
  54588. height: math.unit(200, "feet"),
  54589. name: "Front",
  54590. image: {
  54591. source: "./media/characters/bishop-dowser/front.svg",
  54592. extra: 933/868,
  54593. bottom: 106/1039
  54594. }
  54595. },
  54596. },
  54597. [
  54598. {
  54599. name: "Giant",
  54600. height: math.unit(200, "feet"),
  54601. default: true
  54602. },
  54603. ]
  54604. ))
  54605. characterMakers.push(() => makeCharacter(
  54606. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54607. {
  54608. front: {
  54609. height: math.unit(2, "meters"),
  54610. preyCapacity: math.unit(3, "people"),
  54611. name: "Front",
  54612. image: {
  54613. source: "./media/characters/fryra/front.svg",
  54614. extra: 1025/948,
  54615. bottom: 30/1055
  54616. },
  54617. extraAttributes: {
  54618. "breastVolume": {
  54619. name: "Breast Volume",
  54620. power: 3,
  54621. type: "volume",
  54622. base: math.unit(8, "liters")
  54623. },
  54624. }
  54625. },
  54626. back: {
  54627. height: math.unit(2, "meters"),
  54628. preyCapacity: math.unit(3, "people"),
  54629. name: "Back",
  54630. image: {
  54631. source: "./media/characters/fryra/back.svg",
  54632. extra: 993/938,
  54633. bottom: 38/1031
  54634. },
  54635. extraAttributes: {
  54636. "breastVolume": {
  54637. name: "Breast Volume",
  54638. power: 3,
  54639. type: "volume",
  54640. base: math.unit(8, "liters")
  54641. },
  54642. }
  54643. },
  54644. head: {
  54645. height: math.unit(1.33, "feet"),
  54646. name: "Head",
  54647. image: {
  54648. source: "./media/characters/fryra/head.svg"
  54649. }
  54650. },
  54651. maw: {
  54652. height: math.unit(0.56, "feet"),
  54653. name: "Maw",
  54654. image: {
  54655. source: "./media/characters/fryra/maw.svg"
  54656. }
  54657. },
  54658. },
  54659. [
  54660. {
  54661. name: "Micro",
  54662. height: math.unit(5, "cm")
  54663. },
  54664. {
  54665. name: "Normal",
  54666. height: math.unit(2, "meters"),
  54667. default: true
  54668. },
  54669. {
  54670. name: "Small Macro",
  54671. height: math.unit(8, "meters")
  54672. },
  54673. {
  54674. name: "Macro",
  54675. height: math.unit(50, "meters")
  54676. },
  54677. {
  54678. name: "Megamacro",
  54679. height: math.unit(1, "km")
  54680. },
  54681. {
  54682. name: "Planetary",
  54683. height: math.unit(300000, "km")
  54684. },
  54685. {
  54686. name: "Universal",
  54687. height: math.unit(250, "lightyears")
  54688. },
  54689. {
  54690. name: "Fabric of Reality",
  54691. height: math.unit(1000, "multiverses")
  54692. },
  54693. ]
  54694. ))
  54695. characterMakers.push(() => makeCharacter(
  54696. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54697. {
  54698. frontDressed: {
  54699. height: math.unit(6 + 2/12, "feet"),
  54700. name: "Front (Dressed)",
  54701. image: {
  54702. source: "./media/characters/fiera/front-dressed.svg",
  54703. extra: 1883/1793,
  54704. bottom: 70/1953
  54705. }
  54706. },
  54707. backDressed: {
  54708. height: math.unit(6 + 2/12, "feet"),
  54709. name: "Back (Dressed)",
  54710. image: {
  54711. source: "./media/characters/fiera/back-dressed.svg",
  54712. extra: 1847/1780,
  54713. bottom: 70/1917
  54714. }
  54715. },
  54716. frontNude: {
  54717. height: math.unit(6 + 2/12, "feet"),
  54718. name: "Front (Nude)",
  54719. image: {
  54720. source: "./media/characters/fiera/front-nude.svg",
  54721. extra: 1875/1785,
  54722. bottom: 66/1941
  54723. }
  54724. },
  54725. backNude: {
  54726. height: math.unit(6 + 2/12, "feet"),
  54727. name: "Back (Nude)",
  54728. image: {
  54729. source: "./media/characters/fiera/back-nude.svg",
  54730. extra: 1855/1788,
  54731. bottom: 44/1899
  54732. }
  54733. },
  54734. maw: {
  54735. height: math.unit(1.3, "feet"),
  54736. name: "Maw",
  54737. image: {
  54738. source: "./media/characters/fiera/maw.svg"
  54739. }
  54740. },
  54741. paw: {
  54742. height: math.unit(1, "feet"),
  54743. name: "Paw",
  54744. image: {
  54745. source: "./media/characters/fiera/paw.svg"
  54746. }
  54747. },
  54748. shoe: {
  54749. height: math.unit(1.05, "feet"),
  54750. name: "Shoe",
  54751. image: {
  54752. source: "./media/characters/fiera/shoe.svg"
  54753. }
  54754. },
  54755. },
  54756. [
  54757. {
  54758. name: "Normal",
  54759. height: math.unit(6 + 2/12, "feet"),
  54760. default: true
  54761. },
  54762. {
  54763. name: "Size Difference",
  54764. height: math.unit(13, "feet")
  54765. },
  54766. {
  54767. name: "Macro",
  54768. height: math.unit(60, "feet")
  54769. },
  54770. {
  54771. name: "Mega Macro",
  54772. height: math.unit(200, "feet")
  54773. },
  54774. ]
  54775. ))
  54776. characterMakers.push(() => makeCharacter(
  54777. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54778. {
  54779. back: {
  54780. height: math.unit(6, "feet"),
  54781. name: "Back",
  54782. image: {
  54783. source: "./media/characters/flare/back.svg",
  54784. extra: 1883/1765,
  54785. bottom: 32/1915
  54786. }
  54787. },
  54788. },
  54789. [
  54790. {
  54791. name: "Normal",
  54792. height: math.unit(6 + 2/12, "feet"),
  54793. default: true
  54794. },
  54795. {
  54796. name: "Size Difference",
  54797. height: math.unit(13, "feet")
  54798. },
  54799. {
  54800. name: "Macro",
  54801. height: math.unit(60, "feet")
  54802. },
  54803. {
  54804. name: "Macro 2",
  54805. height: math.unit(100, "feet")
  54806. },
  54807. {
  54808. name: "Mega Macro",
  54809. height: math.unit(200, "feet")
  54810. },
  54811. ]
  54812. ))
  54813. characterMakers.push(() => makeCharacter(
  54814. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54815. {
  54816. front: {
  54817. height: math.unit(2.2, "m"),
  54818. weight: math.unit(300, "kg"),
  54819. name: "Front",
  54820. image: {
  54821. source: "./media/characters/hanna/front.svg",
  54822. extra: 1696/1502,
  54823. bottom: 206/1902
  54824. }
  54825. },
  54826. },
  54827. [
  54828. {
  54829. name: "Humanoid",
  54830. height: math.unit(2.2, "meters")
  54831. },
  54832. {
  54833. name: "Normal",
  54834. height: math.unit(4.8, "meters"),
  54835. default: true
  54836. },
  54837. ]
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54841. {
  54842. front: {
  54843. height: math.unit(2.8, "meters"),
  54844. name: "Front",
  54845. image: {
  54846. source: "./media/characters/argo/front.svg",
  54847. extra: 731/518,
  54848. bottom: 84/815
  54849. }
  54850. },
  54851. },
  54852. [
  54853. {
  54854. name: "Normal",
  54855. height: math.unit(3, "meters"),
  54856. default: true
  54857. },
  54858. ]
  54859. ))
  54860. characterMakers.push(() => makeCharacter(
  54861. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54862. {
  54863. side: {
  54864. height: math.unit(3.8, "meters"),
  54865. name: "Side",
  54866. image: {
  54867. source: "./media/characters/sybil/side.svg",
  54868. extra: 382/361,
  54869. bottom: 25/407
  54870. }
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Normal",
  54876. height: math.unit(3.8, "meters"),
  54877. default: true
  54878. },
  54879. ]
  54880. ))
  54881. characterMakers.push(() => makeCharacter(
  54882. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54883. {
  54884. side: {
  54885. height: math.unit(6, "meters"),
  54886. name: "Side",
  54887. image: {
  54888. source: "./media/characters/plum/side.svg",
  54889. extra: 858/755,
  54890. bottom: 45/903
  54891. },
  54892. form: "taur",
  54893. default: true
  54894. },
  54895. back: {
  54896. height: math.unit(6.3, "meters"),
  54897. name: "Back",
  54898. image: {
  54899. source: "./media/characters/plum/back.svg",
  54900. extra: 887/813,
  54901. bottom: 32/919
  54902. },
  54903. form: "taur",
  54904. },
  54905. feral: {
  54906. height: math.unit(5.5, "meter"),
  54907. name: "Front",
  54908. image: {
  54909. source: "./media/characters/plum/feral.svg",
  54910. extra: 568/403,
  54911. bottom: 51/619
  54912. },
  54913. form: "feral",
  54914. default: true
  54915. },
  54916. head: {
  54917. height: math.unit(1.46, "meter"),
  54918. name: "Head",
  54919. image: {
  54920. source: "./media/characters/plum/head.svg"
  54921. },
  54922. form: "taur"
  54923. },
  54924. tailTop: {
  54925. height: math.unit(5.6, "meter"),
  54926. name: "Tail (Top)",
  54927. image: {
  54928. source: "./media/characters/plum/tail-top.svg"
  54929. },
  54930. form: "taur",
  54931. },
  54932. tailBottom: {
  54933. height: math.unit(5.6, "meter"),
  54934. name: "Tail (Bottom)",
  54935. image: {
  54936. source: "./media/characters/plum/tail-bottom.svg"
  54937. },
  54938. form: "taur",
  54939. },
  54940. feralHead: {
  54941. height: math.unit(2.56549521, "meter"),
  54942. name: "Head",
  54943. image: {
  54944. source: "./media/characters/plum/head.svg"
  54945. },
  54946. form: "feral"
  54947. },
  54948. feralTailTop: {
  54949. height: math.unit(5.44728435, "meter"),
  54950. name: "Tail (Top)",
  54951. image: {
  54952. source: "./media/characters/plum/tail-top.svg"
  54953. },
  54954. form: "feral",
  54955. },
  54956. feralTailBottom: {
  54957. height: math.unit(5.44728435, "meter"),
  54958. name: "Tail (Bottom)",
  54959. image: {
  54960. source: "./media/characters/plum/tail-bottom.svg"
  54961. },
  54962. form: "feral",
  54963. },
  54964. },
  54965. [
  54966. {
  54967. name: "Normal",
  54968. height: math.unit(6, "meters"),
  54969. default: true,
  54970. form: "taur"
  54971. },
  54972. {
  54973. name: "Normal",
  54974. height: math.unit(5.5, "meters"),
  54975. default: true,
  54976. form: "feral"
  54977. },
  54978. ],
  54979. {
  54980. "taur": {
  54981. name: "Taur",
  54982. default: true
  54983. },
  54984. "feral": {
  54985. name: "Feral",
  54986. },
  54987. }
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54991. {
  54992. front: {
  54993. height: math.unit(6, "feet"),
  54994. weight: math.unit(115, "lb"),
  54995. name: "Front",
  54996. image: {
  54997. source: "./media/characters/celeste-kitsune/front.svg",
  54998. extra: 393/366,
  54999. bottom: 7/400
  55000. }
  55001. },
  55002. side: {
  55003. height: math.unit(6, "feet"),
  55004. weight: math.unit(115, "lb"),
  55005. name: "Side",
  55006. image: {
  55007. source: "./media/characters/celeste-kitsune/side.svg",
  55008. extra: 818/765,
  55009. bottom: 40/858
  55010. }
  55011. },
  55012. },
  55013. [
  55014. {
  55015. name: "Megamacro",
  55016. height: math.unit(1500, "miles"),
  55017. default: true
  55018. },
  55019. ]
  55020. ))
  55021. characterMakers.push(() => makeCharacter(
  55022. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55023. {
  55024. front: {
  55025. height: math.unit(8, "meters"),
  55026. name: "Front",
  55027. image: {
  55028. source: "./media/characters/io/front.svg",
  55029. extra: 865/722,
  55030. bottom: 58/923
  55031. }
  55032. },
  55033. back: {
  55034. height: math.unit(8, "meters"),
  55035. name: "Back",
  55036. image: {
  55037. source: "./media/characters/io/back.svg",
  55038. extra: 920/776,
  55039. bottom: 42/962
  55040. }
  55041. },
  55042. head: {
  55043. height: math.unit(5.09, "meters"),
  55044. name: "Head",
  55045. image: {
  55046. source: "./media/characters/io/head.svg"
  55047. }
  55048. },
  55049. hand: {
  55050. height: math.unit(1.6, "meters"),
  55051. name: "Hand",
  55052. image: {
  55053. source: "./media/characters/io/hand.svg"
  55054. }
  55055. },
  55056. foot: {
  55057. height: math.unit(2.4, "meters"),
  55058. name: "Foot",
  55059. image: {
  55060. source: "./media/characters/io/foot.svg"
  55061. }
  55062. },
  55063. },
  55064. [
  55065. {
  55066. name: "Normal",
  55067. height: math.unit(8, "meters"),
  55068. default: true
  55069. },
  55070. ]
  55071. ))
  55072. characterMakers.push(() => makeCharacter(
  55073. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55074. {
  55075. side: {
  55076. height: math.unit(6 + 3/12, "feet"),
  55077. weight: math.unit(225, "lb"),
  55078. name: "Side",
  55079. image: {
  55080. source: "./media/characters/silas/side.svg",
  55081. extra: 703/653,
  55082. bottom: 23/726
  55083. },
  55084. extraAttributes: {
  55085. "pawLength": {
  55086. name: "Paw Length",
  55087. power: 1,
  55088. type: "length",
  55089. base: math.unit(12, "inches")
  55090. },
  55091. "pawWidth": {
  55092. name: "Paw Width",
  55093. power: 1,
  55094. type: "length",
  55095. base: math.unit(4.5, "inches")
  55096. },
  55097. "pawArea": {
  55098. name: "Paw Area",
  55099. power: 2,
  55100. type: "area",
  55101. base: math.unit(12 * 4.5, "inches^2")
  55102. },
  55103. }
  55104. },
  55105. },
  55106. [
  55107. {
  55108. name: "Normal",
  55109. height: math.unit(6 + 3/12, "feet"),
  55110. default: true
  55111. },
  55112. ]
  55113. ))
  55114. characterMakers.push(() => makeCharacter(
  55115. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55116. {
  55117. back: {
  55118. height: math.unit(1.6, "meters"),
  55119. weight: math.unit(150, "lb"),
  55120. name: "Back",
  55121. image: {
  55122. source: "./media/characters/zari/back.svg",
  55123. extra: 424/411,
  55124. bottom: 32/456
  55125. },
  55126. extraAttributes: {
  55127. "bladderCapacity": {
  55128. name: "Bladder Size",
  55129. power: 3,
  55130. type: "volume",
  55131. base: math.unit(500, "mL")
  55132. },
  55133. "bladderFlow": {
  55134. name: "Flow Rate",
  55135. power: 3,
  55136. type: "volume",
  55137. base: math.unit(25, "mL")
  55138. },
  55139. }
  55140. },
  55141. },
  55142. [
  55143. {
  55144. name: "Normal",
  55145. height: math.unit(1.6, "meters"),
  55146. default: true
  55147. },
  55148. ]
  55149. ))
  55150. characterMakers.push(() => makeCharacter(
  55151. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55152. {
  55153. front: {
  55154. height: math.unit(25, "feet"),
  55155. weight: math.unit(5, "tons"),
  55156. name: "Front",
  55157. image: {
  55158. source: "./media/characters/charlie-human/front.svg",
  55159. extra: 1870/1740,
  55160. bottom: 102/1972
  55161. },
  55162. extraAttributes: {
  55163. "dickLength": {
  55164. name: "Dick Length",
  55165. power: 1,
  55166. type: "length",
  55167. base: math.unit(9, "feet")
  55168. },
  55169. }
  55170. },
  55171. back: {
  55172. height: math.unit(25, "feet"),
  55173. weight: math.unit(5, "tons"),
  55174. name: "Back",
  55175. image: {
  55176. source: "./media/characters/charlie-human/back.svg",
  55177. extra: 1858/1733,
  55178. bottom: 105/1963
  55179. },
  55180. extraAttributes: {
  55181. "dickLength": {
  55182. name: "Dick Length",
  55183. power: 1,
  55184. type: "length",
  55185. base: math.unit(9, "feet")
  55186. },
  55187. }
  55188. },
  55189. },
  55190. [
  55191. {
  55192. name: "\"Normal\"",
  55193. height: math.unit(6 + 4/12, "feet")
  55194. },
  55195. {
  55196. name: "Big",
  55197. height: math.unit(25, "feet"),
  55198. default: true
  55199. },
  55200. ]
  55201. ))
  55202. characterMakers.push(() => makeCharacter(
  55203. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55204. {
  55205. front: {
  55206. height: math.unit(6 + 4/12, "feet"),
  55207. weight: math.unit(320, "lb"),
  55208. name: "Front",
  55209. image: {
  55210. source: "./media/characters/ookitsu/front.svg",
  55211. extra: 1160/976,
  55212. bottom: 38/1198
  55213. }
  55214. },
  55215. frontNsfw: {
  55216. height: math.unit(6 + 4/12, "feet"),
  55217. weight: math.unit(320, "lb"),
  55218. name: "Front (NSFW)",
  55219. image: {
  55220. source: "./media/characters/ookitsu/front-nsfw.svg",
  55221. extra: 1160/976,
  55222. bottom: 38/1198
  55223. }
  55224. },
  55225. back: {
  55226. height: math.unit(6 + 4/12, "feet"),
  55227. weight: math.unit(320, "lb"),
  55228. name: "Back",
  55229. image: {
  55230. source: "./media/characters/ookitsu/back.svg",
  55231. extra: 1030/975,
  55232. bottom: 70/1100
  55233. }
  55234. },
  55235. head: {
  55236. height: math.unit(1.79, "feet"),
  55237. name: "Head",
  55238. image: {
  55239. source: "./media/characters/ookitsu/head.svg"
  55240. }
  55241. },
  55242. hand: {
  55243. height: math.unit(0.92, "feet"),
  55244. name: "Hand",
  55245. image: {
  55246. source: "./media/characters/ookitsu/hand.svg"
  55247. }
  55248. },
  55249. tails: {
  55250. height: math.unit(3.3, "feet"),
  55251. name: "Tails",
  55252. image: {
  55253. source: "./media/characters/ookitsu/tails.svg"
  55254. }
  55255. },
  55256. dick: {
  55257. height: math.unit(1.10833, "feet"),
  55258. name: "Dick",
  55259. image: {
  55260. source: "./media/characters/ookitsu/dick.svg"
  55261. }
  55262. },
  55263. },
  55264. [
  55265. {
  55266. name: "Normal",
  55267. height: math.unit(6 + 4/12, "feet"),
  55268. default: true
  55269. },
  55270. {
  55271. name: "Macro",
  55272. height: math.unit(30, "feet")
  55273. },
  55274. ]
  55275. ))
  55276. characterMakers.push(() => makeCharacter(
  55277. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55278. {
  55279. anthroFront: {
  55280. height: math.unit(6, "feet"),
  55281. weight: math.unit(250, "lb"),
  55282. name: "Front",
  55283. image: {
  55284. source: "./media/characters/jhusky/anthro-front.svg",
  55285. extra: 474/439,
  55286. bottom: 7/481
  55287. },
  55288. form: "anthro",
  55289. default: true
  55290. },
  55291. taurSideSfw: {
  55292. height: math.unit(6 + 4/12, "feet"),
  55293. weight: math.unit(500, "lb"),
  55294. name: "Side (SFW)",
  55295. image: {
  55296. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55297. extra: 1741/1629,
  55298. bottom: 196/1937
  55299. },
  55300. form: "taur",
  55301. default: true
  55302. },
  55303. taurSideNsfw: {
  55304. height: math.unit(6 + 4/12, "feet"),
  55305. weight: math.unit(500, "lb"),
  55306. name: "Taur (NSFW)",
  55307. image: {
  55308. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55309. extra: 1741/1629,
  55310. bottom: 196/1937
  55311. },
  55312. form: "taur",
  55313. },
  55314. },
  55315. [
  55316. {
  55317. name: "Huge",
  55318. height: math.unit(500, "feet"),
  55319. form: "anthro"
  55320. },
  55321. {
  55322. name: "Macro",
  55323. height: math.unit(1000, "feet"),
  55324. default: true,
  55325. form: "anthro"
  55326. },
  55327. {
  55328. name: "Megamacro",
  55329. height: math.unit(10000, "feet"),
  55330. form: "anthro"
  55331. },
  55332. {
  55333. name: "Huge",
  55334. height: math.unit(528, "feet"),
  55335. form: "taur"
  55336. },
  55337. {
  55338. name: "Macro",
  55339. height: math.unit(1056, "feet"),
  55340. default: true,
  55341. form: "taur"
  55342. },
  55343. {
  55344. name: "Megamacro",
  55345. height: math.unit(10556, "feet"),
  55346. form: "taur"
  55347. },
  55348. ],
  55349. {
  55350. "anthro": {
  55351. name: "Anthro",
  55352. default: true
  55353. },
  55354. "taur": {
  55355. name: "Taur",
  55356. },
  55357. }
  55358. ))
  55359. characterMakers.push(() => makeCharacter(
  55360. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55361. {
  55362. front: {
  55363. height: math.unit(8, "feet"),
  55364. weight: math.unit(500, "lb"),
  55365. name: "Front",
  55366. image: {
  55367. source: "./media/characters/armail/front.svg",
  55368. extra: 1753/1669,
  55369. bottom: 155/1908
  55370. }
  55371. },
  55372. back: {
  55373. height: math.unit(8, "feet"),
  55374. weight: math.unit(500, "lb"),
  55375. name: "Back",
  55376. image: {
  55377. source: "./media/characters/armail/back.svg",
  55378. extra: 1872/1803,
  55379. bottom: 63/1935
  55380. }
  55381. },
  55382. },
  55383. [
  55384. {
  55385. name: "Micro",
  55386. height: math.unit(0.25, "feet")
  55387. },
  55388. {
  55389. name: "Normal",
  55390. height: math.unit(8, "feet"),
  55391. default: true
  55392. },
  55393. {
  55394. name: "Mini-macro",
  55395. height: math.unit(30, "feet")
  55396. },
  55397. {
  55398. name: "Macro",
  55399. height: math.unit(400, "feet")
  55400. },
  55401. {
  55402. name: "Mega-macro",
  55403. height: math.unit(6000, "feet")
  55404. },
  55405. ]
  55406. ))
  55407. characterMakers.push(() => makeCharacter(
  55408. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55409. {
  55410. front: {
  55411. height: math.unit(6 + 7/12, "feet"),
  55412. weight: math.unit(210, "lb"),
  55413. name: "Front",
  55414. image: {
  55415. source: "./media/characters/wilfred-t-buxton/front.svg",
  55416. extra: 1068/882,
  55417. bottom: 28/1096
  55418. }
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(6 + 7/12, "feet"),
  55425. default: true
  55426. },
  55427. ]
  55428. ))
  55429. characterMakers.push(() => makeCharacter(
  55430. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55431. {
  55432. front: {
  55433. height: math.unit(5 + 2/12, "feet"),
  55434. weight: math.unit(120, "lb"),
  55435. name: "Front",
  55436. image: {
  55437. source: "./media/characters/leighton-marrow/front.svg",
  55438. extra: 441/409,
  55439. bottom: 37/478
  55440. }
  55441. },
  55442. },
  55443. [
  55444. {
  55445. name: "Normal",
  55446. height: math.unit(5 + 2/12, "feet"),
  55447. default: true
  55448. },
  55449. ]
  55450. ))
  55451. characterMakers.push(() => makeCharacter(
  55452. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55453. {
  55454. front: {
  55455. height: math.unit(4, "meters"),
  55456. weight: math.unit(1200, "kg"),
  55457. name: "Front",
  55458. image: {
  55459. source: "./media/characters/licos/front.svg",
  55460. extra: 1727/1604,
  55461. bottom: 101/1828
  55462. },
  55463. form: "anthro",
  55464. default: true
  55465. },
  55466. taur_side: {
  55467. height: math.unit(20, "meters"),
  55468. weight: math.unit(1100000, "kg"),
  55469. name: "Side",
  55470. image: {
  55471. source: "./media/characters/licos/taur.svg",
  55472. extra: 1158/1091,
  55473. bottom: 80/1238
  55474. },
  55475. form: "taur",
  55476. default: true
  55477. },
  55478. },
  55479. [
  55480. {
  55481. name: "Normal",
  55482. height: math.unit(4, "meters"),
  55483. default: true,
  55484. form: "anthro"
  55485. },
  55486. {
  55487. name: "Normal",
  55488. height: math.unit(20, "meters"),
  55489. default: true,
  55490. form: "taur"
  55491. },
  55492. ],
  55493. {
  55494. "anthro": {
  55495. name: "Anthro",
  55496. default: true
  55497. },
  55498. "taur": {
  55499. name: "Taur",
  55500. },
  55501. }
  55502. ))
  55503. characterMakers.push(() => makeCharacter(
  55504. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55505. {
  55506. front: {
  55507. height: math.unit(10 + 3/12, "feet"),
  55508. name: "Front",
  55509. image: {
  55510. source: "./media/characters/theo-monkey/front.svg",
  55511. extra: 1735/1658,
  55512. bottom: 73/1808
  55513. }
  55514. },
  55515. back: {
  55516. height: math.unit(10 + 3/12, "feet"),
  55517. name: "Back",
  55518. image: {
  55519. source: "./media/characters/theo-monkey/back.svg",
  55520. extra: 1742/1664,
  55521. bottom: 33/1775
  55522. }
  55523. },
  55524. head: {
  55525. height: math.unit(2.29, "feet"),
  55526. name: "Head",
  55527. image: {
  55528. source: "./media/characters/theo-monkey/head.svg"
  55529. }
  55530. },
  55531. handPalm: {
  55532. height: math.unit(1.73, "feet"),
  55533. name: "Hand (Palm)",
  55534. image: {
  55535. source: "./media/characters/theo-monkey/hand-palm.svg"
  55536. }
  55537. },
  55538. handBack: {
  55539. height: math.unit(1.63, "feet"),
  55540. name: "Hand (Back)",
  55541. image: {
  55542. source: "./media/characters/theo-monkey/hand-back.svg"
  55543. }
  55544. },
  55545. footSole: {
  55546. height: math.unit(2.15, "feet"),
  55547. name: "Foot (Sole)",
  55548. image: {
  55549. source: "./media/characters/theo-monkey/foot-sole.svg"
  55550. }
  55551. },
  55552. footSide: {
  55553. height: math.unit(1.6, "feet"),
  55554. name: "Foot (Side)",
  55555. image: {
  55556. source: "./media/characters/theo-monkey/foot-side.svg"
  55557. }
  55558. },
  55559. },
  55560. [
  55561. {
  55562. name: "Normal",
  55563. height: math.unit(10 + 3/12, "feet"),
  55564. default: true
  55565. },
  55566. ]
  55567. ))
  55568. characterMakers.push(() => makeCharacter(
  55569. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55570. {
  55571. front: {
  55572. height: math.unit(11, "feet"),
  55573. weight: math.unit(3000, "lb"),
  55574. preyCapacity: math.unit(10, "people"),
  55575. name: "Front",
  55576. image: {
  55577. source: "./media/characters/brook/front.svg",
  55578. extra: 909/835,
  55579. bottom: 108/1017
  55580. }
  55581. },
  55582. back: {
  55583. height: math.unit(11, "feet"),
  55584. weight: math.unit(3000, "lb"),
  55585. preyCapacity: math.unit(10, "people"),
  55586. name: "Back",
  55587. image: {
  55588. source: "./media/characters/brook/back.svg",
  55589. extra: 976/916,
  55590. bottom: 34/1010
  55591. }
  55592. },
  55593. backAlt: {
  55594. height: math.unit(11, "feet"),
  55595. weight: math.unit(3000, "lb"),
  55596. preyCapacity: math.unit(10, "people"),
  55597. name: "Back (Alt)",
  55598. image: {
  55599. source: "./media/characters/brook/back-alt.svg",
  55600. extra: 1283/1213,
  55601. bottom: 35/1318
  55602. }
  55603. },
  55604. bust: {
  55605. height: math.unit(9.0859030837, "feet"),
  55606. weight: math.unit(3000, "lb"),
  55607. preyCapacity: math.unit(10, "people"),
  55608. name: "Bust",
  55609. image: {
  55610. source: "./media/characters/brook/bust.svg",
  55611. extra: 2043/1923,
  55612. bottom: 0/2043
  55613. }
  55614. },
  55615. },
  55616. [
  55617. {
  55618. name: "Small",
  55619. height: math.unit(11, "feet"),
  55620. default: true
  55621. },
  55622. {
  55623. name: "Towering",
  55624. height: math.unit(5, "km")
  55625. },
  55626. {
  55627. name: "Enormous",
  55628. height: math.unit(25, "earths")
  55629. },
  55630. ]
  55631. ))
  55632. characterMakers.push(() => makeCharacter(
  55633. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55634. {
  55635. front: {
  55636. height: math.unit(4, "feet"),
  55637. weight: math.unit(150, "lb"),
  55638. name: "Front",
  55639. image: {
  55640. source: "./media/characters/squishi/front.svg",
  55641. extra: 1428/1271,
  55642. bottom: 30/1458
  55643. },
  55644. extraAttributes: {
  55645. "pawSize": {
  55646. name: "Paw Size",
  55647. power: 1,
  55648. type: "length",
  55649. base: math.unit(14, "ShoeSizeMensUS"),
  55650. defaultUnit: "ShoeSizeMensUS"
  55651. },
  55652. }
  55653. },
  55654. side: {
  55655. height: math.unit(4, "feet"),
  55656. weight: math.unit(150, "lb"),
  55657. name: "Side",
  55658. image: {
  55659. source: "./media/characters/squishi/side.svg",
  55660. extra: 1428/1271,
  55661. bottom: 30/1458
  55662. },
  55663. extraAttributes: {
  55664. "pawSize": {
  55665. name: "Paw Size",
  55666. power: 1,
  55667. type: "length",
  55668. base: math.unit(14, "ShoeSizeMensUS"),
  55669. defaultUnit: "ShoeSizeMensUS"
  55670. },
  55671. }
  55672. },
  55673. back: {
  55674. height: math.unit(4, "feet"),
  55675. weight: math.unit(150, "lb"),
  55676. name: "Back",
  55677. image: {
  55678. source: "./media/characters/squishi/back.svg",
  55679. extra: 1428/1271,
  55680. bottom: 30/1458
  55681. },
  55682. extraAttributes: {
  55683. "pawSize": {
  55684. name: "Paw Size",
  55685. power: 1,
  55686. type: "length",
  55687. base: math.unit(14, "ShoeSizeMensUS"),
  55688. defaultUnit: "ShoeSizeMensUS"
  55689. },
  55690. }
  55691. },
  55692. },
  55693. [
  55694. {
  55695. name: "Normal",
  55696. height: math.unit(4, "feet"),
  55697. default: true
  55698. },
  55699. ]
  55700. ))
  55701. characterMakers.push(() => makeCharacter(
  55702. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55703. {
  55704. front: {
  55705. height: math.unit(7 + 8/12, "feet"),
  55706. weight: math.unit(333, "lb"),
  55707. name: "Front",
  55708. image: {
  55709. source: "./media/characters/vincent-vasroc/front.svg",
  55710. extra: 1962/1860,
  55711. bottom: 41/2003
  55712. }
  55713. },
  55714. back: {
  55715. height: math.unit(7 + 8/12, "feet"),
  55716. weight: math.unit(333, "lb"),
  55717. name: "Back",
  55718. image: {
  55719. source: "./media/characters/vincent-vasroc/back.svg",
  55720. extra: 1952/1815,
  55721. bottom: 33/1985
  55722. }
  55723. },
  55724. paw: {
  55725. height: math.unit(1.24, "feet"),
  55726. name: "Paw",
  55727. image: {
  55728. source: "./media/characters/vincent-vasroc/paw.svg"
  55729. }
  55730. },
  55731. ear: {
  55732. height: math.unit(0.75, "feet"),
  55733. name: "Ear",
  55734. image: {
  55735. source: "./media/characters/vincent-vasroc/ear.svg"
  55736. }
  55737. },
  55738. },
  55739. [
  55740. {
  55741. name: "Nano",
  55742. height: math.unit(92, "micrometers")
  55743. },
  55744. {
  55745. name: "Normal",
  55746. height: math.unit(7 + 8/12, "feet"),
  55747. default: true
  55748. },
  55749. ]
  55750. ))
  55751. characterMakers.push(() => makeCharacter(
  55752. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55753. {
  55754. frontNsfw: {
  55755. height: math.unit(40, "feet"),
  55756. weight: math.unit(58, "tons"),
  55757. name: "Front (NSFW)",
  55758. image: {
  55759. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55760. extra: 1265/965,
  55761. bottom: 155/1420
  55762. }
  55763. },
  55764. frontSfw: {
  55765. height: math.unit(40, "feet"),
  55766. weight: math.unit(58, "tons"),
  55767. name: "Front (SFW)",
  55768. image: {
  55769. source: "./media/characters/ru-kahn/front-sfw.svg",
  55770. extra: 1265/965,
  55771. bottom: 80/1345
  55772. }
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Small",
  55778. height: math.unit(4, "feet")
  55779. },
  55780. {
  55781. name: "Normal",
  55782. height: math.unit(40, "feet"),
  55783. default: true
  55784. },
  55785. {
  55786. name: "Macro",
  55787. height: math.unit(400, "feet")
  55788. },
  55789. ]
  55790. ))
  55791. characterMakers.push(() => makeCharacter(
  55792. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55793. {
  55794. frontNude: {
  55795. height: math.unit(6 + 5/12, "feet"),
  55796. name: "Front (Nude)",
  55797. image: {
  55798. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55799. extra: 1369/1366,
  55800. bottom: 68/1437
  55801. }
  55802. },
  55803. frontDressed: {
  55804. height: math.unit(6 + 5/12, "feet"),
  55805. name: "Front (Dressed)",
  55806. image: {
  55807. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55808. extra: 1369/1366,
  55809. bottom: 68/1437
  55810. }
  55811. },
  55812. },
  55813. [
  55814. {
  55815. name: "Normal",
  55816. height: math.unit(6 + 5/12, "feet"),
  55817. default: true
  55818. },
  55819. {
  55820. name: "Maximum",
  55821. height: math.unit(1930, "feet")
  55822. },
  55823. ]
  55824. ))
  55825. characterMakers.push(() => makeCharacter(
  55826. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55827. {
  55828. front: {
  55829. height: math.unit(5 + 6/12, "feet"),
  55830. name: "Front",
  55831. image: {
  55832. source: "./media/characters/kaja/front.svg",
  55833. extra: 1874/1514,
  55834. bottom: 117/1991
  55835. }
  55836. },
  55837. },
  55838. [
  55839. {
  55840. name: "Normal",
  55841. height: math.unit(5 + 6/12, "feet"),
  55842. default: true
  55843. },
  55844. ]
  55845. ))
  55846. characterMakers.push(() => makeCharacter(
  55847. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55848. {
  55849. front: {
  55850. height: math.unit(5 + 9/12, "feet"),
  55851. weight: math.unit(200, "lb"),
  55852. name: "Front",
  55853. image: {
  55854. source: "./media/characters/mark-smith/front.svg",
  55855. extra: 1004/943,
  55856. bottom: 58/1062
  55857. }
  55858. },
  55859. back: {
  55860. height: math.unit(5 + 9/12, "feet"),
  55861. weight: math.unit(200, "lb"),
  55862. name: "Back",
  55863. image: {
  55864. source: "./media/characters/mark-smith/back.svg",
  55865. extra: 1023/953,
  55866. bottom: 24/1047
  55867. }
  55868. },
  55869. head: {
  55870. height: math.unit(1.82, "feet"),
  55871. name: "Head",
  55872. image: {
  55873. source: "./media/characters/mark-smith/head.svg"
  55874. }
  55875. },
  55876. hand: {
  55877. height: math.unit(1.4, "feet"),
  55878. name: "Hand",
  55879. image: {
  55880. source: "./media/characters/mark-smith/hand.svg"
  55881. }
  55882. },
  55883. paw: {
  55884. height: math.unit(1.69, "feet"),
  55885. name: "Paw",
  55886. image: {
  55887. source: "./media/characters/mark-smith/paw.svg"
  55888. }
  55889. },
  55890. },
  55891. [
  55892. {
  55893. name: "Micro",
  55894. height: math.unit(0.25, "inches")
  55895. },
  55896. {
  55897. name: "Normal",
  55898. height: math.unit(5 + 9/12, "feet"),
  55899. default: true
  55900. },
  55901. {
  55902. name: "Macro",
  55903. height: math.unit(500, "feet")
  55904. },
  55905. ]
  55906. ))
  55907. characterMakers.push(() => makeCharacter(
  55908. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55909. {
  55910. frontNude: {
  55911. height: math.unit(6, "feet"),
  55912. name: "Front (Nude)",
  55913. image: {
  55914. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55915. extra: 1384/1321,
  55916. bottom: 57/1441
  55917. }
  55918. },
  55919. frontDressed: {
  55920. height: math.unit(6, "feet"),
  55921. name: "Front (Dressed)",
  55922. image: {
  55923. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55924. extra: 1384/1321,
  55925. bottom: 57/1441
  55926. }
  55927. },
  55928. },
  55929. [
  55930. {
  55931. name: "Normal",
  55932. height: math.unit(6, "feet"),
  55933. default: true
  55934. },
  55935. {
  55936. name: "Maximum",
  55937. height: math.unit(1776, "feet")
  55938. },
  55939. ]
  55940. ))
  55941. characterMakers.push(() => makeCharacter(
  55942. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55943. {
  55944. front: {
  55945. height: math.unit(2 + 4/12, "feet"),
  55946. weight: math.unit(350, "lb"),
  55947. name: "Front",
  55948. image: {
  55949. source: "./media/characters/devos/front.svg",
  55950. extra: 958/852,
  55951. bottom: 143/1101
  55952. }
  55953. },
  55954. },
  55955. [
  55956. {
  55957. name: "Base",
  55958. height: math.unit(2 + 4/12, "feet"),
  55959. default: true
  55960. },
  55961. ]
  55962. ))
  55963. characterMakers.push(() => makeCharacter(
  55964. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55965. {
  55966. front: {
  55967. height: math.unit(9 + 2/12, "feet"),
  55968. name: "Front",
  55969. image: {
  55970. source: "./media/characters/hiveheart/front.svg",
  55971. extra: 394/364,
  55972. bottom: 65/459
  55973. }
  55974. },
  55975. back: {
  55976. height: math.unit(9 + 2/12, "feet"),
  55977. name: "Back",
  55978. image: {
  55979. source: "./media/characters/hiveheart/back.svg",
  55980. extra: 374/357,
  55981. bottom: 63/437
  55982. }
  55983. },
  55984. },
  55985. [
  55986. {
  55987. name: "Base",
  55988. height: math.unit(9 + 2/12, "feet"),
  55989. default: true
  55990. },
  55991. ]
  55992. ))
  55993. characterMakers.push(() => makeCharacter(
  55994. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55995. {
  55996. front: {
  55997. height: math.unit(2.5, "inches"),
  55998. weight: math.unit(0.6, "oz"),
  55999. name: "Front",
  56000. image: {
  56001. source: "./media/characters/bryn/front.svg",
  56002. extra: 1480/1205,
  56003. bottom: 27/1507
  56004. }
  56005. },
  56006. back: {
  56007. height: math.unit(2.5, "inches"),
  56008. weight: math.unit(0.6, "oz"),
  56009. name: "Back",
  56010. image: {
  56011. source: "./media/characters/bryn/back.svg",
  56012. extra: 1475/1201,
  56013. bottom: 39/1514
  56014. }
  56015. },
  56016. foot: {
  56017. height: math.unit(0.4, "inches"),
  56018. name: "Foot",
  56019. image: {
  56020. source: "./media/characters/bryn/foot.svg"
  56021. }
  56022. },
  56023. },
  56024. [
  56025. {
  56026. name: "Normal",
  56027. height: math.unit(2.5, "inches"),
  56028. default: true
  56029. },
  56030. ]
  56031. ))
  56032. characterMakers.push(() => makeCharacter(
  56033. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56034. {
  56035. side: {
  56036. height: math.unit(7, "feet"),
  56037. weight: math.unit(657, "kg"),
  56038. name: "Side",
  56039. image: {
  56040. source: "./media/characters/delta/side.svg",
  56041. extra: 781/212,
  56042. bottom: 7/788
  56043. },
  56044. extraAttributes: {
  56045. "wingspan": {
  56046. name: "Wingspan",
  56047. power: 1,
  56048. type: "length",
  56049. base: math.unit(48, "feet")
  56050. },
  56051. "length": {
  56052. name: "Length",
  56053. power: 1,
  56054. type: "length",
  56055. base: math.unit(21, "feet")
  56056. },
  56057. "pawSize": {
  56058. name: "Paw Size",
  56059. power: 2,
  56060. type: "area",
  56061. base: math.unit(1.5*1.4, "feet^2")
  56062. },
  56063. }
  56064. },
  56065. },
  56066. [
  56067. {
  56068. name: "Normal",
  56069. height: math.unit(6, "feet"),
  56070. default: true
  56071. },
  56072. ]
  56073. ))
  56074. characterMakers.push(() => makeCharacter(
  56075. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56076. {
  56077. front: {
  56078. height: math.unit(6, "feet"),
  56079. name: "Front",
  56080. image: {
  56081. source: "./media/characters/pyrow/front.svg",
  56082. extra: 513/486,
  56083. bottom: 14/527
  56084. }
  56085. },
  56086. frontWing: {
  56087. height: math.unit(6, "feet"),
  56088. name: "Front (Wing)",
  56089. image: {
  56090. source: "./media/characters/pyrow/front-wing.svg",
  56091. extra: 539/383,
  56092. bottom: 20/559
  56093. }
  56094. },
  56095. back: {
  56096. height: math.unit(6, "feet"),
  56097. name: "Back",
  56098. image: {
  56099. source: "./media/characters/pyrow/back.svg",
  56100. extra: 500/473,
  56101. bottom: 9/509
  56102. }
  56103. },
  56104. },
  56105. [
  56106. {
  56107. name: "Normal",
  56108. height: math.unit(6, "feet"),
  56109. default: true
  56110. },
  56111. ]
  56112. ))
  56113. characterMakers.push(() => makeCharacter(
  56114. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56115. {
  56116. front: {
  56117. height: math.unit(5, "meters"),
  56118. weight: math.unit(3, "tonnes"),
  56119. name: "Front",
  56120. image: {
  56121. source: "./media/characters/velikan/front.svg",
  56122. extra: 867/744,
  56123. bottom: 71/938
  56124. },
  56125. extraAttributes: {
  56126. "shoeSize": {
  56127. name: "Shoe Size",
  56128. power: 1,
  56129. type: "length",
  56130. base: math.unit(135, "ShoeSizeUK"),
  56131. defaultUnit: "ShoeSizeUK"
  56132. },
  56133. }
  56134. },
  56135. },
  56136. [
  56137. {
  56138. name: "Normal",
  56139. height: math.unit(5, "meters"),
  56140. default: true
  56141. },
  56142. {
  56143. name: "Macro",
  56144. height: math.unit(1, "km")
  56145. },
  56146. {
  56147. name: "Mega Macro",
  56148. height: math.unit(100, "km")
  56149. },
  56150. {
  56151. name: "Giga Macro",
  56152. height: math.unit(2, "megameters")
  56153. },
  56154. {
  56155. name: "Planetary",
  56156. height: math.unit(22, "megameters")
  56157. },
  56158. {
  56159. name: "Solar",
  56160. height: math.unit(8, "gigameters")
  56161. },
  56162. {
  56163. name: "Cosmic",
  56164. height: math.unit(10, "zettameters")
  56165. },
  56166. {
  56167. name: "Omni",
  56168. height: math.unit(9e260, "multiverses")
  56169. },
  56170. ]
  56171. ))
  56172. characterMakers.push(() => makeCharacter(
  56173. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56174. {
  56175. front: {
  56176. height: math.unit(4 + 3/12, "feet"),
  56177. weight: math.unit(90, "lb"),
  56178. name: "Front",
  56179. image: {
  56180. source: "./media/characters/sabiki/front.svg",
  56181. extra: 1662/1423,
  56182. bottom: 65/1727
  56183. }
  56184. },
  56185. },
  56186. [
  56187. {
  56188. name: "Normal",
  56189. height: math.unit(4 + 3/12, "feet"),
  56190. default: true
  56191. },
  56192. ]
  56193. ))
  56194. characterMakers.push(() => makeCharacter(
  56195. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56196. {
  56197. frontSfw: {
  56198. height: math.unit(2, "mm"),
  56199. name: "Front (SFW)",
  56200. image: {
  56201. source: "./media/characters/carmel/front-sfw.svg",
  56202. extra: 1131/1006,
  56203. bottom: 66/1197
  56204. }
  56205. },
  56206. frontNsfw: {
  56207. height: math.unit(2, "mm"),
  56208. name: "Front (NSFW)",
  56209. image: {
  56210. source: "./media/characters/carmel/front-nsfw.svg",
  56211. extra: 1131/1006,
  56212. bottom: 66/1197
  56213. }
  56214. },
  56215. foot: {
  56216. height: math.unit(0.3, "mm"),
  56217. name: "Foot",
  56218. image: {
  56219. source: "./media/characters/carmel/foot.svg"
  56220. }
  56221. },
  56222. tongue: {
  56223. height: math.unit(0.71, "mm"),
  56224. name: "Tongue",
  56225. image: {
  56226. source: "./media/characters/carmel/tongue.svg"
  56227. }
  56228. },
  56229. dick: {
  56230. height: math.unit(0.085, "mm"),
  56231. name: "Dick",
  56232. image: {
  56233. source: "./media/characters/carmel/dick.svg"
  56234. }
  56235. },
  56236. },
  56237. [
  56238. {
  56239. name: "Micro",
  56240. height: math.unit(2, "mm"),
  56241. default: true
  56242. },
  56243. {
  56244. name: "Normal",
  56245. height: math.unit(4 + 8/12, "feet")
  56246. },
  56247. {
  56248. name: "Mega Macro",
  56249. height: math.unit(250, "feet")
  56250. },
  56251. {
  56252. name: "BIGGER",
  56253. height: math.unit(1000, "feet")
  56254. },
  56255. {
  56256. name: "BIGGEST",
  56257. height: math.unit(2, "miles")
  56258. },
  56259. ]
  56260. ))
  56261. characterMakers.push(() => makeCharacter(
  56262. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56263. {
  56264. front: {
  56265. height: math.unit(6.5, "feet"),
  56266. weight: math.unit(198, "lb"),
  56267. name: "Front",
  56268. image: {
  56269. source: "./media/characters/tamani/anthro.svg",
  56270. extra: 930/890,
  56271. bottom: 34/964
  56272. },
  56273. form: "anthro",
  56274. default: true
  56275. },
  56276. side: {
  56277. height: math.unit(6, "feet"),
  56278. weight: math.unit(198*2, "lb"),
  56279. name: "Side",
  56280. image: {
  56281. source: "./media/characters/tamani/feral.svg",
  56282. extra: 559/519,
  56283. bottom: 43/602
  56284. },
  56285. form: "feral"
  56286. },
  56287. },
  56288. [
  56289. {
  56290. name: "Normal",
  56291. height: math.unit(6.5, "feet"),
  56292. default: true,
  56293. form: "anthro"
  56294. },
  56295. {
  56296. name: "Normal",
  56297. height: math.unit(6, "feet"),
  56298. default: true,
  56299. form: "feral"
  56300. },
  56301. ],
  56302. {
  56303. "anthro": {
  56304. name: "Anthro",
  56305. default: true
  56306. },
  56307. "feral": {
  56308. name: "Feral",
  56309. },
  56310. }
  56311. ))
  56312. characterMakers.push(() => makeCharacter(
  56313. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56314. {
  56315. front: {
  56316. height: math.unit(4 + 1/12, "feet"),
  56317. weight: math.unit(114, "lb"),
  56318. name: "Front",
  56319. image: {
  56320. source: "./media/characters/dex/front.svg",
  56321. extra: 787/680,
  56322. bottom: 18/805
  56323. }
  56324. },
  56325. side: {
  56326. height: math.unit(4 + 1/12, "feet"),
  56327. weight: math.unit(114, "lb"),
  56328. name: "Side",
  56329. image: {
  56330. source: "./media/characters/dex/side.svg",
  56331. extra: 785/680,
  56332. bottom: 12/797
  56333. }
  56334. },
  56335. back: {
  56336. height: math.unit(4 + 1/12, "feet"),
  56337. weight: math.unit(114, "lb"),
  56338. name: "Back",
  56339. image: {
  56340. source: "./media/characters/dex/back.svg",
  56341. extra: 785/681,
  56342. bottom: 17/802
  56343. }
  56344. },
  56345. loungewear: {
  56346. height: math.unit(4 + 1/12, "feet"),
  56347. weight: math.unit(114, "lb"),
  56348. name: "Loungewear",
  56349. image: {
  56350. source: "./media/characters/dex/loungewear.svg",
  56351. extra: 787/680,
  56352. bottom: 18/805
  56353. }
  56354. },
  56355. workout: {
  56356. height: math.unit(4 + 1/12, "feet"),
  56357. weight: math.unit(114, "lb"),
  56358. name: "Workout",
  56359. image: {
  56360. source: "./media/characters/dex/workout.svg",
  56361. extra: 787/680,
  56362. bottom: 18/805
  56363. }
  56364. },
  56365. schoolUniform: {
  56366. height: math.unit(4 + 1/12, "feet"),
  56367. weight: math.unit(114, "lb"),
  56368. name: "School-uniform",
  56369. image: {
  56370. source: "./media/characters/dex/school-uniform.svg",
  56371. extra: 787/680,
  56372. bottom: 18/805
  56373. }
  56374. },
  56375. maw: {
  56376. height: math.unit(0.55, "feet"),
  56377. name: "Maw",
  56378. image: {
  56379. source: "./media/characters/dex/maw.svg"
  56380. }
  56381. },
  56382. paw: {
  56383. height: math.unit(0.87, "feet"),
  56384. name: "Paw",
  56385. image: {
  56386. source: "./media/characters/dex/paw.svg"
  56387. }
  56388. },
  56389. bust: {
  56390. height: math.unit(1.67, "feet"),
  56391. name: "Bust",
  56392. image: {
  56393. source: "./media/characters/dex/bust.svg"
  56394. }
  56395. },
  56396. },
  56397. [
  56398. {
  56399. name: "Normal",
  56400. height: math.unit(4 + 1/12, "feet"),
  56401. default: true
  56402. },
  56403. ]
  56404. ))
  56405. characterMakers.push(() => makeCharacter(
  56406. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56407. {
  56408. front: {
  56409. height: math.unit(4 + 3/12, "feet"),
  56410. weight: math.unit(60, "lb"),
  56411. name: "Front",
  56412. image: {
  56413. source: "./media/characters/silke/front.svg",
  56414. extra: 1334/1122,
  56415. bottom: 21/1355
  56416. }
  56417. },
  56418. back: {
  56419. height: math.unit(4 + 3/12, "feet"),
  56420. weight: math.unit(60, "lb"),
  56421. name: "Back",
  56422. image: {
  56423. source: "./media/characters/silke/back.svg",
  56424. extra: 1328/1092,
  56425. bottom: 16/1344
  56426. }
  56427. },
  56428. dressed: {
  56429. height: math.unit(4 + 3/12, "feet"),
  56430. weight: math.unit(60, "lb"),
  56431. name: "Dressed",
  56432. image: {
  56433. source: "./media/characters/silke/dressed.svg",
  56434. extra: 1334/1122,
  56435. bottom: 43/1377
  56436. }
  56437. },
  56438. },
  56439. [
  56440. {
  56441. name: "Normal",
  56442. height: math.unit(4 + 3/12, "feet"),
  56443. default: true
  56444. },
  56445. ]
  56446. ))
  56447. characterMakers.push(() => makeCharacter(
  56448. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56449. {
  56450. front: {
  56451. height: math.unit(1.58, "meters"),
  56452. weight: math.unit(47, "kg"),
  56453. name: "Front",
  56454. image: {
  56455. source: "./media/characters/wireshark/front.svg",
  56456. extra: 883/838,
  56457. bottom: 66/949
  56458. }
  56459. },
  56460. },
  56461. [
  56462. {
  56463. name: "Normal",
  56464. height: math.unit(1.58, "meters"),
  56465. default: true
  56466. },
  56467. ]
  56468. ))
  56469. characterMakers.push(() => makeCharacter(
  56470. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56471. {
  56472. front: {
  56473. height: math.unit(6, "meters"),
  56474. weight: math.unit(15000, "kg"),
  56475. name: "Front",
  56476. image: {
  56477. source: "./media/characters/gallagher/front.svg",
  56478. extra: 532/493,
  56479. bottom: 0/532
  56480. }
  56481. },
  56482. },
  56483. [
  56484. {
  56485. name: "Normal",
  56486. height: math.unit(6, "meters"),
  56487. default: true
  56488. },
  56489. ]
  56490. ))
  56491. characterMakers.push(() => makeCharacter(
  56492. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56493. {
  56494. front: {
  56495. height: math.unit(2.4, "meters"),
  56496. weight: math.unit(270, "kg"),
  56497. name: "Front",
  56498. image: {
  56499. source: "./media/characters/alice/front.svg",
  56500. extra: 950/900,
  56501. bottom: 36/986
  56502. }
  56503. },
  56504. side: {
  56505. height: math.unit(2.4, "meters"),
  56506. weight: math.unit(270, "kg"),
  56507. name: "Side",
  56508. image: {
  56509. source: "./media/characters/alice/side.svg",
  56510. extra: 921/876,
  56511. bottom: 19/940
  56512. }
  56513. },
  56514. dressed: {
  56515. height: math.unit(2.4, "meters"),
  56516. weight: math.unit(270, "kg"),
  56517. name: "Dressed",
  56518. image: {
  56519. source: "./media/characters/alice/dressed.svg",
  56520. extra: 905/850,
  56521. bottom: 81/986
  56522. }
  56523. },
  56524. fishnet: {
  56525. height: math.unit(2.4, "meters"),
  56526. weight: math.unit(270, "kg"),
  56527. name: "Fishnet",
  56528. image: {
  56529. source: "./media/characters/alice/fishnet.svg",
  56530. extra: 905/850,
  56531. bottom: 81/986
  56532. }
  56533. },
  56534. },
  56535. [
  56536. {
  56537. name: "Normal",
  56538. height: math.unit(2.4, "meters"),
  56539. default: true
  56540. },
  56541. ]
  56542. ))
  56543. characterMakers.push(() => makeCharacter(
  56544. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56545. {
  56546. front: {
  56547. height: math.unit(175.25, "feet"),
  56548. name: "Front",
  56549. image: {
  56550. source: "./media/characters/fio/front.svg",
  56551. extra: 1883/1591,
  56552. bottom: 34/1917
  56553. }
  56554. },
  56555. },
  56556. [
  56557. {
  56558. name: "Normal",
  56559. height: math.unit(175.25, "cm"),
  56560. default: true
  56561. },
  56562. ]
  56563. ))
  56564. characterMakers.push(() => makeCharacter(
  56565. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56566. {
  56567. side: {
  56568. height: math.unit(6, "meters"),
  56569. weight: math.unit(3400, "kg"),
  56570. preyCapacity: math.unit(1700, "liters"),
  56571. name: "Side",
  56572. image: {
  56573. source: "./media/characters/hass/side.svg",
  56574. extra: 1058/997,
  56575. bottom: 177/1235
  56576. }
  56577. },
  56578. feeding: {
  56579. height: math.unit(6*0.63, "meters"),
  56580. weight: math.unit(3400, "kg"),
  56581. preyCapacity: math.unit(1700, "liters"),
  56582. name: "Feeding",
  56583. image: {
  56584. source: "./media/characters/hass/feeding.svg",
  56585. extra: 689/579,
  56586. bottom: 146/835
  56587. }
  56588. },
  56589. guts: {
  56590. height: math.unit(6, "meters"),
  56591. weight: math.unit(3400, "kg"),
  56592. name: "Guts",
  56593. image: {
  56594. source: "./media/characters/hass/guts.svg",
  56595. extra: 1223/1198,
  56596. bottom: 182/1405
  56597. }
  56598. },
  56599. dickFront: {
  56600. height: math.unit(1.4, "meters"),
  56601. name: "Dick (Front)",
  56602. image: {
  56603. source: "./media/characters/hass/dick-front.svg"
  56604. }
  56605. },
  56606. dickSide: {
  56607. height: math.unit(1.3, "meters"),
  56608. name: "Dick (Side)",
  56609. image: {
  56610. source: "./media/characters/hass/dick-side.svg"
  56611. }
  56612. },
  56613. dickBack: {
  56614. height: math.unit(1.4, "meters"),
  56615. name: "Dick (Back)",
  56616. image: {
  56617. source: "./media/characters/hass/dick-back.svg"
  56618. }
  56619. },
  56620. },
  56621. [
  56622. {
  56623. name: "Normal",
  56624. height: math.unit(6, "meters"),
  56625. default: true
  56626. },
  56627. ]
  56628. ))
  56629. characterMakers.push(() => makeCharacter(
  56630. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56631. {
  56632. front: {
  56633. height: math.unit(4, "feet"),
  56634. weight: math.unit(60, "lb"),
  56635. name: "Front",
  56636. image: {
  56637. source: "./media/characters/hickory-finnegan/front.svg",
  56638. extra: 444/411,
  56639. bottom: 10/454
  56640. }
  56641. },
  56642. side: {
  56643. height: math.unit(4, "feet"),
  56644. weight: math.unit(60, "lb"),
  56645. name: "Side",
  56646. image: {
  56647. source: "./media/characters/hickory-finnegan/side.svg",
  56648. extra: 444/411,
  56649. bottom: 10/454
  56650. }
  56651. },
  56652. back: {
  56653. height: math.unit(4, "feet"),
  56654. weight: math.unit(60, "lb"),
  56655. name: "Back",
  56656. image: {
  56657. source: "./media/characters/hickory-finnegan/back.svg",
  56658. extra: 444/411,
  56659. bottom: 10/454
  56660. }
  56661. },
  56662. },
  56663. [
  56664. {
  56665. name: "Normal",
  56666. height: math.unit(4, "feet"),
  56667. default: true
  56668. },
  56669. ]
  56670. ))
  56671. characterMakers.push(() => makeCharacter(
  56672. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56673. {
  56674. snivy_front: {
  56675. height: math.unit(2, "feet"),
  56676. weight: math.unit(17.9, "lb"),
  56677. name: "Front",
  56678. image: {
  56679. source: "./media/characters/robin-phox/snivy-front.svg",
  56680. extra: 569/504,
  56681. bottom: 33/602
  56682. },
  56683. form: "snivy",
  56684. default: true
  56685. },
  56686. snivy_frontNsfw: {
  56687. height: math.unit(2, "feet"),
  56688. weight: math.unit(17.9, "lb"),
  56689. name: "Front (NSFW)",
  56690. image: {
  56691. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56692. extra: 569/504,
  56693. bottom: 33/602
  56694. },
  56695. form: "snivy",
  56696. },
  56697. snivy_back: {
  56698. height: math.unit(2, "feet"),
  56699. weight: math.unit(17.9, "lb"),
  56700. name: "Back",
  56701. image: {
  56702. source: "./media/characters/robin-phox/snivy-back.svg",
  56703. extra: 577/508,
  56704. bottom: 21/598
  56705. },
  56706. form: "snivy",
  56707. },
  56708. snivy_foot: {
  56709. height: math.unit(0.68, "feet"),
  56710. name: "Foot",
  56711. image: {
  56712. source: "./media/characters/robin-phox/snivy-foot.svg"
  56713. },
  56714. form: "snivy",
  56715. },
  56716. snivy_sole: {
  56717. height: math.unit(0.68, "feet"),
  56718. name: "Sole",
  56719. image: {
  56720. source: "./media/characters/robin-phox/snivy-sole.svg"
  56721. },
  56722. form: "snivy",
  56723. },
  56724. yoshi_front: {
  56725. height: math.unit(6, "feet"),
  56726. weight: math.unit(150, "lb"),
  56727. name: "Front",
  56728. image: {
  56729. source: "./media/characters/robin-phox/yoshi-front.svg",
  56730. extra: 890/792,
  56731. bottom: 29/919
  56732. },
  56733. form: "yoshi",
  56734. default: true
  56735. },
  56736. yoshi_frontNsfw: {
  56737. height: math.unit(6, "feet"),
  56738. weight: math.unit(150, "lb"),
  56739. name: "Front (NSFW)",
  56740. image: {
  56741. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56742. extra: 890/792,
  56743. bottom: 29/919
  56744. },
  56745. form: "yoshi",
  56746. },
  56747. yoshi_back: {
  56748. height: math.unit(6, "feet"),
  56749. weight: math.unit(150, "lb"),
  56750. name: "Back",
  56751. image: {
  56752. source: "./media/characters/robin-phox/yoshi-back.svg",
  56753. extra: 890/792,
  56754. bottom: 29/919
  56755. },
  56756. form: "yoshi",
  56757. },
  56758. yoshi_foot: {
  56759. height: math.unit(1.5, "feet"),
  56760. name: "Foot",
  56761. image: {
  56762. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56763. },
  56764. form: "yoshi",
  56765. },
  56766. delphox_front: {
  56767. height: math.unit(4 + 11/12, "feet"),
  56768. weight: math.unit(86, "lb"),
  56769. name: "Front",
  56770. image: {
  56771. source: "./media/characters/robin-phox/delphox-front.svg",
  56772. extra: 1266/1069,
  56773. bottom: 32/1298
  56774. },
  56775. form: "delphox",
  56776. default: true
  56777. },
  56778. delphox_frontNsfw: {
  56779. height: math.unit(4 + 11/12, "feet"),
  56780. weight: math.unit(86, "lb"),
  56781. name: "Front (NSFW)",
  56782. image: {
  56783. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56784. extra: 1266/1069,
  56785. bottom: 32/1298
  56786. },
  56787. form: "delphox",
  56788. },
  56789. delphox_back: {
  56790. height: math.unit(4 + 11/12, "feet"),
  56791. weight: math.unit(86, "lb"),
  56792. name: "Back",
  56793. image: {
  56794. source: "./media/characters/robin-phox/delphox-back.svg",
  56795. extra: 1269/1083,
  56796. bottom: 15/1284
  56797. },
  56798. form: "delphox",
  56799. },
  56800. mienshao_front: {
  56801. height: math.unit(4 + 7/12, "feet"),
  56802. weight: math.unit(78.3, "lb"),
  56803. name: "Front",
  56804. image: {
  56805. source: "./media/characters/robin-phox/mienshao-front.svg",
  56806. extra: 1052/970,
  56807. bottom: 108/1160
  56808. },
  56809. form: "mienshao",
  56810. default: true
  56811. },
  56812. mienshao_frontNsfw: {
  56813. height: math.unit(4 + 7/12, "feet"),
  56814. weight: math.unit(78.3, "lb"),
  56815. name: "Front (NSFW)",
  56816. image: {
  56817. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56818. extra: 1052/970,
  56819. bottom: 108/1160
  56820. },
  56821. form: "mienshao",
  56822. },
  56823. mienshao_back: {
  56824. height: math.unit(4 + 7/12, "feet"),
  56825. weight: math.unit(78.3, "lb"),
  56826. name: "Back",
  56827. image: {
  56828. source: "./media/characters/robin-phox/mienshao-back.svg",
  56829. extra: 1102/982,
  56830. bottom: 32/1134
  56831. },
  56832. form: "mienshao",
  56833. },
  56834. inteleon_front: {
  56835. height: math.unit(6 + 3/12, "feet"),
  56836. weight: math.unit(99.6, "lb"),
  56837. name: "Front",
  56838. image: {
  56839. source: "./media/characters/robin-phox/inteleon-front.svg",
  56840. extra: 910/799,
  56841. bottom: 76/986
  56842. },
  56843. form: "inteleon",
  56844. default: true
  56845. },
  56846. inteleon_frontNsfw: {
  56847. height: math.unit(6 + 3/12, "feet"),
  56848. weight: math.unit(99.6, "lb"),
  56849. name: "Front (NSFW)",
  56850. image: {
  56851. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56852. extra: 910/799,
  56853. bottom: 76/986
  56854. },
  56855. form: "inteleon",
  56856. },
  56857. inteleon_back: {
  56858. height: math.unit(6 + 3/12, "feet"),
  56859. weight: math.unit(99.6, "lb"),
  56860. name: "Back",
  56861. image: {
  56862. source: "./media/characters/robin-phox/inteleon-back.svg",
  56863. extra: 907/796,
  56864. bottom: 25/932
  56865. },
  56866. form: "inteleon",
  56867. },
  56868. reshiram_front: {
  56869. height: math.unit(10 + 6/12, "feet"),
  56870. weight: math.unit(727.5, "lb"),
  56871. name: "Front",
  56872. image: {
  56873. source: "./media/characters/robin-phox/reshiram-front.svg",
  56874. extra: 1198/940,
  56875. bottom: 123/1321
  56876. },
  56877. form: "reshiram",
  56878. },
  56879. reshiram_frontNsfw: {
  56880. height: math.unit(10 + 6/12, "feet"),
  56881. weight: math.unit(727.5, "lb"),
  56882. name: "Front-nsfw",
  56883. image: {
  56884. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56885. extra: 1198/940,
  56886. bottom: 123/1321
  56887. },
  56888. form: "reshiram",
  56889. },
  56890. reshiram_back: {
  56891. height: math.unit(10 + 6/12, "feet"),
  56892. weight: math.unit(727.5, "lb"),
  56893. name: "Back",
  56894. image: {
  56895. source: "./media/characters/robin-phox/reshiram-back.svg",
  56896. extra: 1024/904,
  56897. bottom: 85/1109
  56898. },
  56899. form: "reshiram",
  56900. },
  56901. samurott_front: {
  56902. height: math.unit(8, "feet"),
  56903. weight: math.unit(208.6, "lb"),
  56904. name: "Front",
  56905. image: {
  56906. source: "./media/characters/robin-phox/samurott-front.svg",
  56907. extra: 1048/984,
  56908. bottom: 100/1148
  56909. },
  56910. form: "samurott",
  56911. },
  56912. samurott_frontNsfw: {
  56913. height: math.unit(8, "feet"),
  56914. weight: math.unit(208.6, "lb"),
  56915. name: "Front-nsfw",
  56916. image: {
  56917. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56918. extra: 1048/984,
  56919. bottom: 100/1148
  56920. },
  56921. form: "samurott",
  56922. },
  56923. samurott_back: {
  56924. height: math.unit(8, "feet"),
  56925. weight: math.unit(208.6, "lb"),
  56926. name: "Back",
  56927. image: {
  56928. source: "./media/characters/robin-phox/samurott-back.svg",
  56929. extra: 1110/1042,
  56930. bottom: 12/1122
  56931. },
  56932. form: "samurott",
  56933. },
  56934. samurott_feral: {
  56935. height: math.unit(4 + 11/12, "feet"),
  56936. weight: math.unit(208.6, "lb"),
  56937. name: "Feral",
  56938. image: {
  56939. source: "./media/characters/robin-phox/samurott-feral.svg",
  56940. extra: 766/681,
  56941. bottom: 108/874
  56942. },
  56943. form: "samurott",
  56944. },
  56945. },
  56946. [
  56947. {
  56948. name: "Normal",
  56949. height: math.unit(2, "feet"),
  56950. default: true,
  56951. form: "snivy"
  56952. },
  56953. {
  56954. name: "Normal",
  56955. height: math.unit(6, "feet"),
  56956. default: true,
  56957. form: "yoshi"
  56958. },
  56959. {
  56960. name: "Normal",
  56961. height: math.unit(4 + 11/12, "feet"),
  56962. default: true,
  56963. form: "delphox"
  56964. },
  56965. {
  56966. name: "Normal",
  56967. height: math.unit(4 + 7/12, "feet"),
  56968. default: true,
  56969. form: "mienshao"
  56970. },
  56971. {
  56972. name: "Normal",
  56973. height: math.unit(6 + 3/12, "feet"),
  56974. default: true,
  56975. form: "inteleon"
  56976. },
  56977. {
  56978. name: "Normal",
  56979. height: math.unit(10 + 6/12, "feet"),
  56980. default: true,
  56981. form: "reshiram"
  56982. },
  56983. {
  56984. name: "Normal",
  56985. height: math.unit(8, "feet"),
  56986. default: true,
  56987. form: "samurott"
  56988. },
  56989. {
  56990. name: "Macro",
  56991. height: math.unit(500, "feet"),
  56992. allForms: true
  56993. },
  56994. {
  56995. name: "Mega Macro",
  56996. height: math.unit(10, "earths"),
  56997. allForms: true
  56998. },
  56999. {
  57000. name: "Giga Macro",
  57001. height: math.unit(1, "galaxy"),
  57002. allForms: true
  57003. },
  57004. {
  57005. name: "Godly Macro",
  57006. height: math.unit(1e10, "multiverses"),
  57007. allForms: true
  57008. },
  57009. ],
  57010. {
  57011. "snivy": {
  57012. name: "Snivy",
  57013. default: true
  57014. },
  57015. "yoshi": {
  57016. name: "Yoshi",
  57017. },
  57018. "delphox": {
  57019. name: "Delphox",
  57020. },
  57021. "mienshao": {
  57022. name: "Mienshao",
  57023. },
  57024. "inteleon": {
  57025. name: "Inteleon",
  57026. },
  57027. "reshiram": {
  57028. name: "Reshiram",
  57029. },
  57030. "samurott": {
  57031. name: "Samurott",
  57032. },
  57033. }
  57034. ))
  57035. characterMakers.push(() => makeCharacter(
  57036. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57037. {
  57038. front: {
  57039. height: math.unit(4, "feet"),
  57040. name: "Front",
  57041. image: {
  57042. source: "./media/characters/ash-leung/front.svg",
  57043. extra: 1916/1792,
  57044. bottom: 50/1966
  57045. }
  57046. },
  57047. },
  57048. [
  57049. {
  57050. name: "Atomic",
  57051. height: math.unit(1, "angstrom")
  57052. },
  57053. {
  57054. name: "Microscopic",
  57055. height: math.unit(4000, "angstroms")
  57056. },
  57057. {
  57058. name: "Speck",
  57059. height: math.unit(1, "mm")
  57060. },
  57061. {
  57062. name: "Small",
  57063. height: math.unit(1, "inch")
  57064. },
  57065. {
  57066. name: "Normal",
  57067. height: math.unit(4, "feet"),
  57068. default: true
  57069. },
  57070. ]
  57071. ))
  57072. characterMakers.push(() => makeCharacter(
  57073. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57074. {
  57075. frontDressed: {
  57076. height: math.unit(2.08, "meters"),
  57077. weight: math.unit(175, "lb"),
  57078. name: "Front (Dressed)",
  57079. image: {
  57080. source: "./media/characters/carie/front-dressed.svg",
  57081. extra: 456/417,
  57082. bottom: 7/463
  57083. }
  57084. },
  57085. backDressed: {
  57086. height: math.unit(2.08, "meters"),
  57087. weight: math.unit(175, "lb"),
  57088. name: "Back (Dressed)",
  57089. image: {
  57090. source: "./media/characters/carie/back-dressed.svg",
  57091. extra: 455/414,
  57092. bottom: 11/466
  57093. }
  57094. },
  57095. front: {
  57096. height: math.unit(2, "meters"),
  57097. weight: math.unit(175, "lb"),
  57098. name: "Front",
  57099. image: {
  57100. source: "./media/characters/carie/front.svg",
  57101. extra: 438/399,
  57102. bottom: 12/450
  57103. }
  57104. },
  57105. back: {
  57106. height: math.unit(2, "meters"),
  57107. weight: math.unit(175, "lb"),
  57108. name: "Back",
  57109. image: {
  57110. source: "./media/characters/carie/back.svg",
  57111. extra: 438/397,
  57112. bottom: 7/445
  57113. }
  57114. },
  57115. },
  57116. [
  57117. {
  57118. name: "Normal",
  57119. height: math.unit(2.08, "meters"),
  57120. default: true
  57121. },
  57122. {
  57123. name: "Macro",
  57124. height: math.unit(2.08e3, "meters")
  57125. },
  57126. {
  57127. name: "Mega Macro",
  57128. height: math.unit(2.08e6, "meters")
  57129. },
  57130. {
  57131. name: "Giga Macro",
  57132. height: math.unit(2.08e9, "meters")
  57133. },
  57134. {
  57135. name: "Tera Macro",
  57136. height: math.unit(2.08e12, "meters")
  57137. },
  57138. {
  57139. name: "Peta Macro",
  57140. height: math.unit(2.08e15, "meters")
  57141. },
  57142. {
  57143. name: "Exa Macro",
  57144. height: math.unit(2.08e18, "meters")
  57145. },
  57146. {
  57147. name: "Zetta Macro",
  57148. height: math.unit(2.08e21, "meters")
  57149. },
  57150. {
  57151. name: "Yotta Macro",
  57152. height: math.unit(2.08e24, "meters")
  57153. },
  57154. ]
  57155. ))
  57156. characterMakers.push(() => makeCharacter(
  57157. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57158. {
  57159. front: {
  57160. height: math.unit(5 + 2/12, "feet"),
  57161. weight: math.unit(120, "lb"),
  57162. name: "Front",
  57163. image: {
  57164. source: "./media/characters/sai-bree/front.svg",
  57165. extra: 1843/1702,
  57166. bottom: 91/1934
  57167. }
  57168. },
  57169. back: {
  57170. height: math.unit(5 + 2/12, "feet"),
  57171. weight: math.unit(120, "lb"),
  57172. name: "Back",
  57173. image: {
  57174. source: "./media/characters/sai-bree/back.svg",
  57175. extra: 1809/1637,
  57176. bottom: 56/1865
  57177. }
  57178. },
  57179. },
  57180. [
  57181. {
  57182. name: "Normal",
  57183. height: math.unit(5 + 2/12, "feet"),
  57184. default: true
  57185. },
  57186. {
  57187. name: "Macro",
  57188. height: math.unit(500, "feet")
  57189. },
  57190. ]
  57191. ))
  57192. characterMakers.push(() => makeCharacter(
  57193. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57194. {
  57195. side: {
  57196. height: math.unit(0.77, "meters"),
  57197. weight: math.unit(120, "lb"),
  57198. name: "Side",
  57199. image: {
  57200. source: "./media/characters/davwyn/side.svg",
  57201. extra: 1557/1225,
  57202. bottom: 131/1688
  57203. }
  57204. },
  57205. front: {
  57206. height: math.unit(0.835410, "meters"),
  57207. weight: math.unit(120, "lb"),
  57208. name: "Front",
  57209. image: {
  57210. source: "./media/characters/davwyn/front.svg",
  57211. extra: 870/843,
  57212. bottom: 175/1045
  57213. }
  57214. },
  57215. },
  57216. [
  57217. {
  57218. name: "Minidrake",
  57219. height: math.unit(0.77/4, "meters")
  57220. },
  57221. {
  57222. name: "Normal",
  57223. height: math.unit(0.77, "meters"),
  57224. default: true
  57225. },
  57226. ]
  57227. ))
  57228. characterMakers.push(() => makeCharacter(
  57229. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57230. {
  57231. front: {
  57232. height: math.unit(10 + 3/12, "feet"),
  57233. weight: math.unit(2857, "lb"),
  57234. name: "Front",
  57235. image: {
  57236. source: "./media/characters/balans/front.svg",
  57237. extra: 427/402,
  57238. bottom: 26/453
  57239. }
  57240. },
  57241. side: {
  57242. height: math.unit(10 + 3/12, "feet"),
  57243. weight: math.unit(2857, "lb"),
  57244. name: "Side",
  57245. image: {
  57246. source: "./media/characters/balans/side.svg",
  57247. extra: 397/371,
  57248. bottom: 17/414
  57249. }
  57250. },
  57251. back: {
  57252. height: math.unit(10 + 3/12, "feet"),
  57253. weight: math.unit(2857, "lb"),
  57254. name: "Back",
  57255. image: {
  57256. source: "./media/characters/balans/back.svg",
  57257. extra: 408/381,
  57258. bottom: 14/422
  57259. }
  57260. },
  57261. hand: {
  57262. height: math.unit(1.15, "feet"),
  57263. name: "Hand",
  57264. image: {
  57265. source: "./media/characters/balans/hand.svg"
  57266. }
  57267. },
  57268. footRest: {
  57269. height: math.unit(3.1, "feet"),
  57270. name: "Foot (Rest)",
  57271. image: {
  57272. source: "./media/characters/balans/foot-rest.svg"
  57273. }
  57274. },
  57275. footActive: {
  57276. height: math.unit(3.5, "feet"),
  57277. name: "Foot (Active)",
  57278. image: {
  57279. source: "./media/characters/balans/foot-active.svg"
  57280. }
  57281. },
  57282. },
  57283. [
  57284. {
  57285. name: "Normal",
  57286. height: math.unit(10 + 3/12, "feet"),
  57287. default: true
  57288. },
  57289. ]
  57290. ))
  57291. characterMakers.push(() => makeCharacter(
  57292. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57293. {
  57294. side: {
  57295. height: math.unit(9, "meters"),
  57296. weight: math.unit(114, "tonnes"),
  57297. name: "Side",
  57298. image: {
  57299. source: "./media/characters/eldkveikir/side.svg",
  57300. extra: 1927/338,
  57301. bottom: 42/1969
  57302. }
  57303. },
  57304. sitting: {
  57305. height: math.unit(13.4, "meters"),
  57306. weight: math.unit(114, "tonnes"),
  57307. name: "Sitting",
  57308. image: {
  57309. source: "./media/characters/eldkveikir/sitting.svg",
  57310. extra: 1108/963,
  57311. bottom: 610/1718
  57312. }
  57313. },
  57314. maw: {
  57315. height: math.unit(8.36, "meters"),
  57316. name: "Maw",
  57317. image: {
  57318. source: "./media/characters/eldkveikir/maw.svg"
  57319. }
  57320. },
  57321. hand: {
  57322. height: math.unit(4.84, "meters"),
  57323. name: "Hand",
  57324. image: {
  57325. source: "./media/characters/eldkveikir/hand.svg"
  57326. }
  57327. },
  57328. foot: {
  57329. height: math.unit(6.9, "meters"),
  57330. name: "Foot",
  57331. image: {
  57332. source: "./media/characters/eldkveikir/foot.svg"
  57333. }
  57334. },
  57335. genitals: {
  57336. height: math.unit(9.6, "meters"),
  57337. name: "Genitals",
  57338. image: {
  57339. source: "./media/characters/eldkveikir/genitals.svg"
  57340. }
  57341. },
  57342. },
  57343. [
  57344. {
  57345. name: "Normal",
  57346. height: math.unit(9, "meters"),
  57347. default: true
  57348. },
  57349. ]
  57350. ))
  57351. characterMakers.push(() => makeCharacter(
  57352. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57353. {
  57354. front: {
  57355. height: math.unit(14, "feet"),
  57356. weight: math.unit(4100, "lb"),
  57357. name: "Front",
  57358. image: {
  57359. source: "./media/characters/arrow/front.svg",
  57360. extra: 330/318,
  57361. bottom: 56/386
  57362. }
  57363. },
  57364. },
  57365. [
  57366. {
  57367. name: "Normal",
  57368. height: math.unit(14, "feet"),
  57369. default: true
  57370. },
  57371. {
  57372. name: "Minimacro",
  57373. height: math.unit(63, "feet")
  57374. },
  57375. {
  57376. name: "Macro",
  57377. height: math.unit(630, "feet")
  57378. },
  57379. {
  57380. name: "Megamacro",
  57381. height: math.unit(12600, "feet")
  57382. },
  57383. {
  57384. name: "Gigamacro",
  57385. height: math.unit(18000, "miles")
  57386. },
  57387. ]
  57388. ))
  57389. characterMakers.push(() => makeCharacter(
  57390. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57391. {
  57392. front: {
  57393. height: math.unit(10, "feet"),
  57394. weight: math.unit(2.4, "tons"),
  57395. name: "Front",
  57396. image: {
  57397. source: "./media/characters/3yk-k0-unit/front.svg",
  57398. extra: 573/561,
  57399. bottom: 33/606
  57400. }
  57401. },
  57402. back: {
  57403. height: math.unit(10, "feet"),
  57404. weight: math.unit(2.4, "tons"),
  57405. name: "Back",
  57406. image: {
  57407. source: "./media/characters/3yk-k0-unit/back.svg",
  57408. extra: 614/573,
  57409. bottom: 32/646
  57410. }
  57411. },
  57412. maw: {
  57413. height: math.unit(2.15, "feet"),
  57414. name: "Maw",
  57415. image: {
  57416. source: "./media/characters/3yk-k0-unit/maw.svg"
  57417. }
  57418. },
  57419. },
  57420. [
  57421. {
  57422. name: "Normal",
  57423. height: math.unit(10, "feet"),
  57424. default: true
  57425. },
  57426. ]
  57427. ))
  57428. characterMakers.push(() => makeCharacter(
  57429. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57430. {
  57431. front: {
  57432. height: math.unit(8 + 8/12, "feet"),
  57433. name: "Front",
  57434. image: {
  57435. source: "./media/characters/nemo/front.svg",
  57436. extra: 1308/1217,
  57437. bottom: 57/1365
  57438. }
  57439. },
  57440. },
  57441. [
  57442. {
  57443. name: "Normal",
  57444. height: math.unit(8 + 8/12, "feet"),
  57445. default: true
  57446. },
  57447. ]
  57448. ))
  57449. characterMakers.push(() => makeCharacter(
  57450. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57451. {
  57452. front: {
  57453. height: math.unit(8, "feet"),
  57454. weight: math.unit(760, "lb"),
  57455. name: "Front",
  57456. image: {
  57457. source: "./media/characters/rexx/front.svg",
  57458. extra: 786/750,
  57459. bottom: 17/803
  57460. },
  57461. extraAttributes: {
  57462. "pawLength": {
  57463. name: "Paw Length",
  57464. power: 1,
  57465. type: "length",
  57466. base: math.unit(27, "inches")
  57467. },
  57468. }
  57469. },
  57470. },
  57471. [
  57472. {
  57473. name: "Micro",
  57474. height: math.unit(2, "inches")
  57475. },
  57476. {
  57477. name: "Normal",
  57478. height: math.unit(8, "feet"),
  57479. default: true
  57480. },
  57481. {
  57482. name: "Macro",
  57483. height: math.unit(150, "feet")
  57484. },
  57485. ]
  57486. ))
  57487. characterMakers.push(() => makeCharacter(
  57488. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57489. {
  57490. front: {
  57491. height: math.unit(18, "feet"),
  57492. weight: math.unit(1975, "lb"),
  57493. name: "Front",
  57494. image: {
  57495. source: "./media/characters/draco/front.svg",
  57496. extra: 1325/1241,
  57497. bottom: 83/1408
  57498. }
  57499. },
  57500. back: {
  57501. height: math.unit(18, "feet"),
  57502. weight: math.unit(1975, "lb"),
  57503. name: "Back",
  57504. image: {
  57505. source: "./media/characters/draco/back.svg",
  57506. extra: 1332/1250,
  57507. bottom: 43/1375
  57508. }
  57509. },
  57510. dick: {
  57511. height: math.unit(7.5, "feet"),
  57512. name: "Dick",
  57513. image: {
  57514. source: "./media/characters/draco/dick.svg"
  57515. }
  57516. },
  57517. },
  57518. [
  57519. {
  57520. name: "Normal",
  57521. height: math.unit(18, "feet"),
  57522. default: true
  57523. },
  57524. ]
  57525. ))
  57526. characterMakers.push(() => makeCharacter(
  57527. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57528. {
  57529. front: {
  57530. height: math.unit(3.2, "meters"),
  57531. name: "Front",
  57532. image: {
  57533. source: "./media/characters/harriett/front.svg",
  57534. extra: 1966/1915,
  57535. bottom: 9/1975
  57536. }
  57537. },
  57538. },
  57539. [
  57540. {
  57541. name: "Normal",
  57542. height: math.unit(3.2, "meters"),
  57543. default: true
  57544. },
  57545. ]
  57546. ))
  57547. characterMakers.push(() => makeCharacter(
  57548. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57549. {
  57550. sitting: {
  57551. height: math.unit(0.8, "meter"),
  57552. name: "Sitting",
  57553. image: {
  57554. source: "./media/characters/serpentus/sitting.svg",
  57555. extra: 293/290,
  57556. bottom: 140/433
  57557. }
  57558. },
  57559. },
  57560. [
  57561. {
  57562. name: "Normal",
  57563. height: math.unit(0.8, "meter"),
  57564. default: true
  57565. },
  57566. ]
  57567. ))
  57568. characterMakers.push(() => makeCharacter(
  57569. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57570. {
  57571. front: {
  57572. height: math.unit(5.7174385736, "feet"),
  57573. name: "Front",
  57574. image: {
  57575. source: "./media/characters/nova-polecat/front.svg",
  57576. extra: 1317/1216,
  57577. bottom: 92/1409
  57578. }
  57579. },
  57580. },
  57581. [
  57582. {
  57583. name: "Normal",
  57584. height: math.unit(5.7174385736, "feet"),
  57585. default: true
  57586. },
  57587. ]
  57588. ))
  57589. characterMakers.push(() => makeCharacter(
  57590. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57591. {
  57592. front: {
  57593. height: math.unit(5 + 4/12, "feet"),
  57594. weight: math.unit(250, "lb"),
  57595. name: "Front",
  57596. image: {
  57597. source: "./media/characters/mook/front.svg",
  57598. extra: 1088/1037,
  57599. bottom: 132/1220
  57600. }
  57601. },
  57602. back: {
  57603. height: math.unit(5 + 1/12, "feet"),
  57604. weight: math.unit(250, "lb"),
  57605. name: "Back",
  57606. image: {
  57607. source: "./media/characters/mook/back.svg",
  57608. extra: 1184/905,
  57609. bottom: 96/1280
  57610. }
  57611. },
  57612. head: {
  57613. height: math.unit(1.85, "feet"),
  57614. name: "Head",
  57615. image: {
  57616. source: "./media/characters/mook/head.svg"
  57617. }
  57618. },
  57619. hand: {
  57620. height: math.unit(1.9, "feet"),
  57621. name: "Hand",
  57622. image: {
  57623. source: "./media/characters/mook/hand.svg"
  57624. }
  57625. },
  57626. palm: {
  57627. height: math.unit(1.84, "feet"),
  57628. name: "Palm",
  57629. image: {
  57630. source: "./media/characters/mook/palm.svg"
  57631. }
  57632. },
  57633. foot: {
  57634. height: math.unit(1.44, "feet"),
  57635. name: "Foot",
  57636. image: {
  57637. source: "./media/characters/mook/foot.svg"
  57638. }
  57639. },
  57640. sole: {
  57641. height: math.unit(1.44, "feet"),
  57642. name: "Sole",
  57643. image: {
  57644. source: "./media/characters/mook/sole.svg"
  57645. }
  57646. },
  57647. },
  57648. [
  57649. {
  57650. name: "Normal",
  57651. height: math.unit(5 + 4/12, "feet"),
  57652. default: true
  57653. },
  57654. {
  57655. name: "Big",
  57656. height: math.unit(12, "feet")
  57657. },
  57658. ]
  57659. ))
  57660. characterMakers.push(() => makeCharacter(
  57661. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57662. {
  57663. front: {
  57664. height: math.unit(6 + 10/12, "feet"),
  57665. weight: math.unit(233, "lb"),
  57666. name: "Front",
  57667. image: {
  57668. source: "./media/characters/kayla/front.svg",
  57669. extra: 1850/1775,
  57670. bottom: 65/1915
  57671. }
  57672. },
  57673. },
  57674. [
  57675. {
  57676. name: "Normal",
  57677. height: math.unit(6 + 10/12, "feet"),
  57678. default: true
  57679. },
  57680. {
  57681. name: "Amazonian",
  57682. height: math.unit(12 + 5/12, "feet")
  57683. },
  57684. {
  57685. name: "Mini Giantess",
  57686. height: math.unit(26, "feet")
  57687. },
  57688. {
  57689. name: "Giantess",
  57690. height: math.unit(200, "feet")
  57691. },
  57692. {
  57693. name: "Mega Giantess",
  57694. height: math.unit(2500, "feet")
  57695. },
  57696. {
  57697. name: "City Sized",
  57698. height: math.unit(50, "miles")
  57699. },
  57700. {
  57701. name: "Country Sized",
  57702. height: math.unit(500, "miles")
  57703. },
  57704. {
  57705. name: "Continent Sized",
  57706. height: math.unit(2500, "miles")
  57707. },
  57708. {
  57709. name: "Planet Sized",
  57710. height: math.unit(10000, "miles")
  57711. },
  57712. {
  57713. name: "Star Sized",
  57714. height: math.unit(5e6, "miles")
  57715. },
  57716. {
  57717. name: "Solar System Sized",
  57718. height: math.unit(125, "AU")
  57719. },
  57720. {
  57721. name: "Galaxy Sized",
  57722. height: math.unit(300e3, "lightyears")
  57723. },
  57724. {
  57725. name: "Universe Sized",
  57726. height: math.unit(200e9, "lightyears")
  57727. },
  57728. {
  57729. name: "Multiverse Sized",
  57730. height: math.unit(20, "exauniverses")
  57731. },
  57732. {
  57733. name: "Mother of Existence",
  57734. height: math.unit(1e6, "yottauniverses")
  57735. },
  57736. ]
  57737. ))
  57738. characterMakers.push(() => makeCharacter(
  57739. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57740. {
  57741. side: {
  57742. height: math.unit(9.5, "meters"),
  57743. name: "Side",
  57744. image: {
  57745. source: "./media/characters/kulve-ragnarok/side.svg",
  57746. extra: 364/326,
  57747. bottom: 50/414
  57748. }
  57749. },
  57750. },
  57751. [
  57752. {
  57753. name: "Normal",
  57754. height: math.unit(9.5, "meters"),
  57755. default: true
  57756. },
  57757. ]
  57758. ))
  57759. characterMakers.push(() => makeCharacter(
  57760. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57761. {
  57762. front: {
  57763. height: math.unit(8 + 9/12, "feet"),
  57764. name: "Front",
  57765. image: {
  57766. source: "./media/characters/atlas-goat/front.svg",
  57767. extra: 1462/1323,
  57768. bottom: 12/1474
  57769. }
  57770. },
  57771. },
  57772. [
  57773. {
  57774. name: "Normal",
  57775. height: math.unit(8 + 9/12, "feet"),
  57776. default: true
  57777. },
  57778. {
  57779. name: "Skyline",
  57780. height: math.unit(845, "feet")
  57781. },
  57782. {
  57783. name: "Orbital",
  57784. height: math.unit(93000, "miles")
  57785. },
  57786. {
  57787. name: "Constellation",
  57788. height: math.unit(27000, "lightyears")
  57789. },
  57790. ]
  57791. ))
  57792. characterMakers.push(() => makeCharacter(
  57793. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57794. {
  57795. side: {
  57796. height: math.unit(1.8, "meters"),
  57797. weight: math.unit(120, "kg"),
  57798. name: "Side",
  57799. image: {
  57800. source: "./media/characters/xie-ling/side.svg",
  57801. extra: 646/574,
  57802. bottom: 44/690
  57803. }
  57804. },
  57805. },
  57806. [
  57807. {
  57808. name: "Tiny",
  57809. height: math.unit(1.80, "meters")
  57810. },
  57811. {
  57812. name: "Small",
  57813. height: math.unit(6, "meters")
  57814. },
  57815. {
  57816. name: "Medium",
  57817. height: math.unit(15, "meters")
  57818. },
  57819. {
  57820. name: "Normal",
  57821. height: math.unit(30, "meters"),
  57822. default: true
  57823. },
  57824. {
  57825. name: "Above Normal",
  57826. height: math.unit(60, "meters")
  57827. },
  57828. {
  57829. name: "Big",
  57830. height: math.unit(220, "meters")
  57831. },
  57832. {
  57833. name: "Giant",
  57834. height: math.unit(2.2, "km")
  57835. },
  57836. {
  57837. name: "Macro",
  57838. height: math.unit(25, "km")
  57839. },
  57840. {
  57841. name: "Mega Macro",
  57842. height: math.unit(350, "km")
  57843. },
  57844. {
  57845. name: "Mega Macro+",
  57846. height: math.unit(5000, "km")
  57847. },
  57848. {
  57849. name: "Goddess",
  57850. height: math.unit(3, "multiverses")
  57851. },
  57852. ]
  57853. ))
  57854. characterMakers.push(() => makeCharacter(
  57855. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57856. {
  57857. frontSfw: {
  57858. height: math.unit(5 + 11/12, "feet"),
  57859. weight: math.unit(210, "lb"),
  57860. name: "Front",
  57861. image: {
  57862. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57863. extra: 1928/1821,
  57864. bottom: 45/1973
  57865. }
  57866. },
  57867. backSfw: {
  57868. height: math.unit(5 + 11/12, "feet"),
  57869. weight: math.unit(210, "lb"),
  57870. name: "Back",
  57871. image: {
  57872. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57873. extra: 1920/1813,
  57874. bottom: 34/1954
  57875. }
  57876. },
  57877. frontNsfw: {
  57878. height: math.unit(5 + 11/12, "feet"),
  57879. weight: math.unit(210, "lb"),
  57880. name: "Front (NSFW)",
  57881. image: {
  57882. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57883. extra: 1928/1821,
  57884. bottom: 45/1973
  57885. }
  57886. },
  57887. backNsfw: {
  57888. height: math.unit(5 + 11/12, "feet"),
  57889. weight: math.unit(210, "lb"),
  57890. name: "Back (NSFW)",
  57891. image: {
  57892. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57893. extra: 1920/1813,
  57894. bottom: 34/1954
  57895. }
  57896. },
  57897. },
  57898. [
  57899. {
  57900. name: "Normal",
  57901. height: math.unit(5 + 11/12, "feet"),
  57902. default: true
  57903. },
  57904. {
  57905. name: "Goddess",
  57906. height: math.unit(20 + 3/12, "feet")
  57907. },
  57908. {
  57909. name: "Breaker of Man",
  57910. height: math.unit(329 + 9/12, "feet")
  57911. },
  57912. {
  57913. name: "Solar Justice",
  57914. height: math.unit(0.6, "solarradii")
  57915. },
  57916. {
  57917. name: "She Who Judges",
  57918. height: math.unit(1, "universe")
  57919. },
  57920. ]
  57921. ))
  57922. characterMakers.push(() => makeCharacter(
  57923. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57924. {
  57925. casual_front: {
  57926. height: math.unit(6 + 1/12, "feet"),
  57927. weight: math.unit(190, "lb"),
  57928. preyCapacity: math.unit(1, "people"),
  57929. name: "Front",
  57930. image: {
  57931. source: "./media/characters/managarmr/casual-front.svg",
  57932. extra: 411/381,
  57933. bottom: 15/426
  57934. },
  57935. extraAttributes: {
  57936. "pawSize": {
  57937. name: "Paw Size",
  57938. power: 1,
  57939. type: "length",
  57940. base: math.unit(0.2, "meters")
  57941. },
  57942. },
  57943. form: "casual",
  57944. },
  57945. casual_back: {
  57946. height: math.unit(6 + 1/12, "feet"),
  57947. weight: math.unit(190, "lb"),
  57948. preyCapacity: math.unit(1, "people"),
  57949. name: "Back",
  57950. image: {
  57951. source: "./media/characters/managarmr/casual-back.svg",
  57952. extra: 413/383,
  57953. bottom: 13/426
  57954. },
  57955. extraAttributes: {
  57956. "pawSize": {
  57957. name: "Paw Size",
  57958. power: 1,
  57959. type: "length",
  57960. base: math.unit(0.2, "meters")
  57961. },
  57962. },
  57963. form: "casual",
  57964. },
  57965. base_front: {
  57966. height: math.unit(7, "feet"),
  57967. weight: math.unit(210, "lb"),
  57968. preyCapacity: math.unit(2, "people"),
  57969. name: "Front",
  57970. image: {
  57971. source: "./media/characters/managarmr/base-front.svg",
  57972. extra: 580/485,
  57973. bottom: 32/612
  57974. },
  57975. extraAttributes: {
  57976. "wingspan": {
  57977. name: "Wingspan",
  57978. power: 1,
  57979. type: "length",
  57980. base: math.unit(4, "meters")
  57981. },
  57982. "pawSize": {
  57983. name: "Paw Size",
  57984. power: 1,
  57985. type: "length",
  57986. base: math.unit(0.2, "meters")
  57987. },
  57988. },
  57989. form: "base",
  57990. },
  57991. "true-divine_front": {
  57992. height: math.unit(40, "feet"),
  57993. weight: math.unit(39000, "lb"),
  57994. preyCapacity: math.unit(375, "people"),
  57995. name: "Front",
  57996. image: {
  57997. source: "./media/characters/managarmr/true-divine-front.svg",
  57998. extra: 725/573,
  57999. bottom: 120/845
  58000. },
  58001. extraAttributes: {
  58002. "wingspan": {
  58003. name: "Wingspan",
  58004. power: 1,
  58005. type: "length",
  58006. base: math.unit(20, "meters")
  58007. },
  58008. "pawSize": {
  58009. name: "Paw Size",
  58010. power: 1,
  58011. type: "length",
  58012. base: math.unit(1.5, "meters")
  58013. },
  58014. },
  58015. form: "true-divine",
  58016. },
  58017. },
  58018. [
  58019. {
  58020. name: "Normal",
  58021. height: math.unit(6 + 1/12, "feet"),
  58022. form: "casual",
  58023. default: true
  58024. },
  58025. {
  58026. name: "Normal",
  58027. height: math.unit(7, "feet"),
  58028. form: "base",
  58029. default: true
  58030. },
  58031. ],
  58032. {
  58033. "casual": {
  58034. name: "Casual",
  58035. default: true
  58036. },
  58037. "base": {
  58038. name: "Base",
  58039. },
  58040. "true-divine": {
  58041. name: "True Divine",
  58042. },
  58043. }
  58044. ))
  58045. characterMakers.push(() => makeCharacter(
  58046. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58047. {
  58048. front: {
  58049. height: math.unit(1.8, "meters"),
  58050. weight: math.unit(110, "kg"),
  58051. name: "Front",
  58052. image: {
  58053. source: "./media/characters/mystra/front.svg",
  58054. extra: 529/442,
  58055. bottom: 31/560
  58056. }
  58057. },
  58058. frontLewd: {
  58059. height: math.unit(1.8, "meters"),
  58060. weight: math.unit(110, "kg"),
  58061. name: "Front (Lewd)",
  58062. image: {
  58063. source: "./media/characters/mystra/front-lewd.svg",
  58064. extra: 529/442,
  58065. bottom: 31/560
  58066. }
  58067. },
  58068. head: {
  58069. height: math.unit(1.63, "feet"),
  58070. name: "Head",
  58071. image: {
  58072. source: "./media/characters/mystra/head.svg"
  58073. }
  58074. },
  58075. paw: {
  58076. height: math.unit(1.9, "feet"),
  58077. name: "Paw",
  58078. image: {
  58079. source: "./media/characters/mystra/paw.svg"
  58080. }
  58081. },
  58082. },
  58083. [
  58084. {
  58085. name: "Incognito",
  58086. height: math.unit(2.3, "meters")
  58087. },
  58088. {
  58089. name: "Small Macro",
  58090. height: math.unit(300, "meters")
  58091. },
  58092. {
  58093. name: "Small Mega",
  58094. height: math.unit(2, "km")
  58095. },
  58096. {
  58097. name: "Mega",
  58098. height: math.unit(30, "km")
  58099. },
  58100. {
  58101. name: "Small Giga",
  58102. height: math.unit(100, "km")
  58103. },
  58104. {
  58105. name: "Giga",
  58106. height: math.unit(1000, "km"),
  58107. default: true
  58108. },
  58109. {
  58110. name: "Continental",
  58111. height: math.unit(5000, "km")
  58112. },
  58113. {
  58114. name: "Terra",
  58115. height: math.unit(20000, "km")
  58116. },
  58117. {
  58118. name: "Solar",
  58119. height: math.unit(2e6, "km")
  58120. },
  58121. {
  58122. name: "Galactic",
  58123. height: math.unit(528502, "lightyears")
  58124. },
  58125. {
  58126. name: "Universal",
  58127. height: math.unit(20, "universes")
  58128. },
  58129. ]
  58130. ))
  58131. characterMakers.push(() => makeCharacter(
  58132. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58133. {
  58134. front: {
  58135. height: math.unit(2, "meters"),
  58136. weight: math.unit(140, "kg"),
  58137. name: "Front",
  58138. image: {
  58139. source: "./media/characters/caleb/front.svg",
  58140. extra: 873/817,
  58141. bottom: 47/920
  58142. }
  58143. },
  58144. back: {
  58145. height: math.unit(2, "meters"),
  58146. weight: math.unit(140, "kg"),
  58147. name: "Back",
  58148. image: {
  58149. source: "./media/characters/caleb/back.svg",
  58150. extra: 877/828,
  58151. bottom: 24/901
  58152. }
  58153. },
  58154. snakeTail: {
  58155. height: math.unit(1.44, "feet"),
  58156. name: "Snake Tail",
  58157. image: {
  58158. source: "./media/characters/caleb/snake-tail.svg"
  58159. }
  58160. },
  58161. dick: {
  58162. height: math.unit(2.6, "feet"),
  58163. name: "Dick",
  58164. image: {
  58165. source: "./media/characters/caleb/dick.svg"
  58166. }
  58167. },
  58168. },
  58169. [
  58170. {
  58171. name: "Incognito",
  58172. height: math.unit(3, "meters")
  58173. },
  58174. {
  58175. name: "Home Size",
  58176. height: math.unit(200, "meters"),
  58177. default: true
  58178. },
  58179. {
  58180. name: "Macro",
  58181. height: math.unit(500, "meters")
  58182. },
  58183. {
  58184. name: "Big Macro",
  58185. height: math.unit(5, "km")
  58186. },
  58187. {
  58188. name: "Giga",
  58189. height: math.unit(250, "km")
  58190. },
  58191. {
  58192. name: "Giga+",
  58193. height: math.unit(5000, "km")
  58194. },
  58195. {
  58196. name: "Small Terra",
  58197. height: math.unit(35e3, "km")
  58198. },
  58199. {
  58200. name: "Terra",
  58201. height: math.unit(2e6, "km")
  58202. },
  58203. {
  58204. name: "Terra+",
  58205. height: math.unit(1.5e6, "km")
  58206. },
  58207. ]
  58208. ))
  58209. characterMakers.push(() => makeCharacter(
  58210. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58211. {
  58212. front: {
  58213. height: math.unit(2, "meters"),
  58214. weight: math.unit(120, "kg"),
  58215. name: "Front",
  58216. image: {
  58217. source: "./media/characters/gilirian/front.svg",
  58218. extra: 805/737,
  58219. bottom: 13/818
  58220. }
  58221. },
  58222. side: {
  58223. height: math.unit(2, "meters"),
  58224. weight: math.unit(120, "kg"),
  58225. name: "Side",
  58226. image: {
  58227. source: "./media/characters/gilirian/side.svg",
  58228. extra: 810/746,
  58229. bottom: 6/816
  58230. }
  58231. },
  58232. back: {
  58233. height: math.unit(2, "meters"),
  58234. weight: math.unit(120, "kg"),
  58235. name: "Back",
  58236. image: {
  58237. source: "./media/characters/gilirian/back.svg",
  58238. extra: 815/745,
  58239. bottom: 15/830
  58240. }
  58241. },
  58242. frontNsfw: {
  58243. height: math.unit(2, "meters"),
  58244. weight: math.unit(120, "kg"),
  58245. name: "Front (NSFW)",
  58246. image: {
  58247. source: "./media/characters/gilirian/front-nsfw.svg",
  58248. extra: 805/737,
  58249. bottom: 13/818
  58250. }
  58251. },
  58252. sideNsfw: {
  58253. height: math.unit(2, "meters"),
  58254. weight: math.unit(120, "kg"),
  58255. name: "Side (NSFW)",
  58256. image: {
  58257. source: "./media/characters/gilirian/side-nsfw.svg",
  58258. extra: 810/746,
  58259. bottom: 6/816
  58260. }
  58261. },
  58262. },
  58263. [
  58264. {
  58265. name: "Incognito",
  58266. height: math.unit(2, "meters"),
  58267. default: true
  58268. },
  58269. {
  58270. name: "Macro",
  58271. height: math.unit(250, "meters")
  58272. },
  58273. {
  58274. name: "Big Macro",
  58275. height: math.unit(1500, "meters")
  58276. },
  58277. {
  58278. name: "Mega",
  58279. height: math.unit(40, "km")
  58280. },
  58281. {
  58282. name: "Giga",
  58283. height: math.unit(300, "km")
  58284. },
  58285. {
  58286. name: "Extra Giga",
  58287. height: math.unit(5000, "km")
  58288. },
  58289. {
  58290. name: "Small Terra",
  58291. height: math.unit(10e3, "km")
  58292. },
  58293. {
  58294. name: "Terra",
  58295. height: math.unit(3e5, "km")
  58296. },
  58297. {
  58298. name: "Galactic",
  58299. height: math.unit(369950, "lightyears")
  58300. },
  58301. ]
  58302. ))
  58303. characterMakers.push(() => makeCharacter(
  58304. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58305. {
  58306. front: {
  58307. height: math.unit(2.5, "meters"),
  58308. weight: math.unit(230, "lb"),
  58309. name: "Front",
  58310. image: {
  58311. source: "./media/characters/tarken/front.svg",
  58312. extra: 764/720,
  58313. bottom: 49/813
  58314. }
  58315. },
  58316. back: {
  58317. height: math.unit(2.5, "meters"),
  58318. weight: math.unit(230, "lb"),
  58319. name: "Back",
  58320. image: {
  58321. source: "./media/characters/tarken/back.svg",
  58322. extra: 756/720,
  58323. bottom: 35/791
  58324. }
  58325. },
  58326. frontNsfw: {
  58327. height: math.unit(2.5, "meters"),
  58328. weight: math.unit(230, "lb"),
  58329. name: "Front (NSFW)",
  58330. image: {
  58331. source: "./media/characters/tarken/front-nsfw.svg",
  58332. extra: 764/720,
  58333. bottom: 49/813
  58334. }
  58335. },
  58336. backNsfw: {
  58337. height: math.unit(2.5, "meters"),
  58338. weight: math.unit(230, "lb"),
  58339. name: "Back (NSFW)",
  58340. image: {
  58341. source: "./media/characters/tarken/back-nsfw.svg",
  58342. extra: 756/720,
  58343. bottom: 35/791
  58344. }
  58345. },
  58346. head: {
  58347. height: math.unit(2.22, "feet"),
  58348. name: "Head",
  58349. image: {
  58350. source: "./media/characters/tarken/head.svg"
  58351. }
  58352. },
  58353. tail: {
  58354. height: math.unit(5.25, "feet"),
  58355. name: "Tail",
  58356. image: {
  58357. source: "./media/characters/tarken/tail.svg"
  58358. }
  58359. },
  58360. dick: {
  58361. height: math.unit(1.95, "feet"),
  58362. name: "Dick",
  58363. image: {
  58364. source: "./media/characters/tarken/dick.svg"
  58365. }
  58366. },
  58367. hand: {
  58368. height: math.unit(1.78, "feet"),
  58369. name: "Hand",
  58370. image: {
  58371. source: "./media/characters/tarken/hand.svg"
  58372. }
  58373. },
  58374. beam: {
  58375. height: math.unit(1.5, "feet"),
  58376. name: "Beam",
  58377. image: {
  58378. source: "./media/characters/tarken/beam.svg"
  58379. }
  58380. },
  58381. },
  58382. [
  58383. {
  58384. name: "Original Size",
  58385. height: math.unit(2.5, "meters")
  58386. },
  58387. {
  58388. name: "Macro",
  58389. height: math.unit(150, "meters"),
  58390. default: true
  58391. },
  58392. {
  58393. name: "Macro+",
  58394. height: math.unit(300, "meters")
  58395. },
  58396. {
  58397. name: "Mega",
  58398. height: math.unit(2, "km")
  58399. },
  58400. {
  58401. name: "Mega+",
  58402. height: math.unit(35, "km")
  58403. },
  58404.  {
  58405. name: "Mega++",
  58406. height: math.unit(60, "km")
  58407. },
  58408. {
  58409. name: "Giga",
  58410. height: math.unit(200, "km")
  58411. },
  58412. {
  58413. name: "Giga+",
  58414. height: math.unit(2500, "km")
  58415. },
  58416. {
  58417. name: "Giga++",
  58418. height: math.unit(6600, "km")
  58419. },
  58420. {
  58421. name: "Terra",
  58422. height: math.unit(20000, "km")
  58423. },
  58424. {
  58425. name: "Terra+",
  58426. height: math.unit(300000, "km")
  58427. },
  58428. ]
  58429. ))
  58430. characterMakers.push(() => makeCharacter(
  58431. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58432. {
  58433. magpie_dressed: {
  58434. height: math.unit(1.7, "meters"),
  58435. weight: math.unit(70, "kg"),
  58436. name: "Dressed",
  58437. image: {
  58438. source: "./media/characters/otreus/magpie-dressed.svg",
  58439. extra: 691/672,
  58440. bottom: 116/807
  58441. },
  58442. form: "magpie",
  58443. default: true
  58444. },
  58445. magpie_nude: {
  58446. height: math.unit(1.7, "meters"),
  58447. weight: math.unit(70, "kg"),
  58448. name: "Nude",
  58449. image: {
  58450. source: "./media/characters/otreus/magpie-nude.svg",
  58451. extra: 691/672,
  58452. bottom: 116/807
  58453. },
  58454. form: "magpie",
  58455. },
  58456. magpie_dressedLewd: {
  58457. height: math.unit(1.7, "meters"),
  58458. weight: math.unit(70, "kg"),
  58459. name: "Dressed (Lewd)",
  58460. image: {
  58461. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58462. extra: 691/672,
  58463. bottom: 116/807
  58464. },
  58465. form: "magpie",
  58466. },
  58467. magpie_nudeLewd: {
  58468. height: math.unit(1.7, "meters"),
  58469. weight: math.unit(70, "kg"),
  58470. name: "Nude (Lewd)",
  58471. image: {
  58472. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58473. extra: 691/672,
  58474. bottom: 116/807
  58475. },
  58476. form: "magpie",
  58477. },
  58478. magpie_leftFoot: {
  58479. height: math.unit(1.58, "feet"),
  58480. name: "Left Foot",
  58481. image: {
  58482. source: "./media/characters/otreus/magpie-left-foot.svg"
  58483. },
  58484. form: "magpie",
  58485. },
  58486. magpie_rightFoot: {
  58487. height: math.unit(1.58, "feet"),
  58488. name: "Right Foot",
  58489. image: {
  58490. source: "./media/characters/otreus/magpie-right-foot.svg"
  58491. },
  58492. form: "magpie",
  58493. },
  58494. magpie_wingspan: {
  58495. height: math.unit(2, "meters"),
  58496. weight: math.unit(70, "kg"),
  58497. name: "Wingspan",
  58498. image: {
  58499. source: "./media/characters/otreus/magpie-wingspan.svg"
  58500. },
  58501. extraAttributes: {
  58502. "wingspan": {
  58503. name: "Wingspan",
  58504. power: 1,
  58505. type: "length",
  58506. base: math.unit(3.35, "meters")
  58507. },
  58508. },
  58509. form: "magpie",
  58510. },
  58511. hippogriff_dressed: {
  58512. height: math.unit(1.7, "meters"),
  58513. weight: math.unit(70, "kg"),
  58514. name: "Dressed",
  58515. image: {
  58516. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58517. extra: 710/689,
  58518. bottom: 67/777
  58519. },
  58520. form: "hippogriff",
  58521. default: true
  58522. },
  58523. hippogriff_nude: {
  58524. height: math.unit(1.7, "meters"),
  58525. weight: math.unit(70, "kg"),
  58526. name: "Nude",
  58527. image: {
  58528. source: "./media/characters/otreus/hippogriff-nude.svg",
  58529. extra: 710/689,
  58530. bottom: 67/777
  58531. },
  58532. form: "hippogriff",
  58533. },
  58534. hippogriff_dressedLewd: {
  58535. height: math.unit(1.7, "meters"),
  58536. weight: math.unit(70, "kg"),
  58537. name: "Dressed (Lewd)",
  58538. image: {
  58539. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58540. extra: 710/689,
  58541. bottom: 67/777
  58542. },
  58543. form: "hippogriff",
  58544. },
  58545. hippogriff_nudeLewd: {
  58546. height: math.unit(1.7, "meters"),
  58547. weight: math.unit(70, "kg"),
  58548. name: "Nude (Lewd)",
  58549. image: {
  58550. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58551. extra: 710/689,
  58552. bottom: 67/777
  58553. },
  58554. form: "hippogriff",
  58555. },
  58556. },
  58557. [
  58558. {
  58559. name: "Original Size",
  58560. height: math.unit(1.7, "meters"),
  58561. allForms: true
  58562. },
  58563. {
  58564. name: "Incognito Size",
  58565. height: math.unit(2, "meters"),
  58566. allForms: true
  58567. },
  58568. {
  58569. name: "Mega",
  58570. height: math.unit(2, "km"),
  58571. allForms: true
  58572. },
  58573. {
  58574. name: "Mega+",
  58575. height: math.unit(40, "km"),
  58576. allForms: true
  58577. },
  58578. {
  58579. name: "Giga",
  58580. height: math.unit(250, "km"),
  58581. allForms: true
  58582. },
  58583. {
  58584. name: "Giga+",
  58585. height: math.unit(3000, "km"),
  58586. allForms: true
  58587. },
  58588. {
  58589. name: "Terra",
  58590. height: math.unit(20000, "km"),
  58591. allForms: true
  58592. },
  58593. {
  58594. name: "Solar (Home Size)",
  58595. height: math.unit(3e6, "km"),
  58596. allForms: true,
  58597. default: true
  58598. },
  58599. ],
  58600. {
  58601. "magpie": {
  58602. name: "Magpie",
  58603. default: true
  58604. },
  58605. "hippogriff": {
  58606. name: "Hippogriff",
  58607. },
  58608. }
  58609. ))
  58610. characterMakers.push(() => makeCharacter(
  58611. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58612. {
  58613. frontDressed: {
  58614. height: math.unit(1.8, "meters"),
  58615. weight: math.unit(90, "kg"),
  58616. name: "Front (Dressed)",
  58617. image: {
  58618. source: "./media/characters/thalia/front-dressed.svg",
  58619. extra: 478/402,
  58620. bottom: 55/533
  58621. }
  58622. },
  58623. backDressed: {
  58624. height: math.unit(1.8, "meters"),
  58625. weight: math.unit(90, "kg"),
  58626. name: "Back (Dressed)",
  58627. image: {
  58628. source: "./media/characters/thalia/back-dressed.svg",
  58629. extra: 500/424,
  58630. bottom: 15/515
  58631. }
  58632. },
  58633. frontNude: {
  58634. height: math.unit(1.8, "meters"),
  58635. weight: math.unit(90, "kg"),
  58636. name: "Front (Nude)",
  58637. image: {
  58638. source: "./media/characters/thalia/front-nude.svg",
  58639. extra: 478/402,
  58640. bottom: 55/533
  58641. }
  58642. },
  58643. backNude: {
  58644. height: math.unit(1.8, "meters"),
  58645. weight: math.unit(90, "kg"),
  58646. name: "Back (Nude)",
  58647. image: {
  58648. source: "./media/characters/thalia/back-nude.svg",
  58649. extra: 500/424,
  58650. bottom: 15/515
  58651. }
  58652. },
  58653. },
  58654. [
  58655. {
  58656. name: "Incognito",
  58657. height: math.unit(3, "meters")
  58658. },
  58659. {
  58660. name: "Macro",
  58661. height: math.unit(500, "meters")
  58662. },
  58663. {
  58664. name: "Mega",
  58665. height: math.unit(5, "km")
  58666. },
  58667. {
  58668. name: "Mega+",
  58669. height: math.unit(30, "km")
  58670. },
  58671. {
  58672. name: "Giga",
  58673. height: math.unit(350, "km")
  58674. },
  58675. {
  58676. name: "Giga+",
  58677. height: math.unit(4000, "km")
  58678. },
  58679. {
  58680. name: "Terra",
  58681. height: math.unit(35000, "km")
  58682. },
  58683. {
  58684. name: "Original Size",
  58685. height: math.unit(130000, "km")
  58686. },
  58687. {
  58688. name: "Solar (Home Size)",
  58689. height: math.unit(4e6, "km"),
  58690. default: true
  58691. },
  58692. ]
  58693. ))
  58694. characterMakers.push(() => makeCharacter(
  58695. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58696. {
  58697. front: {
  58698. height: math.unit(1.8, "meters"),
  58699. weight: math.unit(95, "kg"),
  58700. name: "Front",
  58701. image: {
  58702. source: "./media/characters/shango/front.svg",
  58703. extra: 1925/1774,
  58704. bottom: 67/1992
  58705. }
  58706. },
  58707. back: {
  58708. height: math.unit(1.8, "meters"),
  58709. weight: math.unit(95, "kg"),
  58710. name: "Back",
  58711. image: {
  58712. source: "./media/characters/shango/back.svg",
  58713. extra: 1915/1766,
  58714. bottom: 52/1967
  58715. }
  58716. },
  58717. frontLewd: {
  58718. height: math.unit(1.8, "meters"),
  58719. weight: math.unit(95, "kg"),
  58720. name: "Front (Lewd)",
  58721. image: {
  58722. source: "./media/characters/shango/front-lewd.svg",
  58723. extra: 1925/1774,
  58724. bottom: 67/1992
  58725. }
  58726. },
  58727. backLewd: {
  58728. height: math.unit(1.8, "meters"),
  58729. weight: math.unit(95, "kg"),
  58730. name: "Back (Lewd)",
  58731. image: {
  58732. source: "./media/characters/shango/back-lewd.svg",
  58733. extra: 1915/1766,
  58734. bottom: 52/1967
  58735. }
  58736. },
  58737. maw: {
  58738. height: math.unit(1.64, "feet"),
  58739. name: "Maw",
  58740. image: {
  58741. source: "./media/characters/shango/maw.svg"
  58742. }
  58743. },
  58744. dick: {
  58745. height: math.unit(2.14, "feet"),
  58746. name: "Dick",
  58747. image: {
  58748. source: "./media/characters/shango/dick.svg"
  58749. }
  58750. },
  58751. },
  58752. [
  58753. {
  58754. name: "Incognito",
  58755. height: math.unit(1.8, "meters")
  58756. },
  58757. {
  58758. name: "Home Size",
  58759. height: math.unit(60, "meters"),
  58760. default: true
  58761. },
  58762. {
  58763. name: "Macro",
  58764. height: math.unit(450, "meters")
  58765. },
  58766. {
  58767. name: "Mega",
  58768. height: math.unit(6, "km")
  58769. },
  58770. {
  58771. name: "Mega+",
  58772. height: math.unit(35, "km")
  58773. },
  58774. {
  58775. name: "Giga",
  58776. height: math.unit(500, "km")
  58777. },
  58778. {
  58779. name: "Giga+",
  58780. height: math.unit(5000, "km")
  58781. },
  58782. {
  58783. name: "Terra",
  58784. height: math.unit(60000, "km")
  58785. },
  58786. {
  58787. name: "Terra+",
  58788. height: math.unit(400000, "km")
  58789. },
  58790. ]
  58791. ))
  58792. characterMakers.push(() => makeCharacter(
  58793. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58794. {
  58795. front: {
  58796. height: math.unit(2, "meters"),
  58797. weight: math.unit(95, "kg"),
  58798. name: "Front",
  58799. image: {
  58800. source: "./media/characters/osiris-gryphon/front.svg",
  58801. extra: 1508/1313,
  58802. bottom: 87/1595
  58803. }
  58804. },
  58805. back: {
  58806. height: math.unit(2, "meters"),
  58807. weight: math.unit(95, "kg"),
  58808. name: "Back",
  58809. image: {
  58810. source: "./media/characters/osiris-gryphon/back.svg",
  58811. extra: 1436/1309,
  58812. bottom: 64/1500
  58813. }
  58814. },
  58815. frontLewd: {
  58816. height: math.unit(2, "meters"),
  58817. weight: math.unit(95, "kg"),
  58818. name: "Front-lewd",
  58819. image: {
  58820. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58821. extra: 1508/1313,
  58822. bottom: 87/1595
  58823. }
  58824. },
  58825. wing: {
  58826. height: math.unit(6.3333, "feet"),
  58827. name: "Wing",
  58828. image: {
  58829. source: "./media/characters/osiris-gryphon/wing.svg"
  58830. }
  58831. },
  58832. },
  58833. [
  58834. {
  58835. name: "Incognito",
  58836. height: math.unit(2, "meters")
  58837. },
  58838. {
  58839. name: "Home Size",
  58840. height: math.unit(30, "meters"),
  58841. default: true
  58842. },
  58843. {
  58844. name: "Macro",
  58845. height: math.unit(100, "meters")
  58846. },
  58847. {
  58848. name: "Macro+",
  58849. height: math.unit(350, "meters")
  58850. },
  58851. {
  58852. name: "Mega",
  58853. height: math.unit(40, "km")
  58854. },
  58855. {
  58856. name: "Giga",
  58857. height: math.unit(300, "km")
  58858. },
  58859. {
  58860. name: "Giga+",
  58861. height: math.unit(2000, "km")
  58862. },
  58863. {
  58864. name: "Terra",
  58865. height: math.unit(30000, "km")
  58866. },
  58867. ]
  58868. ))
  58869. characterMakers.push(() => makeCharacter(
  58870. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58871. {
  58872. front: {
  58873. height: math.unit(2.5, "meters"),
  58874. weight: math.unit(200, "kg"),
  58875. name: "Front",
  58876. image: {
  58877. source: "./media/characters/atlas-dragon/front.svg",
  58878. extra: 745/462,
  58879. bottom: 36/781
  58880. }
  58881. },
  58882. back: {
  58883. height: math.unit(2.5, "meters"),
  58884. weight: math.unit(200, "kg"),
  58885. name: "Back",
  58886. image: {
  58887. source: "./media/characters/atlas-dragon/back.svg",
  58888. extra: 848/822,
  58889. bottom: 57/905
  58890. }
  58891. },
  58892. frontLewd: {
  58893. height: math.unit(2.5, "meters"),
  58894. weight: math.unit(200, "kg"),
  58895. name: "Front (Lewd)",
  58896. image: {
  58897. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58898. extra: 745/462,
  58899. bottom: 36/781
  58900. }
  58901. },
  58902. backLewd: {
  58903. height: math.unit(2.5, "meters"),
  58904. weight: math.unit(200, "kg"),
  58905. name: "Back (Lewd)",
  58906. image: {
  58907. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58908. extra: 848/822,
  58909. bottom: 57/905
  58910. }
  58911. },
  58912. },
  58913. [
  58914. {
  58915. name: "Incognito",
  58916. height: math.unit(2.5, "meters")
  58917. },
  58918. {
  58919. name: "Small Macro",
  58920. height: math.unit(50, "meters")
  58921. },
  58922. {
  58923. name: "Macro",
  58924. height: math.unit(350, "meters")
  58925. },
  58926. {
  58927. name: "Mega",
  58928. height: math.unit(5.5, "kilometers")
  58929. },
  58930. {
  58931. name: "Mega+",
  58932. height: math.unit(50, "km")
  58933. },
  58934. {
  58935. name: "Giga",
  58936. height: math.unit(350, "km")
  58937. },
  58938. {
  58939. name: "Giga+",
  58940. height: math.unit(2000, "km")
  58941. },
  58942. {
  58943. name: "Giga++",
  58944. height: math.unit(6500, "km")
  58945. },
  58946. {
  58947. name: "Terra",
  58948. height: math.unit(30000, "km")
  58949. },
  58950. {
  58951. name: "Terra+",
  58952. height: math.unit(250000, "km")
  58953. },
  58954. {
  58955. name: "True Size",
  58956. height: math.unit(100, "multiverses"),
  58957. default: true
  58958. },
  58959. ]
  58960. ))
  58961. characterMakers.push(() => makeCharacter(
  58962. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58963. {
  58964. front: {
  58965. height: math.unit(1.8, "m"),
  58966. weight: math.unit(120, "kg"),
  58967. name: "Front",
  58968. image: {
  58969. source: "./media/characters/chey/front.svg",
  58970. extra: 1359/1270,
  58971. bottom: 18/1377
  58972. }
  58973. },
  58974. arm: {
  58975. height: math.unit(2.05, "feet"),
  58976. name: "Arm",
  58977. image: {
  58978. source: "./media/characters/chey/arm.svg"
  58979. }
  58980. },
  58981. head: {
  58982. height: math.unit(1.89, "feet"),
  58983. name: "Head",
  58984. image: {
  58985. source: "./media/characters/chey/head.svg"
  58986. }
  58987. },
  58988. },
  58989. [
  58990. {
  58991. name: "Original Size",
  58992. height: math.unit(5, "cm")
  58993. },
  58994. {
  58995. name: "Incognito Size",
  58996. height: math.unit(2.4, "m")
  58997. },
  58998. {
  58999. name: "Home Size",
  59000. height: math.unit(200, "meters"),
  59001. default: true
  59002. },
  59003. {
  59004. name: "Mega",
  59005. height: math.unit(2, "km")
  59006. },
  59007. {
  59008. name: "Giga (Preferred Size)",
  59009. height: math.unit(2000, "km")
  59010. },
  59011. {
  59012. name: "Giga+",
  59013. height: math.unit(6000, "km")
  59014. },
  59015. {
  59016. name: "Terra",
  59017. height: math.unit(17000, "km")
  59018. },
  59019. {
  59020. name: "Terra+",
  59021. height: math.unit(75000, "km")
  59022. },
  59023. {
  59024. name: "Terra++",
  59025. height: math.unit(225000, "km")
  59026. },
  59027. ]
  59028. ))
  59029. characterMakers.push(() => makeCharacter(
  59030. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59031. {
  59032. side: {
  59033. height: math.unit(7.8, "meters"),
  59034. name: "Side",
  59035. image: {
  59036. source: "./media/characters/ragnarok/side.svg",
  59037. extra: 725/621,
  59038. bottom: 72/797
  59039. }
  59040. },
  59041. },
  59042. [
  59043. {
  59044. name: "Normal",
  59045. height: math.unit(7.8, "meters"),
  59046. default: true
  59047. },
  59048. ]
  59049. ))
  59050. characterMakers.push(() => makeCharacter(
  59051. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59052. {
  59053. hyena_front: {
  59054. height: math.unit(2.1, "meters"),
  59055. weight: math.unit(110, "kg"),
  59056. name: "Front",
  59057. image: {
  59058. source: "./media/characters/nima/hyena-front.svg",
  59059. extra: 1904/1796,
  59060. bottom: 67/1971
  59061. },
  59062. form: "hyena",
  59063. },
  59064. hyena_back: {
  59065. height: math.unit(2.1, "meters"),
  59066. weight: math.unit(110, "kg"),
  59067. name: "Back",
  59068. image: {
  59069. source: "./media/characters/nima/hyena-back.svg",
  59070. extra: 1964/1884,
  59071. bottom: 35/1999
  59072. },
  59073. form: "hyena",
  59074. },
  59075. shark_front: {
  59076. height: math.unit(1.95, "meters"),
  59077. weight: math.unit(110, "kg"),
  59078. name: "Front",
  59079. image: {
  59080. source: "./media/characters/nima/shark-front.svg",
  59081. extra: 2238/2013,
  59082. bottom: 0/223
  59083. },
  59084. form: "shark",
  59085. },
  59086. paw: {
  59087. height: math.unit(1, "feet"),
  59088. name: "Paw",
  59089. image: {
  59090. source: "./media/characters/nima/paw.svg"
  59091. }
  59092. },
  59093. circlet: {
  59094. height: math.unit(0.3, "feet"),
  59095. name: "Circlet",
  59096. image: {
  59097. source: "./media/characters/nima/circlet.svg"
  59098. }
  59099. },
  59100. necklace: {
  59101. height: math.unit(1.2, "feet"),
  59102. name: "Necklace",
  59103. image: {
  59104. source: "./media/characters/nima/necklace.svg"
  59105. }
  59106. },
  59107. bracelet: {
  59108. height: math.unit(0.51, "feet"),
  59109. name: "Bracelet",
  59110. image: {
  59111. source: "./media/characters/nima/bracelet.svg"
  59112. }
  59113. },
  59114. armband: {
  59115. height: math.unit(1.3, "feet"),
  59116. name: "Armband",
  59117. image: {
  59118. source: "./media/characters/nima/armband.svg"
  59119. }
  59120. },
  59121. },
  59122. [
  59123. {
  59124. name: "Incognito",
  59125. height: math.unit(2.1, "meters"),
  59126. allForms: true
  59127. },
  59128. {
  59129. name: "Small Macro",
  59130. height: math.unit(50, "meters"),
  59131. allForms: true
  59132. },
  59133. {
  59134. name: "Macro",
  59135. height: math.unit(200, "meters"),
  59136. allForms: true
  59137. },
  59138. {
  59139. name: "Mega",
  59140. height: math.unit(2.5, "km"),
  59141. allForms: true
  59142. },
  59143. {
  59144. name: "Mega+",
  59145. height: math.unit(30, "km"),
  59146. allForms: true
  59147. },
  59148. {
  59149. name: "Giga (Home Size)",
  59150. height: math.unit(400, "km"),
  59151. allForms: true,
  59152. default: true
  59153. },
  59154. {
  59155. name: "Giga+",
  59156. height: math.unit(2500, "km"),
  59157. allForms: true
  59158. },
  59159. {
  59160. name: "Giga++",
  59161. height: math.unit(8000, "km"),
  59162. allForms: true
  59163. },
  59164. {
  59165. name: "Terra",
  59166. height: math.unit(20000, "km"),
  59167. allForms: true
  59168. },
  59169. {
  59170. name: "Terra+",
  59171. height: math.unit(70000, "km"),
  59172. allForms: true
  59173. },
  59174. {
  59175. name: "Terra++",
  59176. height: math.unit(600000, "km"),
  59177. allForms: true
  59178. },
  59179. {
  59180. name: "Galactic",
  59181. height: math.unit(40, "galaxies"),
  59182. allForms: true
  59183. },
  59184. {
  59185. name: "Universal",
  59186. height: math.unit(40, "universes"),
  59187. allForms: true
  59188. },
  59189. ],
  59190. {
  59191. "hyena": {
  59192. name: "Hyena",
  59193. default: true
  59194. },
  59195. "shark": {
  59196. name: "Shark",
  59197. },
  59198. }
  59199. ))
  59200. characterMakers.push(() => makeCharacter(
  59201. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59202. {
  59203. anthro_front: {
  59204. height: math.unit(1.5, "meters"),
  59205. name: "Front",
  59206. image: {
  59207. source: "./media/characters/adelaide/anthro-front.svg",
  59208. extra: 860/783,
  59209. bottom: 60/920
  59210. },
  59211. form: "anthro",
  59212. default: true
  59213. },
  59214. hand: {
  59215. height: math.unit(0.65, "feet"),
  59216. name: "Hand",
  59217. image: {
  59218. source: "./media/characters/adelaide/hand.svg"
  59219. },
  59220. form: "anthro"
  59221. },
  59222. foot: {
  59223. height: math.unit(1.38 * 259 / 314, "feet"),
  59224. name: "Foot",
  59225. image: {
  59226. source: "./media/characters/adelaide/foot.svg",
  59227. extra: 259/259,
  59228. bottom: 55/314
  59229. },
  59230. form: "anthro"
  59231. },
  59232. feather: {
  59233. height: math.unit(0.85, "feet"),
  59234. name: "Feather",
  59235. image: {
  59236. source: "./media/characters/adelaide/feather.svg"
  59237. },
  59238. form: "anthro"
  59239. },
  59240. feral_side: {
  59241. height: math.unit(1, "meters"),
  59242. name: "Side",
  59243. image: {
  59244. source: "./media/characters/adelaide/feral-side.svg",
  59245. extra: 550/467,
  59246. bottom: 37/587
  59247. },
  59248. form: "feral",
  59249. default: true
  59250. },
  59251. feral_hand: {
  59252. height: math.unit(0.58, "feet"),
  59253. name: "Hand",
  59254. image: {
  59255. source: "./media/characters/adelaide/hand.svg"
  59256. },
  59257. form: "feral"
  59258. },
  59259. feral_foot: {
  59260. height: math.unit(1.2 * 259 / 314, "feet"),
  59261. name: "Foot",
  59262. image: {
  59263. source: "./media/characters/adelaide/foot.svg",
  59264. extra: 259/259,
  59265. bottom: 55/314
  59266. },
  59267. form: "feral"
  59268. },
  59269. feral_feather: {
  59270. height: math.unit(0.63, "feet"),
  59271. name: "Feather",
  59272. image: {
  59273. source: "./media/characters/adelaide/feather.svg"
  59274. },
  59275. form: "feral"
  59276. },
  59277. },
  59278. [
  59279. {
  59280. name: "Normal",
  59281. height: math.unit(1.5, "meters"),
  59282. form: "anthro",
  59283. default: true
  59284. },
  59285. {
  59286. name: "Normal",
  59287. height: math.unit(1, "meters"),
  59288. form: "feral",
  59289. default: true
  59290. },
  59291. ],
  59292. {
  59293. "anthro": {
  59294. name: "Anthro",
  59295. default: true
  59296. },
  59297. "feral": {
  59298. name: "Feral",
  59299. },
  59300. }
  59301. ))
  59302. characterMakers.push(() => makeCharacter(
  59303. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59304. {
  59305. front: {
  59306. height: math.unit(2.5, "meters"),
  59307. name: "Front",
  59308. image: {
  59309. source: "./media/characters/goa/front.svg",
  59310. extra: 1109/1013,
  59311. bottom: 150/1259
  59312. }
  59313. },
  59314. },
  59315. [
  59316. {
  59317. name: "Normal",
  59318. height: math.unit(2.5, "meters"),
  59319. default: true
  59320. },
  59321. ]
  59322. ))
  59323. characterMakers.push(() => makeCharacter(
  59324. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59325. {
  59326. front: {
  59327. height: math.unit(2, "meters"),
  59328. weight: math.unit(100, "kg"),
  59329. name: "Front",
  59330. image: {
  59331. source: "./media/characters/kiki-weavile/front.svg",
  59332. extra: 357/332,
  59333. bottom: 60/417
  59334. }
  59335. },
  59336. },
  59337. [
  59338. {
  59339. name: "Normal",
  59340. height: math.unit(2, "meters"),
  59341. default: true
  59342. },
  59343. ]
  59344. ))
  59345. characterMakers.push(() => makeCharacter(
  59346. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59347. {
  59348. side: {
  59349. height: math.unit(1.6, "meters"),
  59350. name: "Side",
  59351. image: {
  59352. source: "./media/characters/liza/side.svg",
  59353. extra: 943/915,
  59354. bottom: 72/1015
  59355. }
  59356. },
  59357. },
  59358. [
  59359. {
  59360. name: "Normal",
  59361. height: math.unit(1.6, "meters"),
  59362. default: true
  59363. },
  59364. ]
  59365. ))
  59366. characterMakers.push(() => makeCharacter(
  59367. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59368. {
  59369. side: {
  59370. height: math.unit(2.5, "meters"),
  59371. name: "Side",
  59372. image: {
  59373. source: "./media/characters/persephone-sweetbreath/side.svg",
  59374. extra: 796/700,
  59375. bottom: 44/840
  59376. }
  59377. },
  59378. },
  59379. [
  59380. {
  59381. name: "Normal",
  59382. height: math.unit(2.5, "meters"),
  59383. default: true
  59384. },
  59385. ]
  59386. ))
  59387. characterMakers.push(() => makeCharacter(
  59388. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59389. {
  59390. front: {
  59391. height: math.unit(32, "meters"),
  59392. name: "Front",
  59393. image: {
  59394. source: "./media/characters/pierce/front.svg",
  59395. extra: 1695/1475,
  59396. bottom: 185/1880
  59397. }
  59398. },
  59399. side: {
  59400. height: math.unit(32, "meters"),
  59401. name: "Side",
  59402. image: {
  59403. source: "./media/characters/pierce/side.svg",
  59404. extra: 974/859,
  59405. bottom: 43/1017
  59406. }
  59407. },
  59408. frontWingless: {
  59409. height: math.unit(32, "meters"),
  59410. name: "Front (Wingless)",
  59411. image: {
  59412. source: "./media/characters/pierce/front-wingless.svg",
  59413. extra: 1695/1475,
  59414. bottom: 185/1880
  59415. }
  59416. },
  59417. sideWingless: {
  59418. height: math.unit(32, "meters"),
  59419. name: "Side (Wingless)",
  59420. image: {
  59421. source: "./media/characters/pierce/side-wingless.svg",
  59422. extra: 974/859,
  59423. bottom: 43/1017
  59424. }
  59425. },
  59426. maw: {
  59427. height: math.unit(19.3, "meters"),
  59428. name: "Maw",
  59429. image: {
  59430. source: "./media/characters/pierce/maw.svg"
  59431. }
  59432. },
  59433. },
  59434. [
  59435. {
  59436. name: "Small",
  59437. height: math.unit(8.5, "meters")
  59438. },
  59439. {
  59440. name: "Normal",
  59441. height: math.unit(32, "meters"),
  59442. default: true
  59443. },
  59444. ]
  59445. ))
  59446. characterMakers.push(() => makeCharacter(
  59447. { name: "Shira", species: ["cobra", "deity"], tags: ["anthro"] },
  59448. {
  59449. front: {
  59450. height: math.unit(2.3, "meters"),
  59451. weight: math.unit(165, "kg"),
  59452. name: "Front",
  59453. image: {
  59454. source: "./media/characters/shira/front.svg",
  59455. extra: 924/919,
  59456. bottom: 17/941
  59457. }
  59458. },
  59459. back: {
  59460. height: math.unit(2.3, "meters"),
  59461. weight: math.unit(165, "kg"),
  59462. name: "Back",
  59463. image: {
  59464. source: "./media/characters/shira/back.svg",
  59465. extra: 928/922,
  59466. bottom: 18/946
  59467. }
  59468. },
  59469. frontLewd: {
  59470. height: math.unit(2.3, "meters"),
  59471. weight: math.unit(165, "kg"),
  59472. name: "Front (Lewd)",
  59473. image: {
  59474. source: "./media/characters/shira/front-lewd.svg",
  59475. extra: 924/919,
  59476. bottom: 17/941
  59477. }
  59478. },
  59479. backLewd: {
  59480. height: math.unit(2.3, "meters"),
  59481. weight: math.unit(165, "kg"),
  59482. name: "Back (Lewd)",
  59483. image: {
  59484. source: "./media/characters/shira/back-lewd.svg",
  59485. extra: 928/922,
  59486. bottom: 18/946
  59487. }
  59488. },
  59489. maw: {
  59490. height: math.unit(1.14, "feet"),
  59491. name: "Maw",
  59492. image: {
  59493. source: "./media/characters/shira/maw.svg"
  59494. }
  59495. },
  59496. },
  59497. [
  59498. {
  59499. name: "Incognito",
  59500. height: math.unit(2.3, "meters")
  59501. },
  59502. {
  59503. name: "Home Size",
  59504. height: math.unit(150, "meters"),
  59505. default: true
  59506. },
  59507. {
  59508. name: "Macro",
  59509. height: math.unit(2, "km")
  59510. },
  59511. {
  59512. name: "Mega",
  59513. height: math.unit(30, "km")
  59514. },
  59515. {
  59516. name: "Giga",
  59517. height: math.unit(450, "km")
  59518. },
  59519. {
  59520. name: "Giga+",
  59521. height: math.unit(3000, "km")
  59522. },
  59523. {
  59524. name: "Giga++",
  59525. height: math.unit(6000, "km")
  59526. },
  59527. {
  59528. name: "Terra",
  59529. height: math.unit(80000, "km")
  59530. },
  59531. {
  59532. name: "Terra+",
  59533. height: math.unit(350000, "km")
  59534. },
  59535. {
  59536. name: "Solar",
  59537. height: math.unit(1e6, "km")
  59538. },
  59539. ]
  59540. ))
  59541. characterMakers.push(() => makeCharacter(
  59542. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59543. {
  59544. front: {
  59545. height: math.unit(2, "meters"),
  59546. weight: math.unit(160, "kg"),
  59547. name: "Front",
  59548. image: {
  59549. source: "./media/characters/daxerios/front.svg",
  59550. extra: 1334/1277,
  59551. bottom: 45/1379
  59552. }
  59553. },
  59554. frontLewd: {
  59555. height: math.unit(2, "meters"),
  59556. weight: math.unit(160, "kg"),
  59557. name: "Front (Lewd)",
  59558. image: {
  59559. source: "./media/characters/daxerios/front-lewd.svg",
  59560. extra: 1334/1277,
  59561. bottom: 45/1379
  59562. }
  59563. },
  59564. dick: {
  59565. height: math.unit(2.35, "feet"),
  59566. name: "Dick",
  59567. image: {
  59568. source: "./media/characters/daxerios/dick.svg"
  59569. }
  59570. },
  59571. },
  59572. [
  59573. {
  59574. name: "\"Small\"",
  59575. height: math.unit(5, "meters")
  59576. },
  59577. {
  59578. name: "Original Size",
  59579. height: math.unit(500, "meters"),
  59580. default: true
  59581. },
  59582. {
  59583. name: "Mega",
  59584. height: math.unit(2, "km")
  59585. },
  59586. {
  59587. name: "Mega+",
  59588. height: math.unit(35, "km")
  59589. },
  59590. {
  59591. name: "Giga",
  59592. height: math.unit(250, "km")
  59593. },
  59594. {
  59595. name: "Giga+",
  59596. height: math.unit(3000, "km")
  59597. },
  59598. {
  59599. name: "Terra",
  59600. height: math.unit(25000, "km")
  59601. },
  59602. {
  59603. name: "Terra+",
  59604. height: math.unit(300000, "km")
  59605. },
  59606. {
  59607. name: "Solar",
  59608. height: math.unit(1e6, "km")
  59609. },
  59610. ]
  59611. ))
  59612. characterMakers.push(() => makeCharacter(
  59613. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59614. {
  59615. front: {
  59616. height: math.unit(8 + 4/12, "feet"),
  59617. weight: math.unit(464, "lb"),
  59618. name: "Front",
  59619. image: {
  59620. source: "./media/characters/caveat/front.svg",
  59621. extra: 1861/1678,
  59622. bottom: 40/1901
  59623. }
  59624. },
  59625. },
  59626. [
  59627. {
  59628. name: "Normal",
  59629. height: math.unit(8 + 4/12, "feet"),
  59630. default: true
  59631. },
  59632. ]
  59633. ))
  59634. characterMakers.push(() => makeCharacter(
  59635. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59636. {
  59637. front: {
  59638. height: math.unit(12, "feet"),
  59639. weight: math.unit(1800, "lb"),
  59640. name: "Front",
  59641. image: {
  59642. source: "./media/characters/centbair/front.svg",
  59643. extra: 781/663,
  59644. bottom: 25/806
  59645. }
  59646. },
  59647. frontNsfw: {
  59648. height: math.unit(12, "feet"),
  59649. weight: math.unit(1800, "lb"),
  59650. name: "Front (NSFW)",
  59651. image: {
  59652. source: "./media/characters/centbair/front-nsfw.svg",
  59653. extra: 781/663,
  59654. bottom: 25/806
  59655. }
  59656. },
  59657. back: {
  59658. height: math.unit(12, "feet"),
  59659. weight: math.unit(1800, "lb"),
  59660. name: "Back",
  59661. image: {
  59662. source: "./media/characters/centbair/back.svg",
  59663. extra: 808/761,
  59664. bottom: 19/827
  59665. }
  59666. },
  59667. dick: {
  59668. height: math.unit(6.5, "feet"),
  59669. name: "Dick",
  59670. image: {
  59671. source: "./media/characters/centbair/dick.svg"
  59672. }
  59673. },
  59674. slit: {
  59675. height: math.unit(3.25, "feet"),
  59676. name: "Slit",
  59677. image: {
  59678. source: "./media/characters/centbair/slit.svg"
  59679. }
  59680. },
  59681. },
  59682. [
  59683. {
  59684. name: "Normal",
  59685. height: math.unit(12, "feet"),
  59686. default: true
  59687. },
  59688. ]
  59689. ))
  59690. characterMakers.push(() => makeCharacter(
  59691. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59692. {
  59693. front: {
  59694. height: math.unit(5 + 7/12, "feet"),
  59695. name: "Front",
  59696. image: {
  59697. source: "./media/characters/andy/front.svg",
  59698. extra: 634/588,
  59699. bottom: 36/670
  59700. },
  59701. extraAttributes: {
  59702. "pawLength": {
  59703. name: "Paw Length",
  59704. power: 1,
  59705. type: "length",
  59706. base: math.unit(1, "feet")
  59707. },
  59708. }
  59709. },
  59710. side: {
  59711. height: math.unit(5 + 7/12, "feet"),
  59712. name: "Side",
  59713. image: {
  59714. source: "./media/characters/andy/side.svg",
  59715. extra: 641/596,
  59716. bottom: 34/675
  59717. },
  59718. extraAttributes: {
  59719. "pawLength": {
  59720. name: "Paw Length",
  59721. power: 1,
  59722. type: "length",
  59723. base: math.unit(1, "feet")
  59724. },
  59725. }
  59726. },
  59727. back: {
  59728. height: math.unit(5 + 7/12, "feet"),
  59729. name: "Back",
  59730. image: {
  59731. source: "./media/characters/andy/back.svg",
  59732. extra: 618/583,
  59733. bottom: 39/657
  59734. },
  59735. extraAttributes: {
  59736. "pawLength": {
  59737. name: "Paw Length",
  59738. power: 1,
  59739. type: "length",
  59740. base: math.unit(1, "feet")
  59741. },
  59742. }
  59743. },
  59744. paw: {
  59745. height: math.unit(1.13, "feet"),
  59746. name: "Paw",
  59747. image: {
  59748. source: "./media/characters/andy/paw.svg"
  59749. }
  59750. },
  59751. },
  59752. [
  59753. {
  59754. name: "Micro",
  59755. height: math.unit(4, "inches")
  59756. },
  59757. {
  59758. name: "Normal",
  59759. height: math.unit(5 + 7/12, "feet"),
  59760. default: true
  59761. },
  59762. {
  59763. name: "Macro",
  59764. height: math.unit(390.42, "feet")
  59765. },
  59766. ]
  59767. ))
  59768. characterMakers.push(() => makeCharacter(
  59769. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59770. {
  59771. front: {
  59772. height: math.unit(7, "feet"),
  59773. weight: math.unit(250, "lb"),
  59774. name: "Front",
  59775. image: {
  59776. source: "./media/characters/vix-titan/front.svg",
  59777. extra: 460/428,
  59778. bottom: 15/475
  59779. },
  59780. extraAttributes: {
  59781. "pawWidth": {
  59782. name: "Paw Width",
  59783. power: 1,
  59784. type: "length",
  59785. base: math.unit(0.75, "feet")
  59786. },
  59787. }
  59788. },
  59789. },
  59790. [
  59791. {
  59792. name: "Normal",
  59793. height: math.unit(7, "feet"),
  59794. default: true
  59795. },
  59796. {
  59797. name: "Giant",
  59798. height: math.unit(1500, "feet")
  59799. },
  59800. {
  59801. name: "Mega",
  59802. height: math.unit(10, "miles")
  59803. },
  59804. {
  59805. name: "Giga",
  59806. height: math.unit(150, "miles")
  59807. },
  59808. {
  59809. name: "Tera",
  59810. height: math.unit(144000, "miles")
  59811. },
  59812. ]
  59813. ))
  59814. characterMakers.push(() => makeCharacter(
  59815. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59816. {
  59817. front: {
  59818. height: math.unit(6 + 2/12, "feet"),
  59819. name: "Front",
  59820. image: {
  59821. source: "./media/characters/reiku/front.svg",
  59822. extra: 1910/1757,
  59823. bottom: 103/2013
  59824. },
  59825. extraAttributes: {
  59826. "thighThickness": {
  59827. name: "Thigh Thickness",
  59828. power: 1,
  59829. type: "length",
  59830. base: math.unit(1.12, "feet")
  59831. },
  59832. "assThickness": {
  59833. name: "Ass Thickness",
  59834. power: 1,
  59835. type: "length",
  59836. base: math.unit(1.12*2, "feet")
  59837. },
  59838. }
  59839. },
  59840. side: {
  59841. height: math.unit(6 + 2/12, "feet"),
  59842. name: "Side",
  59843. image: {
  59844. source: "./media/characters/reiku/side.svg",
  59845. extra: 1846/1748,
  59846. bottom: 99/1945
  59847. },
  59848. extraAttributes: {
  59849. "thighThickness": {
  59850. name: "Thigh Thickness",
  59851. power: 1,
  59852. type: "length",
  59853. base: math.unit(1.12, "feet")
  59854. },
  59855. "assThickness": {
  59856. name: "Ass Thickness",
  59857. power: 1,
  59858. type: "length",
  59859. base: math.unit(1.12*2, "feet")
  59860. },
  59861. }
  59862. },
  59863. back: {
  59864. height: math.unit(6 + 2/12, "feet"),
  59865. name: "Back",
  59866. image: {
  59867. source: "./media/characters/reiku/back.svg",
  59868. extra: 1941/1786,
  59869. bottom: 34/1975
  59870. },
  59871. extraAttributes: {
  59872. "thighThickness": {
  59873. name: "Thigh Thickness",
  59874. power: 1,
  59875. type: "length",
  59876. base: math.unit(1.12, "feet")
  59877. },
  59878. "assThickness": {
  59879. name: "Ass Thickness",
  59880. power: 1,
  59881. type: "length",
  59882. base: math.unit(1.12*2, "feet")
  59883. },
  59884. }
  59885. },
  59886. head: {
  59887. height: math.unit(1.8, "feet"),
  59888. name: "Head",
  59889. image: {
  59890. source: "./media/characters/reiku/head.svg"
  59891. }
  59892. },
  59893. tailTop: {
  59894. height: math.unit(8.4, "feet"),
  59895. name: "Tail (Top)",
  59896. image: {
  59897. source: "./media/characters/reiku/tail-top.svg"
  59898. }
  59899. },
  59900. tailBottom: {
  59901. height: math.unit(8.4, "feet"),
  59902. name: "Tail (Bottom)",
  59903. image: {
  59904. source: "./media/characters/reiku/tail-bottom.svg"
  59905. }
  59906. },
  59907. foot: {
  59908. height: math.unit(2.6, "feet"),
  59909. name: "Foot",
  59910. image: {
  59911. source: "./media/characters/reiku/foot.svg"
  59912. }
  59913. },
  59914. footCurled: {
  59915. height: math.unit(2.3, "feet"),
  59916. name: "Foot (Curled)",
  59917. image: {
  59918. source: "./media/characters/reiku/foot-curled.svg"
  59919. }
  59920. },
  59921. footSide: {
  59922. height: math.unit(1.26, "feet"),
  59923. name: "Foot (Side)",
  59924. image: {
  59925. source: "./media/characters/reiku/foot-side.svg"
  59926. }
  59927. },
  59928. },
  59929. [
  59930. {
  59931. name: "Normal",
  59932. height: math.unit(6 + 2/12, "feet"),
  59933. default: true
  59934. },
  59935. ]
  59936. ))
  59937. characterMakers.push(() => makeCharacter(
  59938. { name: "Cialda", species: ["zorgoia", "food"], tags: ["anthro"] },
  59939. {
  59940. front: {
  59941. height: math.unit(7, "feet"),
  59942. weight: math.unit(500, "kg"),
  59943. name: "Front",
  59944. image: {
  59945. source: "./media/characters/cialda/front.svg",
  59946. extra: 912/745,
  59947. bottom: 55/967
  59948. }
  59949. },
  59950. },
  59951. [
  59952. {
  59953. name: "Normal",
  59954. height: math.unit(7, "feet"),
  59955. default: true
  59956. },
  59957. ]
  59958. ))
  59959. characterMakers.push(() => makeCharacter(
  59960. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  59961. {
  59962. side: {
  59963. height: math.unit(6, "feet"),
  59964. weight: math.unit(600, "lb"),
  59965. preyCapacity: math.unit(25, "liters"),
  59966. name: "Side",
  59967. image: {
  59968. source: "./media/characters/darkkin/side.svg",
  59969. extra: 1597/1447,
  59970. bottom: 101/1698
  59971. }
  59972. },
  59973. },
  59974. [
  59975. {
  59976. name: "Canon Height",
  59977. height: math.unit(568, "feet"),
  59978. default: true
  59979. },
  59980. ]
  59981. ))
  59982. characterMakers.push(() => makeCharacter(
  59983. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  59984. {
  59985. front: {
  59986. height: math.unit(6, "feet"),
  59987. weight: math.unit(1500, "lb"),
  59988. preyCapacity: math.unit(3, "people"),
  59989. name: "Front",
  59990. image: {
  59991. source: "./media/characters/livnia/front.svg",
  59992. extra: 934/932,
  59993. bottom: 83/1017
  59994. }
  59995. },
  59996. back: {
  59997. height: math.unit(6, "feet"),
  59998. weight: math.unit(1500, "lb"),
  59999. preyCapacity: math.unit(3, "people"),
  60000. name: "Back",
  60001. image: {
  60002. source: "./media/characters/livnia/back.svg",
  60003. extra: 916/915,
  60004. bottom: 58/974
  60005. }
  60006. },
  60007. head: {
  60008. height: math.unit(1.53, "feet"),
  60009. name: "Head",
  60010. image: {
  60011. source: "./media/characters/livnia/head.svg"
  60012. }
  60013. },
  60014. maw: {
  60015. height: math.unit(0.78, "feet"),
  60016. name: "Maw",
  60017. image: {
  60018. source: "./media/characters/livnia/maw.svg"
  60019. }
  60020. },
  60021. genitals: {
  60022. height: math.unit(0.35, "feet"),
  60023. name: "Genitals",
  60024. image: {
  60025. source: "./media/characters/livnia/genitals.svg"
  60026. }
  60027. },
  60028. },
  60029. [
  60030. {
  60031. name: "Normal",
  60032. height: math.unit(1000, "feet"),
  60033. default: true
  60034. },
  60035. ]
  60036. ))
  60037. //characters
  60038. function makeCharacters() {
  60039. const results = [];
  60040. characterMakers.forEach(character => {
  60041. results.push(character());
  60042. });
  60043. return results;
  60044. }