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.
 
 
 

49091 líneas
1.2 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. }
  1904. //species
  1905. function getSpeciesInfo(speciesList) {
  1906. let result = new Set();
  1907. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1908. result.add(entry)
  1909. });
  1910. return Array.from(result);
  1911. };
  1912. function getSpeciesInfoHelper(species) {
  1913. if (!speciesData[species]) {
  1914. console.warn(species + " doesn't exist");
  1915. return [];
  1916. }
  1917. if (speciesData[species].parents) {
  1918. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1919. } else {
  1920. return [species];
  1921. }
  1922. }
  1923. characterMakers.push(() => makeCharacter(
  1924. {
  1925. name: "Fen",
  1926. species: ["crux"],
  1927. description: {
  1928. title: "Bio",
  1929. text: "Very furry. Sheds on everything."
  1930. },
  1931. tags: [
  1932. "anthro",
  1933. "goo"
  1934. ]
  1935. },
  1936. {
  1937. front: {
  1938. height: math.unit(12, "feet"),
  1939. weight: math.unit(2400, "lb"),
  1940. name: "Front",
  1941. image: {
  1942. source: "./media/characters/fen/front.svg",
  1943. extra: 1804/1562,
  1944. bottom: 205/2009
  1945. }
  1946. },
  1947. diving: {
  1948. height: math.unit(4.9, "meters"),
  1949. weight: math.unit(2400, "lb"),
  1950. name: "Diving",
  1951. image: {
  1952. source: "./media/characters/fen/diving.svg"
  1953. }
  1954. },
  1955. goo: {
  1956. height: math.unit(12, "feet"),
  1957. weight: math.unit(3600, "lb"),
  1958. volume: math.unit(1000, "liters"),
  1959. capacity: math.unit(6, "people"),
  1960. name: "Goo",
  1961. image: {
  1962. source: "./media/characters/fen/goo.svg",
  1963. extra: 1307/1071,
  1964. bottom: 134/1441
  1965. }
  1966. },
  1967. maw: {
  1968. height: math.unit(5.03, "feet"),
  1969. name: "Maw",
  1970. image: {
  1971. source: "./media/characters/fen/maw.svg"
  1972. }
  1973. },
  1974. gooCeiling: {
  1975. height: math.unit(6.6, "feet"),
  1976. weight: math.unit(3000, "lb"),
  1977. volume: math.unit(1000, "liters"),
  1978. capacity: math.unit(6, "people"),
  1979. name: "Goo (Ceiling)",
  1980. image: {
  1981. source: "./media/characters/fen/goo-ceiling.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(12, "feet"),
  1986. weight: math.unit(2400, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/fen/back.svg",
  1990. },
  1991. info: {
  1992. description: {
  1993. mode: "append",
  1994. text: "\n\nHe is not currently looking at you."
  1995. }
  1996. }
  1997. },
  1998. full: {
  1999. height: math.unit(1.6, "meter"),
  2000. weight: math.unit(3200, "lb"),
  2001. name: "Full",
  2002. image: {
  2003. source: "./media/characters/fen/full.svg",
  2004. extra: 1133/859,
  2005. bottom: 145/1278
  2006. },
  2007. info: {
  2008. description: {
  2009. mode: "append",
  2010. text: "\n\nMunch."
  2011. }
  2012. }
  2013. },
  2014. gooLounging: {
  2015. height: math.unit(4.53, "feet"),
  2016. weight: math.unit(3000, "lb"),
  2017. capacity: math.unit(6, "people"),
  2018. name: "Goo (Lounging)",
  2019. image: {
  2020. source: "./media/characters/fen/goo-lounging.svg",
  2021. bottom: 116 / 613
  2022. }
  2023. },
  2024. lounging: {
  2025. height: math.unit(10.52, "feet"),
  2026. weight: math.unit(2400, "lb"),
  2027. name: "Lounging",
  2028. image: {
  2029. source: "./media/characters/fen/lounging.svg"
  2030. }
  2031. },
  2032. },
  2033. [
  2034. {
  2035. name: "Small",
  2036. height: math.unit(2.2428, "meter")
  2037. },
  2038. {
  2039. name: "Normal",
  2040. height: math.unit(12, "feet"),
  2041. default: true,
  2042. },
  2043. {
  2044. name: "Big",
  2045. height: math.unit(20, "feet")
  2046. },
  2047. {
  2048. name: "Minimacro",
  2049. height: math.unit(40, "feet"),
  2050. info: {
  2051. description: {
  2052. mode: "append",
  2053. text: "\n\nTOO DAMN BIG"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(100, "feet"),
  2060. info: {
  2061. description: {
  2062. mode: "append",
  2063. text: "\n\nTOO DAMN BIG"
  2064. }
  2065. }
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(2, "miles")
  2070. },
  2071. {
  2072. name: "Gigamacro",
  2073. height: math.unit(10, "earths")
  2074. },
  2075. ]
  2076. ))
  2077. characterMakers.push(() => makeCharacter(
  2078. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2079. {
  2080. front: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/front.svg",
  2086. bottom: 0.01,
  2087. extra: 2154 / 2081
  2088. }
  2089. },
  2090. frontAlt: {
  2091. height: math.unit(183, "cm"),
  2092. weight: math.unit(80, "kg"),
  2093. name: "Front (alt)",
  2094. image: {
  2095. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2096. }
  2097. },
  2098. back: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Back",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/back.svg"
  2104. }
  2105. },
  2106. kneeling: {
  2107. height: math.unit(125, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Kneeling",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2112. extra: 1033 / 977,
  2113. bottom: 23.7 / 1057
  2114. }
  2115. },
  2116. maw: {
  2117. height: math.unit(183 / 5, "cm"),
  2118. name: "Maw",
  2119. image: {
  2120. source: "./media/characters/sofia-fluttertail/maw.svg"
  2121. }
  2122. },
  2123. mawcloseup: {
  2124. height: math.unit(183 / 5 * 0.41, "cm"),
  2125. name: "Maw (Closeup)",
  2126. image: {
  2127. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2128. }
  2129. },
  2130. paws: {
  2131. height: math.unit(1.17, "feet"),
  2132. name: "Paws",
  2133. image: {
  2134. source: "./media/characters/sofia-fluttertail/paws.svg",
  2135. extra: 851 / 851,
  2136. bottom: 17 / 868
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.83, "meter")
  2144. },
  2145. {
  2146. name: "Size Thief",
  2147. height: math.unit(18, "feet")
  2148. },
  2149. {
  2150. name: "50 Foot Collie",
  2151. height: math.unit(50, "feet")
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(96, "feet"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Megamerger",
  2160. height: math.unit(650, "feet")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(100, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/march/front.svg",
  2173. extra: 1992/1851,
  2174. bottom: 39/2031
  2175. }
  2176. },
  2177. foot: {
  2178. height: math.unit(0.9, "feet"),
  2179. name: "Foot",
  2180. image: {
  2181. source: "./media/characters/march/foot.svg"
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7.9, "feet")
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(220, "meters")
  2193. },
  2194. {
  2195. name: "Megamacro",
  2196. height: math.unit(2.98, "km"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(15963, "km")
  2202. },
  2203. {
  2204. name: "Teramacro",
  2205. height: math.unit(2980000000, "km")
  2206. },
  2207. {
  2208. name: "Examacro",
  2209. height: math.unit(250, "parsecs")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(6, "feet"),
  2218. weight: math.unit(60, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/noir/front.svg",
  2222. extra: 1,
  2223. bottom: 0.032
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(6.6, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(500, "feet")
  2235. },
  2236. {
  2237. name: "Megamacro",
  2238. height: math.unit(2.5, "km"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(22500, "km")
  2244. },
  2245. {
  2246. name: "Teramacro",
  2247. height: math.unit(2500000000, "km")
  2248. },
  2249. {
  2250. name: "Examacro",
  2251. height: math.unit(200, "parsecs")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/okuri/front.svg",
  2264. extra: 739/665,
  2265. bottom: 39/778
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/okuri/back.svg",
  2274. extra: 734/653,
  2275. bottom: 13/747
  2276. }
  2277. },
  2278. sitting: {
  2279. height: math.unit(2.95, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Sitting",
  2282. image: {
  2283. source: "./media/characters/okuri/sitting.svg",
  2284. extra: 370/318,
  2285. bottom: 99/469
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Smallest",
  2292. height: math.unit(5 + 2/12, "feet")
  2293. },
  2294. {
  2295. name: "Smaller",
  2296. height: math.unit(300, "feet")
  2297. },
  2298. {
  2299. name: "Small",
  2300. height: math.unit(1000, "feet")
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(1, "mile")
  2305. },
  2306. {
  2307. name: "Mega Macro (Small)",
  2308. height: math.unit(20, "km")
  2309. },
  2310. {
  2311. name: "Mega Macro (Large)",
  2312. height: math.unit(600, "km")
  2313. },
  2314. {
  2315. name: "Giga Macro",
  2316. height: math.unit(10000, "km")
  2317. },
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(577560, "km"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Large",
  2325. height: math.unit(4, "galaxies")
  2326. },
  2327. {
  2328. name: "Largest",
  2329. height: math.unit(15, "multiverses")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(7, "feet"),
  2338. weight: math.unit(100, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/manny/front.svg",
  2342. extra: 1,
  2343. bottom: 0.06
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/manny/back.svg",
  2352. extra: 1,
  2353. bottom: 0.014
  2354. }
  2355. },
  2356. },
  2357. [
  2358. {
  2359. name: "Normal",
  2360. height: math.unit(7, "feet"),
  2361. },
  2362. {
  2363. name: "Macro",
  2364. height: math.unit(78, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "Macro+",
  2369. height: math.unit(300, "meters")
  2370. },
  2371. {
  2372. name: "Macro++",
  2373. height: math.unit(2400, "meters")
  2374. },
  2375. {
  2376. name: "Megamacro",
  2377. height: math.unit(5167, "meters")
  2378. },
  2379. {
  2380. name: "Gigamacro",
  2381. height: math.unit(41769, "miles")
  2382. },
  2383. ]
  2384. ))
  2385. characterMakers.push(() => makeCharacter(
  2386. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2387. {
  2388. front: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(100, "kg"),
  2391. name: "Front",
  2392. image: {
  2393. source: "./media/characters/adake/front-1.svg"
  2394. }
  2395. },
  2396. frontAlt: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front (Alt)",
  2400. image: {
  2401. source: "./media/characters/adake/front-2.svg",
  2402. extra: 1,
  2403. bottom: 0.01
  2404. }
  2405. },
  2406. back: {
  2407. height: math.unit(7, "feet"),
  2408. weight: math.unit(100, "kg"),
  2409. name: "Back",
  2410. image: {
  2411. source: "./media/characters/adake/back.svg",
  2412. }
  2413. },
  2414. kneel: {
  2415. height: math.unit(5.385, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Kneeling",
  2418. image: {
  2419. source: "./media/characters/adake/kneel.svg",
  2420. bottom: 0.052
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(7, "feet"),
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(78, "feet"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro+",
  2436. height: math.unit(300, "meters")
  2437. },
  2438. {
  2439. name: "Macro++",
  2440. height: math.unit(2400, "meters")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(5167, "meters")
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(41769, "miles")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(1.65, "meters"),
  2457. weight: math.unit(50, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/elijah/front.svg",
  2461. extra: 858 / 830,
  2462. bottom: 95.5 / 953.8559
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(1.65, "meters"),
  2467. weight: math.unit(50, "kg"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/elijah/back.svg",
  2471. extra: 895 / 850,
  2472. bottom: 5.3 / 897.956
  2473. }
  2474. },
  2475. frontNsfw: {
  2476. height: math.unit(1.65, "meters"),
  2477. weight: math.unit(50, "kg"),
  2478. name: "Front (NSFW)",
  2479. image: {
  2480. source: "./media/characters/elijah/front-nsfw.svg",
  2481. extra: 858 / 830,
  2482. bottom: 95.5 / 953.8559
  2483. }
  2484. },
  2485. backNsfw: {
  2486. height: math.unit(1.65, "meters"),
  2487. weight: math.unit(50, "kg"),
  2488. name: "Back (NSFW)",
  2489. image: {
  2490. source: "./media/characters/elijah/back-nsfw.svg",
  2491. extra: 895 / 850,
  2492. bottom: 5.3 / 897.956
  2493. }
  2494. },
  2495. dick: {
  2496. height: math.unit(1, "feet"),
  2497. name: "Dick",
  2498. image: {
  2499. source: "./media/characters/elijah/dick.svg"
  2500. }
  2501. },
  2502. beakOpen: {
  2503. height: math.unit(1.25, "feet"),
  2504. name: "Beak (Open)",
  2505. image: {
  2506. source: "./media/characters/elijah/beak-open.svg"
  2507. }
  2508. },
  2509. beakShut: {
  2510. height: math.unit(1.25, "feet"),
  2511. name: "Beak (Shut)",
  2512. image: {
  2513. source: "./media/characters/elijah/beak-shut.svg"
  2514. }
  2515. },
  2516. footFlexing: {
  2517. height: math.unit(1.61, "feet"),
  2518. name: "Foot (Flexing)",
  2519. image: {
  2520. source: "./media/characters/elijah/foot-flexing.svg"
  2521. }
  2522. },
  2523. footStepping: {
  2524. height: math.unit(1.44, "feet"),
  2525. name: "Foot (Stepping)",
  2526. image: {
  2527. source: "./media/characters/elijah/foot-stepping.svg"
  2528. }
  2529. },
  2530. plantigradeLeg: {
  2531. height: math.unit(2.34, "feet"),
  2532. name: "Plantigrade Leg",
  2533. image: {
  2534. source: "./media/characters/elijah/plantigrade-leg.svg"
  2535. }
  2536. },
  2537. plantigradeFootLeft: {
  2538. height: math.unit(0.9, "feet"),
  2539. name: "Plantigrade Foot (Left)",
  2540. image: {
  2541. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2542. }
  2543. },
  2544. plantigradeFootRight: {
  2545. height: math.unit(0.9, "feet"),
  2546. name: "Plantigrade Foot (Right)",
  2547. image: {
  2548. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Normal",
  2555. height: math.unit(1.65, "meters")
  2556. },
  2557. {
  2558. name: "Macro",
  2559. height: math.unit(55, "meters"),
  2560. default: true
  2561. },
  2562. {
  2563. name: "Macro+",
  2564. height: math.unit(105, "meters")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(7 + 2/12, "feet"),
  2573. weight: math.unit(320, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/rai/front.svg",
  2577. extra: 1802/1696,
  2578. bottom: 68/1870
  2579. }
  2580. },
  2581. frontDressed: {
  2582. height: math.unit(7 + 2/12, "feet"),
  2583. weight: math.unit(320, "kg"),
  2584. name: "Front (Dressed)",
  2585. image: {
  2586. source: "./media/characters/rai/front-dressed.svg",
  2587. extra: 1802/1696,
  2588. bottom: 68/1870
  2589. }
  2590. },
  2591. side: {
  2592. height: math.unit(7 + 2/12, "feet"),
  2593. weight: math.unit(320, "kg"),
  2594. name: "Side",
  2595. image: {
  2596. source: "./media/characters/rai/side.svg",
  2597. extra: 1789/1710,
  2598. bottom: 115/1904
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(7 + 2/12, "feet"),
  2603. weight: math.unit(320, "kg"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/rai/back.svg",
  2607. extra: 1770/1707,
  2608. bottom: 28/1798
  2609. }
  2610. },
  2611. feral: {
  2612. height: math.unit(9.5, "feet"),
  2613. weight: math.unit(640, "kg"),
  2614. name: "Feral",
  2615. image: {
  2616. source: "./media/characters/rai/feral.svg",
  2617. extra: 945/553,
  2618. bottom: 176/1121
  2619. }
  2620. },
  2621. dragon: {
  2622. height: math.unit(23, "feet"),
  2623. weight: math.unit(50000, "lb"),
  2624. name: "Dragon",
  2625. image: {
  2626. source: "./media/characters/rai/dragon.svg",
  2627. extra: 2498 / 2030,
  2628. bottom: 85.2 / 2584
  2629. }
  2630. },
  2631. maw: {
  2632. height: math.unit(1.69, "feet"),
  2633. name: "Maw",
  2634. image: {
  2635. source: "./media/characters/rai/maw.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(7 + 2/12, "feet")
  2643. },
  2644. {
  2645. name: "Big",
  2646. height: math.unit(11, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(302, "feet"),
  2651. default: true
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2657. {
  2658. frontDressed: {
  2659. height: math.unit(216, "feet"),
  2660. weight: math.unit(7000000, "lb"),
  2661. name: "Front (Dressed)",
  2662. image: {
  2663. source: "./media/characters/jazzy/front-dressed.svg",
  2664. extra: 2738 / 2651,
  2665. bottom: 41.8 / 2786
  2666. }
  2667. },
  2668. backDressed: {
  2669. height: math.unit(216, "feet"),
  2670. weight: math.unit(7000000, "lb"),
  2671. name: "Back (Dressed)",
  2672. image: {
  2673. source: "./media/characters/jazzy/back-dressed.svg",
  2674. extra: 2775 / 2673,
  2675. bottom: 36.8 / 2817
  2676. }
  2677. },
  2678. front: {
  2679. height: math.unit(216, "feet"),
  2680. weight: math.unit(7000000, "lb"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/jazzy/front.svg",
  2684. extra: 2738 / 2651,
  2685. bottom: 41.8 / 2786
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(216, "feet"),
  2690. weight: math.unit(7000000, "lb"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/jazzy/back.svg",
  2694. extra: 2775 / 2673,
  2695. bottom: 36.8 / 2817
  2696. }
  2697. },
  2698. maw: {
  2699. height: math.unit(20, "feet"),
  2700. name: "Maw",
  2701. image: {
  2702. source: "./media/characters/jazzy/maw.svg"
  2703. }
  2704. },
  2705. paws: {
  2706. height: math.unit(27.5, "feet"),
  2707. name: "Paws",
  2708. image: {
  2709. source: "./media/characters/jazzy/paws.svg"
  2710. }
  2711. },
  2712. eye: {
  2713. height: math.unit(4.4, "feet"),
  2714. name: "Eye",
  2715. image: {
  2716. source: "./media/characters/jazzy/eye.svg"
  2717. }
  2718. },
  2719. droneOffense: {
  2720. height: math.unit(9.5, "inches"),
  2721. name: "Drone (Offense)",
  2722. image: {
  2723. source: "./media/characters/jazzy/drone-offense.svg"
  2724. }
  2725. },
  2726. droneRecon: {
  2727. height: math.unit(9.5, "inches"),
  2728. name: "Drone (Recon)",
  2729. image: {
  2730. source: "./media/characters/jazzy/drone-recon.svg"
  2731. }
  2732. },
  2733. droneDefense: {
  2734. height: math.unit(9.5, "inches"),
  2735. name: "Drone (Defense)",
  2736. image: {
  2737. source: "./media/characters/jazzy/drone-defense.svg"
  2738. }
  2739. },
  2740. },
  2741. [
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(216, "feet"),
  2745. default: true
  2746. },
  2747. ]
  2748. ))
  2749. characterMakers.push(() => makeCharacter(
  2750. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2751. {
  2752. front: {
  2753. height: math.unit(9 + 6/12, "feet"),
  2754. weight: math.unit(700, "lb"),
  2755. name: "Front",
  2756. image: {
  2757. source: "./media/characters/flamm/front.svg",
  2758. extra: 1751/1632,
  2759. bottom: 46/1797
  2760. }
  2761. },
  2762. buff: {
  2763. height: math.unit(9 + 6/12, "feet"),
  2764. weight: math.unit(950, "lb"),
  2765. name: "Buff",
  2766. image: {
  2767. source: "./media/characters/flamm/buff.svg",
  2768. extra: 3018/2874,
  2769. bottom: 221/3239
  2770. }
  2771. },
  2772. },
  2773. [
  2774. {
  2775. name: "Normal",
  2776. height: math.unit(9.5, "feet")
  2777. },
  2778. {
  2779. name: "Macro",
  2780. height: math.unit(200, "feet"),
  2781. default: true
  2782. },
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2787. {
  2788. front: {
  2789. height: math.unit(5 + 3/12, "feet"),
  2790. weight: math.unit(60, "kg"),
  2791. name: "Front",
  2792. image: {
  2793. source: "./media/characters/zephiro/front.svg",
  2794. extra: 2309 / 2162,
  2795. bottom: 0.069
  2796. }
  2797. },
  2798. side: {
  2799. height: math.unit(5 + 3/12, "feet"),
  2800. weight: math.unit(60, "kg"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/zephiro/side.svg",
  2804. extra: 2403 / 2279,
  2805. bottom: 0.015
  2806. }
  2807. },
  2808. back: {
  2809. height: math.unit(5 + 3/12, "feet"),
  2810. weight: math.unit(60, "kg"),
  2811. name: "Back",
  2812. image: {
  2813. source: "./media/characters/zephiro/back.svg",
  2814. extra: 2373 / 2244,
  2815. bottom: 0.013
  2816. }
  2817. },
  2818. hand: {
  2819. height: math.unit(0.68, "feet"),
  2820. name: "Hand",
  2821. image: {
  2822. source: "./media/characters/zephiro/hand.svg"
  2823. }
  2824. },
  2825. paw: {
  2826. height: math.unit(1, "feet"),
  2827. name: "Paw",
  2828. image: {
  2829. source: "./media/characters/zephiro/paw.svg"
  2830. }
  2831. },
  2832. beans: {
  2833. height: math.unit(0.93, "feet"),
  2834. name: "Beans",
  2835. image: {
  2836. source: "./media/characters/zephiro/beans.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Micro",
  2843. height: math.unit(3, "inches")
  2844. },
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(5 + 3 / 12, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(118, "feet")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(5, "feet"),
  2861. weight: math.unit(90, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/fory/front.svg",
  2865. extra: 2862 / 2674,
  2866. bottom: 180 / 3043.8
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(5, "feet"),
  2871. weight: math.unit(90, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/fory/back.svg",
  2875. extra: 2962 / 2791,
  2876. bottom: 106 / 3071.8
  2877. }
  2878. },
  2879. foot: {
  2880. height: math.unit(2.14, "feet"),
  2881. name: "Foot",
  2882. image: {
  2883. source: "./media/characters/fory/foot.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(5, "feet")
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(50, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(10, "miles")
  2900. },
  2901. {
  2902. name: "Gigamacro",
  2903. height: math.unit(5, "earths")
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(7, "feet"),
  2912. weight: math.unit(90, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/kurrikage/front.svg",
  2916. extra: 1845/1733,
  2917. bottom: 119/1964
  2918. }
  2919. },
  2920. back: {
  2921. height: math.unit(7, "feet"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Back",
  2924. image: {
  2925. source: "./media/characters/kurrikage/back.svg",
  2926. extra: 1790/1677,
  2927. bottom: 61/1851
  2928. }
  2929. },
  2930. dressed: {
  2931. height: math.unit(7, "feet"),
  2932. weight: math.unit(90, "kg"),
  2933. name: "Dressed",
  2934. image: {
  2935. source: "./media/characters/kurrikage/dressed.svg",
  2936. extra: 1845/1733,
  2937. bottom: 119/1964
  2938. }
  2939. },
  2940. foot: {
  2941. height: math.unit(1.5, "feet"),
  2942. name: "Foot",
  2943. image: {
  2944. source: "./media/characters/kurrikage/foot.svg"
  2945. }
  2946. },
  2947. staff: {
  2948. height: math.unit(6.7, "feet"),
  2949. name: "Staff",
  2950. image: {
  2951. source: "./media/characters/kurrikage/staff.svg"
  2952. }
  2953. },
  2954. peek: {
  2955. height: math.unit(1.05, "feet"),
  2956. name: "Peeking",
  2957. image: {
  2958. source: "./media/characters/kurrikage/peek.svg",
  2959. bottom: 0.08
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(12, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Big",
  2971. height: math.unit(20, "feet")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(500, "feet")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(20, "miles")
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/shingo/front.svg",
  2992. extra: 1900/1825,
  2993. bottom: 82/1982
  2994. }
  2995. },
  2996. side: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Side",
  3000. image: {
  3001. source: "./media/characters/shingo/side.svg",
  3002. extra: 1930/1865,
  3003. bottom: 16/1946
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/shingo/back.svg",
  3012. extra: 1922/1852,
  3013. bottom: 16/1938
  3014. }
  3015. },
  3016. frontDressed: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(150, "lb"),
  3019. name: "Front-dressed",
  3020. image: {
  3021. source: "./media/characters/shingo/front-dressed.svg",
  3022. extra: 1900/1825,
  3023. bottom: 82/1982
  3024. }
  3025. },
  3026. paw: {
  3027. height: math.unit(1.29, "feet"),
  3028. name: "Paw",
  3029. image: {
  3030. source: "./media/characters/shingo/paw.svg"
  3031. }
  3032. },
  3033. hand: {
  3034. height: math.unit(1.07, "feet"),
  3035. name: "Hand",
  3036. image: {
  3037. source: "./media/characters/shingo/hand.svg"
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/shingo/front-alt.svg",
  3046. extra: 3511 / 3338,
  3047. bottom: 0.005
  3048. }
  3049. },
  3050. frontAlt2: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Front (Alt 2)",
  3054. image: {
  3055. source: "./media/characters/shingo/front-alt-2.svg",
  3056. extra: 706/681,
  3057. bottom: 11/717
  3058. }
  3059. },
  3060. pawAlt: {
  3061. height: math.unit(1, "feet"),
  3062. name: "Paw (Alt)",
  3063. image: {
  3064. source: "./media/characters/shingo/paw-alt.svg"
  3065. }
  3066. },
  3067. },
  3068. [
  3069. {
  3070. name: "Micro",
  3071. height: math.unit(4, "inches")
  3072. },
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(6, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(108, "feet")
  3081. },
  3082. {
  3083. name: "Macro+",
  3084. height: math.unit(1500, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3090. {
  3091. side: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(75, "kg"),
  3094. name: "Side",
  3095. image: {
  3096. source: "./media/characters/aigey/side.svg"
  3097. }
  3098. },
  3099. },
  3100. [
  3101. {
  3102. name: "Macro",
  3103. height: math.unit(200, "feet"),
  3104. default: true
  3105. },
  3106. {
  3107. name: "Megamacro",
  3108. height: math.unit(100, "miles")
  3109. },
  3110. ]
  3111. )
  3112. )
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(5 + 5 / 12, "feet"),
  3118. weight: math.unit(75, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/natasha/front.svg",
  3122. extra: 859 / 824,
  3123. bottom: 23 / 879.6
  3124. }
  3125. },
  3126. frontNsfw: {
  3127. height: math.unit(5 + 5 / 12, "feet"),
  3128. weight: math.unit(75, "kg"),
  3129. name: "Front (NSFW)",
  3130. image: {
  3131. source: "./media/characters/natasha/front-nsfw.svg",
  3132. extra: 859 / 824,
  3133. bottom: 23 / 879.6
  3134. }
  3135. },
  3136. frontErect: {
  3137. height: math.unit(5 + 5 / 12, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front (Erect)",
  3140. image: {
  3141. source: "./media/characters/natasha/front-erect.svg",
  3142. extra: 859 / 824,
  3143. bottom: 23 / 879.6
  3144. }
  3145. },
  3146. back: {
  3147. height: math.unit(5 + 5 / 12, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Back",
  3150. image: {
  3151. source: "./media/characters/natasha/back.svg",
  3152. extra: 887.9 / 852.6,
  3153. bottom: 9.7 / 896.4
  3154. }
  3155. },
  3156. backAlt: {
  3157. height: math.unit(5 + 5 / 12, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back (Alt)",
  3160. image: {
  3161. source: "./media/characters/natasha/back-alt.svg",
  3162. extra: 1236.7 / 1192,
  3163. bottom: 22.3 / 1258.2
  3164. }
  3165. },
  3166. dick: {
  3167. height: math.unit(1.772, "feet"),
  3168. name: "Dick",
  3169. image: {
  3170. source: "./media/characters/natasha/dick.svg"
  3171. }
  3172. },
  3173. paw: {
  3174. height: math.unit(0.250, "meters"),
  3175. name: "Paw",
  3176. image: {
  3177. source: "./media/characters/natasha/paw.svg"
  3178. }
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(5 + 5 / 12, "feet")
  3185. },
  3186. {
  3187. name: "Large",
  3188. height: math.unit(12, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(100, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro+",
  3197. height: math.unit(260, "feet")
  3198. },
  3199. {
  3200. name: "Macro++",
  3201. height: math.unit(1, "mile")
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/malik/front.svg"
  3214. }
  3215. },
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/malik/side.svg",
  3222. extra: 1.1539
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(6, "feet"),
  3227. weight: math.unit(75, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/malik/back.svg"
  3231. }
  3232. },
  3233. },
  3234. [
  3235. {
  3236. name: "Macro",
  3237. height: math.unit(156, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro+",
  3242. height: math.unit(1188, "feet")
  3243. },
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(6, "feet"),
  3251. weight: math.unit(75, "kg"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/sefer/front.svg",
  3255. extra: 848 / 659,
  3256. bottom: 28.3 / 876.442
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(6, "feet"),
  3261. weight: math.unit(75, "kg"),
  3262. name: "Back",
  3263. image: {
  3264. source: "./media/characters/sefer/back.svg",
  3265. extra: 864 / 695,
  3266. bottom: 10 / 871
  3267. }
  3268. },
  3269. frontDressed: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(75, "kg"),
  3272. name: "Front (Dressed)",
  3273. image: {
  3274. source: "./media/characters/sefer/front-dressed.svg",
  3275. extra: 839 / 653,
  3276. bottom: 37.6 / 878
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(6, "feet"),
  3284. default: true
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3290. {
  3291. body: {
  3292. height: math.unit(2.2428, "meter"),
  3293. weight: math.unit(124.738, "kg"),
  3294. name: "Body",
  3295. image: {
  3296. extra: 1225 / 1050,
  3297. source: "./media/characters/north/front.svg"
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Micro",
  3304. height: math.unit(4, "inches")
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(63, "meters")
  3309. },
  3310. {
  3311. name: "Megamacro",
  3312. height: math.unit(101, "miles"),
  3313. default: true
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3319. {
  3320. angled: {
  3321. height: math.unit(4, "meter"),
  3322. weight: math.unit(150, "kg"),
  3323. name: "Angled",
  3324. image: {
  3325. source: "./media/characters/talan/angled-sfw.svg",
  3326. bottom: 29 / 3734
  3327. }
  3328. },
  3329. angledNsfw: {
  3330. height: math.unit(4, "meter"),
  3331. weight: math.unit(150, "kg"),
  3332. name: "Angled (NSFW)",
  3333. image: {
  3334. source: "./media/characters/talan/angled-nsfw.svg",
  3335. bottom: 29 / 3734
  3336. }
  3337. },
  3338. frontNsfw: {
  3339. height: math.unit(4, "meter"),
  3340. weight: math.unit(150, "kg"),
  3341. name: "Front (NSFW)",
  3342. image: {
  3343. source: "./media/characters/talan/front-nsfw.svg",
  3344. bottom: 29 / 3734
  3345. }
  3346. },
  3347. sideNsfw: {
  3348. height: math.unit(4, "meter"),
  3349. weight: math.unit(150, "kg"),
  3350. name: "Side (NSFW)",
  3351. image: {
  3352. source: "./media/characters/talan/side-nsfw.svg",
  3353. bottom: 29 / 3734
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(4, "meter"),
  3358. weight: math.unit(150, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/talan/back.svg"
  3362. }
  3363. },
  3364. dickBottom: {
  3365. height: math.unit(0.621, "meter"),
  3366. name: "Dick (Bottom)",
  3367. image: {
  3368. source: "./media/characters/talan/dick-bottom.svg"
  3369. }
  3370. },
  3371. dickTop: {
  3372. height: math.unit(0.621, "meter"),
  3373. name: "Dick (Top)",
  3374. image: {
  3375. source: "./media/characters/talan/dick-top.svg"
  3376. }
  3377. },
  3378. dickSide: {
  3379. height: math.unit(0.305, "meter"),
  3380. name: "Dick (Side)",
  3381. image: {
  3382. source: "./media/characters/talan/dick-side.svg"
  3383. }
  3384. },
  3385. dickFront: {
  3386. height: math.unit(0.305, "meter"),
  3387. name: "Dick (Front)",
  3388. image: {
  3389. source: "./media/characters/talan/dick-front.svg"
  3390. }
  3391. },
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(4, "meters")
  3397. },
  3398. {
  3399. name: "Macro",
  3400. height: math.unit(100, "meters")
  3401. },
  3402. {
  3403. name: "Megamacro",
  3404. height: math.unit(2, "miles"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Gigamacro",
  3409. height: math.unit(5000, "miles")
  3410. },
  3411. {
  3412. name: "Teramacro",
  3413. height: math.unit(100, "parsecs")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(90, "kg"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/gael'rathus/front.svg"
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front (alt)",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front-alt.svg"
  3434. }
  3435. },
  3436. frontAlt2: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt 2)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(9, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Large",
  3453. height: math.unit(25, "feet")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(0.25, "miles")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(10, "miles")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3467. {
  3468. side: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(140, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/sosha/side.svg",
  3474. bottom: 0.042
  3475. }
  3476. },
  3477. },
  3478. [
  3479. {
  3480. name: "Normal",
  3481. height: math.unit(12, "feet"),
  3482. default: true
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3488. {
  3489. side: {
  3490. height: math.unit(5 + 5 / 12, "feet"),
  3491. weight: math.unit(170, "kg"),
  3492. name: "Side",
  3493. image: {
  3494. source: "./media/characters/runnola/side.svg",
  3495. extra: 741 / 448,
  3496. bottom: 0.05
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Small",
  3503. height: math.unit(3, "feet")
  3504. },
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5 + 5 / 12, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Big",
  3512. height: math.unit(10, "feet")
  3513. },
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(50, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/kurribird/front.svg",
  3525. bottom: 0.015
  3526. }
  3527. },
  3528. frontAlt: {
  3529. height: math.unit(1.5, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Front (Alt)",
  3532. image: {
  3533. source: "./media/characters/kurribird/front-alt.svg",
  3534. extra: 1.45
  3535. }
  3536. },
  3537. },
  3538. [
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(7, "feet")
  3542. },
  3543. {
  3544. name: "Big",
  3545. height: math.unit(12, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(1500, "feet")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(2, "miles")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(80, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/elbial/front.svg",
  3567. extra: 1643 / 1556,
  3568. bottom: 60.2 / 1696
  3569. }
  3570. },
  3571. side: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Side",
  3575. image: {
  3576. source: "./media/characters/elbial/side.svg",
  3577. extra: 1601/1528,
  3578. bottom: 97/1698
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(80, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/elbial/back.svg",
  3587. extra: 1653/1569,
  3588. bottom: 20/1673
  3589. }
  3590. },
  3591. frontDressed: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(80, "kg"),
  3594. name: "Front (Dressed)",
  3595. image: {
  3596. source: "./media/characters/elbial/front-dressed.svg",
  3597. extra: 1638/1569,
  3598. bottom: 70/1708
  3599. }
  3600. },
  3601. genitals: {
  3602. height: math.unit(2 / 3.367, "meter"),
  3603. name: "Genitals",
  3604. image: {
  3605. source: "./media/characters/elbial/genitals.svg"
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Large",
  3612. height: math.unit(100, "feet")
  3613. },
  3614. {
  3615. name: "Macro",
  3616. height: math.unit(500, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(10, "miles")
  3622. },
  3623. {
  3624. name: "Gigamacro",
  3625. height: math.unit(25000, "miles")
  3626. },
  3627. {
  3628. name: "Full-Size",
  3629. height: math.unit(8000000, "gigaparsecs")
  3630. }
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(2, "meter"),
  3638. weight: math.unit(60, "kg"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/noah/front.svg"
  3642. }
  3643. },
  3644. talons: {
  3645. height: math.unit(0.315, "meter"),
  3646. name: "Talons",
  3647. image: {
  3648. source: "./media/characters/noah/talons.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Large",
  3655. height: math.unit(50, "feet")
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(750, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Megamacro",
  3664. height: math.unit(50, "miles")
  3665. },
  3666. {
  3667. name: "Gigamacro",
  3668. height: math.unit(100000, "miles")
  3669. },
  3670. {
  3671. name: "Full-Size",
  3672. height: math.unit(3000000000, "miles")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(80, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/natalya/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/natalya/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(150, "feet"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Megamacro",
  3704. height: math.unit(5, "miles")
  3705. },
  3706. {
  3707. name: "Full-Size",
  3708. height: math.unit(600, "kiloparsecs")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2, "meter"),
  3717. weight: math.unit(50, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/erestrebah/front.svg",
  3721. extra: 1262/1162,
  3722. bottom: 96/1358
  3723. }
  3724. },
  3725. back: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(50, "kg"),
  3728. name: "Back",
  3729. image: {
  3730. source: "./media/characters/erestrebah/back.svg",
  3731. extra: 1257/1139,
  3732. bottom: 13/1270
  3733. }
  3734. },
  3735. wing: {
  3736. height: math.unit(2, "meter"),
  3737. weight: math.unit(50, "kg"),
  3738. name: "Wing",
  3739. image: {
  3740. source: "./media/characters/erestrebah/wing.svg",
  3741. extra: 1262/1162,
  3742. bottom: 96/1358
  3743. }
  3744. },
  3745. mouth: {
  3746. height: math.unit(0.39, "feet"),
  3747. name: "Mouth",
  3748. image: {
  3749. source: "./media/characters/erestrebah/mouth.svg"
  3750. }
  3751. }
  3752. },
  3753. [
  3754. {
  3755. name: "Normal",
  3756. height: math.unit(10, "feet")
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(50, "feet"),
  3761. default: true
  3762. },
  3763. {
  3764. name: "Macro",
  3765. height: math.unit(300, "feet")
  3766. },
  3767. {
  3768. name: "Macro+",
  3769. height: math.unit(750, "feet")
  3770. },
  3771. {
  3772. name: "Megamacro",
  3773. height: math.unit(3, "miles")
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(2, "meter"),
  3782. weight: math.unit(80, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/jennifer/front.svg",
  3786. bottom: 0.11,
  3787. extra: 1.16
  3788. }
  3789. },
  3790. frontAlt: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(80, "kg"),
  3793. name: "Front (Alt)",
  3794. image: {
  3795. source: "./media/characters/jennifer/front-alt.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Canon Height",
  3802. height: math.unit(120, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro+",
  3807. height: math.unit(300, "feet")
  3808. },
  3809. {
  3810. name: "Megamacro",
  3811. height: math.unit(20000, "feet")
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(50, "kg"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/kalista/front.svg",
  3824. extra: 1314/1145,
  3825. bottom: 101/1415
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(2, "meter"),
  3830. weight: math.unit(50, "kg"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/kalista/back.svg",
  3834. extra: 1366 / 1156,
  3835. bottom: 33.9 / 1362.78
  3836. }
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Uncomfortably Small",
  3842. height: math.unit(10, "feet")
  3843. },
  3844. {
  3845. name: "Small",
  3846. height: math.unit(30, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(100, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(2000, "feet")
  3856. },
  3857. {
  3858. name: "True Form",
  3859. height: math.unit(8924, "miles")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(120, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/ggv/front.svg"
  3872. }
  3873. },
  3874. side: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Side",
  3878. image: {
  3879. source: "./media/characters/ggv/side.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Extremely Puny",
  3886. height: math.unit(9 + 5 / 12, "feet")
  3887. },
  3888. {
  3889. name: "Horribly Small",
  3890. height: math.unit(47.7, "miles"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Reasonably Sized",
  3895. height: math.unit(25000, "parsecs")
  3896. },
  3897. {
  3898. name: "Slightly Uncompressed",
  3899. height: math.unit(7.77e31, "parsecs")
  3900. },
  3901. {
  3902. name: "Omniversal",
  3903. height: math.unit(1e300, "meters")
  3904. },
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(75, "lb"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/napalm/front.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/napalm/back.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Standard",
  3930. height: math.unit(55, "feet"),
  3931. default: true
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(7 + 5 / 6, "feet"),
  3940. weight: math.unit(325, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/asana/front.svg",
  3944. extra: 1133 / 1060,
  3945. bottom: 15.2 / 1148.6
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(7 + 5 / 6, "feet"),
  3950. weight: math.unit(325, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/asana/back.svg",
  3954. extra: 1114 / 1043,
  3955. bottom: 5 / 1120
  3956. }
  3957. },
  3958. dressedDark: {
  3959. height: math.unit(7 + 5 / 6, "feet"),
  3960. weight: math.unit(325, "lb"),
  3961. name: "Dressed (Dark)",
  3962. image: {
  3963. source: "./media/characters/asana/dressed-dark.svg",
  3964. extra: 1133 / 1060,
  3965. bottom: 15.2 / 1148.6
  3966. }
  3967. },
  3968. dressedLight: {
  3969. height: math.unit(7 + 5 / 6, "feet"),
  3970. weight: math.unit(325, "lb"),
  3971. name: "Dressed (Light)",
  3972. image: {
  3973. source: "./media/characters/asana/dressed-light.svg",
  3974. extra: 1133 / 1060,
  3975. bottom: 15.2 / 1148.6
  3976. }
  3977. },
  3978. },
  3979. [
  3980. {
  3981. name: "Standard",
  3982. height: math.unit(7 + 5 / 6, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Large",
  3987. height: math.unit(10, "meters")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(2500, "meters")
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(5e6, "meters")
  3996. },
  3997. {
  3998. name: "Examacro",
  3999. height: math.unit(5e12, "lightyears")
  4000. },
  4001. {
  4002. name: "Max Size",
  4003. height: math.unit(1e31, "lightyears")
  4004. }
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(2, "meter"),
  4012. weight: math.unit(60, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/ebony/front.svg",
  4016. bottom: 0.03,
  4017. extra: 1045 / 810 + 0.03
  4018. }
  4019. },
  4020. side: {
  4021. height: math.unit(2, "meter"),
  4022. weight: math.unit(60, "kg"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/ebony/side.svg",
  4026. bottom: 0.03,
  4027. extra: 1045 / 810 + 0.03
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(60, "kg"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/ebony/back.svg",
  4036. bottom: 0.01,
  4037. extra: 1045 / 810 + 0.01
  4038. }
  4039. },
  4040. },
  4041. [
  4042. // TODO check why I did this lol
  4043. {
  4044. name: "Standard",
  4045. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(200, "feet")
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(13000, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(175, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/mountain/front.svg",
  4067. extra: 972 / 955,
  4068. bottom: 64 / 1036.6
  4069. }
  4070. },
  4071. back: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(175, "lb"),
  4074. name: "Back",
  4075. image: {
  4076. source: "./media/characters/mountain/back.svg",
  4077. extra: 970 / 950,
  4078. bottom: 28.25 / 999
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Large",
  4085. height: math.unit(20, "meters")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(300, "meters")
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(10000, "km"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Examacro",
  4098. height: math.unit(10e9, "lightyears")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(8, "feet"),
  4107. weight: math.unit(500, "lb"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/rick/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(8, "feet"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(5, "km")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(8, "feet"),
  4131. weight: math.unit(120, "lb"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/ona/front.svg"
  4135. }
  4136. },
  4137. frontAlt: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front (Alt)",
  4141. image: {
  4142. source: "./media/characters/ona/front-alt.svg"
  4143. }
  4144. },
  4145. back: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Back",
  4149. image: {
  4150. source: "./media/characters/ona/back.svg"
  4151. }
  4152. },
  4153. foot: {
  4154. height: math.unit(1.1, "feet"),
  4155. name: "Foot",
  4156. image: {
  4157. source: "./media/characters/ona/foot.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(70, "km"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(681818, "miles")
  4170. },
  4171. {
  4172. name: "Examacro",
  4173. height: math.unit(3800000, "lightyears")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(12, "feet"),
  4182. weight: math.unit(3000, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/mech/front.svg",
  4186. extra: 2900 / 2770,
  4187. bottom: 110 / 3010
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(12, "feet"),
  4192. weight: math.unit(3000, "lb"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/mech/back.svg",
  4196. extra: 3011 / 2890,
  4197. bottom: 94 / 3105
  4198. }
  4199. },
  4200. maw: {
  4201. height: math.unit(3.07, "feet"),
  4202. name: "Maw",
  4203. image: {
  4204. source: "./media/characters/mech/maw.svg"
  4205. }
  4206. },
  4207. head: {
  4208. height: math.unit(2.82, "feet"),
  4209. name: "Head",
  4210. image: {
  4211. source: "./media/characters/mech/head.svg"
  4212. }
  4213. },
  4214. dick: {
  4215. height: math.unit(1.43, "feet"),
  4216. name: "Dick",
  4217. image: {
  4218. source: "./media/characters/mech/dick.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(12, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(300, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro+",
  4234. height: math.unit(1500, "feet")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(1.3, "meter"),
  4243. weight: math.unit(30, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gregory/front.svg",
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Normal",
  4253. height: math.unit(1.3, "meter"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(20, "meter")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(2.8, "meter"),
  4267. weight: math.unit(200, "kg"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/elory/front.svg",
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(2.8, "meter"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(38, "meter")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4288. {
  4289. front: {
  4290. height: math.unit(470, "feet"),
  4291. weight: math.unit(924, "tons"),
  4292. name: "Front",
  4293. image: {
  4294. source: "./media/characters/angelpatamon/front.svg",
  4295. }
  4296. }
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(470, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Deity Size I",
  4306. height: math.unit(28651.2, "km")
  4307. },
  4308. {
  4309. name: "Deity Size II",
  4310. height: math.unit(171907.2, "km")
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4316. {
  4317. side: {
  4318. height: math.unit(7.2, "meter"),
  4319. weight: math.unit(8.2, "tons"),
  4320. name: "Side",
  4321. image: {
  4322. source: "./media/characters/cryae/side.svg",
  4323. extra: 3500 / 1500
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(7.2, "meter"),
  4331. default: true
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/xera/front.svg",
  4344. extra: 2377 / 1972,
  4345. bottom: 75.5 / 2452
  4346. }
  4347. },
  4348. side: {
  4349. height: math.unit(6, "feet"),
  4350. weight: math.unit(175, "lb"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/xera/side.svg",
  4354. extra: 2345 / 2019,
  4355. bottom: 39.7 / 2384
  4356. }
  4357. },
  4358. back: {
  4359. height: math.unit(6, "feet"),
  4360. weight: math.unit(175, "lb"),
  4361. name: "Back",
  4362. image: {
  4363. source: "./media/characters/xera/back.svg",
  4364. extra: 2095 / 1984,
  4365. bottom: 67 / 2166
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Small",
  4372. height: math.unit(10, "feet")
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(500, "meters"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro+",
  4381. height: math.unit(10, "km")
  4382. },
  4383. {
  4384. name: "Gigamacro",
  4385. height: math.unit(25000, "km")
  4386. },
  4387. {
  4388. name: "Teramacro",
  4389. height: math.unit(3e6, "km")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(175, "lb"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/nebula/front.svg",
  4402. extra: 2566 / 2362,
  4403. bottom: 81 / 2644
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Small",
  4410. height: math.unit(4.5, "meters")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(1500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(150, "km")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(27000, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(225, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/abysgar/front.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Small",
  4442. height: math.unit(4.5, "meters")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(1250, "meters"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(125, "km")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(26000, "km")
  4456. }
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(6, "feet"),
  4464. weight: math.unit(180, "lb"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/yakuz/front.svg"
  4468. }
  4469. }
  4470. },
  4471. [
  4472. {
  4473. name: "Small",
  4474. height: math.unit(5, "meters")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(1500, "meters"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(200, "km")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(100000, "km")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(175, "lb"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/mirova/front.svg",
  4500. extra: 3334 / 3071,
  4501. bottom: 42 / 3375.6
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Small",
  4508. height: math.unit(5, "meters")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(900, "meters"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(135, "km")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(20000, "km")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4527. {
  4528. side: {
  4529. height: math.unit(28.35, "feet"),
  4530. weight: math.unit(99.75, "tons"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/asana-mech/side.svg",
  4534. extra: 923 / 699,
  4535. bottom: 50 / 975
  4536. }
  4537. },
  4538. chaingun: {
  4539. height: math.unit(7, "feet"),
  4540. weight: math.unit(2400, "lb"),
  4541. name: "Chaingun",
  4542. image: {
  4543. source: "./media/characters/asana-mech/chaingun.svg"
  4544. }
  4545. },
  4546. laser: {
  4547. height: math.unit(7.12, "feet"),
  4548. weight: math.unit(2000, "lb"),
  4549. name: "Laser",
  4550. image: {
  4551. source: "./media/characters/asana-mech/laser.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(28.35, "feet"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(2500, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(25, "miles")
  4568. },
  4569. {
  4570. name: "Examacro",
  4571. height: math.unit(6e8, "lightyears")
  4572. },
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(5, "meters"),
  4580. weight: math.unit(1000, "kg"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/asche/front.svg",
  4584. extra: 1258 / 1190,
  4585. bottom: 47 / 1305
  4586. }
  4587. },
  4588. frontUnderwear: {
  4589. height: math.unit(5, "meters"),
  4590. weight: math.unit(1000, "kg"),
  4591. name: "Front (Underwear)",
  4592. image: {
  4593. source: "./media/characters/asche/front-underwear.svg",
  4594. extra: 1258 / 1190,
  4595. bottom: 47 / 1305
  4596. }
  4597. },
  4598. frontDressed: {
  4599. height: math.unit(5, "meters"),
  4600. weight: math.unit(1000, "kg"),
  4601. name: "Front (Dressed)",
  4602. image: {
  4603. source: "./media/characters/asche/front-dressed.svg",
  4604. extra: 1258 / 1190,
  4605. bottom: 47 / 1305
  4606. }
  4607. },
  4608. frontArmor: {
  4609. height: math.unit(5, "meters"),
  4610. weight: math.unit(1000, "kg"),
  4611. name: "Front (Armored)",
  4612. image: {
  4613. source: "./media/characters/asche/front-armored.svg",
  4614. extra: 1374 / 1308,
  4615. bottom: 23 / 1397
  4616. }
  4617. },
  4618. mp724: {
  4619. height: math.unit(0.96, "meters"),
  4620. weight: math.unit(38, "kg"),
  4621. name: "H&K MP724",
  4622. image: {
  4623. source: "./media/characters/asche/h&k-mp724.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(5, "meters"),
  4628. weight: math.unit(1000, "kg"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/asche/side.svg",
  4632. extra: 1717 / 1609,
  4633. bottom: 0.005
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(5, "meters"),
  4638. weight: math.unit(1000, "kg"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/asche/back.svg",
  4642. extra: 1570 / 1501
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "DEFCON 5",
  4649. height: math.unit(5, "meters")
  4650. },
  4651. {
  4652. name: "DEFCON 4",
  4653. height: math.unit(500, "meters"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "DEFCON 3",
  4658. height: math.unit(5, "km")
  4659. },
  4660. {
  4661. name: "DEFCON 2",
  4662. height: math.unit(500, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 1",
  4666. height: math.unit(500000, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 0",
  4670. height: math.unit(3, "gigaparsecs")
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4676. {
  4677. front: {
  4678. height: math.unit(2, "meters"),
  4679. weight: math.unit(76, "kg"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/gale/front.svg"
  4683. }
  4684. },
  4685. frontAlt1: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front (Alt 1)",
  4689. image: {
  4690. source: "./media/characters/gale/front-alt-1.svg"
  4691. }
  4692. },
  4693. frontAlt2: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 2)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-2.svg"
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(7, "feet")
  4706. },
  4707. {
  4708. name: "Macro",
  4709. height: math.unit(150, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro+",
  4714. height: math.unit(300, "feet")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4720. {
  4721. front: {
  4722. height: math.unit(5 + 10/12, "feet"),
  4723. weight: math.unit(67, "kg"),
  4724. name: "Front",
  4725. image: {
  4726. source: "./media/characters/draylen/front.svg",
  4727. extra: 832/777,
  4728. bottom: 85/917
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(5 + 10/12, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(150, "feet"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(7 + 9 / 12, "feet"),
  4749. weight: math.unit(379, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/chez/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/chez/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(7 + 9 / 12, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "God King",
  4772. height: math.unit(9750000, "meters")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(275, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/kaylum/front.svg",
  4785. bottom: 0.01,
  4786. extra: 1166 / 1031
  4787. }
  4788. },
  4789. frontWingless: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(275, "lbs"),
  4792. name: "Front (Wingless)",
  4793. image: {
  4794. source: "./media/characters/kaylum/front-wingless.svg",
  4795. bottom: 0.01,
  4796. extra: 1117 / 1031
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(3.05, "meters")
  4804. },
  4805. {
  4806. name: "Master",
  4807. height: math.unit(5.5, "meters")
  4808. },
  4809. {
  4810. name: "Rampage",
  4811. height: math.unit(19, "meters")
  4812. },
  4813. {
  4814. name: "Macro Lite",
  4815. height: math.unit(37, "meters")
  4816. },
  4817. {
  4818. name: "Hyper Predator",
  4819. height: math.unit(61, "meters")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(138, "meters"),
  4824. default: true
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(150, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/geta/front.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(3, "inches"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(5 + 5 / 12, "feet")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(300, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/tyrnn/front.svg"
  4861. }
  4862. }
  4863. },
  4864. [
  4865. {
  4866. name: "Main Height",
  4867. height: math.unit(355, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Fave. Height",
  4872. height: math.unit(2400, "feet")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(300, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/appledectomy/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(2500, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(50, "miles"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(5000, "miles")
  4901. },
  4902. {
  4903. name: "Teramacro",
  4904. height: math.unit(250000, "miles")
  4905. },
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(200, "lbs"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/vulpes/front.svg",
  4917. extra: 573 / 543,
  4918. bottom: 0.033
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(200, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/vulpes/side.svg",
  4927. extra: 577 / 549,
  4928. bottom: 11 / 588
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(200, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/vulpes/back.svg",
  4937. extra: 573 / 549,
  4938. bottom: 20 / 593
  4939. }
  4940. },
  4941. feet: {
  4942. height: math.unit(1.276, "feet"),
  4943. name: "Feet",
  4944. image: {
  4945. source: "./media/characters/vulpes/feet.svg"
  4946. }
  4947. },
  4948. maw: {
  4949. height: math.unit(1.18, "feet"),
  4950. name: "Maw",
  4951. image: {
  4952. source: "./media/characters/vulpes/maw.svg"
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(2, "inches")
  4960. },
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(6.3, "feet")
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(850, "feet")
  4968. },
  4969. {
  4970. name: "Megamacro",
  4971. height: math.unit(7500, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Gigamacro",
  4976. height: math.unit(570000, "miles")
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(210, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/rain-fallen/front.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(210, "lbs"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/rain-fallen/side.svg"
  4997. }
  4998. },
  4999. back: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(210, "lbs"),
  5002. name: "Back",
  5003. image: {
  5004. source: "./media/characters/rain-fallen/back.svg"
  5005. }
  5006. },
  5007. feral: {
  5008. height: math.unit(9, "feet"),
  5009. weight: math.unit(700, "lbs"),
  5010. name: "Feral",
  5011. image: {
  5012. source: "./media/characters/rain-fallen/feral.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Meddling with Mortals",
  5019. height: math.unit(8 + 8/12, "feet")
  5020. },
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(5, "meter")
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(150, "meter"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Megamacro",
  5032. height: math.unit(278e6, "meter")
  5033. },
  5034. {
  5035. name: "Gigamacro",
  5036. height: math.unit(2e9, "meter")
  5037. },
  5038. {
  5039. name: "Teramacro",
  5040. height: math.unit(8e12, "meter")
  5041. },
  5042. {
  5043. name: "Devourer",
  5044. height: math.unit(14, "zettameters")
  5045. },
  5046. {
  5047. name: "Scarlet King",
  5048. height: math.unit(18, "yottameters")
  5049. },
  5050. {
  5051. name: "Void",
  5052. height: math.unit(1e88, "yottameters")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5058. {
  5059. standing: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(180, "lbs"),
  5062. name: "Standing",
  5063. image: {
  5064. source: "./media/characters/zaakira/standing.svg",
  5065. extra: 1599/1504,
  5066. bottom: 39/1638
  5067. }
  5068. },
  5069. laying: {
  5070. height: math.unit(3, "feet"),
  5071. weight: math.unit(180, "lbs"),
  5072. name: "Laying",
  5073. image: {
  5074. source: "./media/characters/zaakira/laying.svg"
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(12, "feet")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(279, "feet"),
  5086. default: true
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5092. {
  5093. femSfw: {
  5094. height: math.unit(8, "feet"),
  5095. weight: math.unit(350, "lb"),
  5096. name: "Fem",
  5097. image: {
  5098. source: "./media/characters/sigvald/fem-sfw.svg",
  5099. extra: 182 / 164,
  5100. bottom: 8.7 / 190.5
  5101. }
  5102. },
  5103. femNsfw: {
  5104. height: math.unit(8, "feet"),
  5105. weight: math.unit(350, "lb"),
  5106. name: "Fem (NSFW)",
  5107. image: {
  5108. source: "./media/characters/sigvald/fem-nsfw.svg",
  5109. extra: 182 / 164,
  5110. bottom: 8.7 / 190.5
  5111. }
  5112. },
  5113. maleNsfw: {
  5114. height: math.unit(8, "feet"),
  5115. weight: math.unit(350, "lb"),
  5116. name: "Male (NSFW)",
  5117. image: {
  5118. source: "./media/characters/sigvald/male-nsfw.svg",
  5119. extra: 182 / 164,
  5120. bottom: 8.7 / 190.5
  5121. }
  5122. },
  5123. hermNsfw: {
  5124. height: math.unit(8, "feet"),
  5125. weight: math.unit(350, "lb"),
  5126. name: "Herm (NSFW)",
  5127. image: {
  5128. source: "./media/characters/sigvald/herm-nsfw.svg",
  5129. extra: 182 / 164,
  5130. bottom: 8.7 / 190.5
  5131. }
  5132. },
  5133. dick: {
  5134. height: math.unit(2.36, "feet"),
  5135. name: "Dick",
  5136. image: {
  5137. source: "./media/characters/sigvald/dick.svg"
  5138. }
  5139. },
  5140. eye: {
  5141. height: math.unit(0.31, "feet"),
  5142. name: "Eye",
  5143. image: {
  5144. source: "./media/characters/sigvald/eye.svg"
  5145. }
  5146. },
  5147. mouth: {
  5148. height: math.unit(0.92, "feet"),
  5149. name: "Mouth",
  5150. image: {
  5151. source: "./media/characters/sigvald/mouth.svg"
  5152. }
  5153. },
  5154. paws: {
  5155. height: math.unit(2.2, "feet"),
  5156. name: "Paws",
  5157. image: {
  5158. source: "./media/characters/sigvald/paws.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(8, "feet")
  5166. },
  5167. {
  5168. name: "Large",
  5169. height: math.unit(12, "feet")
  5170. },
  5171. {
  5172. name: "Larger",
  5173. height: math.unit(20, "feet")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(150, "feet")
  5178. },
  5179. {
  5180. name: "Macro+",
  5181. height: math.unit(200, "feet"),
  5182. default: true
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5188. {
  5189. side: {
  5190. height: math.unit(12, "feet"),
  5191. weight: math.unit(2000, "kg"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/scott/side.svg",
  5195. extra: 754 / 724,
  5196. bottom: 0.069
  5197. }
  5198. },
  5199. upright: {
  5200. height: math.unit(12, "feet"),
  5201. weight: math.unit(2000, "kg"),
  5202. name: "Upright",
  5203. image: {
  5204. source: "./media/characters/scott/upright.svg",
  5205. extra: 3881 / 3722,
  5206. bottom: 0.05
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(12, "feet"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5220. {
  5221. side: {
  5222. height: math.unit(8, "meters"),
  5223. weight: math.unit(84755, "lbs"),
  5224. name: "Side",
  5225. image: {
  5226. source: "./media/characters/tobias/side.svg",
  5227. extra: 1474 / 1096,
  5228. bottom: 38.9 / 1513.1235
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(8, "meters"),
  5236. default: true
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5242. {
  5243. front: {
  5244. height: math.unit(5.5, "feet"),
  5245. weight: math.unit(400, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/kieran/front.svg",
  5249. extra: 2694 / 2364,
  5250. bottom: 217 / 2908
  5251. }
  5252. },
  5253. side: {
  5254. height: math.unit(5.5, "feet"),
  5255. weight: math.unit(400, "lbs"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/kieran/side.svg",
  5259. extra: 875 / 777,
  5260. bottom: 84.6 / 959
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Normal",
  5267. height: math.unit(5.5, "feet"),
  5268. default: true
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5274. {
  5275. side: {
  5276. height: math.unit(2, "meters"),
  5277. weight: math.unit(70, "kg"),
  5278. name: "Side",
  5279. image: {
  5280. source: "./media/characters/sanya/side.svg",
  5281. bottom: 0.02,
  5282. extra: 1.02
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Small",
  5289. height: math.unit(2, "meters")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(3, "meters")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(16, "meters"),
  5298. default: true
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(2, "meters"),
  5307. weight: math.unit(120, "kg"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/miranda/front.svg",
  5311. extra: 195 / 185,
  5312. bottom: 10.9 / 206.5
  5313. }
  5314. },
  5315. back: {
  5316. height: math.unit(2, "meters"),
  5317. weight: math.unit(120, "kg"),
  5318. name: "Back",
  5319. image: {
  5320. source: "./media/characters/miranda/back.svg",
  5321. extra: 201 / 193,
  5322. bottom: 2.3 / 203.7
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(10, "feet"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "James", species: ["deer"], tags: ["anthro"] },
  5336. {
  5337. side: {
  5338. height: math.unit(2, "meters"),
  5339. weight: math.unit(100, "kg"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/james/front.svg",
  5343. extra: 10 / 8.5
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(8.5, "feet"),
  5351. default: true
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5357. {
  5358. side: {
  5359. height: math.unit(9.5, "feet"),
  5360. weight: math.unit(2500, "lbs"),
  5361. name: "Side",
  5362. image: {
  5363. source: "./media/characters/heather/side.svg"
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Normal",
  5370. height: math.unit(9.5, "feet"),
  5371. default: true
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5377. {
  5378. side: {
  5379. height: math.unit(6.5, "feet"),
  5380. weight: math.unit(400, "lbs"),
  5381. name: "Side",
  5382. image: {
  5383. source: "./media/characters/lukas/side.svg",
  5384. extra: 7.25 / 6.5
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(6.5, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(5, "feet"),
  5401. weight: math.unit(3000, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/louise/side.svg"
  5405. }
  5406. },
  5407. },
  5408. [
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(5, "feet"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5418. {
  5419. side: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(150, "lbs"),
  5422. name: "Side",
  5423. image: {
  5424. source: "./media/characters/ramona/side.svg",
  5425. extra: 871/854,
  5426. bottom: 41/912
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(5.3, "meters"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(20, "stories")
  5439. },
  5440. {
  5441. name: "Macro+",
  5442. height: math.unit(50, "stories")
  5443. },
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5448. {
  5449. standing: {
  5450. height: math.unit(5.75, "feet"),
  5451. weight: math.unit(160, "lbs"),
  5452. name: "Standing",
  5453. image: {
  5454. source: "./media/characters/deerpuff/standing.svg",
  5455. extra: 682 / 624
  5456. }
  5457. },
  5458. sitting: {
  5459. height: math.unit(5.75 / 1.79, "feet"),
  5460. weight: math.unit(160, "lbs"),
  5461. name: "Sitting",
  5462. image: {
  5463. source: "./media/characters/deerpuff/sitting.svg",
  5464. bottom: 44 / 400,
  5465. extra: 1
  5466. }
  5467. },
  5468. taurLaying: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(400, "lbs"),
  5471. name: "Taur (Laying)",
  5472. image: {
  5473. source: "./media/characters/deerpuff/taur-laying.svg"
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Puffball",
  5480. height: math.unit(6, "inches")
  5481. },
  5482. {
  5483. name: "Normalpuff",
  5484. height: math.unit(5.75, "feet")
  5485. },
  5486. {
  5487. name: "Macropuff",
  5488. height: math.unit(1500, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Megapuff",
  5493. height: math.unit(500, "miles")
  5494. },
  5495. {
  5496. name: "Gigapuff",
  5497. height: math.unit(250000, "miles")
  5498. },
  5499. {
  5500. name: "Omegapuff",
  5501. height: math.unit(1000, "lightyears")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5507. {
  5508. stomping: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(170, "lbs"),
  5511. name: "Stomping",
  5512. image: {
  5513. source: "./media/characters/vivian/stomping.svg"
  5514. }
  5515. },
  5516. sitting: {
  5517. height: math.unit(6 / 1.75, "feet"),
  5518. weight: math.unit(170, "lbs"),
  5519. name: "Sitting",
  5520. image: {
  5521. source: "./media/characters/vivian/sitting.svg",
  5522. bottom: 1 / 6.4,
  5523. extra: 1,
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(7, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(10, "stories")
  5536. },
  5537. {
  5538. name: "Macro+",
  5539. height: math.unit(30, "stories")
  5540. },
  5541. {
  5542. name: "Megamacro",
  5543. height: math.unit(10, "miles")
  5544. },
  5545. {
  5546. name: "Megamacro+",
  5547. height: math.unit(2750000, "meters")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(160, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/prince/front.svg",
  5560. extra: 3400 / 3000
  5561. }
  5562. },
  5563. jumping: {
  5564. height: math.unit(6, "feet"),
  5565. weight: math.unit(160, "lbs"),
  5566. name: "Jumping",
  5567. image: {
  5568. source: "./media/characters/prince/jump.svg",
  5569. extra: 2555 / 2134
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(7.75, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Not cute",
  5581. height: math.unit(17, "feet")
  5582. },
  5583. {
  5584. name: "I said NOT",
  5585. height: math.unit(91, "feet")
  5586. },
  5587. {
  5588. name: "Please stop",
  5589. height: math.unit(560, "feet")
  5590. },
  5591. {
  5592. name: "What have you done",
  5593. height: math.unit(2200, "feet")
  5594. },
  5595. {
  5596. name: "Deer God",
  5597. height: math.unit(3.6, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5603. {
  5604. standing: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(300, "lbs"),
  5607. name: "Standing",
  5608. image: {
  5609. source: "./media/characters/psymon/standing.svg",
  5610. extra: 1888 / 1810,
  5611. bottom: 0.05
  5612. }
  5613. },
  5614. slithering: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(300, "lbs"),
  5617. name: "Slithering",
  5618. image: {
  5619. source: "./media/characters/psymon/slithering.svg",
  5620. extra: 1330 / 1224
  5621. }
  5622. },
  5623. slitheringAlt: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(300, "lbs"),
  5626. name: "Slithering (Alt)",
  5627. image: {
  5628. source: "./media/characters/psymon/slithering-alt.svg",
  5629. extra: 1330 / 1224
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(11.25, "feet"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Large",
  5641. height: math.unit(27, "feet")
  5642. },
  5643. {
  5644. name: "Giant",
  5645. height: math.unit(87, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(365, "feet")
  5650. },
  5651. {
  5652. name: "Megamacro",
  5653. height: math.unit(3, "miles")
  5654. },
  5655. {
  5656. name: "World Serpent",
  5657. height: math.unit(8000, "miles")
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(180, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/daimos/front.svg",
  5670. extra: 4160 / 3897,
  5671. bottom: 0.021
  5672. }
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Normal",
  5678. height: math.unit(8, "feet"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Big Dog",
  5683. height: math.unit(22, "feet")
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(127, "feet")
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(3600, "feet")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5697. {
  5698. side: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Side",
  5702. image: {
  5703. source: "./media/characters/blake/side.svg",
  5704. extra: 1212 / 1120,
  5705. bottom: 0.05
  5706. }
  5707. },
  5708. crouched: {
  5709. height: math.unit(6 * 0.57, "feet"),
  5710. weight: math.unit(180, "lbs"),
  5711. name: "Crouched",
  5712. image: {
  5713. source: "./media/characters/blake/crouched.svg",
  5714. extra: 840 / 587,
  5715. bottom: 0.04
  5716. }
  5717. },
  5718. bent: {
  5719. height: math.unit(6 * 0.75, "feet"),
  5720. weight: math.unit(180, "lbs"),
  5721. name: "Bent",
  5722. image: {
  5723. source: "./media/characters/blake/bent.svg",
  5724. extra: 592 / 544,
  5725. bottom: 0.035
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(8 + 1 / 6, "feet"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Big Backside",
  5737. height: math.unit(37, "feet")
  5738. },
  5739. {
  5740. name: "Subway Shredder",
  5741. height: math.unit(72, "feet")
  5742. },
  5743. {
  5744. name: "City Carver",
  5745. height: math.unit(1675, "feet")
  5746. },
  5747. {
  5748. name: "Tectonic Tweaker",
  5749. height: math.unit(2300, "miles")
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(180, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/guisetto/front.svg",
  5762. extra: 856 / 817,
  5763. bottom: 0.06
  5764. }
  5765. },
  5766. airborne: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(180, "lbs"),
  5769. name: "Airborne",
  5770. image: {
  5771. source: "./media/characters/guisetto/airborne.svg",
  5772. extra: 584 / 525
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(10 + 11 / 12, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Large",
  5784. height: math.unit(35, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(475, "feet")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/luxor/front.svg",
  5801. extra: 2940 / 2152
  5802. }
  5803. },
  5804. back: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(180, "lbs"),
  5807. name: "Back",
  5808. image: {
  5809. source: "./media/characters/luxor/back.svg",
  5810. extra: 1083 / 960
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 5 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Lamp",
  5822. height: math.unit(50, "feet")
  5823. },
  5824. {
  5825. name: "Lämp",
  5826. height: math.unit(300, "feet")
  5827. },
  5828. {
  5829. name: "The sun is a lamp",
  5830. height: math.unit(250000, "miles")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(50, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/huoyan/front.svg"
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/huoyan/side.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Chef",
  5857. height: math.unit(9, "feet")
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(65, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(780, "feet")
  5867. },
  5868. {
  5869. name: "Flaming Mountain",
  5870. height: math.unit(4.8, "miles")
  5871. },
  5872. {
  5873. name: "Celestial",
  5874. height: math.unit(765000, "miles")
  5875. },
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5880. {
  5881. front: {
  5882. height: math.unit(5 + 3 / 4, "feet"),
  5883. weight: math.unit(120, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/tails/front.svg"
  5887. }
  5888. }
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5 + 3 / 4, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5900. {
  5901. front: {
  5902. height: math.unit(4, "feet"),
  5903. weight: math.unit(50, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/rainy/front.svg"
  5907. }
  5908. }
  5909. },
  5910. [
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(800, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(150, "lbs"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/rainier/front.svg"
  5927. }
  5928. }
  5929. },
  5930. [
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(2, "mm"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(8 + 4/12, "feet"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/andy-renard/front.svg",
  5946. extra: 1839/1726,
  5947. bottom: 134/1973
  5948. }
  5949. },
  5950. back: {
  5951. height: math.unit(8 + 4/12, "feet"),
  5952. name: "Back",
  5953. image: {
  5954. source: "./media/characters/andy-renard/back.svg",
  5955. extra: 1838/1710,
  5956. bottom: 105/1943
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Tall",
  5963. height: math.unit(8 + 4/12, "feet")
  5964. },
  5965. {
  5966. name: "Mini Macro",
  5967. height: math.unit(15, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(100, "feet")
  5973. },
  5974. {
  5975. name: "Mega Macro",
  5976. height: math.unit(1000, "feet")
  5977. },
  5978. {
  5979. name: "Giga Macro",
  5980. height: math.unit(10, "miles")
  5981. },
  5982. {
  5983. name: "God Macro",
  5984. height: math.unit(1, "multiverse")
  5985. },
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(210, "lbs"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/cimmaron/front-sfw.svg",
  5997. extra: 701 / 676,
  5998. bottom: 0.046
  5999. }
  6000. },
  6001. back: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(210, "lbs"),
  6004. name: "Back",
  6005. image: {
  6006. source: "./media/characters/cimmaron/back-sfw.svg",
  6007. extra: 701 / 676,
  6008. bottom: 0.046
  6009. }
  6010. },
  6011. frontNsfw: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(210, "lbs"),
  6014. name: "Front (NSFW)",
  6015. image: {
  6016. source: "./media/characters/cimmaron/front-nsfw.svg",
  6017. extra: 701 / 676,
  6018. bottom: 0.046
  6019. }
  6020. },
  6021. backNsfw: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(210, "lbs"),
  6024. name: "Back (NSFW)",
  6025. image: {
  6026. source: "./media/characters/cimmaron/back-nsfw.svg",
  6027. extra: 701 / 676,
  6028. bottom: 0.046
  6029. }
  6030. },
  6031. dick: {
  6032. height: math.unit(1.714, "feet"),
  6033. name: "Dick",
  6034. image: {
  6035. source: "./media/characters/cimmaron/dick.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(6, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Macro Mayor",
  6047. height: math.unit(350, "meters")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(200, "lbs"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/akari/front.svg",
  6060. extra: 962 / 901,
  6061. bottom: 0.04
  6062. }
  6063. }
  6064. },
  6065. [
  6066. {
  6067. name: "Micro",
  6068. height: math.unit(5, "inches"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(7, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(140, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/cynosura/front.svg",
  6086. extra: 896 / 847
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(140, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/cynosura/back.svg",
  6095. extra: 1365 / 1250
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(4, "inches")
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(5.75, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Tall",
  6111. height: math.unit(10, "feet")
  6112. },
  6113. {
  6114. name: "Big",
  6115. height: math.unit(20, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(50, "feet")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(13 + 2/12, "feet"),
  6128. weight: math.unit(800, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/gin/front.svg",
  6132. extra: 1312/1191,
  6133. bottom: 45/1357
  6134. }
  6135. },
  6136. mouth: {
  6137. height: math.unit(2.39 * 1.8, "feet"),
  6138. name: "Mouth",
  6139. image: {
  6140. source: "./media/characters/gin/mouth.svg"
  6141. }
  6142. },
  6143. hand: {
  6144. height: math.unit(1.57 * 2.19, "feet"),
  6145. name: "Hand",
  6146. image: {
  6147. source: "./media/characters/gin/hand.svg"
  6148. }
  6149. },
  6150. foot: {
  6151. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6152. name: "Foot",
  6153. image: {
  6154. source: "./media/characters/gin/foot.svg"
  6155. }
  6156. },
  6157. sole: {
  6158. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6159. name: "Sole",
  6160. image: {
  6161. source: "./media/characters/gin/sole.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Very Small",
  6168. height: math.unit(13 + 2 / 12, "feet")
  6169. },
  6170. {
  6171. name: "Micro",
  6172. height: math.unit(600, "miles")
  6173. },
  6174. {
  6175. name: "Regular",
  6176. height: math.unit(20, "earths"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(2.2, "solarradii")
  6182. },
  6183. {
  6184. name: "Teramacro",
  6185. height: math.unit(1.2, "galaxies")
  6186. },
  6187. {
  6188. name: "Omegamacro",
  6189. height: math.unit(200, "universes")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(6 + 1 / 6, "feet"),
  6198. weight: math.unit(178, "lbs"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/guy/front.svg"
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6 + 1 / 6, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Large",
  6213. height: math.unit(25 + 7 / 12, "feet")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(60 + 9 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro+",
  6221. height: math.unit(246, "feet")
  6222. },
  6223. {
  6224. name: "Macro++",
  6225. height: math.unit(878, "feet")
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(9, "feet"),
  6234. weight: math.unit(800, "lbs"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/tiberius/front.svg",
  6238. extra: 2295 / 2071
  6239. }
  6240. },
  6241. back: {
  6242. height: math.unit(9, "feet"),
  6243. weight: math.unit(800, "lbs"),
  6244. name: "Back",
  6245. image: {
  6246. source: "./media/characters/tiberius/back.svg",
  6247. extra: 2373 / 2160
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(9, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(600, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/surgo/front.svg",
  6268. extra: 3591 / 2227
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(600, "lbs"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/surgo/back.svg",
  6277. extra: 3557 / 2228
  6278. }
  6279. },
  6280. laying: {
  6281. height: math.unit(6 * 0.85, "feet"),
  6282. weight: math.unit(600, "lbs"),
  6283. name: "Laying",
  6284. image: {
  6285. source: "./media/characters/surgo/laying.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(6, "feet"),
  6293. default: true
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6299. {
  6300. side: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(150, "lbs"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/cibus/side.svg",
  6306. extra: 800 / 400
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(240, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/nibbles/front.svg"
  6327. }
  6328. },
  6329. side: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(240, "lbs"),
  6332. name: "Side",
  6333. image: {
  6334. source: "./media/characters/nibbles/side.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(9, "feet"),
  6342. default: true
  6343. }
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6348. {
  6349. side: {
  6350. height: math.unit(5 + 1 / 6, "feet"),
  6351. weight: math.unit(130, "lbs"),
  6352. name: "Side",
  6353. image: {
  6354. source: "./media/characters/rikky/side.svg",
  6355. extra: 851 / 801
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5 + 1 / 6, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(152, "feet"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Megamacro",
  6371. height: math.unit(7, "miles")
  6372. }
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6377. {
  6378. side: {
  6379. height: math.unit(370, "cm"),
  6380. weight: math.unit(350, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/malfressa/side.svg"
  6384. }
  6385. },
  6386. walking: {
  6387. height: math.unit(370, "cm"),
  6388. weight: math.unit(350, "lbs"),
  6389. name: "Walking",
  6390. image: {
  6391. source: "./media/characters/malfressa/walking.svg"
  6392. }
  6393. },
  6394. feral: {
  6395. height: math.unit(2500, "cm"),
  6396. weight: math.unit(100000, "lbs"),
  6397. name: "Feral",
  6398. image: {
  6399. source: "./media/characters/malfressa/feral.svg",
  6400. extra: 2108 / 837,
  6401. bottom: 0.02
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(370, "cm")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(300, "meters"),
  6413. default: true
  6414. }
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(60, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/jaro/front.svg",
  6426. extra: 845/817,
  6427. bottom: 45/890
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(60, "kg"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/jaro/back.svg",
  6436. extra: 847/817,
  6437. bottom: 34/881
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(7, "inches")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.5, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Minimacro",
  6453. height: math.unit(20, "feet")
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(200, "meters")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(195, "lb"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/rogue/front.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(90, "feet"),
  6477. default: true
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(5 + 8 / 12, "feet"),
  6486. weight: math.unit(140, "lb"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/piper/front.svg",
  6490. extra: 3948/3655,
  6491. bottom: 0/3948
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "inches")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(5 + 8 / 12, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(250, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(7, "miles")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(220, "lb"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/gemini/front.svg"
  6524. }
  6525. },
  6526. back: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(220, "lb"),
  6529. name: "Back",
  6530. image: {
  6531. source: "./media/characters/gemini/back.svg"
  6532. }
  6533. },
  6534. kneeling: {
  6535. height: math.unit(6 / 1.5, "feet"),
  6536. weight: math.unit(220, "lb"),
  6537. name: "Kneeling",
  6538. image: {
  6539. source: "./media/characters/gemini/kneeling.svg",
  6540. bottom: 0.02
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(300, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Megamacro",
  6552. height: math.unit(6900, "meters")
  6553. },
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6558. {
  6559. anthro: {
  6560. height: math.unit(2.35, "meters"),
  6561. weight: math.unit(73, "kg"),
  6562. name: "Anthro",
  6563. image: {
  6564. source: "./media/characters/alicia/anthro.svg",
  6565. extra: 2571 / 2385,
  6566. bottom: 75 / 2648
  6567. }
  6568. },
  6569. paw: {
  6570. height: math.unit(1.32, "feet"),
  6571. name: "Paw",
  6572. image: {
  6573. source: "./media/characters/alicia/paw.svg"
  6574. }
  6575. },
  6576. feral: {
  6577. height: math.unit(1.69, "meters"),
  6578. weight: math.unit(73, "kg"),
  6579. name: "Feral",
  6580. image: {
  6581. source: "./media/characters/alicia/feral.svg",
  6582. extra: 2123 / 1715,
  6583. bottom: 222 / 2349
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(2.35, "meters")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(60, "meters"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(10000, "kilometers")
  6600. },
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(7, "feet"),
  6608. weight: math.unit(250, "lbs"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/archy/front.svg"
  6612. }
  6613. }
  6614. },
  6615. [
  6616. {
  6617. name: "Micro",
  6618. height: math.unit(1, "inch")
  6619. },
  6620. {
  6621. name: "Shorty",
  6622. height: math.unit(5, "feet")
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(7, "feet")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(600, "meters"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Megamacro",
  6635. height: math.unit(1, "mile")
  6636. },
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(1.65, "meters"),
  6644. weight: math.unit(74, "kg"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/berri/front.svg",
  6648. extra: 857 / 837,
  6649. bottom: 18 / 877
  6650. }
  6651. },
  6652. bum: {
  6653. height: math.unit(1.46, "feet"),
  6654. name: "Bum",
  6655. image: {
  6656. source: "./media/characters/berri/bum.svg"
  6657. }
  6658. },
  6659. mouth: {
  6660. height: math.unit(0.44, "feet"),
  6661. name: "Mouth",
  6662. image: {
  6663. source: "./media/characters/berri/mouth.svg"
  6664. }
  6665. },
  6666. paw: {
  6667. height: math.unit(0.826, "feet"),
  6668. name: "Paw",
  6669. image: {
  6670. source: "./media/characters/berri/paw.svg"
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(1.65, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(60, "m"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(9.213, "km")
  6687. },
  6688. {
  6689. name: "Planet Eater",
  6690. height: math.unit(489, "megameters")
  6691. },
  6692. {
  6693. name: "Teramacro",
  6694. height: math.unit(2471635000000, "meters")
  6695. },
  6696. {
  6697. name: "Examacro",
  6698. height: math.unit(8.0624e+26, "meters")
  6699. }
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(1.72, "meters"),
  6707. weight: math.unit(68, "kg"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/lexi/front.svg"
  6711. }
  6712. }
  6713. },
  6714. [
  6715. {
  6716. name: "Very Smol",
  6717. height: math.unit(10, "mm")
  6718. },
  6719. {
  6720. name: "Micro",
  6721. height: math.unit(6.8, "cm"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.72, "m")
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(1.69, "meters"),
  6735. weight: math.unit(68, "kg"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/martin/front.svg",
  6739. extra: 596 / 581
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(6.85, "cm"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(1.69, "m")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(1.69, "meters"),
  6760. weight: math.unit(68, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/juno/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Micro",
  6770. height: math.unit(7, "cm")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(1.89, "m")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(353, "meters"),
  6779. default: true
  6780. }
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(1.93, "meters"),
  6788. weight: math.unit(83, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/samantha/front.svg"
  6792. }
  6793. },
  6794. frontClothed: {
  6795. height: math.unit(1.93, "meters"),
  6796. weight: math.unit(83, "kg"),
  6797. name: "Front (Clothed)",
  6798. image: {
  6799. source: "./media/characters/samantha/front-clothed.svg"
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(1.93, "meters"),
  6804. weight: math.unit(83, "kg"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/samantha/back.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(1.93, "m")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(74, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro+",
  6823. height: math.unit(223, "meters"),
  6824. },
  6825. {
  6826. name: "Megamacro",
  6827. height: math.unit(8381, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro+",
  6831. height: math.unit(12000, "kilometers")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(1.92, "meters"),
  6840. weight: math.unit(80, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/dr-clay/front.svg"
  6844. }
  6845. },
  6846. frontClothed: {
  6847. height: math.unit(1.92, "meters"),
  6848. weight: math.unit(80, "kg"),
  6849. name: "Front (Clothed)",
  6850. image: {
  6851. source: "./media/characters/dr-clay/front-clothed.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(1.92, "m")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(214, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(12.237, "meters"),
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(557, "megameters"),
  6872. },
  6873. {
  6874. name: "Unimaginable",
  6875. height: math.unit(120e9, "lightyears")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(80, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Teramacro",
  6894. height: math.unit(500000, "lightyears"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6901. {
  6902. crux: {
  6903. height: math.unit(2, "meters"),
  6904. weight: math.unit(150, "kg"),
  6905. name: "Crux",
  6906. image: {
  6907. source: "./media/characters/vemus/crux.svg",
  6908. extra: 1074/936,
  6909. bottom: 23/1097
  6910. }
  6911. },
  6912. skunkTanuki: {
  6913. height: math.unit(2, "meters"),
  6914. weight: math.unit(150, "kg"),
  6915. name: "Skunk-Tanuki",
  6916. image: {
  6917. source: "./media/characters/vemus/skunk-tanuki.svg",
  6918. extra: 926/893,
  6919. bottom: 20/946
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(3.75, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Big",
  6931. height: math.unit(8, "meters")
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(100, "meters")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(1500, "meters")
  6940. },
  6941. {
  6942. name: "Stellar",
  6943. height: math.unit(14e8, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(70, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/beherit/front.svg",
  6956. extra: 1234/1109,
  6957. bottom: 55/1289
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6, "feet")
  6965. },
  6966. {
  6967. name: "Lorg",
  6968. height: math.unit(25, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Lorger",
  6973. height: math.unit(75, "feet")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(200, "meters")
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(150, "kg"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/everett/front.svg",
  6990. extra: 1017/866,
  6991. bottom: 86/1103
  6992. }
  6993. },
  6994. paw: {
  6995. height: math.unit(2 / 3.6, "meters"),
  6996. name: "Paw",
  6997. image: {
  6998. source: "./media/characters/everett/paw.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(15, "feet"),
  7006. default: true
  7007. },
  7008. {
  7009. name: "Lorg",
  7010. height: math.unit(70, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Lorger",
  7015. height: math.unit(250, "feet")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(500, "meters")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(86, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/rose/front.svg",
  7032. extra: 1785/1636,
  7033. bottom: 30/1815
  7034. }
  7035. },
  7036. frontSporty: {
  7037. height: math.unit(2, "meters"),
  7038. weight: math.unit(86, "kg"),
  7039. name: "Front (Sporty)",
  7040. image: {
  7041. source: "./media/characters/rose/front-sporty.svg",
  7042. extra: 350/335,
  7043. bottom: 10/360
  7044. }
  7045. },
  7046. frontAlt: {
  7047. height: math.unit(1.6, "meters"),
  7048. weight: math.unit(86, "kg"),
  7049. name: "Front (Alt)",
  7050. image: {
  7051. source: "./media/characters/rose/front-alt.svg",
  7052. extra: 299/283,
  7053. bottom: 3/302
  7054. }
  7055. },
  7056. plush: {
  7057. height: math.unit(2, "meters"),
  7058. weight: math.unit(86/3, "kg"),
  7059. name: "Plush",
  7060. image: {
  7061. source: "./media/characters/rose/plush.svg",
  7062. extra: 361/337,
  7063. bottom: 11/372
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "True Micro",
  7070. height: math.unit(9, "cm")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(16, "cm")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(1.85, "meters"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Mini-Macro",
  7083. height: math.unit(5, "meters")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(15, "meters")
  7088. },
  7089. {
  7090. name: "True Macro",
  7091. height: math.unit(40, "meters")
  7092. },
  7093. {
  7094. name: "City Scale",
  7095. height: math.unit(1, "km")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(350, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/regal/front.svg"
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(350, "lbs"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/regal/back.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(350, "feet"),
  7123. default: true
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(4 + 11 / 12, "feet"),
  7132. weight: math.unit(100, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/opal/front.svg"
  7136. }
  7137. },
  7138. frontAlt: {
  7139. height: math.unit(4 + 11 / 12, "feet"),
  7140. weight: math.unit(100, "lbs"),
  7141. name: "Front (Alt)",
  7142. image: {
  7143. source: "./media/characters/opal/front-alt.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Small",
  7150. height: math.unit(4 + 11 / 12, "feet")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(20, "feet"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(120, "feet")
  7160. },
  7161. {
  7162. name: "Megamacro",
  7163. height: math.unit(80, "miles")
  7164. },
  7165. {
  7166. name: "True Size",
  7167. height: math.unit(100000, "lightyears")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(200, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/vector-wuff/front.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(2.8, "meters")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(450, "meters"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Megamacro",
  7195. height: math.unit(15, "kilometers")
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(256, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/dannik/front.svg"
  7208. }
  7209. }
  7210. },
  7211. [
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(69.57, "meters"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(120, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/azura-saharah/front.svg"
  7228. }
  7229. },
  7230. back: {
  7231. height: math.unit(6, "feet"),
  7232. weight: math.unit(120, "lbs"),
  7233. name: "Back",
  7234. image: {
  7235. source: "./media/characters/azura-saharah/back.svg"
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(100, "feet"),
  7243. default: true
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7249. {
  7250. side: {
  7251. height: math.unit(5 + 4 / 12, "feet"),
  7252. weight: math.unit(163, "lbs"),
  7253. name: "Side",
  7254. image: {
  7255. source: "./media/characters/kennedy/side.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Standard Doggo",
  7262. height: math.unit(5 + 4 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Big Doggo",
  7266. height: math.unit(25 + 3 / 12, "feet"),
  7267. default: true
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(5 + 5/12, "feet"),
  7276. weight: math.unit(100, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/odios-de-lunar/front.svg",
  7280. extra: 1468/1323,
  7281. bottom: 22/1490
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(3, "inches")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(5.5, "feet"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(100, "feet")
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7303. {
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(220, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/mandake/back.svg"
  7310. }
  7311. }
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(7, "feet"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(78, "feet")
  7322. },
  7323. {
  7324. name: "Macro+",
  7325. height: math.unit(300, "meters")
  7326. },
  7327. {
  7328. name: "Macro++",
  7329. height: math.unit(2400, "feet")
  7330. },
  7331. {
  7332. name: "Megamacro",
  7333. height: math.unit(5167, "meters")
  7334. },
  7335. {
  7336. name: "Gigamacro",
  7337. height: math.unit(41769, "miles")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(120, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/yozey/front.svg"
  7350. }
  7351. },
  7352. frontAlt: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(120, "lbs"),
  7355. name: "Front (Alt)",
  7356. image: {
  7357. source: "./media/characters/yozey/front-alt.svg"
  7358. }
  7359. },
  7360. side: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(120, "lbs"),
  7363. name: "Side",
  7364. image: {
  7365. source: "./media/characters/yozey/side.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(3, "inches"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(6, "feet")
  7378. }
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(103, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/valeska-voss/front.svg"
  7390. }
  7391. }
  7392. },
  7393. [
  7394. {
  7395. name: "Mini-Sized Sub",
  7396. height: math.unit(3.1, "inches")
  7397. },
  7398. {
  7399. name: "Mid-Sized Sub",
  7400. height: math.unit(6.2, "inches")
  7401. },
  7402. {
  7403. name: "Full-Sized Sub",
  7404. height: math.unit(9.3, "inches")
  7405. },
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(5 + 2 / 12, "foot"),
  7409. default: true
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(160, "lbs"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/gene-zeta/front.svg",
  7422. extra: 3006 / 2826,
  7423. bottom: 182 / 3188
  7424. }
  7425. }
  7426. },
  7427. [
  7428. {
  7429. name: "Micro",
  7430. height: math.unit(6, "inches")
  7431. },
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(5 + 11 / 12, "foot"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(140, "feet")
  7440. },
  7441. {
  7442. name: "Supercharged",
  7443. height: math.unit(2500, "feet")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(350, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/razinox/front.svg",
  7456. extra: 1686 / 1548,
  7457. bottom: 28.2 / 1868
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(350, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/razinox/back.svg",
  7466. extra: 1660 / 1590,
  7467. bottom: 15 / 1665
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(10 + 8 / 12, "foot")
  7475. },
  7476. {
  7477. name: "Minimacro",
  7478. height: math.unit(15, "foot")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(60, "foot"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Megamacro",
  7487. height: math.unit(5, "miles")
  7488. },
  7489. {
  7490. name: "Gigamacro",
  7491. height: math.unit(6000, "miles")
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(150, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/cobalt/front.svg"
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(8 + 1 / 12, "foot")
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(111, "foot"),
  7515. default: true
  7516. },
  7517. {
  7518. name: "Supracosmic",
  7519. height: math.unit(1e42, "feet")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7525. {
  7526. front: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(140, "lbs"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/amanda/front.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(5, "inches"),
  7539. default: true
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(2.75, "meters"),
  7548. weight: math.unit(1200, "lb"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/teal/front.svg",
  7552. extra: 2463 / 2320,
  7553. bottom: 166 / 2629
  7554. }
  7555. },
  7556. back: {
  7557. height: math.unit(2.75, "meters"),
  7558. weight: math.unit(1200, "lb"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/teal/back.svg",
  7562. extra: 2580 / 2489,
  7563. bottom: 151 / 2731
  7564. }
  7565. },
  7566. sitting: {
  7567. height: math.unit(1.9, "meters"),
  7568. weight: math.unit(1200, "lb"),
  7569. name: "Sitting",
  7570. image: {
  7571. source: "./media/characters/teal/sitting.svg",
  7572. extra: 623 / 590,
  7573. bottom: 121 / 744
  7574. }
  7575. },
  7576. standing: {
  7577. height: math.unit(2.75, "meters"),
  7578. weight: math.unit(1200, "lb"),
  7579. name: "Standing",
  7580. image: {
  7581. source: "./media/characters/teal/standing.svg",
  7582. extra: 923 / 893,
  7583. bottom: 60 / 983
  7584. }
  7585. },
  7586. stretching: {
  7587. height: math.unit(3.65, "meters"),
  7588. weight: math.unit(1200, "lb"),
  7589. name: "Stretching",
  7590. image: {
  7591. source: "./media/characters/teal/stretching.svg",
  7592. extra: 1276 / 1244,
  7593. bottom: 0 / 1276
  7594. }
  7595. },
  7596. legged: {
  7597. height: math.unit(1.3, "meters"),
  7598. weight: math.unit(100, "lb"),
  7599. name: "Legged",
  7600. image: {
  7601. source: "./media/characters/teal/legged.svg",
  7602. extra: 462 / 437,
  7603. bottom: 24 / 486
  7604. }
  7605. },
  7606. naga: {
  7607. height: math.unit(5.4, "meters"),
  7608. weight: math.unit(4000, "lb"),
  7609. name: "Naga",
  7610. image: {
  7611. source: "./media/characters/teal/naga.svg",
  7612. extra: 1902 / 1858,
  7613. bottom: 0 / 1902
  7614. }
  7615. },
  7616. hand: {
  7617. height: math.unit(0.52, "meters"),
  7618. name: "Hand",
  7619. image: {
  7620. source: "./media/characters/teal/hand.svg"
  7621. }
  7622. },
  7623. maw: {
  7624. height: math.unit(0.43, "meters"),
  7625. name: "Maw",
  7626. image: {
  7627. source: "./media/characters/teal/maw.svg"
  7628. }
  7629. },
  7630. slit: {
  7631. height: math.unit(0.25, "meters"),
  7632. name: "Slit",
  7633. image: {
  7634. source: "./media/characters/teal/slit.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(2.75, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(300, "feet")
  7647. },
  7648. {
  7649. name: "Macro+",
  7650. height: math.unit(2000, "feet")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7656. {
  7657. frontCat: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(180, "lbs"),
  7660. name: "Front (Cat)",
  7661. image: {
  7662. source: "./media/characters/ravin-amulet/front-cat.svg"
  7663. }
  7664. },
  7665. frontCatAlt: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(180, "lbs"),
  7668. name: "Front (Alt, Cat)",
  7669. image: {
  7670. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7671. }
  7672. },
  7673. frontWerewolf: {
  7674. height: math.unit(6 * 1.2, "feet"),
  7675. weight: math.unit(225, "lbs"),
  7676. name: "Front (Werewolf)",
  7677. image: {
  7678. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7679. }
  7680. },
  7681. backWerewolf: {
  7682. height: math.unit(6 * 1.2, "feet"),
  7683. weight: math.unit(225, "lbs"),
  7684. name: "Back (Werewolf)",
  7685. image: {
  7686. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Nano",
  7693. height: math.unit(1, "micrometer")
  7694. },
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(1, "inch")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(6, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(60, "feet")
  7707. }
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(165, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/fluoresce/front.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(6, "cm")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(5 + 7 / 12, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(56, "feet")
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(1.9, "miles")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(9 + 6 / 12, "feet"),
  7747. weight: math.unit(523, "lbs"),
  7748. name: "Side",
  7749. image: {
  7750. source: "./media/characters/aurora/side.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(9 + 6 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(96, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro+",
  7766. height: math.unit(243, "feet")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(194, "cm"),
  7775. weight: math.unit(90, "kg"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/ranek/front.svg",
  7779. extra: 1862/1791,
  7780. bottom: 80/1942
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(194, "cm"),
  7785. weight: math.unit(90, "kg"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/ranek/back.svg",
  7789. extra: 1853/1787,
  7790. bottom: 74/1927
  7791. }
  7792. },
  7793. feral: {
  7794. height: math.unit(30, "cm"),
  7795. weight: math.unit(1.6, "lbs"),
  7796. name: "Feral",
  7797. image: {
  7798. source: "./media/characters/ranek/feral.svg",
  7799. extra: 990/631,
  7800. bottom: 29/1019
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(194, "cm"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(100, "meters")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5 + 6 / 12, "feet"),
  7821. weight: math.unit(153, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/andrew-cooper/front.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Nano",
  7831. height: math.unit(1, "mm")
  7832. },
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(2, "inches")
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(5 + 6 / 12, "feet"),
  7840. default: true
  7841. }
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(180, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/akane-sato/front.svg",
  7853. extra: 1219 / 1140
  7854. }
  7855. },
  7856. back: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(180, "lbs"),
  7859. name: "Back",
  7860. image: {
  7861. source: "./media/characters/akane-sato/back.svg",
  7862. extra: 1219 / 1170
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(2.5, "meters")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(250, "meters"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(25, "km")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(65, "kg"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/rook/front.svg",
  7891. extra: 960 / 950
  7892. }
  7893. }
  7894. },
  7895. [
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(8.8, "feet")
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(88, "feet"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Megamacro",
  7907. height: math.unit(8, "miles")
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(12 + 2 / 12, "feet"),
  7916. weight: math.unit(808, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/prodigy/front.svg"
  7920. }
  7921. }
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(12 + 2 / 12, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(143, "feet")
  7932. },
  7933. {
  7934. name: "Macro+",
  7935. height: math.unit(400, "feet")
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(6, "feet"),
  7944. weight: math.unit(225, "lbs"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/daniel/front.svg"
  7948. }
  7949. },
  7950. leaning: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(225, "lbs"),
  7953. name: "Leaning",
  7954. image: {
  7955. source: "./media/characters/daniel/leaning.svg"
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(1000, "feet"),
  7963. default: true
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(88, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/chiros/front.svg",
  7976. extra: 306 / 226
  7977. }
  7978. },
  7979. side: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(88, "lbs"),
  7982. name: "Side",
  7983. image: {
  7984. source: "./media/characters/chiros/side.svg",
  7985. extra: 306 / 226
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(6, "cm"),
  7993. default: true
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7999. {
  8000. front: {
  8001. height: math.unit(6, "feet"),
  8002. weight: math.unit(100, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/selka/front.svg",
  8006. extra: 947 / 887
  8007. }
  8008. }
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(5, "cm"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8020. {
  8021. front: {
  8022. height: math.unit(8 + 3 / 12, "feet"),
  8023. weight: math.unit(424, "lbs"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/verin/front.svg",
  8027. extra: 1845 / 1550
  8028. }
  8029. },
  8030. frontArmored: {
  8031. height: math.unit(8 + 3 / 12, "feet"),
  8032. weight: math.unit(424, "lbs"),
  8033. name: "Front (Armored)",
  8034. image: {
  8035. source: "./media/characters/verin/front-armor.svg",
  8036. extra: 1845 / 1550,
  8037. bottom: 0.01
  8038. }
  8039. },
  8040. back: {
  8041. height: math.unit(8 + 3 / 12, "feet"),
  8042. weight: math.unit(424, "lbs"),
  8043. name: "Back",
  8044. image: {
  8045. source: "./media/characters/verin/back.svg",
  8046. bottom: 0.1,
  8047. extra: 1
  8048. }
  8049. },
  8050. foot: {
  8051. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8052. name: "Foot",
  8053. image: {
  8054. source: "./media/characters/verin/foot.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(8 + 3 / 12, "feet")
  8062. },
  8063. {
  8064. name: "Minimacro",
  8065. height: math.unit(21, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(626, "feet")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(2.718, "meters"),
  8079. weight: math.unit(150, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/sovrim-terraquian/front.svg",
  8083. extra: 1752/1689,
  8084. bottom: 36/1788
  8085. }
  8086. },
  8087. back: {
  8088. height: math.unit(2.718, "meters"),
  8089. weight: math.unit(150, "lbs"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/sovrim-terraquian/back.svg",
  8093. extra: 1698/1657,
  8094. bottom: 58/1756
  8095. }
  8096. },
  8097. tongue: {
  8098. height: math.unit(2.865, "feet"),
  8099. name: "Tongue",
  8100. image: {
  8101. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8102. }
  8103. },
  8104. hand: {
  8105. height: math.unit(1.61, "feet"),
  8106. name: "Hand",
  8107. image: {
  8108. source: "./media/characters/sovrim-terraquian/hand.svg"
  8109. }
  8110. },
  8111. foot: {
  8112. height: math.unit(1.05, "feet"),
  8113. name: "Foot",
  8114. image: {
  8115. source: "./media/characters/sovrim-terraquian/foot.svg"
  8116. }
  8117. },
  8118. footAlt: {
  8119. height: math.unit(0.88, "feet"),
  8120. name: "Foot (Alt)",
  8121. image: {
  8122. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Micro",
  8129. height: math.unit(2, "inches")
  8130. },
  8131. {
  8132. name: "Small",
  8133. height: math.unit(1, "meter")
  8134. },
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(Math.E, "meters"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(20, "meters")
  8143. },
  8144. {
  8145. name: "Macro+",
  8146. height: math.unit(400, "meters")
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(7, "feet"),
  8155. weight: math.unit(489, "lbs"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/reece-silvermane/front.svg",
  8159. bottom: 0.02,
  8160. extra: 1
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(1.5, "miles"),
  8168. default: true
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(6, "feet"),
  8177. weight: math.unit(78, "kg"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/kane/front.svg",
  8181. extra: 978 / 899
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(2.1, "m"),
  8189. },
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(1, "km"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(200, "kg"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/tegon/front.svg",
  8206. bottom: 0.01,
  8207. extra: 1
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(1, "inch")
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(6 + 3 / 12, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(300, "feet")
  8224. },
  8225. {
  8226. name: "Megamacro",
  8227. height: math.unit(69, "miles")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8233. {
  8234. side: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(2304, "lbs"),
  8237. name: "Side",
  8238. image: {
  8239. source: "./media/characters/arcturax/side.svg",
  8240. extra: 790 / 376,
  8241. bottom: 0.01
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Micro",
  8248. height: math.unit(2, "inch")
  8249. },
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(6, "feet")
  8253. },
  8254. {
  8255. name: "Macro",
  8256. height: math.unit(39, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Megamacro",
  8261. height: math.unit(7, "miles")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(6, "feet"),
  8270. weight: math.unit(50, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/sentri/front.svg",
  8274. extra: 1750 / 1570,
  8275. bottom: 0.025
  8276. }
  8277. },
  8278. frontAlt: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(50, "lbs"),
  8281. name: "Front (Alt)",
  8282. image: {
  8283. source: "./media/characters/sentri/front-alt.svg",
  8284. extra: 1750 / 1570,
  8285. bottom: 0.025
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(15, "feet"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(2500, "feet")
  8298. }
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(5 + 8 / 12, "feet"),
  8306. weight: math.unit(130, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/corvin/front.svg",
  8310. extra: 1803 / 1629
  8311. }
  8312. },
  8313. frontShirt: {
  8314. height: math.unit(5 + 8 / 12, "feet"),
  8315. weight: math.unit(130, "lbs"),
  8316. name: "Front (Shirt)",
  8317. image: {
  8318. source: "./media/characters/corvin/front-shirt.svg",
  8319. extra: 1803 / 1629
  8320. }
  8321. },
  8322. frontPoncho: {
  8323. height: math.unit(5 + 8 / 12, "feet"),
  8324. weight: math.unit(130, "lbs"),
  8325. name: "Front (Poncho)",
  8326. image: {
  8327. source: "./media/characters/corvin/front-poncho.svg",
  8328. extra: 1803 / 1629
  8329. }
  8330. },
  8331. side: {
  8332. height: math.unit(5 + 8 / 12, "feet"),
  8333. weight: math.unit(130, "lbs"),
  8334. name: "Side",
  8335. image: {
  8336. source: "./media/characters/corvin/side.svg",
  8337. extra: 1012 / 945
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(5 + 8 / 12, "feet"),
  8342. weight: math.unit(130, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/corvin/back.svg",
  8346. extra: 1803 / 1629
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Micro",
  8353. height: math.unit(3, "inches")
  8354. },
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(5 + 8 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Macro",
  8361. height: math.unit(300, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Megamacro",
  8366. height: math.unit(500, "miles")
  8367. }
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(6, "feet"),
  8375. weight: math.unit(135, "lbs"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/q/front.svg",
  8379. extra: 854 / 752,
  8380. bottom: 0.005
  8381. }
  8382. },
  8383. back: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(130, "lbs"),
  8386. name: "Back",
  8387. image: {
  8388. source: "./media/characters/q/back.svg",
  8389. extra: 854 / 752
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(90, "feet"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Extra Macro",
  8401. height: math.unit(300, "feet"),
  8402. },
  8403. {
  8404. name: "BIG WALF",
  8405. height: math.unit(750, "feet"),
  8406. },
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(150, "lbs"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/carley/front.svg",
  8418. extra: 3927 / 3540,
  8419. bottom: 29.2 / 735
  8420. }
  8421. }
  8422. },
  8423. [
  8424. {
  8425. name: "Normal",
  8426. height: math.unit(6 + 3 / 12, "feet")
  8427. },
  8428. {
  8429. name: "Macro",
  8430. height: math.unit(185, "feet"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Megamacro",
  8435. height: math.unit(8, "miles"),
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(3, "feet"),
  8444. weight: math.unit(28, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/citrine/front.svg"
  8448. }
  8449. }
  8450. },
  8451. [
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(3, "feet"),
  8455. default: true
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8461. {
  8462. front: {
  8463. height: math.unit(14, "feet"),
  8464. weight: math.unit(1450, "kg"),
  8465. capacity: math.unit(15, "people"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/aura-starwind/front.svg",
  8469. extra: 1440/1327,
  8470. bottom: 11/1451
  8471. }
  8472. },
  8473. side: {
  8474. height: math.unit(14, "feet"),
  8475. weight: math.unit(1450, "kg"),
  8476. capacity: math.unit(15, "people"),
  8477. name: "Side",
  8478. image: {
  8479. source: "./media/characters/aura-starwind/side.svg",
  8480. extra: 1654 / 1497
  8481. }
  8482. },
  8483. taur: {
  8484. height: math.unit(18, "feet"),
  8485. weight: math.unit(5500, "kg"),
  8486. capacity: math.unit(50, "people"),
  8487. name: "Taur",
  8488. image: {
  8489. source: "./media/characters/aura-starwind/taur.svg",
  8490. extra: 1760 / 1650
  8491. }
  8492. },
  8493. feral: {
  8494. height: math.unit(46, "feet"),
  8495. weight: math.unit(25000, "kg"),
  8496. capacity: math.unit(120, "people"),
  8497. name: "Feral",
  8498. image: {
  8499. source: "./media/characters/aura-starwind/feral.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(14, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(50, "meters")
  8512. },
  8513. {
  8514. name: "Megamacro",
  8515. height: math.unit(5000, "meters")
  8516. },
  8517. {
  8518. name: "Gigamacro",
  8519. height: math.unit(100000, "kilometers")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(2 + 7 / 12, "feet"),
  8528. weight: math.unit(32, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/rivet/front.svg",
  8532. extra: 1716 / 1658,
  8533. bottom: 0.03
  8534. }
  8535. },
  8536. foot: {
  8537. height: math.unit(0.551, "feet"),
  8538. name: "Rivet's Foot",
  8539. image: {
  8540. source: "./media/characters/rivet/foot.svg"
  8541. },
  8542. rename: true
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(1.5, "inches"),
  8549. },
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(2 + 7 / 12, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(85, "feet")
  8558. },
  8559. {
  8560. name: "Megamacro",
  8561. height: math.unit(2.2, "km")
  8562. }
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(5 + 9 / 12, "feet"),
  8570. weight: math.unit(150, "lbs"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/coffee/front.svg",
  8574. extra: 3666 / 3032,
  8575. bottom: 0.04
  8576. }
  8577. },
  8578. foot: {
  8579. height: math.unit(1.29, "feet"),
  8580. name: "Foot",
  8581. image: {
  8582. source: "./media/characters/coffee/foot.svg"
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Micro",
  8589. height: math.unit(2, "inches"),
  8590. },
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(5 + 9 / 12, "feet"),
  8594. default: true
  8595. },
  8596. {
  8597. name: "Macro",
  8598. height: math.unit(800, "feet")
  8599. },
  8600. {
  8601. name: "Megamacro",
  8602. height: math.unit(25, "miles")
  8603. }
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(200, "lbs"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/chari-gal/front.svg",
  8615. extra: 1568 / 1385,
  8616. bottom: 0.047
  8617. }
  8618. },
  8619. gigantamax: {
  8620. height: math.unit(6 * 16, "feet"),
  8621. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8622. name: "Gigantamax",
  8623. image: {
  8624. source: "./media/characters/chari-gal/gigantamax.svg",
  8625. extra: 1124 / 888,
  8626. bottom: 0.03
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(5 + 7 / 12, "feet")
  8634. },
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(200, "feet"),
  8638. default: true
  8639. }
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(150, "lbs"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/nova/front.svg",
  8651. extra: 5000 / 4722,
  8652. bottom: 0.02
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Micro-",
  8659. height: math.unit(0.8, "inches")
  8660. },
  8661. {
  8662. name: "Micro",
  8663. height: math.unit(2, "inches"),
  8664. default: true
  8665. },
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(3 + 1 / 12, "feet"),
  8673. weight: math.unit(21.7, "lbs"),
  8674. name: "Front",
  8675. image: {
  8676. source: "./media/characters/argent/front.svg",
  8677. extra: 1471 / 1331,
  8678. bottom: 100.8 / 1575.5
  8679. }
  8680. }
  8681. },
  8682. [
  8683. {
  8684. name: "Micro",
  8685. height: math.unit(2, "inches")
  8686. },
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(3 + 1 / 12, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(120, "feet")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8700. {
  8701. lamp: {
  8702. height: math.unit(7 * 1559 / 989, "feet"),
  8703. name: "Magic Lamp",
  8704. image: {
  8705. source: "./media/characters/mira-al-cul/lamp.svg",
  8706. extra: 1617 / 1559
  8707. }
  8708. },
  8709. front: {
  8710. height: math.unit(7, "feet"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/mira-al-cul/front.svg",
  8714. extra: 1044 / 990
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Heavily Restricted",
  8721. height: math.unit(7 * 1559 / 989, "feet")
  8722. },
  8723. {
  8724. name: "Freshly Freed",
  8725. height: math.unit(50 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "World Encompassing",
  8729. height: math.unit(10000 * 1559 / 989, "miles")
  8730. },
  8731. {
  8732. name: "Galactic",
  8733. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8734. },
  8735. {
  8736. name: "Palmed Universe",
  8737. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Multiversal Matriarch",
  8742. height: math.unit(8.87e10, "yottameters")
  8743. },
  8744. {
  8745. name: "Void Mother",
  8746. height: math.unit(3.14e110, "yottaparsecs")
  8747. },
  8748. {
  8749. name: "Toying with Transcendence",
  8750. height: math.unit(1e307, "meters")
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8756. {
  8757. front: {
  8758. height: math.unit(17 + 1 / 12, "feet"),
  8759. weight: math.unit(476.2 * 5, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/kuro-shi-uchū/front.svg",
  8763. extra: 2329 / 1835,
  8764. bottom: 0.02
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Micro",
  8771. height: math.unit(2, "inches")
  8772. },
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(12, "meters")
  8776. },
  8777. {
  8778. name: "Planetary",
  8779. height: math.unit(0.00929, "AU"),
  8780. default: true
  8781. },
  8782. {
  8783. name: "Universal",
  8784. height: math.unit(20, "gigaparsecs")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(5 + 2 / 12, "feet"),
  8793. weight: math.unit(120, "lbs"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/katherine/front.svg",
  8797. extra: 2075 / 1969
  8798. }
  8799. },
  8800. dress: {
  8801. height: math.unit(5 + 2 / 12, "feet"),
  8802. weight: math.unit(120, "lbs"),
  8803. name: "Dress",
  8804. image: {
  8805. source: "./media/characters/katherine/dress.svg",
  8806. extra: 2258 / 2064
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(1, "inches"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 2 / 12, "feet")
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(100, "meters")
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(80, "miles")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(7 + 8 / 12, "feet"),
  8835. weight: math.unit(250, "lbs"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/yevis/front.svg",
  8839. extra: 1938 / 1755
  8840. }
  8841. }
  8842. },
  8843. [
  8844. {
  8845. name: "Mortal",
  8846. height: math.unit(7 + 8 / 12, "feet")
  8847. },
  8848. {
  8849. name: "Battle",
  8850. height: math.unit(25 + 11 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Wrath",
  8854. height: math.unit(1654 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Planet Destroyer",
  8858. height: math.unit(12000, "miles")
  8859. },
  8860. {
  8861. name: "Galaxy Conqueror",
  8862. height: math.unit(1.45, "zettameters"),
  8863. default: true
  8864. },
  8865. {
  8866. name: "Universal War",
  8867. height: math.unit(184, "gigaparsecs")
  8868. },
  8869. {
  8870. name: "Eternity War",
  8871. height: math.unit(1.98e55, "yottaparsecs")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 8 / 12, "feet"),
  8880. weight: math.unit(63, "kg"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/xavier/front.svg",
  8884. extra: 944 / 883
  8885. }
  8886. },
  8887. frontStretch: {
  8888. height: math.unit(5 + 8 / 12, "feet"),
  8889. weight: math.unit(63, "kg"),
  8890. name: "Stretching",
  8891. image: {
  8892. source: "./media/characters/xavier/front-stretch.svg",
  8893. extra: 962 / 820
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(5 + 8 / 12, "feet")
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(100, "meters"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "McLargeHuge",
  8909. height: math.unit(10, "miles")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8915. {
  8916. front: {
  8917. height: math.unit(5 + 5 / 12, "feet"),
  8918. weight: math.unit(150, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/joshii/front.svg",
  8922. extra: 765 / 653,
  8923. bottom: 51 / 816
  8924. }
  8925. },
  8926. foot: {
  8927. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8928. name: "Foot",
  8929. image: {
  8930. source: "./media/characters/joshii/foot.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(2, "inches"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(5 + 5 / 12, "feet")
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(785, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(24.5, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/goddess-elizabeth/front.svg",
  8963. extra: 1800 / 1525,
  8964. bottom: 0.005
  8965. }
  8966. },
  8967. foot: {
  8968. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8969. name: "Foot",
  8970. image: {
  8971. source: "./media/characters/goddess-elizabeth/foot.svg"
  8972. }
  8973. },
  8974. mouth: {
  8975. height: math.unit(6, "feet"),
  8976. name: "Mouth",
  8977. image: {
  8978. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Micro",
  8985. height: math.unit(12, "feet")
  8986. },
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(80, "miles"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Macro",
  8994. height: math.unit(15000, "parsecs")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(5 + 9 / 12, "feet"),
  9003. weight: math.unit(144, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/kara/front.svg"
  9007. }
  9008. },
  9009. feet: {
  9010. height: math.unit(6 / 6.765, "feet"),
  9011. name: "Kara's Feet",
  9012. rename: true,
  9013. image: {
  9014. source: "./media/characters/kara/feet.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(5 + 9 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(174, "feet"),
  9026. default: true
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(18, "feet"),
  9035. weight: math.unit(4050, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/tyrone/front.svg",
  9039. extra: 2405 / 2270,
  9040. bottom: 182 / 2587
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(18, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(300, "feet")
  9053. },
  9054. {
  9055. name: "Megamacro",
  9056. height: math.unit(15, "km")
  9057. },
  9058. {
  9059. name: "Gigamacro",
  9060. height: math.unit(500, "km")
  9061. },
  9062. {
  9063. name: "Teramacro",
  9064. height: math.unit(0.5, "gigameters")
  9065. },
  9066. {
  9067. name: "Omnimacro",
  9068. height: math.unit(1e252, "yottauniverse")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(7 + 8 / 12, "feet"),
  9077. weight: math.unit(120, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/danny/front.svg",
  9081. extra: 1490 / 1350
  9082. }
  9083. },
  9084. back: {
  9085. height: math.unit(7 + 8 / 12, "feet"),
  9086. weight: math.unit(120, "lb"),
  9087. name: "Back",
  9088. image: {
  9089. source: "./media/characters/danny/back.svg",
  9090. extra: 1490 / 1350
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(7 + 8 / 12, "feet"),
  9098. default: true
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(3.5, "inches"),
  9107. weight: math.unit(19, "grams"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/mallow/front.svg",
  9111. extra: 471 / 431
  9112. }
  9113. },
  9114. back: {
  9115. height: math.unit(3.5, "inches"),
  9116. weight: math.unit(19, "grams"),
  9117. name: "Back",
  9118. image: {
  9119. source: "./media/characters/mallow/back.svg",
  9120. extra: 471 / 431
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(3.5, "inches"),
  9128. default: true
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(9, "feet"),
  9137. weight: math.unit(230, "kg"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/starry-aqua/front.svg"
  9141. }
  9142. },
  9143. back: {
  9144. height: math.unit(9, "feet"),
  9145. weight: math.unit(230, "kg"),
  9146. name: "Back",
  9147. image: {
  9148. source: "./media/characters/starry-aqua/back.svg"
  9149. }
  9150. },
  9151. hand: {
  9152. height: math.unit(9 * 0.1168, "feet"),
  9153. name: "Hand",
  9154. image: {
  9155. source: "./media/characters/starry-aqua/hand.svg"
  9156. }
  9157. },
  9158. foot: {
  9159. height: math.unit(9 * 0.18, "feet"),
  9160. name: "Foot",
  9161. image: {
  9162. source: "./media/characters/starry-aqua/foot.svg"
  9163. }
  9164. }
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(3, "inches")
  9170. },
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(9, "feet")
  9174. },
  9175. {
  9176. name: "Macro",
  9177. height: math.unit(300, "feet"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "Megamacro",
  9182. height: math.unit(3200, "feet")
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(15, "feet"),
  9191. weight: math.unit(5026, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/luka-towers/front.svg",
  9195. extra: 1269/1133,
  9196. bottom: 51/1320
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(15, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Minimacro",
  9208. height: math.unit(25, "feet")
  9209. },
  9210. {
  9211. name: "Macro",
  9212. height: math.unit(320, "feet")
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(35000, "feet")
  9217. },
  9218. {
  9219. name: "Gigamacro",
  9220. height: math.unit(4000, "miles")
  9221. },
  9222. {
  9223. name: "Teramacro",
  9224. height: math.unit(15000, "miles")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9230. {
  9231. front: {
  9232. height: math.unit(6, "feet"),
  9233. weight: math.unit(150, "lb"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/natalie-nightring/front.svg",
  9237. extra: 1,
  9238. bottom: 0.06
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Uh Oh",
  9245. height: math.unit(0.1, "mm")
  9246. },
  9247. {
  9248. name: "Small",
  9249. height: math.unit(3, "inches")
  9250. },
  9251. {
  9252. name: "Human Scale",
  9253. height: math.unit(6, "feet")
  9254. },
  9255. {
  9256. name: "Librarian",
  9257. height: math.unit(50, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Immense",
  9262. height: math.unit(200, "miles")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(180, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/danni-rosie/front.svg",
  9275. extra: 1260 / 1128,
  9276. bottom: 0.022
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Micro",
  9283. height: math.unit(2, "inches"),
  9284. default: true
  9285. },
  9286. ]
  9287. ))
  9288. characterMakers.push(() => makeCharacter(
  9289. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9290. {
  9291. front: {
  9292. height: math.unit(5 + 9 / 12, "feet"),
  9293. weight: math.unit(220, "lb"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/samantha-kruse/front.svg",
  9297. extra: (985 / 935),
  9298. bottom: 0.03
  9299. }
  9300. },
  9301. frontUndressed: {
  9302. height: math.unit(5 + 9 / 12, "feet"),
  9303. weight: math.unit(220, "lb"),
  9304. name: "Front (Undressed)",
  9305. image: {
  9306. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9307. extra: (973 / 923),
  9308. bottom: 0.025
  9309. }
  9310. },
  9311. fat: {
  9312. height: math.unit(5 + 9 / 12, "feet"),
  9313. weight: math.unit(900, "lb"),
  9314. name: "Front (Fat)",
  9315. image: {
  9316. source: "./media/characters/samantha-kruse/fat.svg",
  9317. extra: 2688 / 2561
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 9 / 12, "feet"),
  9325. default: true
  9326. }
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9331. {
  9332. back: {
  9333. height: math.unit(5 + 4 / 12, "feet"),
  9334. weight: math.unit(4963, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/amelia-rosie/back.svg",
  9338. extra: 1113 / 963,
  9339. bottom: 0.01
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Level 0",
  9346. height: math.unit(5 + 4 / 12, "feet")
  9347. },
  9348. {
  9349. name: "Level 1",
  9350. height: math.unit(164597, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Level 2",
  9355. height: math.unit(956243, "miles")
  9356. },
  9357. {
  9358. name: "Level 3",
  9359. height: math.unit(29421709423, "miles")
  9360. },
  9361. {
  9362. name: "Level 4",
  9363. height: math.unit(154, "lightyears")
  9364. },
  9365. {
  9366. name: "Level 5",
  9367. height: math.unit(4738272, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 6",
  9371. height: math.unit(145787152896, "lightyears")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(5 + 11 / 12, "feet"),
  9380. weight: math.unit(65, "kg"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/rook-kitara/front.svg",
  9384. extra: 1347 / 1274,
  9385. bottom: 0.005
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Totally Unfair",
  9392. height: math.unit(1.8, "mm")
  9393. },
  9394. {
  9395. name: "Lap Rookie",
  9396. height: math.unit(1.4, "feet")
  9397. },
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(5 + 11 / 12, "feet"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "How Did This Happen",
  9405. height: math.unit(80, "miles")
  9406. }
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9411. {
  9412. front: {
  9413. height: math.unit(7, "feet"),
  9414. weight: math.unit(300, "lb"),
  9415. name: "Front",
  9416. image: {
  9417. source: "./media/characters/pisces/front.svg",
  9418. extra: 2255 / 2115,
  9419. bottom: 0.03
  9420. }
  9421. },
  9422. back: {
  9423. height: math.unit(7, "feet"),
  9424. weight: math.unit(300, "lb"),
  9425. name: "Back",
  9426. image: {
  9427. source: "./media/characters/pisces/back.svg",
  9428. extra: 2146 / 2055,
  9429. bottom: 0.04
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(7, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Swimming Pool",
  9441. height: math.unit(12.2, "meters")
  9442. },
  9443. {
  9444. name: "Olympic Swimming Pool",
  9445. height: math.unit(56.3, "meters")
  9446. },
  9447. {
  9448. name: "Lake Superior",
  9449. height: math.unit(93900, "meters")
  9450. },
  9451. {
  9452. name: "Mediterranean Sea",
  9453. height: math.unit(644457, "meters")
  9454. },
  9455. {
  9456. name: "World's Oceans",
  9457. height: math.unit(4567491, "meters")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(2.3, "meters"),
  9466. weight: math.unit(120, "kg"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/zelas/front.svg"
  9470. }
  9471. },
  9472. side: {
  9473. height: math.unit(2.3, "meters"),
  9474. weight: math.unit(120, "kg"),
  9475. name: "Side",
  9476. image: {
  9477. source: "./media/characters/zelas/side.svg"
  9478. }
  9479. },
  9480. back: {
  9481. height: math.unit(2.3, "meters"),
  9482. weight: math.unit(120, "kg"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/zelas/back.svg"
  9486. }
  9487. },
  9488. foot: {
  9489. height: math.unit(1.116, "feet"),
  9490. name: "Foot",
  9491. image: {
  9492. source: "./media/characters/zelas/foot.svg"
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Normal",
  9499. height: math.unit(2.3, "meters")
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(30, "meters"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(1, "inch"),
  9513. weight: math.unit(0.21, "grams"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/talbot/front.svg",
  9517. extra: 594 / 544
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Micro",
  9524. height: math.unit(1, "inch"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9531. {
  9532. front: {
  9533. height: math.unit(3 + 3 / 12, "feet"),
  9534. weight: math.unit(51.8, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/fliss/front.svg",
  9538. extra: 840 / 640
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Teeny Tiny",
  9545. height: math.unit(1, "mm")
  9546. },
  9547. {
  9548. name: "Small",
  9549. height: math.unit(1, "inch"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Standard Sylveon",
  9554. height: math.unit(3 + 3 / 12, "feet")
  9555. },
  9556. {
  9557. name: "Large Nuisance",
  9558. height: math.unit(33, "feet")
  9559. },
  9560. {
  9561. name: "City Filler",
  9562. height: math.unit(3000, "feet")
  9563. },
  9564. {
  9565. name: "New Horizon",
  9566. height: math.unit(6000, "miles")
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(5, "cm"),
  9575. weight: math.unit(1.94, "g"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/fleta/front.svg",
  9579. extra: 835 / 803
  9580. }
  9581. },
  9582. back: {
  9583. height: math.unit(5, "cm"),
  9584. weight: math.unit(1.94, "g"),
  9585. name: "Back",
  9586. image: {
  9587. source: "./media/characters/fleta/back.svg",
  9588. extra: 835 / 803
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Micro",
  9595. height: math.unit(5, "cm"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(225, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/dominic/front.svg",
  9609. extra: 1770 / 1620,
  9610. bottom: 0.025
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(225, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/dominic/back.svg",
  9619. extra: 1745 / 1620,
  9620. bottom: 0.065
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Nano",
  9627. height: math.unit(0.1, "mm")
  9628. },
  9629. {
  9630. name: "Micro-",
  9631. height: math.unit(1, "mm")
  9632. },
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(4, "inches")
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(6 + 4 / 12, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(115, "feet")
  9645. },
  9646. {
  9647. name: "Macro+",
  9648. height: math.unit(955, "feet")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(8990, "feet")
  9653. },
  9654. {
  9655. name: "Gigmacro",
  9656. height: math.unit(9310, "miles")
  9657. },
  9658. {
  9659. name: "Teramacro",
  9660. height: math.unit(1567005010, "miles")
  9661. },
  9662. {
  9663. name: "Examacro",
  9664. height: math.unit(1425, "parsecs")
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(400, "feet"),
  9673. weight: math.unit(44444444, "lb"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/major-colonel/front.svg"
  9677. }
  9678. },
  9679. back: {
  9680. height: math.unit(400, "feet"),
  9681. weight: math.unit(44444444, "lb"),
  9682. name: "Back",
  9683. image: {
  9684. source: "./media/characters/major-colonel/back.svg"
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(400, "feet"),
  9692. default: true
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9698. {
  9699. catFront: {
  9700. height: math.unit(6, "feet"),
  9701. weight: math.unit(120, "lb"),
  9702. name: "Front (Cat Side)",
  9703. image: {
  9704. source: "./media/characters/axel-lycan/cat-front.svg",
  9705. extra: 430 / 402,
  9706. bottom: 43 / 472.35
  9707. }
  9708. },
  9709. catBack: {
  9710. height: math.unit(6, "feet"),
  9711. weight: math.unit(120, "lb"),
  9712. name: "Back (Cat Side)",
  9713. image: {
  9714. source: "./media/characters/axel-lycan/cat-back.svg",
  9715. extra: 447 / 419,
  9716. bottom: 23.3 / 469
  9717. }
  9718. },
  9719. wolfFront: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(120, "lb"),
  9722. name: "Front (Wolf Side)",
  9723. image: {
  9724. source: "./media/characters/axel-lycan/wolf-front.svg",
  9725. extra: 485 / 456,
  9726. bottom: 19 / 504
  9727. }
  9728. },
  9729. wolfBack: {
  9730. height: math.unit(6, "feet"),
  9731. weight: math.unit(120, "lb"),
  9732. name: "Back (Wolf Side)",
  9733. image: {
  9734. source: "./media/characters/axel-lycan/wolf-back.svg",
  9735. extra: 475 / 438,
  9736. bottom: 39.2 / 514
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(1, "km"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9750. {
  9751. front: {
  9752. height: math.unit(5 + 9 / 12, "feet"),
  9753. weight: math.unit(175, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/vanrel-hyena/front.svg",
  9757. extra: 1086 / 1010,
  9758. bottom: 0.04
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(5 + 9 / 12, "feet"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(6, "feet"),
  9775. weight: math.unit(103, "lb"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/abbott-absol/front.svg",
  9779. extra: 2010 / 1842
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Megamicro",
  9786. height: math.unit(0.1, "mm")
  9787. },
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(1, "inch")
  9791. },
  9792. {
  9793. name: "Normal",
  9794. height: math.unit(6, "feet"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(264, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/hector/front.svg",
  9808. extra: 2280 / 2130,
  9809. bottom: 0.07
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(12.25, "foot"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(160, "feet")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/sal/front.svg",
  9834. extra: 1846 / 1699,
  9835. bottom: 0.04
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(10, "miles"),
  9843. default: true
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9849. {
  9850. front: {
  9851. height: math.unit(3, "meters"),
  9852. weight: math.unit(450, "kg"),
  9853. name: "front",
  9854. image: {
  9855. source: "./media/characters/ranger/front.svg",
  9856. extra: 2401 / 2243,
  9857. bottom: 0.05
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(3, "meters"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(14, "feet"),
  9874. weight: math.unit(800, "kg"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/theresa/front.svg",
  9878. extra: 3575 / 3346,
  9879. bottom: 0.03
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(14, "feet"),
  9887. default: true
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9893. {
  9894. front: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(3, "kg"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/ine/front.svg",
  9900. extra: 678 / 539,
  9901. bottom: 0.023
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(2.265, "feet"),
  9909. default: true
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(5, "feet"),
  9918. weight: math.unit(30, "kg"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/vial/front.svg",
  9922. extra: 1365 / 1277,
  9923. bottom: 0.04
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(5, "feet"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9937. {
  9938. side: {
  9939. height: math.unit(3.4, "meters"),
  9940. weight: math.unit(1000, "lb"),
  9941. name: "Side",
  9942. image: {
  9943. source: "./media/characters/rovoska/side.svg",
  9944. extra: 4403 / 1515
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(3.4, "meters"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(8, "feet"),
  9961. weight: math.unit(315, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/gunner-rotthbauer/front.svg"
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(8, "feet"),
  9969. weight: math.unit(315, "lb"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/gunner-rotthbauer/back.svg"
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(3.5, "inches")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(8, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(250, "feet")
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(1, "AU")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(5 + 5 / 12, "feet"),
  10001. weight: math.unit(140, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/allatia/front.svg",
  10005. extra: 1227 / 1180,
  10006. bottom: 0.027
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(5 + 5 / 12, "feet")
  10014. },
  10015. {
  10016. name: "Macro",
  10017. height: math.unit(250, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(8, "miles")
  10023. }
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(120, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/tene/front.svg",
  10035. extra: 814/750,
  10036. bottom: 36/850
  10037. }
  10038. },
  10039. stomping: {
  10040. height: math.unit(2.025, "meters"),
  10041. weight: math.unit(120, "lb"),
  10042. name: "Stomping",
  10043. image: {
  10044. source: "./media/characters/tene/stomping.svg",
  10045. extra: 885/821,
  10046. bottom: 15/900
  10047. }
  10048. },
  10049. sitting: {
  10050. height: math.unit(1, "meter"),
  10051. weight: math.unit(120, "lb"),
  10052. name: "Sitting",
  10053. image: {
  10054. source: "./media/characters/tene/sitting.svg",
  10055. extra: 396/366,
  10056. bottom: 79/475
  10057. }
  10058. },
  10059. smiling: {
  10060. height: math.unit(1.2, "feet"),
  10061. name: "Smiling",
  10062. image: {
  10063. source: "./media/characters/tene/smiling.svg",
  10064. extra: 1364/1071,
  10065. bottom: 0/1364
  10066. }
  10067. },
  10068. smug: {
  10069. height: math.unit(1.3, "feet"),
  10070. name: "Smug",
  10071. image: {
  10072. source: "./media/characters/tene/smug.svg",
  10073. extra: 1323/1082,
  10074. bottom: 0/1323
  10075. }
  10076. },
  10077. feral: {
  10078. height: math.unit(3.9, "feet"),
  10079. weight: math.unit(250, "lb"),
  10080. name: "Feral",
  10081. image: {
  10082. source: "./media/characters/tene/feral.svg",
  10083. extra: 717 / 458,
  10084. bottom: 0.179
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(6, "feet")
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(300, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(5, "miles")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10106. {
  10107. side: {
  10108. height: math.unit(6, "feet"),
  10109. name: "Side",
  10110. image: {
  10111. source: "./media/characters/evander/side.svg",
  10112. extra: 877 / 477
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(0.83, "meters"),
  10120. default: true
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(12, "feet"),
  10129. weight: math.unit(1000, "lb"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10133. extra: 1762 / 1611
  10134. }
  10135. },
  10136. back: {
  10137. height: math.unit(12, "feet"),
  10138. weight: math.unit(1000, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10142. extra: 1762 / 1611
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(12, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Kaiju",
  10154. height: math.unit(150, "feet")
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/zero-alurus/front.svg"
  10167. }
  10168. },
  10169. back: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Back",
  10173. image: {
  10174. source: "./media/characters/zero-alurus/back.svg"
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(5 + 10 / 12, "feet")
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(60, "feet"),
  10186. default: true
  10187. },
  10188. {
  10189. name: "Macro+",
  10190. height: math.unit(450, "feet")
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(200, "lb"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/mega-shi/front.svg",
  10203. extra: 1279 / 1250,
  10204. bottom: 0.02
  10205. }
  10206. },
  10207. back: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(200, "lb"),
  10210. name: "Back",
  10211. image: {
  10212. source: "./media/characters/mega-shi/back.svg",
  10213. extra: 1279 / 1250,
  10214. bottom: 0.02
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(16 + 6 / 12, "feet")
  10222. },
  10223. {
  10224. name: "Third Dimension",
  10225. height: math.unit(40, "meters")
  10226. },
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(660, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(10, "miles")
  10235. },
  10236. {
  10237. name: "Planetary Launch",
  10238. height: math.unit(500, "miles")
  10239. },
  10240. {
  10241. name: "Interstellar",
  10242. height: math.unit(1e9, "miles")
  10243. },
  10244. {
  10245. name: "Leaving the Universe",
  10246. height: math.unit(1, "gigaparsec")
  10247. },
  10248. {
  10249. name: "Travelling Universes",
  10250. height: math.unit(30e15, "parsecs")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(5 + 4/12, "feet"),
  10259. weight: math.unit(120, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/odyssey/front.svg",
  10263. extra: 1747/1571,
  10264. bottom: 47/1794
  10265. }
  10266. },
  10267. side: {
  10268. height: math.unit(5.1, "feet"),
  10269. weight: math.unit(120, "lb"),
  10270. name: "Side",
  10271. image: {
  10272. source: "./media/characters/odyssey/side.svg",
  10273. extra: 1847/1619,
  10274. bottom: 47/1894
  10275. }
  10276. },
  10277. lounging: {
  10278. height: math.unit(1.464, "feet"),
  10279. weight: math.unit(120, "lb"),
  10280. name: "Lounging",
  10281. image: {
  10282. source: "./media/characters/odyssey/lounging.svg",
  10283. extra: 1235/837,
  10284. bottom: 551/1786
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(5 + 4 / 12, "feet")
  10292. },
  10293. {
  10294. name: "Macro",
  10295. height: math.unit(1, "km")
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(3000, "km")
  10300. },
  10301. {
  10302. name: "Gigamacro",
  10303. height: math.unit(1, "AU"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Omniversal",
  10308. height: math.unit(100e14, "lightyears")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(300, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/mekuto/front.svg",
  10321. extra: 921 / 832,
  10322. bottom: 0.03
  10323. }
  10324. },
  10325. hand: {
  10326. height: math.unit(6 / 10.24, "feet"),
  10327. name: "Hand",
  10328. image: {
  10329. source: "./media/characters/mekuto/hand.svg"
  10330. }
  10331. },
  10332. foot: {
  10333. height: math.unit(6 / 5.05, "feet"),
  10334. name: "Foot",
  10335. image: {
  10336. source: "./media/characters/mekuto/foot.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Minimicro",
  10343. height: math.unit(0.2, "inches")
  10344. },
  10345. {
  10346. name: "Micro",
  10347. height: math.unit(1.5, "inches")
  10348. },
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(5 + 11 / 12, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Minimacro",
  10356. height: math.unit(17 + 9 / 12, "feet")
  10357. },
  10358. {
  10359. name: "Macro",
  10360. height: math.unit(177.5, "feet")
  10361. },
  10362. {
  10363. name: "Megamacro",
  10364. height: math.unit(152, "miles")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(6.5, "inches"),
  10373. weight: math.unit(13, "oz"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/dafydd-tomos/front.svg",
  10377. extra: 2990 / 2603,
  10378. bottom: 0.03
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(6.5, "inches"),
  10386. default: true
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/splinter/front.svg",
  10399. extra: 2990 / 2882,
  10400. bottom: 0.04
  10401. }
  10402. },
  10403. back: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Back",
  10407. image: {
  10408. source: "./media/characters/splinter/back.svg",
  10409. extra: 2990 / 2882,
  10410. bottom: 0.04
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(6, "feet")
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(230, "meters"),
  10422. default: true
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(4 + 10 / 12, "feet"),
  10431. weight: math.unit(480, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/snow-gabumon/front.svg",
  10435. extra: 1140 / 963,
  10436. bottom: 0.058
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(4 + 10 / 12, "feet"),
  10441. weight: math.unit(480, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/snow-gabumon/back.svg",
  10445. extra: 1115 / 962,
  10446. bottom: 0.041
  10447. }
  10448. },
  10449. frontUndresed: {
  10450. height: math.unit(4 + 10 / 12, "feet"),
  10451. weight: math.unit(480, "lb"),
  10452. name: "Front (Undressed)",
  10453. image: {
  10454. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10455. extra: 1061 / 960,
  10456. bottom: 0.045
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(1, "inch")
  10464. },
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(4 + 10 / 12, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(200, "feet")
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(120, "miles")
  10477. },
  10478. {
  10479. name: "Gigamacro",
  10480. height: math.unit(9800, "miles")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(1.7, "meters"),
  10489. weight: math.unit(140, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/moody/front.svg",
  10493. extra: 3226 / 3007,
  10494. bottom: 0.087
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(1, "mm")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(1.7, "meters"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(80, "meters")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(500, "meters")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(150, "lb"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/zyas/front.svg",
  10527. extra: 1180 / 1120,
  10528. bottom: 0.045
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(10, "feet"),
  10536. default: true
  10537. },
  10538. {
  10539. name: "Macro",
  10540. height: math.unit(500, "feet")
  10541. },
  10542. {
  10543. name: "Megamacro",
  10544. height: math.unit(5, "miles")
  10545. },
  10546. {
  10547. name: "Teramacro",
  10548. height: math.unit(150000, "miles")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(150, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/cuon/front.svg",
  10561. extra: 1390 / 1320,
  10562. bottom: 0.008
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Micro",
  10569. height: math.unit(3, "inches")
  10570. },
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(18 + 9 / 12, "feet"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(360, "feet")
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(360, "miles")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(2.4, "meters"),
  10591. weight: math.unit(70, "kg"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/nyanuxk/front.svg",
  10595. extra: 1172 / 1084,
  10596. bottom: 0.065
  10597. }
  10598. },
  10599. side: {
  10600. height: math.unit(2.4, "meters"),
  10601. weight: math.unit(70, "kg"),
  10602. name: "Side",
  10603. image: {
  10604. source: "./media/characters/nyanuxk/side.svg",
  10605. extra: 1190 / 1132,
  10606. bottom: 0.007
  10607. }
  10608. },
  10609. back: {
  10610. height: math.unit(2.4, "meters"),
  10611. weight: math.unit(70, "kg"),
  10612. name: "Back",
  10613. image: {
  10614. source: "./media/characters/nyanuxk/back.svg",
  10615. extra: 1200 / 1141,
  10616. bottom: 0.015
  10617. }
  10618. },
  10619. foot: {
  10620. height: math.unit(0.52, "meters"),
  10621. name: "Foot",
  10622. image: {
  10623. source: "./media/characters/nyanuxk/foot.svg"
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Micro",
  10630. height: math.unit(2, "cm")
  10631. },
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(2.4, "meters"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Smaller Macro",
  10639. height: math.unit(120, "meters")
  10640. },
  10641. {
  10642. name: "Bigger Macro",
  10643. height: math.unit(1.2, "km")
  10644. },
  10645. {
  10646. name: "Megamacro",
  10647. height: math.unit(15, "kilometers")
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(2000, "km")
  10652. },
  10653. {
  10654. name: "Teramacro",
  10655. height: math.unit(500000, "km")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10661. {
  10662. side: {
  10663. height: math.unit(6, "feet"),
  10664. name: "Side",
  10665. image: {
  10666. source: "./media/characters/ailbhe/side.svg",
  10667. extra: 757 / 464,
  10668. bottom: 0.041
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(1.07, "meters"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(6, "feet"),
  10685. weight: math.unit(120, "kg"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/zevulfius/front.svg",
  10689. extra: 965 / 903
  10690. }
  10691. },
  10692. side: {
  10693. height: math.unit(6, "feet"),
  10694. weight: math.unit(120, "kg"),
  10695. name: "Side",
  10696. image: {
  10697. source: "./media/characters/zevulfius/side.svg",
  10698. extra: 939 / 900
  10699. }
  10700. },
  10701. back: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(120, "kg"),
  10704. name: "Back",
  10705. image: {
  10706. source: "./media/characters/zevulfius/back.svg",
  10707. extra: 918 / 854,
  10708. bottom: 0.005
  10709. }
  10710. },
  10711. foot: {
  10712. height: math.unit(6 / 3.72, "feet"),
  10713. name: "Foot",
  10714. image: {
  10715. source: "./media/characters/zevulfius/foot.svg"
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(750, "meters")
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(20, "km"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Gigamacro",
  10731. height: math.unit(2000, "km")
  10732. },
  10733. {
  10734. name: "Teramacro",
  10735. height: math.unit(250000, "km")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(100, "feet"),
  10744. weight: math.unit(350, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/rikes/front.svg",
  10748. extra: 1565 / 1483,
  10749. bottom: 0.017
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Macro",
  10756. height: math.unit(100, "feet"),
  10757. default: true
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(8, "feet"),
  10766. weight: math.unit(356, "lb"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/adam-silver-mane/front.svg",
  10770. extra: 1036/937,
  10771. bottom: 63/1099
  10772. }
  10773. },
  10774. side: {
  10775. height: math.unit(8, "feet"),
  10776. weight: math.unit(356, "lb"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/adam-silver-mane/side.svg",
  10780. extra: 997/901,
  10781. bottom: 59/1056
  10782. }
  10783. },
  10784. frontNsfw: {
  10785. height: math.unit(8, "feet"),
  10786. weight: math.unit(356, "lb"),
  10787. name: "Front (NSFW)",
  10788. image: {
  10789. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10790. extra: 1036/937,
  10791. bottom: 63/1099
  10792. }
  10793. },
  10794. sideNsfw: {
  10795. height: math.unit(8, "feet"),
  10796. weight: math.unit(356, "lb"),
  10797. name: "Side (NSFW)",
  10798. image: {
  10799. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10800. extra: 997/901,
  10801. bottom: 59/1056
  10802. }
  10803. },
  10804. dick: {
  10805. height: math.unit(2.1, "feet"),
  10806. name: "Dick",
  10807. image: {
  10808. source: "./media/characters/adam-silver-mane/dick.svg"
  10809. }
  10810. },
  10811. taur: {
  10812. height: math.unit(16, "feet"),
  10813. weight: math.unit(1500, "kg"),
  10814. name: "Taur",
  10815. image: {
  10816. source: "./media/characters/adam-silver-mane/taur.svg",
  10817. extra: 1713 / 1571,
  10818. bottom: 0.01
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(8, "feet")
  10826. },
  10827. {
  10828. name: "Minimacro",
  10829. height: math.unit(80, "feet")
  10830. },
  10831. {
  10832. name: "MDA",
  10833. height: math.unit(80, "meters")
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(800, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(8000, "feet")
  10843. },
  10844. {
  10845. name: "Gigamacro",
  10846. height: math.unit(800, "miles")
  10847. },
  10848. {
  10849. name: "Teramacro",
  10850. height: math.unit(80000, "miles")
  10851. },
  10852. {
  10853. name: "Celestial",
  10854. height: math.unit(8e6, "miles")
  10855. },
  10856. {
  10857. name: "Star Dragon",
  10858. height: math.unit(800000, "parsecs")
  10859. },
  10860. {
  10861. name: "Godly",
  10862. height: math.unit(800, "teraparsecs")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(150, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/ky'owin/front.svg",
  10875. extra: 3888 / 3068,
  10876. bottom: 0.015
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(6 + 8 / 12, "feet")
  10884. },
  10885. {
  10886. name: "Large",
  10887. height: math.unit(68, "feet")
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(132, "feet")
  10892. },
  10893. {
  10894. name: "Macro+",
  10895. height: math.unit(340, "feet")
  10896. },
  10897. {
  10898. name: "Macro++",
  10899. height: math.unit(680, "feet"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(1, "mile")
  10905. },
  10906. {
  10907. name: "Megamacro+",
  10908. height: math.unit(10, "miles")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(4, "feet"),
  10917. weight: math.unit(50, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/mal/front.svg",
  10921. extra: 785 / 724,
  10922. bottom: 0.07
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(4, "inches")
  10930. },
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(4, "feet"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(200, "feet")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(150, "lb"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/jordan-deware/front.svg",
  10951. extra: 1191 / 1012
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Nano",
  10958. height: math.unit(0.01, "mm")
  10959. },
  10960. {
  10961. name: "Minimicro",
  10962. height: math.unit(1, "mm")
  10963. },
  10964. {
  10965. name: "Micro",
  10966. height: math.unit(0.5, "inches")
  10967. },
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(4, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Minimacro",
  10975. height: math.unit(40, "meters")
  10976. },
  10977. {
  10978. name: "Small Macro",
  10979. height: math.unit(400, "meters")
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(4, "miles")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(40, "miles")
  10988. },
  10989. {
  10990. name: "Megamacro+",
  10991. height: math.unit(400, "miles")
  10992. },
  10993. {
  10994. name: "Gigamacro",
  10995. height: math.unit(400000, "miles")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11001. {
  11002. side: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(150, "lb"),
  11005. name: "Side",
  11006. image: {
  11007. source: "./media/characters/kimiko/side.svg",
  11008. extra: 600 / 358
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(15, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Macro",
  11020. height: math.unit(220, "feet")
  11021. },
  11022. {
  11023. name: "Macro+",
  11024. height: math.unit(1450, "feet")
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(11500, "feet")
  11029. },
  11030. {
  11031. name: "Gigamacro",
  11032. height: math.unit(9500, "miles")
  11033. },
  11034. {
  11035. name: "Teramacro",
  11036. height: math.unit(2208005005, "miles")
  11037. },
  11038. {
  11039. name: "Examacro",
  11040. height: math.unit(2750, "parsecs")
  11041. },
  11042. {
  11043. name: "Zettamacro",
  11044. height: math.unit(101500, "parsecs")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11050. {
  11051. front: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(70, "kg"),
  11054. name: "Front",
  11055. image: {
  11056. source: "./media/characters/andrew-sleepy/front.svg"
  11057. }
  11058. },
  11059. side: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(70, "kg"),
  11062. name: "Side",
  11063. image: {
  11064. source: "./media/characters/andrew-sleepy/side.svg"
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(1, "mm"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(150, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/judio/front.svg",
  11085. extra: 1258 / 1110
  11086. }
  11087. },
  11088. },
  11089. [
  11090. {
  11091. name: "Normal",
  11092. height: math.unit(5 + 6 / 12, "feet")
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(1000, "feet"),
  11097. default: true
  11098. },
  11099. {
  11100. name: "Megamacro",
  11101. height: math.unit(10, "miles")
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11107. {
  11108. frontDressed: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(68, "kg"),
  11111. name: "Front (Dressed)",
  11112. image: {
  11113. source: "./media/characters/nomaxice/front-dressed.svg",
  11114. extra: 1137/824,
  11115. bottom: 74/1211
  11116. }
  11117. },
  11118. frontShorts: {
  11119. height: math.unit(6, "feet"),
  11120. weight: math.unit(68, "kg"),
  11121. name: "Front (Shorts)",
  11122. image: {
  11123. source: "./media/characters/nomaxice/front-shorts.svg",
  11124. extra: 1137/824,
  11125. bottom: 74/1211
  11126. }
  11127. },
  11128. back: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(68, "kg"),
  11131. name: "Back",
  11132. image: {
  11133. source: "./media/characters/nomaxice/back.svg",
  11134. extra: 822/786,
  11135. bottom: 39/861
  11136. }
  11137. },
  11138. hand: {
  11139. height: math.unit(0.565, "feet"),
  11140. name: "Hand",
  11141. image: {
  11142. source: "./media/characters/nomaxice/hand.svg"
  11143. }
  11144. },
  11145. foot: {
  11146. height: math.unit(1, "feet"),
  11147. name: "Foot",
  11148. image: {
  11149. source: "./media/characters/nomaxice/foot.svg"
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Micro",
  11156. height: math.unit(8, "cm")
  11157. },
  11158. {
  11159. name: "Norm",
  11160. height: math.unit(1.82, "m")
  11161. },
  11162. {
  11163. name: "Norm+",
  11164. height: math.unit(8.8, "feet"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Big",
  11169. height: math.unit(8, "meters")
  11170. },
  11171. {
  11172. name: "Macro",
  11173. height: math.unit(18, "meters")
  11174. },
  11175. {
  11176. name: "Macro+",
  11177. height: math.unit(88, "meters")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(12, "feet"),
  11186. weight: math.unit(1.5, "tons"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/dydros/front.svg",
  11190. extra: 863 / 800,
  11191. bottom: 0.015
  11192. }
  11193. },
  11194. back: {
  11195. height: math.unit(12, "feet"),
  11196. weight: math.unit(1.5, "tons"),
  11197. name: "Back",
  11198. image: {
  11199. source: "./media/characters/dydros/back.svg",
  11200. extra: 900 / 843,
  11201. bottom: 0.005
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(12, "feet"),
  11209. default: true
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(6, "feet"),
  11218. weight: math.unit(100, "kg"),
  11219. name: "Front",
  11220. image: {
  11221. source: "./media/characters/riggi/front.svg",
  11222. extra: 5787 / 5303
  11223. }
  11224. },
  11225. hyper: {
  11226. height: math.unit(6 * 5 / 3, "feet"),
  11227. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11228. name: "Hyper",
  11229. image: {
  11230. source: "./media/characters/riggi/hyper.svg",
  11231. extra: 3595 / 3485
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Small Macro",
  11238. height: math.unit(50, "feet")
  11239. },
  11240. {
  11241. name: "Default",
  11242. height: math.unit(200, "feet"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Loom",
  11247. height: math.unit(10000, "feet")
  11248. },
  11249. {
  11250. name: "Cruising Altitude",
  11251. height: math.unit(30000, "feet")
  11252. },
  11253. {
  11254. name: "Megamacro",
  11255. height: math.unit(100, "miles")
  11256. },
  11257. {
  11258. name: "Continent Sized",
  11259. height: math.unit(2800, "miles")
  11260. },
  11261. {
  11262. name: "Earth Sized",
  11263. height: math.unit(8000, "miles")
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(6, "feet"),
  11272. weight: math.unit(250, "lb"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/alexi/front.svg",
  11276. extra: 3483 / 3291,
  11277. bottom: 0.04
  11278. }
  11279. },
  11280. back: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(250, "lb"),
  11283. name: "Back",
  11284. image: {
  11285. source: "./media/characters/alexi/back.svg",
  11286. extra: 3533 / 3356,
  11287. bottom: 0.021
  11288. }
  11289. },
  11290. frontTransforming: {
  11291. height: math.unit(8.58, "feet"),
  11292. weight: math.unit(1300, "lb"),
  11293. name: "Transforming",
  11294. image: {
  11295. source: "./media/characters/alexi/front-transforming.svg",
  11296. extra: 437 / 409,
  11297. bottom: 19 / 458.66
  11298. }
  11299. },
  11300. frontTransformed: {
  11301. height: math.unit(12.5, "feet"),
  11302. weight: math.unit(4000, "lb"),
  11303. name: "Transformed",
  11304. image: {
  11305. source: "./media/characters/alexi/front-transformed.svg",
  11306. extra: 639 / 614,
  11307. bottom: 30.55 / 671
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(14, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Minimacro",
  11319. height: math.unit(30, "meters")
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(500, "meters")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(9000, "km")
  11328. },
  11329. {
  11330. name: "Teramacro",
  11331. height: math.unit(384000, "km")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/kayroo/front.svg",
  11344. extra: 1153 / 1038,
  11345. bottom: 0.06
  11346. }
  11347. },
  11348. foot: {
  11349. height: math.unit(6, "feet"),
  11350. weight: math.unit(150, "lb"),
  11351. name: "Foot",
  11352. image: {
  11353. source: "./media/characters/kayroo/foot.svg"
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(8, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Minimacro",
  11365. height: math.unit(250, "feet")
  11366. },
  11367. {
  11368. name: "Macro",
  11369. height: math.unit(2800, "feet")
  11370. },
  11371. {
  11372. name: "Megamacro",
  11373. height: math.unit(5200, "feet")
  11374. },
  11375. {
  11376. name: "Gigamacro",
  11377. height: math.unit(27000, "feet")
  11378. },
  11379. {
  11380. name: "Omega",
  11381. height: math.unit(45000, "feet")
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(18, "feet"),
  11390. weight: math.unit(5800, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/rhys/front.svg",
  11394. extra: 3386 / 3090,
  11395. bottom: 0.07
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Normal",
  11402. height: math.unit(18, "feet"),
  11403. default: true
  11404. },
  11405. {
  11406. name: "Working Size",
  11407. height: math.unit(200, "feet")
  11408. },
  11409. {
  11410. name: "Demolition Size",
  11411. height: math.unit(2000, "feet")
  11412. },
  11413. {
  11414. name: "Maximum Licensed Size",
  11415. height: math.unit(5, "miles")
  11416. },
  11417. {
  11418. name: "Maximum Observed Size",
  11419. height: math.unit(10, "yottameters")
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(6, "feet"),
  11428. weight: math.unit(250, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/toto/front.svg",
  11432. extra: 527 / 479,
  11433. bottom: 0.05
  11434. }
  11435. },
  11436. },
  11437. [
  11438. {
  11439. name: "Micro",
  11440. height: math.unit(3, "feet")
  11441. },
  11442. {
  11443. name: "Normal",
  11444. height: math.unit(10, "feet")
  11445. },
  11446. {
  11447. name: "Macro",
  11448. height: math.unit(150, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Megamacro",
  11453. height: math.unit(1200, "feet")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "King", species: ["lion"], tags: ["anthro"] },
  11459. {
  11460. back: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Back",
  11464. image: {
  11465. source: "./media/characters/king/back.svg"
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Micro",
  11472. height: math.unit(2, "inches")
  11473. },
  11474. {
  11475. name: "Normal",
  11476. height: math.unit(8, "feet")
  11477. },
  11478. {
  11479. name: "Macro",
  11480. height: math.unit(200, "feet"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(50, "miles")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(11, "feet"),
  11494. weight: math.unit(1400, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/cordite/front.svg",
  11498. extra: 1919/1827,
  11499. bottom: 40/1959
  11500. }
  11501. },
  11502. side: {
  11503. height: math.unit(11, "feet"),
  11504. weight: math.unit(1400, "lb"),
  11505. name: "Side",
  11506. image: {
  11507. source: "./media/characters/cordite/side.svg",
  11508. extra: 1908/1793,
  11509. bottom: 38/1946
  11510. }
  11511. },
  11512. back: {
  11513. height: math.unit(11, "feet"),
  11514. weight: math.unit(1400, "lb"),
  11515. name: "Back",
  11516. image: {
  11517. source: "./media/characters/cordite/back.svg",
  11518. extra: 1938/1837,
  11519. bottom: 10/1948
  11520. }
  11521. },
  11522. feral: {
  11523. height: math.unit(2, "feet"),
  11524. weight: math.unit(90, "lb"),
  11525. name: "Feral",
  11526. image: {
  11527. source: "./media/characters/cordite/feral.svg",
  11528. extra: 1260 / 755,
  11529. bottom: 0.05
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(11, "feet"),
  11537. default: true
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11543. {
  11544. front: {
  11545. height: math.unit(6, "feet"),
  11546. weight: math.unit(150, "lb"),
  11547. name: "Front",
  11548. image: {
  11549. source: "./media/characters/pianostrong/front.svg",
  11550. extra: 6577 / 6254,
  11551. bottom: 0.02
  11552. }
  11553. },
  11554. side: {
  11555. height: math.unit(6, "feet"),
  11556. weight: math.unit(150, "lb"),
  11557. name: "Side",
  11558. image: {
  11559. source: "./media/characters/pianostrong/side.svg",
  11560. extra: 6106 / 5730
  11561. }
  11562. },
  11563. back: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Back",
  11567. image: {
  11568. source: "./media/characters/pianostrong/back.svg",
  11569. extra: 6085 / 5733,
  11570. bottom: 0.01
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(100, "feet")
  11578. },
  11579. {
  11580. name: "Macro+",
  11581. height: math.unit(300, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Macro++",
  11586. height: math.unit(1000, "feet")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/kona/front.svg",
  11599. extra: 2960 / 2629,
  11600. bottom: 0.005
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(11 + 8 / 12, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(850, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Macro+",
  11616. height: math.unit(1.5, "km"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Megamacro",
  11621. height: math.unit(80, "miles")
  11622. },
  11623. {
  11624. name: "Gigamacro",
  11625. height: math.unit(3500, "miles")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11631. {
  11632. side: {
  11633. height: math.unit(1.9, "meters"),
  11634. weight: math.unit(326, "kg"),
  11635. name: "Side",
  11636. image: {
  11637. source: "./media/characters/levi/side.svg",
  11638. extra: 1704 / 1334,
  11639. bottom: 0.02
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(1.9, "meters"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(20, "meters")
  11652. },
  11653. {
  11654. name: "Macro+",
  11655. height: math.unit(200, "meters")
  11656. },
  11657. {
  11658. name: "Megamacro",
  11659. height: math.unit(2, "km")
  11660. },
  11661. {
  11662. name: "Megamacro+",
  11663. height: math.unit(20, "km")
  11664. },
  11665. {
  11666. name: "Gigamacro",
  11667. height: math.unit(2500, "km")
  11668. },
  11669. {
  11670. name: "Gigamacro+",
  11671. height: math.unit(120000, "km")
  11672. },
  11673. {
  11674. name: "Teramacro",
  11675. height: math.unit(7.77e6, "km")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(6 + 4/12, "feet"),
  11684. weight: math.unit(190, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/bmc/front.svg",
  11688. extra: 1626/1472,
  11689. bottom: 79/1705
  11690. }
  11691. },
  11692. back: {
  11693. height: math.unit(6 + 4/12, "feet"),
  11694. weight: math.unit(190, "lb"),
  11695. name: "Back",
  11696. image: {
  11697. source: "./media/characters/bmc/back.svg",
  11698. extra: 1640/1479,
  11699. bottom: 45/1685
  11700. }
  11701. },
  11702. frontArmor: {
  11703. height: math.unit(6 + 4/12, "feet"),
  11704. weight: math.unit(190, "lb"),
  11705. name: "Front-armor",
  11706. image: {
  11707. source: "./media/characters/bmc/front-armor.svg",
  11708. extra: 1538/1468,
  11709. bottom: 79/1617
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Human-sized",
  11716. height: math.unit(6 + 4 / 12, "feet")
  11717. },
  11718. {
  11719. name: "Interactive Size",
  11720. height: math.unit(25, "feet")
  11721. },
  11722. {
  11723. name: "Small",
  11724. height: math.unit(250, "feet")
  11725. },
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(1250, "feet"),
  11729. default: true
  11730. },
  11731. {
  11732. name: "Good Day",
  11733. height: math.unit(88, "miles")
  11734. },
  11735. {
  11736. name: "Largest Measured Size",
  11737. height: math.unit(105.960, "galaxies")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(20, "feet"),
  11746. weight: math.unit(2016, "kg"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/sven-the-kaiju/front.svg",
  11750. extra: 1277/1250,
  11751. bottom: 35/1312
  11752. }
  11753. },
  11754. mouth: {
  11755. height: math.unit(1.85, "feet"),
  11756. name: "Mouth",
  11757. image: {
  11758. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Fairy",
  11765. height: math.unit(6, "inches")
  11766. },
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(20, "feet"),
  11770. default: true
  11771. },
  11772. {
  11773. name: "Rampage",
  11774. height: math.unit(200, "feet")
  11775. },
  11776. {
  11777. name: "Archfey Forest Guardian",
  11778. height: math.unit(1, "mile")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11784. {
  11785. front: {
  11786. height: math.unit(4, "meters"),
  11787. weight: math.unit(2, "tons"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/marik/front.svg",
  11791. extra: 1057 / 1003,
  11792. bottom: 0.08
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(4, "meters"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(20, "meters")
  11805. },
  11806. {
  11807. name: "Megamacro",
  11808. height: math.unit(50, "km")
  11809. },
  11810. {
  11811. name: "Gigamacro",
  11812. height: math.unit(100, "km")
  11813. },
  11814. {
  11815. name: "Alpha Macro",
  11816. height: math.unit(7.88e7, "yottameters")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(110, "lb"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/mel/front.svg",
  11829. extra: 736 / 617,
  11830. bottom: 0.017
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Pico",
  11837. height: math.unit(3, "pm")
  11838. },
  11839. {
  11840. name: "Nano",
  11841. height: math.unit(3, "nm")
  11842. },
  11843. {
  11844. name: "Micro",
  11845. height: math.unit(0.3, "mm"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Micro+",
  11850. height: math.unit(3, "mm")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(5 + 10.5 / 12, "feet")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11860. {
  11861. kaiju: {
  11862. height: math.unit(1.75, "meters"),
  11863. weight: math.unit(55, "kg"),
  11864. name: "Kaiju",
  11865. image: {
  11866. source: "./media/characters/lykonous/kaiju.svg",
  11867. extra: 1055 / 946,
  11868. bottom: 0.135
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(2.5, "meters"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Kaiju Dragon",
  11880. height: math.unit(60, "meters")
  11881. },
  11882. {
  11883. name: "Mega Kaiju",
  11884. height: math.unit(120, "km")
  11885. },
  11886. {
  11887. name: "Giga Kaiju",
  11888. height: math.unit(200, "megameters")
  11889. },
  11890. {
  11891. name: "Terra Kaiju",
  11892. height: math.unit(400, "gigameters")
  11893. },
  11894. {
  11895. name: "Kaiju Dragon God",
  11896. height: math.unit(13000, "exaparsecs")
  11897. },
  11898. ]
  11899. ))
  11900. characterMakers.push(() => makeCharacter(
  11901. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11902. {
  11903. front: {
  11904. height: math.unit(6, "feet"),
  11905. weight: math.unit(150, "lb"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/blü/front.svg",
  11909. extra: 1883 / 1564,
  11910. bottom: 0.031
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Normal",
  11917. height: math.unit(13, "feet"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Big Boi",
  11922. height: math.unit(150, "meters")
  11923. },
  11924. {
  11925. name: "Mini Stomper",
  11926. height: math.unit(300, "meters")
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(1000, "meters")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(11000, "meters")
  11935. },
  11936. {
  11937. name: "Gigamacro",
  11938. height: math.unit(11000, "km")
  11939. },
  11940. {
  11941. name: "Teramacro",
  11942. height: math.unit(420000, "km")
  11943. },
  11944. {
  11945. name: "Examacro",
  11946. height: math.unit(120, "parsecs")
  11947. },
  11948. {
  11949. name: "God Tho",
  11950. height: math.unit(98000000000, "parsecs")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11956. {
  11957. taurFront: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(200, "lb"),
  11960. name: "Taur (Front)",
  11961. image: {
  11962. source: "./media/characters/scales/taur-front.svg",
  11963. extra: 1,
  11964. bottom: 0.05
  11965. }
  11966. },
  11967. taurBack: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(200, "lb"),
  11970. name: "Taur (Back)",
  11971. image: {
  11972. source: "./media/characters/scales/taur-back.svg",
  11973. extra: 1,
  11974. bottom: 0.08
  11975. }
  11976. },
  11977. anthro: {
  11978. height: math.unit(6 * 7 / 12, "feet"),
  11979. weight: math.unit(100, "lb"),
  11980. name: "Anthro",
  11981. image: {
  11982. source: "./media/characters/scales/anthro.svg",
  11983. extra: 1,
  11984. bottom: 0.06
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(12, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(150, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/koragos/front.svg",
  12005. extra: 841 / 794,
  12006. bottom: 0.035
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(150, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/koragos/back.svg",
  12015. extra: 841 / 810,
  12016. bottom: 0.022
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(6 + 11 / 12, "feet"),
  12024. default: true
  12025. },
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(490, "feet")
  12029. },
  12030. {
  12031. name: "Megamacro",
  12032. height: math.unit(10, "miles")
  12033. },
  12034. {
  12035. name: "Gigamacro",
  12036. height: math.unit(50, "miles")
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12042. {
  12043. front: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(250, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/xylrem/front.svg",
  12049. extra: 3323 / 3050,
  12050. bottom: 0.065
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Micro",
  12057. height: math.unit(4, "feet")
  12058. },
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(16, "feet"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(2720, "feet")
  12067. },
  12068. {
  12069. name: "Megamacro",
  12070. height: math.unit(25000, "miles")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(8, "feet"),
  12079. weight: math.unit(250, "kg"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/ikideru/front.svg",
  12083. extra: 930 / 870,
  12084. bottom: 0.087
  12085. }
  12086. },
  12087. back: {
  12088. height: math.unit(8, "feet"),
  12089. weight: math.unit(250, "kg"),
  12090. name: "Back",
  12091. image: {
  12092. source: "./media/characters/ikideru/back.svg",
  12093. extra: 919 / 852,
  12094. bottom: 0.055
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Rare",
  12101. height: math.unit(8, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Playful Loom",
  12106. height: math.unit(80, "feet")
  12107. },
  12108. {
  12109. name: "City Leaner",
  12110. height: math.unit(230, "feet")
  12111. },
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(2500, "feet")
  12115. },
  12116. {
  12117. name: "Gigamacro",
  12118. height: math.unit(26400, "feet")
  12119. },
  12120. {
  12121. name: "Tectonic Shifter",
  12122. height: math.unit(1.7, "megameters")
  12123. },
  12124. {
  12125. name: "Planet Carer",
  12126. height: math.unit(21, "megameters")
  12127. },
  12128. {
  12129. name: "God",
  12130. height: math.unit(11157.22, "parsecs")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(120, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/neo/front.svg"
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Micro",
  12149. height: math.unit(2, "inches"),
  12150. default: true
  12151. },
  12152. {
  12153. name: "Human Size",
  12154. height: math.unit(5 + 8 / 12, "feet")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(13 + 10 / 12, "feet"),
  12163. weight: math.unit(5320, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/chauncey-chantz/front.svg",
  12167. extra: 1587 / 1435,
  12168. bottom: 0.02
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Normal",
  12175. height: math.unit(13 + 10 / 12, "feet"),
  12176. default: true
  12177. },
  12178. {
  12179. name: "Macro",
  12180. height: math.unit(45, "feet")
  12181. },
  12182. {
  12183. name: "Megamacro",
  12184. height: math.unit(250, "miles")
  12185. },
  12186. {
  12187. name: "Planetary",
  12188. height: math.unit(10000, "miles")
  12189. },
  12190. {
  12191. name: "Galactic",
  12192. height: math.unit(40000, "parsecs")
  12193. },
  12194. {
  12195. name: "Universal",
  12196. height: math.unit(1, "yottameter")
  12197. },
  12198. ]
  12199. ))
  12200. characterMakers.push(() => makeCharacter(
  12201. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12202. {
  12203. front: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Front",
  12207. image: {
  12208. source: "./media/characters/epifox/front.svg",
  12209. extra: 1,
  12210. bottom: 0.075
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Micro",
  12217. height: math.unit(6, "inches")
  12218. },
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(12, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(3810, "feet")
  12227. },
  12228. {
  12229. name: "Megamacro",
  12230. height: math.unit(500, "miles")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(1.8796, "m"),
  12239. weight: math.unit(230, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/colin-t/front.svg",
  12243. extra: 1272 / 1193,
  12244. bottom: 0.07
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Micro",
  12251. height: math.unit(0.571, "meters")
  12252. },
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(1.8796, "meters"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Tall",
  12260. height: math.unit(4, "meters")
  12261. },
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(67.241, "meters")
  12265. },
  12266. {
  12267. name: "Megamacro",
  12268. height: math.unit(371.856, "meters")
  12269. },
  12270. {
  12271. name: "Planetary",
  12272. height: math.unit(12631.5689, "km")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(1.85, "meters"),
  12281. weight: math.unit(80, "kg"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/matvei/front.svg",
  12285. extra: 614 / 594,
  12286. bottom: 0.01
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(1.85, "meters"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(5 + 9 / 12, "feet"),
  12303. weight: math.unit(70, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/quincy/front.svg",
  12307. extra: 3041 / 2751
  12308. }
  12309. },
  12310. back: {
  12311. height: math.unit(5 + 9 / 12, "feet"),
  12312. weight: math.unit(70, "lb"),
  12313. name: "Back",
  12314. image: {
  12315. source: "./media/characters/quincy/back.svg",
  12316. extra: 3041 / 2751
  12317. }
  12318. },
  12319. flying: {
  12320. height: math.unit(5 + 4 / 12, "feet"),
  12321. weight: math.unit(70, "lb"),
  12322. name: "Flying",
  12323. image: {
  12324. source: "./media/characters/quincy/flying.svg",
  12325. extra: 1044 / 930
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Micro",
  12332. height: math.unit(3, "cm")
  12333. },
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(5 + 9 / 12, "feet")
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(200, "meters"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Megamacro",
  12345. height: math.unit(1000, "meters")
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(3 + 11/12, "feet"),
  12354. weight: math.unit(50, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/vanrel/front.svg",
  12358. extra: 1104/949,
  12359. bottom: 52/1156
  12360. }
  12361. },
  12362. back: {
  12363. height: math.unit(3 + 11/12, "feet"),
  12364. weight: math.unit(50, "lb"),
  12365. name: "Back",
  12366. image: {
  12367. source: "./media/characters/vanrel/back.svg",
  12368. extra: 1119/976,
  12369. bottom: 37/1156
  12370. }
  12371. },
  12372. tome: {
  12373. height: math.unit(1.35, "feet"),
  12374. weight: math.unit(10, "lb"),
  12375. name: "Vanrel's Tome",
  12376. rename: true,
  12377. image: {
  12378. source: "./media/characters/vanrel/tome.svg"
  12379. }
  12380. },
  12381. beans: {
  12382. height: math.unit(0.89, "feet"),
  12383. name: "Beans",
  12384. image: {
  12385. source: "./media/characters/vanrel/beans.svg"
  12386. }
  12387. },
  12388. },
  12389. [
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(3 + 11/12, "feet"),
  12393. default: true
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(7 + 5 / 12, "feet"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/kuiper-vanrel/front.svg",
  12405. extra: 1219/1169,
  12406. bottom: 69/1288
  12407. }
  12408. },
  12409. back: {
  12410. height: math.unit(7 + 5 / 12, "feet"),
  12411. name: "Back",
  12412. image: {
  12413. source: "./media/characters/kuiper-vanrel/back.svg",
  12414. extra: 1236/1193,
  12415. bottom: 27/1263
  12416. }
  12417. },
  12418. foot: {
  12419. height: math.unit(0.55, "meters"),
  12420. name: "Foot",
  12421. image: {
  12422. source: "./media/characters/kuiper-vanrel/foot.svg",
  12423. }
  12424. },
  12425. battle: {
  12426. height: math.unit(6.824, "feet"),
  12427. name: "Battle",
  12428. image: {
  12429. source: "./media/characters/kuiper-vanrel/battle.svg",
  12430. extra: 1466 / 1327,
  12431. bottom: 29 / 1492.5
  12432. }
  12433. },
  12434. meerkui: {
  12435. height: math.unit(18, "inches"),
  12436. name: "Meerkui",
  12437. image: {
  12438. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12439. extra: 1354/1289,
  12440. bottom: 69/1423
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(7 + 5 / 12, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(8 + 5 / 12, "feet"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/keset-vanrel/front.svg",
  12460. extra: 1231/1148,
  12461. bottom: 82/1313
  12462. }
  12463. },
  12464. back: {
  12465. height: math.unit(8 + 5 / 12, "feet"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/keset-vanrel/back.svg",
  12469. extra: 1240/1174,
  12470. bottom: 33/1273
  12471. }
  12472. },
  12473. hand: {
  12474. height: math.unit(0.6, "meters"),
  12475. name: "Hand",
  12476. image: {
  12477. source: "./media/characters/keset-vanrel/hand.svg"
  12478. }
  12479. },
  12480. foot: {
  12481. height: math.unit(0.94978, "meters"),
  12482. name: "Foot",
  12483. image: {
  12484. source: "./media/characters/keset-vanrel/foot.svg"
  12485. }
  12486. },
  12487. battle: {
  12488. height: math.unit(7.408, "feet"),
  12489. name: "Battle",
  12490. image: {
  12491. source: "./media/characters/keset-vanrel/battle.svg",
  12492. extra: 1890 / 1386,
  12493. bottom: 73.28 / 1970
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(8 + 5 / 12, "feet"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(6, "feet"),
  12510. weight: math.unit(150, "lb"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/neos/front.svg",
  12514. extra: 1696 / 992,
  12515. bottom: 0.14
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Normal",
  12522. height: math.unit(54, "cm"),
  12523. default: true
  12524. },
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(100, "m")
  12528. },
  12529. {
  12530. name: "Megamacro",
  12531. height: math.unit(10, "km")
  12532. },
  12533. {
  12534. name: "Megamacro+",
  12535. height: math.unit(100, "km")
  12536. },
  12537. {
  12538. name: "Gigamacro",
  12539. height: math.unit(100, "Mm")
  12540. },
  12541. {
  12542. name: "Teramacro",
  12543. height: math.unit(100, "Gm")
  12544. },
  12545. {
  12546. name: "Examacro",
  12547. height: math.unit(100, "Em")
  12548. },
  12549. {
  12550. name: "Godly",
  12551. height: math.unit(10000, "Ym")
  12552. },
  12553. {
  12554. name: "Beyond Godly",
  12555. height: math.unit(25, "multiverses")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12561. {
  12562. feminine: {
  12563. height: math.unit(5, "feet"),
  12564. weight: math.unit(100, "lb"),
  12565. name: "Feminine",
  12566. image: {
  12567. source: "./media/characters/sammy-mouse/feminine.svg",
  12568. extra: 2526 / 2425,
  12569. bottom: 0.123
  12570. }
  12571. },
  12572. masculine: {
  12573. height: math.unit(5, "feet"),
  12574. weight: math.unit(100, "lb"),
  12575. name: "Masculine",
  12576. image: {
  12577. source: "./media/characters/sammy-mouse/masculine.svg",
  12578. extra: 2526 / 2425,
  12579. bottom: 0.123
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Micro",
  12586. height: math.unit(5, "inches")
  12587. },
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(5, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Macro",
  12595. height: math.unit(60, "feet")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(4, "feet"),
  12604. weight: math.unit(50, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/kole/front.svg",
  12608. extra: 1423 / 1303,
  12609. bottom: 0.025
  12610. }
  12611. },
  12612. back: {
  12613. height: math.unit(4, "feet"),
  12614. weight: math.unit(50, "lb"),
  12615. name: "Back",
  12616. image: {
  12617. source: "./media/characters/kole/back.svg",
  12618. extra: 1426 / 1280,
  12619. bottom: 0.02
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(4, "feet"),
  12627. default: true
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(2.5, "feet"),
  12636. weight: math.unit(32, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/rufran/front.svg",
  12640. extra: 1313/885,
  12641. bottom: 94/1407
  12642. }
  12643. },
  12644. side: {
  12645. height: math.unit(2.5, "feet"),
  12646. weight: math.unit(32, "lb"),
  12647. name: "Side",
  12648. image: {
  12649. source: "./media/characters/rufran/side.svg",
  12650. extra: 1109/852,
  12651. bottom: 118/1227
  12652. }
  12653. },
  12654. back: {
  12655. height: math.unit(2.5, "feet"),
  12656. weight: math.unit(32, "lb"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/rufran/back.svg",
  12660. extra: 1280/878,
  12661. bottom: 131/1411
  12662. }
  12663. },
  12664. mouth: {
  12665. height: math.unit(1.13, "feet"),
  12666. name: "Mouth",
  12667. image: {
  12668. source: "./media/characters/rufran/mouth.svg"
  12669. }
  12670. },
  12671. foot: {
  12672. height: math.unit(1.33, "feet"),
  12673. name: "Foot",
  12674. image: {
  12675. source: "./media/characters/rufran/foot.svg"
  12676. }
  12677. },
  12678. koboldFront: {
  12679. height: math.unit(2 + 6 / 12, "feet"),
  12680. weight: math.unit(20, "lb"),
  12681. name: "Front (Kobold)",
  12682. image: {
  12683. source: "./media/characters/rufran/kobold-front.svg",
  12684. extra: 2041 / 1839,
  12685. bottom: 0.055
  12686. }
  12687. },
  12688. koboldBack: {
  12689. height: math.unit(2 + 6 / 12, "feet"),
  12690. weight: math.unit(20, "lb"),
  12691. name: "Back (Kobold)",
  12692. image: {
  12693. source: "./media/characters/rufran/kobold-back.svg",
  12694. extra: 2054 / 1839,
  12695. bottom: 0.01
  12696. }
  12697. },
  12698. koboldHand: {
  12699. height: math.unit(0.2166, "meters"),
  12700. name: "Hand (Kobold)",
  12701. image: {
  12702. source: "./media/characters/rufran/kobold-hand.svg"
  12703. }
  12704. },
  12705. koboldFoot: {
  12706. height: math.unit(0.185, "meters"),
  12707. name: "Foot (Kobold)",
  12708. image: {
  12709. source: "./media/characters/rufran/kobold-foot.svg"
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Micro",
  12716. height: math.unit(1, "inch")
  12717. },
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(2 + 6 / 12, "feet"),
  12721. default: true
  12722. },
  12723. {
  12724. name: "Big",
  12725. height: math.unit(60, "feet")
  12726. },
  12727. {
  12728. name: "Macro",
  12729. height: math.unit(325, "feet")
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12735. {
  12736. front: {
  12737. height: math.unit(0.3, "meters"),
  12738. weight: math.unit(3.5, "kg"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/chip/front.svg",
  12742. extra: 748 / 674
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Micro",
  12749. height: math.unit(1, "inch"),
  12750. default: true
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12756. {
  12757. side: {
  12758. height: math.unit(2.3, "meters"),
  12759. weight: math.unit(3500, "lb"),
  12760. name: "Side",
  12761. image: {
  12762. source: "./media/characters/torvid/side.svg",
  12763. extra: 1972 / 722,
  12764. bottom: 0.035
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(2.3, "meters"),
  12772. default: true
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(2, "meters"),
  12781. weight: math.unit(150.5, "kg"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/susan/front.svg",
  12785. extra: 693 / 635,
  12786. bottom: 0.05
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Megamacro",
  12793. height: math.unit(505, "miles"),
  12794. default: true
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/raindrops/front.svg",
  12807. extra: 2655 / 2461,
  12808. bottom: 49 / 2705
  12809. }
  12810. },
  12811. back: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Back",
  12815. image: {
  12816. source: "./media/characters/raindrops/back.svg",
  12817. extra: 2574 / 2400,
  12818. bottom: 65 / 2634
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Micro",
  12825. height: math.unit(6, "inches")
  12826. },
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(6 + 2 / 12, "feet")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(131, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Megamacro",
  12838. height: math.unit(15, "miles")
  12839. },
  12840. {
  12841. name: "Gigamacro",
  12842. height: math.unit(4000, "miles")
  12843. },
  12844. {
  12845. name: "Teramacro",
  12846. height: math.unit(315000, "miles")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(2.794, "meters"),
  12855. weight: math.unit(325, "kg"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/tezwa/front.svg",
  12859. extra: 2083 / 1906,
  12860. bottom: 0.031
  12861. }
  12862. },
  12863. foot: {
  12864. height: math.unit(0.687, "meters"),
  12865. name: "Foot",
  12866. image: {
  12867. source: "./media/characters/tezwa/foot.svg"
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(9 + 2 / 12, "feet"),
  12875. default: true
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(58, "feet"),
  12884. weight: math.unit(89000, "lb"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/typhus/front.svg",
  12888. extra: 816 / 800,
  12889. bottom: 0.065
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Macro",
  12896. height: math.unit(58, "feet"),
  12897. default: true
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(12, "feet"),
  12906. weight: math.unit(6, "tonnes"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/lyra-von-wulf/front.svg",
  12910. extra: 1,
  12911. bottom: 0.10
  12912. }
  12913. },
  12914. frontMecha: {
  12915. height: math.unit(12, "feet"),
  12916. weight: math.unit(12, "tonnes"),
  12917. name: "Front (Mecha)",
  12918. image: {
  12919. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12920. extra: 1,
  12921. bottom: 0.042
  12922. }
  12923. },
  12924. maw: {
  12925. height: math.unit(2.2, "feet"),
  12926. name: "Maw",
  12927. image: {
  12928. source: "./media/characters/lyra-von-wulf/maw.svg"
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(12, "feet"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Classic",
  12940. height: math.unit(50, "feet")
  12941. },
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(500, "feet")
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(1, "mile")
  12949. },
  12950. {
  12951. name: "Gigamacro",
  12952. height: math.unit(400, "miles")
  12953. },
  12954. {
  12955. name: "Teramacro",
  12956. height: math.unit(22000, "miles")
  12957. },
  12958. {
  12959. name: "Solarmacro",
  12960. height: math.unit(8600000, "miles")
  12961. },
  12962. {
  12963. name: "Galactic",
  12964. height: math.unit(1057000, "lightyears")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6 + 10 / 12, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/dixon/front.svg",
  12977. extra: 3361 / 3209,
  12978. bottom: 0.01
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(6 + 10 / 12, "feet"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Big",
  12990. height: math.unit(12, "meters")
  12991. },
  12992. {
  12993. name: "Macro",
  12994. height: math.unit(500, "meters")
  12995. },
  12996. {
  12997. name: "Megamacro",
  12998. height: math.unit(2, "km")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(185, "cm"),
  13007. weight: math.unit(68, "kg"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/kauko/front.svg",
  13011. extra: 1455 / 1421,
  13012. bottom: 0.03
  13013. }
  13014. },
  13015. back: {
  13016. height: math.unit(185, "cm"),
  13017. weight: math.unit(68, "kg"),
  13018. name: "Back",
  13019. image: {
  13020. source: "./media/characters/kauko/back.svg",
  13021. extra: 1455 / 1421,
  13022. bottom: 0.004
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(185, "cm"),
  13030. default: true
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(150, "kg"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/varg/front.svg",
  13043. extra: 1108 / 1018,
  13044. bottom: 0.0375
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(5, "meters")
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(200, "meters")
  13056. },
  13057. {
  13058. name: "Megamacro",
  13059. height: math.unit(20, "kilometers")
  13060. },
  13061. {
  13062. name: "True Size",
  13063. height: math.unit(211, "km"),
  13064. default: true
  13065. },
  13066. {
  13067. name: "Gigamacro",
  13068. height: math.unit(1000, "km")
  13069. },
  13070. {
  13071. name: "Gigamacro+",
  13072. height: math.unit(8000, "km")
  13073. },
  13074. {
  13075. name: "Teramacro",
  13076. height: math.unit(1000000, "km")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(7 + 7 / 12, "feet"),
  13085. weight: math.unit(267, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/dayza/front.svg",
  13089. extra: 1262 / 1200,
  13090. bottom: 0.035
  13091. }
  13092. },
  13093. side: {
  13094. height: math.unit(7 + 7 / 12, "feet"),
  13095. weight: math.unit(267, "lb"),
  13096. name: "Side",
  13097. image: {
  13098. source: "./media/characters/dayza/side.svg",
  13099. extra: 1295 / 1245,
  13100. bottom: 0.05
  13101. }
  13102. },
  13103. back: {
  13104. height: math.unit(7 + 7 / 12, "feet"),
  13105. weight: math.unit(267, "lb"),
  13106. name: "Back",
  13107. image: {
  13108. source: "./media/characters/dayza/back.svg",
  13109. extra: 1241 / 1170
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(7 + 7 / 12, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(155, "feet")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6 + 5 / 12, "feet"),
  13130. weight: math.unit(160, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/xanthos/front.svg",
  13134. extra: 1,
  13135. bottom: 0.04
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(6 + 5 / 12, "feet"),
  13140. weight: math.unit(160, "lb"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/xanthos/back.svg",
  13144. extra: 1,
  13145. bottom: 0.03
  13146. }
  13147. },
  13148. hand: {
  13149. height: math.unit(0.928, "feet"),
  13150. name: "Hand",
  13151. image: {
  13152. source: "./media/characters/xanthos/hand.svg"
  13153. }
  13154. },
  13155. foot: {
  13156. height: math.unit(1.286, "feet"),
  13157. name: "Foot",
  13158. image: {
  13159. source: "./media/characters/xanthos/foot.svg"
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(6 + 5 / 12, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Normal+",
  13171. height: math.unit(6, "meters")
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(40, "feet")
  13176. },
  13177. {
  13178. name: "Macro+",
  13179. height: math.unit(200, "meters")
  13180. },
  13181. {
  13182. name: "Megamacro",
  13183. height: math.unit(20, "km")
  13184. },
  13185. {
  13186. name: "Megamacro+",
  13187. height: math.unit(100, "km")
  13188. },
  13189. {
  13190. name: "Gigamacro",
  13191. height: math.unit(200, "megameters")
  13192. },
  13193. {
  13194. name: "Gigamacro+",
  13195. height: math.unit(1.5, "gigameters")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6 + 3 / 12, "feet"),
  13204. weight: math.unit(215, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/grynn/front.svg",
  13208. extra: 4627 / 4209,
  13209. bottom: 0.047
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Micro",
  13216. height: math.unit(6, "inches")
  13217. },
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(6 + 3 / 12, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Big",
  13225. height: math.unit(104, "feet")
  13226. },
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(944, "feet")
  13230. },
  13231. {
  13232. name: "Macro+",
  13233. height: math.unit(9480, "feet")
  13234. },
  13235. {
  13236. name: "Megamacro",
  13237. height: math.unit(78752, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro+",
  13241. height: math.unit(630128, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro++",
  13245. height: math.unit(3150695, "feet")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13251. {
  13252. front: {
  13253. height: math.unit(7 + 5 / 12, "feet"),
  13254. weight: math.unit(450, "lb"),
  13255. name: "Front",
  13256. image: {
  13257. source: "./media/characters/mocha-aura/front.svg",
  13258. extra: 1907 / 1817,
  13259. bottom: 0.04
  13260. }
  13261. },
  13262. back: {
  13263. height: math.unit(7 + 5 / 12, "feet"),
  13264. weight: math.unit(450, "lb"),
  13265. name: "Back",
  13266. image: {
  13267. source: "./media/characters/mocha-aura/back.svg",
  13268. extra: 1900 / 1825,
  13269. bottom: 0.045
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Nano",
  13276. height: math.unit(1, "nm")
  13277. },
  13278. {
  13279. name: "Megamicro",
  13280. height: math.unit(1, "mm")
  13281. },
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(3, "inches")
  13285. },
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(7 + 5 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(30, "feet")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(3500, "feet")
  13298. },
  13299. {
  13300. name: "Teramacro",
  13301. height: math.unit(500000, "miles")
  13302. },
  13303. {
  13304. name: "Petamacro",
  13305. height: math.unit(50000000000000000, "parsecs")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/ilisha-devya/front.svg",
  13318. extra: 1053/1049,
  13319. bottom: 270/1323
  13320. }
  13321. },
  13322. back: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Back",
  13326. image: {
  13327. source: "./media/characters/ilisha-devya/back.svg",
  13328. extra: 1131/1128,
  13329. bottom: 39/1170
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(500, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(10, "miles")
  13342. },
  13343. {
  13344. name: "Gigamacro",
  13345. height: math.unit(100000, "miles")
  13346. },
  13347. {
  13348. name: "Examacro",
  13349. height: math.unit(1e9, "lightyears")
  13350. },
  13351. {
  13352. name: "Omniversal",
  13353. height: math.unit(1e33, "lightyears")
  13354. },
  13355. {
  13356. name: "Beyond Infinite",
  13357. height: math.unit(1e100, "lightyears")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13363. {
  13364. Side: {
  13365. height: math.unit(6, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Side",
  13368. image: {
  13369. source: "./media/characters/mira/side.svg",
  13370. extra: 900 / 799,
  13371. bottom: 0.02
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Human Size",
  13378. height: math.unit(6, "feet")
  13379. },
  13380. {
  13381. name: "Macro",
  13382. height: math.unit(100, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Megamacro",
  13387. height: math.unit(10, "miles")
  13388. },
  13389. {
  13390. name: "Gigamacro",
  13391. height: math.unit(25000, "miles")
  13392. },
  13393. {
  13394. name: "Teramacro",
  13395. height: math.unit(300, "AU")
  13396. },
  13397. {
  13398. name: "Full Size",
  13399. height: math.unit(4.5e10, "lightyears")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/holly/front.svg",
  13412. extra: 639 / 606
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(6, "feet"),
  13417. weight: math.unit(150, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/holly/back.svg",
  13421. extra: 623 / 598
  13422. }
  13423. },
  13424. frontWorking: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(150, "lb"),
  13427. name: "Front (Working)",
  13428. image: {
  13429. source: "./media/characters/holly/front-working.svg",
  13430. extra: 607 / 577,
  13431. bottom: 0.048
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(12 + 3 / 12, "feet"),
  13439. default: true
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/porter/front.svg",
  13452. extra: 1,
  13453. bottom: 0.01
  13454. }
  13455. },
  13456. frontRobes: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(150, "lb"),
  13459. name: "Front (Robes)",
  13460. image: {
  13461. source: "./media/characters/porter/front-robes.svg",
  13462. extra: 1.01,
  13463. bottom: 0.01
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(11 + 9 / 12, "feet"),
  13471. default: true
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13477. {
  13478. legendary: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Legendary",
  13482. image: {
  13483. source: "./media/characters/lucy/legendary.svg",
  13484. extra: 1355 / 1100,
  13485. bottom: 0.045
  13486. }
  13487. },
  13488. },
  13489. [
  13490. {
  13491. name: "Legendary",
  13492. height: math.unit(86882 * 2, "miles"),
  13493. default: true
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(150, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/drusilla/front.svg",
  13506. extra: 678 / 635,
  13507. bottom: 0.03
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(6, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/drusilla/back.svg",
  13516. extra: 678 / 635,
  13517. bottom: 0.005
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(100, "feet")
  13525. },
  13526. {
  13527. name: "Canon Height",
  13528. height: math.unit(2000, "feet"),
  13529. default: true
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(180, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/renard-thatch/front.svg",
  13542. extra: 2411 / 2275,
  13543. bottom: 0.01
  13544. }
  13545. },
  13546. frontPosing: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(180, "lb"),
  13549. name: "Front (Posing)",
  13550. image: {
  13551. source: "./media/characters/renard-thatch/front-posing.svg",
  13552. extra: 2381 / 2261,
  13553. bottom: 0.01
  13554. }
  13555. },
  13556. back: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(180, "lb"),
  13559. name: "Back",
  13560. image: {
  13561. source: "./media/characters/renard-thatch/back.svg",
  13562. extra: 2428 / 2288
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Micro",
  13569. height: math.unit(3, "inches")
  13570. },
  13571. {
  13572. name: "Default",
  13573. height: math.unit(6, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(75, "feet")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(1450, "feet"),
  13587. weight: math.unit(1.21e6, "tons"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/sekvra/front.svg",
  13591. extra: 1193/1190,
  13592. bottom: 78/1271
  13593. }
  13594. },
  13595. side: {
  13596. height: math.unit(1450, "feet"),
  13597. weight: math.unit(1.21e6, "tons"),
  13598. name: "Side",
  13599. image: {
  13600. source: "./media/characters/sekvra/side.svg",
  13601. extra: 1193/1190,
  13602. bottom: 52/1245
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(1450, "feet"),
  13607. weight: math.unit(1.21e6, "tons"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/sekvra/back.svg",
  13611. extra: 1219/1216,
  13612. bottom: 21/1240
  13613. }
  13614. },
  13615. frontClothed: {
  13616. height: math.unit(1450, "feet"),
  13617. weight: math.unit(1.21e6, "tons"),
  13618. name: "Front (Clothed)",
  13619. image: {
  13620. source: "./media/characters/sekvra/front-clothed.svg",
  13621. extra: 1192/1189,
  13622. bottom: 79/1271
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Macro",
  13629. height: math.unit(1450, "feet"),
  13630. default: true
  13631. },
  13632. {
  13633. name: "Megamacro",
  13634. height: math.unit(15000, "feet")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/carmine/front.svg",
  13647. extra: 1,
  13648. bottom: 0.035
  13649. }
  13650. },
  13651. frontArmor: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front (Armor)",
  13655. image: {
  13656. source: "./media/characters/carmine/front-armor.svg",
  13657. extra: 1,
  13658. bottom: 0.035
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Large",
  13665. height: math.unit(1, "mile")
  13666. },
  13667. {
  13668. name: "Huge",
  13669. height: math.unit(40, "miles"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Colossal",
  13674. height: math.unit(2500, "miles")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13680. {
  13681. front: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/elyssia/front.svg",
  13687. extra: 2201 / 2035,
  13688. bottom: 0.05
  13689. }
  13690. },
  13691. frontClothed: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front (Clothed)",
  13695. image: {
  13696. source: "./media/characters/elyssia/front-clothed.svg",
  13697. extra: 2201 / 2035,
  13698. bottom: 0.05
  13699. }
  13700. },
  13701. back: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Back",
  13705. image: {
  13706. source: "./media/characters/elyssia/back.svg",
  13707. extra: 2201 / 2035,
  13708. bottom: 0.013
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Smaller",
  13715. height: math.unit(150, "feet")
  13716. },
  13717. {
  13718. name: "Standard",
  13719. height: math.unit(1400, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Distracted",
  13724. height: math.unit(15000, "feet")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(7 + 4/12, "feet"),
  13733. weight: math.unit(690, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/geno-maxwell/front.svg",
  13737. extra: 984/856,
  13738. bottom: 87/1071
  13739. }
  13740. },
  13741. back: {
  13742. height: math.unit(7 + 4/12, "feet"),
  13743. weight: math.unit(690, "lb"),
  13744. name: "Back",
  13745. image: {
  13746. source: "./media/characters/geno-maxwell/back.svg",
  13747. extra: 981/854,
  13748. bottom: 57/1038
  13749. }
  13750. },
  13751. frontCostume: {
  13752. height: math.unit(7 + 4/12, "feet"),
  13753. weight: math.unit(690, "lb"),
  13754. name: "Front (Costume)",
  13755. image: {
  13756. source: "./media/characters/geno-maxwell/front-costume.svg",
  13757. extra: 984/856,
  13758. bottom: 87/1071
  13759. }
  13760. },
  13761. backcostume: {
  13762. height: math.unit(7 + 4/12, "feet"),
  13763. weight: math.unit(690, "lb"),
  13764. name: "Back (Costume)",
  13765. image: {
  13766. source: "./media/characters/geno-maxwell/back-costume.svg",
  13767. extra: 981/854,
  13768. bottom: 57/1038
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Micro",
  13775. height: math.unit(3, "inches")
  13776. },
  13777. {
  13778. name: "Normal",
  13779. height: math.unit(7 + 4 / 12, "feet"),
  13780. default: true
  13781. },
  13782. {
  13783. name: "Macro",
  13784. height: math.unit(220, "feet")
  13785. },
  13786. {
  13787. name: "Megamacro",
  13788. height: math.unit(11, "miles")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(7 + 4/12, "feet"),
  13797. weight: math.unit(750, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/regena-maxwell/front.svg",
  13801. extra: 984/856,
  13802. bottom: 87/1071
  13803. }
  13804. },
  13805. back: {
  13806. height: math.unit(7 + 4/12, "feet"),
  13807. weight: math.unit(750, "lb"),
  13808. name: "Back",
  13809. image: {
  13810. source: "./media/characters/regena-maxwell/back.svg",
  13811. extra: 981/854,
  13812. bottom: 57/1038
  13813. }
  13814. },
  13815. frontCostume: {
  13816. height: math.unit(7 + 4/12, "feet"),
  13817. weight: math.unit(750, "lb"),
  13818. name: "Front (Costume)",
  13819. image: {
  13820. source: "./media/characters/regena-maxwell/front-costume.svg",
  13821. extra: 984/856,
  13822. bottom: 87/1071
  13823. }
  13824. },
  13825. backcostume: {
  13826. height: math.unit(7 + 4/12, "feet"),
  13827. weight: math.unit(750, "lb"),
  13828. name: "Back (Costume)",
  13829. image: {
  13830. source: "./media/characters/regena-maxwell/back-costume.svg",
  13831. extra: 981/854,
  13832. bottom: 57/1038
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(7 + 4 / 12, "feet"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(220, "feet")
  13845. },
  13846. {
  13847. name: "Megamacro",
  13848. height: math.unit(11, "miles")
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13861. extra: 860 / 690,
  13862. bottom: 0.03
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(1.7, "meters"),
  13870. default: true
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/quilly/front.svg",
  13883. extra: 890 / 776
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Gigamacro",
  13890. height: math.unit(404090, "miles"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13897. {
  13898. front: {
  13899. height: math.unit(7 + 8 / 12, "feet"),
  13900. weight: math.unit(350, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/tempest/front.svg",
  13904. extra: 1175 / 1086,
  13905. bottom: 0.02
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(7 + 8 / 12, "feet"),
  13913. default: true
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13919. {
  13920. side: {
  13921. height: math.unit(4 + 5 / 12, "feet"),
  13922. weight: math.unit(80, "lb"),
  13923. name: "Side",
  13924. image: {
  13925. source: "./media/characters/rodger/side.svg",
  13926. extra: 1235 / 1118
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Micro",
  13933. height: math.unit(1, "inch")
  13934. },
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(4 + 5 / 12, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(120, "feet")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/danyel/front.svg",
  13955. extra: 1185 / 1123,
  13956. bottom: 0.05
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Shrunken",
  13963. height: math.unit(0.5, "mm")
  13964. },
  13965. {
  13966. name: "Micro",
  13967. height: math.unit(1, "mm"),
  13968. default: true
  13969. },
  13970. {
  13971. name: "Upsized",
  13972. height: math.unit(5 + 5 / 12, "feet")
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(5 + 6 / 12, "feet"),
  13981. weight: math.unit(200, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/vivian-bijoux/front.svg",
  13985. extra: 1217/1209,
  13986. bottom: 76/1293
  13987. }
  13988. },
  13989. back: {
  13990. height: math.unit(5 + 6 / 12, "feet"),
  13991. weight: math.unit(200, "lb"),
  13992. name: "Back",
  13993. image: {
  13994. source: "./media/characters/vivian-bijoux/back.svg",
  13995. extra: 1214/1208,
  13996. bottom: 51/1265
  13997. }
  13998. },
  13999. dressed: {
  14000. height: math.unit(5 + 6 / 12, "feet"),
  14001. weight: math.unit(200, "lb"),
  14002. name: "Dressed",
  14003. image: {
  14004. source: "./media/characters/vivian-bijoux/dressed.svg",
  14005. extra: 1217/1209,
  14006. bottom: 76/1293
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(5 + 6 / 12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Bad Dream",
  14018. height: math.unit(500, "feet")
  14019. },
  14020. {
  14021. name: "Nightmare",
  14022. height: math.unit(500, "miles")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6 + 1 / 12, "feet"),
  14031. weight: math.unit(260, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/zeta/front.svg",
  14035. extra: 1968 / 1889,
  14036. bottom: 0.06
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(6 + 1 / 12, "feet"),
  14041. weight: math.unit(260, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/zeta/back.svg",
  14045. extra: 1944 / 1858,
  14046. bottom: 0.03
  14047. }
  14048. },
  14049. hand: {
  14050. height: math.unit(1.112, "feet"),
  14051. name: "Hand",
  14052. image: {
  14053. source: "./media/characters/zeta/hand.svg"
  14054. }
  14055. },
  14056. foot: {
  14057. height: math.unit(1.48, "feet"),
  14058. name: "Foot",
  14059. image: {
  14060. source: "./media/characters/zeta/foot.svg"
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Micro",
  14067. height: math.unit(6, "inches")
  14068. },
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(6 + 1 / 12, "feet"),
  14072. default: true
  14073. },
  14074. {
  14075. name: "Macro",
  14076. height: math.unit(20, "feet")
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(150, "lb"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/jamie-larsen/front.svg",
  14089. extra: 962 / 933,
  14090. bottom: 0.02
  14091. }
  14092. },
  14093. back: {
  14094. height: math.unit(6, "feet"),
  14095. weight: math.unit(150, "lb"),
  14096. name: "Back",
  14097. image: {
  14098. source: "./media/characters/jamie-larsen/back.svg",
  14099. extra: 997 / 946
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(28 + 7 / 12, "feet"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Macro+",
  14111. height: math.unit(180, "feet")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(10, "miles")
  14116. },
  14117. {
  14118. name: "Gigamacro",
  14119. height: math.unit(200000, "miles")
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(120, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/vance/front.svg",
  14132. extra: 1980 / 1890,
  14133. bottom: 0.09
  14134. }
  14135. },
  14136. back: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(120, "lb"),
  14139. name: "Back",
  14140. image: {
  14141. source: "./media/characters/vance/back.svg",
  14142. extra: 2081 / 1994,
  14143. bottom: 0.014
  14144. }
  14145. },
  14146. hand: {
  14147. height: math.unit(0.88, "feet"),
  14148. name: "Hand",
  14149. image: {
  14150. source: "./media/characters/vance/hand.svg"
  14151. }
  14152. },
  14153. foot: {
  14154. height: math.unit(0.64, "feet"),
  14155. name: "Foot",
  14156. image: {
  14157. source: "./media/characters/vance/foot.svg"
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Small",
  14164. height: math.unit(90, "feet"),
  14165. default: true
  14166. },
  14167. {
  14168. name: "Macro",
  14169. height: math.unit(100, "meters")
  14170. },
  14171. {
  14172. name: "Megamacro",
  14173. height: math.unit(15, "miles")
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(180, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/xochitl/front.svg",
  14186. extra: 2297 / 2261,
  14187. bottom: 0.065
  14188. }
  14189. },
  14190. back: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(180, "lb"),
  14193. name: "Back",
  14194. image: {
  14195. source: "./media/characters/xochitl/back.svg",
  14196. extra: 2386 / 2354,
  14197. bottom: 0.01
  14198. }
  14199. },
  14200. foot: {
  14201. height: math.unit(6 / 5 * 1.15, "feet"),
  14202. weight: math.unit(150, "lb"),
  14203. name: "Foot",
  14204. image: {
  14205. source: "./media/characters/xochitl/foot.svg"
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(80, "feet")
  14213. },
  14214. {
  14215. name: "Macro+",
  14216. height: math.unit(400, "feet"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Gigamacro",
  14221. height: math.unit(80000, "miles")
  14222. },
  14223. {
  14224. name: "Gigamacro+",
  14225. height: math.unit(400000, "miles")
  14226. },
  14227. {
  14228. name: "Teramacro",
  14229. height: math.unit(300, "AU")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(150, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/vincent/front.svg",
  14242. extra: 1130 / 1080,
  14243. bottom: 0.055
  14244. }
  14245. },
  14246. beak: {
  14247. height: math.unit(6 * 0.1, "feet"),
  14248. name: "Beak",
  14249. image: {
  14250. source: "./media/characters/vincent/beak.svg"
  14251. }
  14252. },
  14253. hand: {
  14254. height: math.unit(6 * 0.85, "feet"),
  14255. weight: math.unit(150, "lb"),
  14256. name: "Hand",
  14257. image: {
  14258. source: "./media/characters/vincent/hand.svg"
  14259. }
  14260. },
  14261. foot: {
  14262. height: math.unit(6 * 0.19, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Foot",
  14265. image: {
  14266. source: "./media/characters/vincent/foot.svg"
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Base",
  14273. height: math.unit(6 + 5 / 12, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(300, "feet")
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(2, "miles")
  14283. },
  14284. {
  14285. name: "Gigamacro",
  14286. height: math.unit(1000, "miles")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(2, "meters"),
  14295. weight: math.unit(500, "kg"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/coatl/front.svg",
  14299. extra: 3948 / 3500,
  14300. bottom: 0.082
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Normal",
  14307. height: math.unit(4, "meters")
  14308. },
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(100, "meters"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Macro+",
  14316. height: math.unit(300, "meters")
  14317. },
  14318. {
  14319. name: "Megamacro",
  14320. height: math.unit(3, "gigameters")
  14321. },
  14322. {
  14323. name: "Megamacro+",
  14324. height: math.unit(300, "terameters")
  14325. },
  14326. {
  14327. name: "Megamacro++",
  14328. height: math.unit(3, "lightyears")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(50, "kg"),
  14338. name: "front",
  14339. image: {
  14340. source: "./media/characters/shiroryu/front.svg",
  14341. extra: 1990 / 1935
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Mortal Mingling",
  14348. height: math.unit(3, "meters")
  14349. },
  14350. {
  14351. name: "Kaiju-ish",
  14352. height: math.unit(250, "meters")
  14353. },
  14354. {
  14355. name: "Somewhat Godly",
  14356. height: math.unit(400, "km"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Planetary",
  14361. height: math.unit(300, "megameters")
  14362. },
  14363. {
  14364. name: "Galaxy-dwarfing",
  14365. height: math.unit(450, "kiloparsecs")
  14366. },
  14367. {
  14368. name: "Universe Eater",
  14369. height: math.unit(150, "gigaparsecs")
  14370. },
  14371. {
  14372. name: "Almost Immeasurable",
  14373. height: math.unit(1.3e266, "yottaparsecs")
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(150, "lb"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/umeko/front.svg",
  14386. extra: 1,
  14387. bottom: 0.019
  14388. }
  14389. },
  14390. frontArmored: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front (Armored)",
  14394. image: {
  14395. source: "./media/characters/umeko/front-armored.svg",
  14396. extra: 1,
  14397. bottom: 0.021
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(220, "feet"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Guardian Dragon",
  14409. height: math.unit(50, "miles")
  14410. },
  14411. {
  14412. name: "Cosmic",
  14413. height: math.unit(800000, "miles")
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(150, "lb"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/cassidy/front.svg",
  14426. extra: 810/808,
  14427. bottom: 41/851
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Canon Height",
  14434. height: math.unit(120, "feet"),
  14435. default: true
  14436. },
  14437. {
  14438. name: "Macro+",
  14439. height: math.unit(400, "feet")
  14440. },
  14441. {
  14442. name: "Macro++",
  14443. height: math.unit(4000, "feet")
  14444. },
  14445. {
  14446. name: "Megamacro",
  14447. height: math.unit(3, "miles")
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(150, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/isaac/front.svg",
  14460. extra: 896 / 815,
  14461. bottom: 0.11
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Human Size",
  14468. height: math.unit(8, "feet"),
  14469. default: true
  14470. },
  14471. {
  14472. name: "Macro",
  14473. height: math.unit(400, "feet")
  14474. },
  14475. {
  14476. name: "Megamacro",
  14477. height: math.unit(50, "miles")
  14478. },
  14479. {
  14480. name: "Canon Height",
  14481. height: math.unit(200, "AU")
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(72, "kg"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/sleekit/front.svg",
  14494. extra: 4693 / 4487,
  14495. bottom: 0.012
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Minimum Height",
  14502. height: math.unit(10, "meters")
  14503. },
  14504. {
  14505. name: "Smaller",
  14506. height: math.unit(25, "meters")
  14507. },
  14508. {
  14509. name: "Larger",
  14510. height: math.unit(38, "meters"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Maximum height",
  14515. height: math.unit(100, "meters")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/nillia/front.svg",
  14528. extra: 2195 / 2037,
  14529. bottom: 0.005
  14530. }
  14531. },
  14532. back: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Back",
  14536. image: {
  14537. source: "./media/characters/nillia/back.svg",
  14538. extra: 2195 / 2037,
  14539. bottom: 0.005
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Canon Height",
  14546. height: math.unit(489, "feet"),
  14547. default: true
  14548. }
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(150, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/mesmyriza/front.svg",
  14560. extra: 2067 / 1784,
  14561. bottom: 0.035
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(6 / (250 / 35), "feet"),
  14566. name: "Foot",
  14567. image: {
  14568. source: "./media/characters/mesmyriza/foot.svg"
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Macro",
  14575. height: math.unit(457, "meters"),
  14576. default: true
  14577. },
  14578. {
  14579. name: "Megamacro",
  14580. height: math.unit(8, "megameters")
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(250, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/saudade/front.svg",
  14593. extra: 1172 / 1139,
  14594. bottom: 0.035
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Micro",
  14601. height: math.unit(3, "inches")
  14602. },
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro",
  14610. height: math.unit(50, "feet")
  14611. },
  14612. {
  14613. name: "Megamacro",
  14614. height: math.unit(2800, "feet")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(5 + 4 / 12, "feet"),
  14623. weight: math.unit(100, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/keireer/front.svg",
  14627. extra: 716 / 666,
  14628. bottom: 0.05
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(5 + 4 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(90, "kg"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/mirja/front.svg",
  14649. extra: 1789 / 1683,
  14650. bottom: 0.05
  14651. }
  14652. },
  14653. frontDressed: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(90, "lb"),
  14656. name: "Front (Dressed)",
  14657. image: {
  14658. source: "./media/characters/mirja/front-dressed.svg",
  14659. extra: 1789 / 1683,
  14660. bottom: 0.05
  14661. }
  14662. },
  14663. back: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(90, "lb"),
  14666. name: "Back",
  14667. image: {
  14668. source: "./media/characters/mirja/back.svg",
  14669. extra: 953 / 917,
  14670. bottom: 0.017
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "\"Incognito\"",
  14677. height: math.unit(3, "meters")
  14678. },
  14679. {
  14680. name: "Strolling Size",
  14681. height: math.unit(15, "km")
  14682. },
  14683. {
  14684. name: "Larger Strolling Size",
  14685. height: math.unit(400, "km")
  14686. },
  14687. {
  14688. name: "Preferred Size",
  14689. height: math.unit(5000, "km")
  14690. },
  14691. {
  14692. name: "True Size",
  14693. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(15, "feet"),
  14703. weight: math.unit(880, "kg"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/nightraver/front.svg",
  14707. extra: 2444 / 2160,
  14708. bottom: 0.027
  14709. }
  14710. },
  14711. back: {
  14712. height: math.unit(15, "feet"),
  14713. weight: math.unit(880, "kg"),
  14714. name: "Back",
  14715. image: {
  14716. source: "./media/characters/nightraver/back.svg",
  14717. extra: 2309 / 2180,
  14718. bottom: 0.005
  14719. }
  14720. },
  14721. sole: {
  14722. height: math.unit(2.878, "feet"),
  14723. name: "Sole",
  14724. image: {
  14725. source: "./media/characters/nightraver/sole.svg"
  14726. }
  14727. },
  14728. foot: {
  14729. height: math.unit(2.285, "feet"),
  14730. name: "Foot",
  14731. image: {
  14732. source: "./media/characters/nightraver/foot.svg"
  14733. }
  14734. },
  14735. maw: {
  14736. height: math.unit(2.67, "feet"),
  14737. name: "Maw",
  14738. image: {
  14739. source: "./media/characters/nightraver/maw.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Micro",
  14746. height: math.unit(1, "cm")
  14747. },
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(15, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(300, "feet")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(300, "miles")
  14760. },
  14761. {
  14762. name: "Gigamacro",
  14763. height: math.unit(10000, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14769. {
  14770. side: {
  14771. height: math.unit(2, "inches"),
  14772. weight: math.unit(5, "grams"),
  14773. name: "Side",
  14774. image: {
  14775. source: "./media/characters/arc/side.svg"
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Micro",
  14782. height: math.unit(2, "inches"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(1.1938, "meters"),
  14792. weight: math.unit(54, "kg"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/nebula-shahar/front.svg",
  14796. extra: 1642 / 1436,
  14797. bottom: 0.06
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Megamicro",
  14804. height: math.unit(0.3, "mm")
  14805. },
  14806. {
  14807. name: "Micro",
  14808. height: math.unit(3, "cm")
  14809. },
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(138, "cm"),
  14813. default: true
  14814. },
  14815. {
  14816. name: "Macro",
  14817. height: math.unit(30, "m")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(5.24, "feet"),
  14826. weight: math.unit(150, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/shayla/front.svg",
  14830. extra: 1512 / 1414,
  14831. bottom: 0.01
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(5.24, "feet"),
  14836. weight: math.unit(150, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/shayla/back.svg",
  14840. extra: 1512 / 1414
  14841. }
  14842. },
  14843. hand: {
  14844. height: math.unit(0.7781496062992126, "feet"),
  14845. name: "Hand",
  14846. image: {
  14847. source: "./media/characters/shayla/hand.svg"
  14848. }
  14849. },
  14850. foot: {
  14851. height: math.unit(1.4206036745406823, "feet"),
  14852. name: "Foot",
  14853. image: {
  14854. source: "./media/characters/shayla/foot.svg"
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Micro",
  14861. height: math.unit(0.32, "feet")
  14862. },
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(5.24, "feet"),
  14866. default: true
  14867. },
  14868. {
  14869. name: "Macro",
  14870. height: math.unit(492.12, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(186.41, "miles")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(2.2, "m"),
  14883. weight: math.unit(120, "kg"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/pia-jr/front.svg",
  14887. extra: 1000 / 970,
  14888. bottom: 0.035
  14889. }
  14890. },
  14891. hand: {
  14892. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14893. name: "Hand",
  14894. image: {
  14895. source: "./media/characters/pia-jr/hand.svg"
  14896. }
  14897. },
  14898. paw: {
  14899. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14900. name: "Paw",
  14901. image: {
  14902. source: "./media/characters/pia-jr/paw.svg"
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Micro",
  14909. height: math.unit(1.2, "cm")
  14910. },
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(2.2, "m"),
  14914. default: true
  14915. },
  14916. {
  14917. name: "Macro",
  14918. height: math.unit(180, "m")
  14919. },
  14920. {
  14921. name: "Megamacro",
  14922. height: math.unit(420, "km")
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(2, "m"),
  14931. weight: math.unit(115, "kg"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/pia-sr/front.svg",
  14935. extra: 760 / 730,
  14936. bottom: 0.015
  14937. }
  14938. },
  14939. back: {
  14940. height: math.unit(2, "m"),
  14941. weight: math.unit(115, "kg"),
  14942. name: "Back",
  14943. image: {
  14944. source: "./media/characters/pia-sr/back.svg",
  14945. extra: 760 / 730,
  14946. bottom: 0.01
  14947. }
  14948. },
  14949. hand: {
  14950. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14951. name: "Hand",
  14952. image: {
  14953. source: "./media/characters/pia-sr/hand.svg"
  14954. }
  14955. },
  14956. foot: {
  14957. height: math.unit(1.83, "feet"),
  14958. name: "Foot",
  14959. image: {
  14960. source: "./media/characters/pia-sr/foot.svg"
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Micro",
  14967. height: math.unit(88, "mm")
  14968. },
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(2, "m"),
  14972. default: true
  14973. },
  14974. {
  14975. name: "Macro",
  14976. height: math.unit(200, "m")
  14977. },
  14978. {
  14979. name: "Megamacro",
  14980. height: math.unit(420, "km")
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(8 + 2 / 12, "feet"),
  14989. weight: math.unit(300, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/kibibyte/front.svg",
  14993. extra: 2221 / 2098,
  14994. bottom: 0.04
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(8 + 2 / 12, "feet"),
  15002. default: true
  15003. },
  15004. {
  15005. name: "Socialable Macro",
  15006. height: math.unit(50, "feet")
  15007. },
  15008. {
  15009. name: "Macro",
  15010. height: math.unit(300, "feet")
  15011. },
  15012. {
  15013. name: "Megamacro",
  15014. height: math.unit(500, "miles")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/felix/front.svg",
  15027. extra: 762 / 722,
  15028. bottom: 0.02
  15029. }
  15030. },
  15031. frontClothed: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(150, "lb"),
  15034. name: "Front (Clothed)",
  15035. image: {
  15036. source: "./media/characters/felix/front-clothed.svg",
  15037. extra: 762 / 722,
  15038. bottom: 0.02
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(6 + 8 / 12, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro",
  15050. height: math.unit(2600, "feet")
  15051. },
  15052. {
  15053. name: "Megamacro",
  15054. height: math.unit(450, "miles")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(6 + 1 / 12, "feet"),
  15063. weight: math.unit(250, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/tobo/front.svg",
  15067. extra: 608 / 586,
  15068. bottom: 0.023
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(6 + 1 / 12, "feet"),
  15073. weight: math.unit(250, "lb"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/tobo/back.svg",
  15077. extra: 608 / 586
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Nano",
  15084. height: math.unit(2, "nm")
  15085. },
  15086. {
  15087. name: "Megamicro",
  15088. height: math.unit(0.1, "mm")
  15089. },
  15090. {
  15091. name: "Micro",
  15092. height: math.unit(1, "inch"),
  15093. default: true
  15094. },
  15095. {
  15096. name: "Human-sized",
  15097. height: math.unit(6 + 1 / 12, "feet")
  15098. },
  15099. {
  15100. name: "Macro",
  15101. height: math.unit(250, "feet")
  15102. },
  15103. {
  15104. name: "Megamacro",
  15105. height: math.unit(75, "miles")
  15106. },
  15107. {
  15108. name: "Texas-sized",
  15109. height: math.unit(750, "miles")
  15110. },
  15111. {
  15112. name: "Teramacro",
  15113. height: math.unit(50000, "miles")
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(6, "feet"),
  15122. weight: math.unit(269, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/danny-kapowsky/front.svg",
  15126. extra: 766 / 736,
  15127. bottom: 0.044
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(269, "lb"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/danny-kapowsky/back.svg",
  15136. extra: 797 / 760,
  15137. bottom: 0.025
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(150, "feet"),
  15145. default: true
  15146. },
  15147. {
  15148. name: "Macro+",
  15149. height: math.unit(200, "feet")
  15150. },
  15151. {
  15152. name: "Macro++",
  15153. height: math.unit(300, "feet")
  15154. },
  15155. {
  15156. name: "Macro+++",
  15157. height: math.unit(400, "feet")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15163. {
  15164. side: {
  15165. height: math.unit(6, "feet"),
  15166. weight: math.unit(170, "lb"),
  15167. name: "Side",
  15168. image: {
  15169. source: "./media/characters/finn/side.svg",
  15170. extra: 1953 / 1807,
  15171. bottom: 0.057
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Megamacro",
  15178. height: math.unit(14445, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(5 + 6 / 12, "feet"),
  15188. weight: math.unit(125, "lb"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/roy/front.svg",
  15192. extra: 1,
  15193. bottom: 0.11
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Micro",
  15200. height: math.unit(3, "inches"),
  15201. default: true
  15202. },
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(5 + 6 / 12, "feet")
  15206. },
  15207. {
  15208. name: "Lesser Macro",
  15209. height: math.unit(60, "feet")
  15210. },
  15211. {
  15212. name: "Greater Macro",
  15213. height: math.unit(120, "feet")
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(6, "feet"),
  15222. weight: math.unit(100, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/aevsivs/front.svg",
  15226. extra: 1,
  15227. bottom: 0.03
  15228. }
  15229. },
  15230. back: {
  15231. height: math.unit(6, "feet"),
  15232. weight: math.unit(100, "lb"),
  15233. name: "Back",
  15234. image: {
  15235. source: "./media/characters/aevsivs/back.svg"
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Micro",
  15242. height: math.unit(2, "inches"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(5, "feet")
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 7 / 12, "feet"),
  15256. weight: math.unit(159, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/hildegard/front.svg",
  15260. extra: 289 / 269,
  15261. bottom: 7.63 / 297.8
  15262. }
  15263. },
  15264. back: {
  15265. height: math.unit(5 + 7 / 12, "feet"),
  15266. weight: math.unit(159, "lb"),
  15267. name: "Back",
  15268. image: {
  15269. source: "./media/characters/hildegard/back.svg",
  15270. extra: 280 / 260,
  15271. bottom: 2.3 / 282
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(5 + 7 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15285. {
  15286. bernard: {
  15287. height: math.unit(2 + 7 / 12, "feet"),
  15288. weight: math.unit(66, "lb"),
  15289. name: "Bernard",
  15290. rename: true,
  15291. image: {
  15292. source: "./media/characters/bernard-wilder/bernard.svg",
  15293. extra: 192 / 128,
  15294. bottom: 0.05
  15295. }
  15296. },
  15297. wilder: {
  15298. height: math.unit(5 + 8 / 12, "feet"),
  15299. weight: math.unit(143, "lb"),
  15300. name: "Wilder",
  15301. rename: true,
  15302. image: {
  15303. source: "./media/characters/bernard-wilder/wilder.svg",
  15304. extra: 361 / 312,
  15305. bottom: 0.02
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(2 + 7 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15319. {
  15320. anthro: {
  15321. height: math.unit(6 + 1 / 12, "feet"),
  15322. weight: math.unit(155, "lb"),
  15323. name: "Anthro",
  15324. image: {
  15325. source: "./media/characters/hearth/anthro.svg",
  15326. extra: 1178/1136,
  15327. bottom: 28/1206
  15328. }
  15329. },
  15330. feral: {
  15331. height: math.unit(3.78, "feet"),
  15332. weight: math.unit(35, "kg"),
  15333. name: "Feral",
  15334. image: {
  15335. source: "./media/characters/hearth/feral.svg",
  15336. extra: 153 / 135,
  15337. bottom: 0.03
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(6 + 1 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(182, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/ingrid/front.svg",
  15358. extra: 294 / 268,
  15359. bottom: 0.027
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(6, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15373. {
  15374. eevee: {
  15375. height: math.unit(2 + 10 / 12, "feet"),
  15376. weight: math.unit(86, "lb"),
  15377. name: "Malgam",
  15378. image: {
  15379. source: "./media/characters/malgam/eevee.svg",
  15380. extra: 952/784,
  15381. bottom: 38/990
  15382. }
  15383. },
  15384. sylveon: {
  15385. height: math.unit(4, "feet"),
  15386. weight: math.unit(101, "lb"),
  15387. name: "Future Malgam",
  15388. rename: true,
  15389. image: {
  15390. source: "./media/characters/malgam/sylveon.svg",
  15391. extra: 371 / 325,
  15392. bottom: 0.015
  15393. }
  15394. },
  15395. gigantamax: {
  15396. height: math.unit(50, "feet"),
  15397. name: "Gigantamax Malgam",
  15398. rename: true,
  15399. image: {
  15400. source: "./media/characters/malgam/gigantamax.svg"
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(2 + 10 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(5 + 11 / 12, "feet"),
  15417. weight: math.unit(188, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/fleur/front.svg",
  15421. extra: 309 / 283,
  15422. bottom: 0.007
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(5 + 11 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 4 / 12, "feet"),
  15439. weight: math.unit(122, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/jude/front.svg",
  15443. extra: 288 / 273,
  15444. bottom: 0.03
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 4 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(5 + 11 / 12, "feet"),
  15461. weight: math.unit(190, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/seara/front.svg",
  15465. extra: 1,
  15466. bottom: 0.05
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(5 + 11 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(16 + 5 / 12, "feet"),
  15483. weight: math.unit(524, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/caspian/front.svg",
  15487. extra: 1,
  15488. bottom: 0.04
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(16 + 5 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(5 + 7 / 12, "feet"),
  15505. weight: math.unit(170, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/mika/front.svg",
  15509. extra: 1,
  15510. bottom: 0.016
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(5 + 7 / 12, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6 + 2 / 12, "feet"),
  15527. weight: math.unit(268, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/sol/front.svg",
  15531. extra: 247 / 231,
  15532. bottom: 0.05
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(6 + 2 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15546. {
  15547. buizel: {
  15548. height: math.unit(2 + 5 / 12, "feet"),
  15549. weight: math.unit(87, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/umiko/buizel.svg",
  15553. extra: 172 / 157,
  15554. bottom: 0.01
  15555. },
  15556. form: "buizel",
  15557. default: true
  15558. },
  15559. floatzel: {
  15560. height: math.unit(5 + 9 / 12, "feet"),
  15561. weight: math.unit(250, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/umiko/floatzel.svg",
  15565. extra: 1076/1006,
  15566. bottom: 15/1091
  15567. },
  15568. form: "floatzel",
  15569. default: true
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(2 + 5 / 12, "feet"),
  15576. form: "buizel",
  15577. default: true
  15578. },
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(5 + 9 / 12, "feet"),
  15582. form: "floatzel",
  15583. default: true
  15584. },
  15585. ],
  15586. {
  15587. "buizel": {
  15588. name: "Buizel"
  15589. },
  15590. "floatzel": {
  15591. name: "Floatzel",
  15592. default: true
  15593. }
  15594. }
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6 + 2 / 12, "feet"),
  15601. weight: math.unit(146, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/iliac/front.svg",
  15605. extra: 389 / 365,
  15606. bottom: 0.035
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(6 + 2 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(170, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/topaz/front.svg",
  15627. extra: 317 / 303,
  15628. bottom: 0.055
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(6, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 11 / 12, "feet"),
  15645. weight: math.unit(144, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/gabriel/front.svg",
  15649. extra: 285 / 262,
  15650. bottom: 0.004
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 11 / 12, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15664. {
  15665. side: {
  15666. height: math.unit(6 + 5 / 12, "feet"),
  15667. weight: math.unit(300, "lb"),
  15668. name: "Side",
  15669. image: {
  15670. source: "./media/characters/tempest-suicune/side.svg",
  15671. extra: 195 / 154,
  15672. bottom: 0.04
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(6 + 5 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(7 + 2 / 12, "feet"),
  15689. weight: math.unit(322, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/vulcan/front.svg",
  15693. extra: 154 / 147,
  15694. bottom: 0.04
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(7 + 2 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(5 + 10 / 12, "feet"),
  15711. weight: math.unit(264, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/gault/front.svg",
  15715. extra: 161 / 140,
  15716. bottom: 0.028
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(5 + 10 / 12, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(6, "feet"),
  15733. weight: math.unit(150, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/shard/front.svg",
  15737. extra: 273 / 238,
  15738. bottom: 0.02
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(3 + 6 / 12, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(5 + 11 / 12, "feet"),
  15755. weight: math.unit(146, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/ashe/front.svg",
  15759. extra: 400 / 373,
  15760. bottom: 0.01
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(5 + 11 / 12, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(5 + 5 / 12, "feet"),
  15777. weight: math.unit(135, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/beatrix/front.svg",
  15781. extra: 392 / 379,
  15782. bottom: 0.01
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6 + 2/12, "feet"),
  15799. weight: math.unit(135, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/ignatius/front.svg",
  15803. extra: 1380/1259,
  15804. bottom: 27/1407
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(6 + 2/12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(6 + 2 / 12, "feet"),
  15821. weight: math.unit(138, "lb"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/mei-li/front.svg",
  15825. extra: 237 / 229,
  15826. bottom: 0.03
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(6 + 2 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(2 + 4 / 12, "feet"),
  15843. weight: math.unit(62, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/puru/front.svg",
  15847. extra: 206 / 149,
  15848. bottom: 0.06
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(2 + 4 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15862. {
  15863. anthro: {
  15864. height: math.unit(5 + 8/12, "feet"),
  15865. weight: math.unit(200, "lb"),
  15866. energyNeed: math.unit(2000, "kcal"),
  15867. name: "Anthro",
  15868. image: {
  15869. source: "./media/characters/kee/anthro.svg",
  15870. extra: 3251/3184,
  15871. bottom: 250/3501
  15872. }
  15873. },
  15874. taur: {
  15875. height: math.unit(11, "feet"),
  15876. weight: math.unit(500, "lb"),
  15877. energyNeed: math.unit(5000, "kcal"),
  15878. name: "Taur",
  15879. image: {
  15880. source: "./media/characters/kee/taur.svg",
  15881. extra: 1362/1320,
  15882. bottom: 83/1445
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(5 + 8/12, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(35, "feet")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15900. {
  15901. anthro: {
  15902. height: math.unit(7, "feet"),
  15903. weight: math.unit(190, "lb"),
  15904. name: "Anthro",
  15905. image: {
  15906. source: "./media/characters/cobalt-dracha/anthro.svg",
  15907. extra: 231 / 225,
  15908. bottom: 0.04
  15909. }
  15910. },
  15911. feral: {
  15912. height: math.unit(9 + 7 / 12, "feet"),
  15913. weight: math.unit(294, "lb"),
  15914. name: "Feral",
  15915. image: {
  15916. source: "./media/characters/cobalt-dracha/feral.svg",
  15917. extra: 692 / 633,
  15918. bottom: 0.05
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(7, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15932. {
  15933. fallen: {
  15934. height: math.unit(11 + 8 / 12, "feet"),
  15935. weight: math.unit(485, "lb"),
  15936. name: "Java (Fallen)",
  15937. rename: true,
  15938. image: {
  15939. source: "./media/characters/java/fallen.svg",
  15940. extra: 226 / 208,
  15941. bottom: 0.005
  15942. }
  15943. },
  15944. godkin: {
  15945. height: math.unit(10 + 6 / 12, "feet"),
  15946. weight: math.unit(328, "lb"),
  15947. name: "Java (Godkin)",
  15948. rename: true,
  15949. image: {
  15950. source: "./media/characters/java/godkin.svg",
  15951. extra: 1104/1068,
  15952. bottom: 36/1140
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(11 + 8 / 12, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(5 + 9 / 12, "feet"),
  15969. weight: math.unit(170, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/purna/front.svg",
  15973. extra: 239 / 229,
  15974. bottom: 0.01
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(5 + 9 / 12, "feet"),
  15982. default: true
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15988. {
  15989. front: {
  15990. height: math.unit(5 + 9 / 12, "feet"),
  15991. weight: math.unit(142, "lb"),
  15992. name: "Front",
  15993. image: {
  15994. source: "./media/characters/kuva/front.svg",
  15995. extra: 281 / 271,
  15996. bottom: 0.006
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(5 + 9 / 12, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16010. {
  16011. anthro: {
  16012. height: math.unit(9 + 2 / 12, "feet"),
  16013. weight: math.unit(270, "lb"),
  16014. name: "Anthro",
  16015. image: {
  16016. source: "./media/characters/embra/anthro.svg",
  16017. extra: 200 / 187,
  16018. bottom: 0.02
  16019. }
  16020. },
  16021. feral: {
  16022. height: math.unit(18 + 8 / 12, "feet"),
  16023. weight: math.unit(576, "lb"),
  16024. name: "Feral",
  16025. image: {
  16026. source: "./media/characters/embra/feral.svg",
  16027. extra: 152 / 137,
  16028. bottom: 0.037
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(9 + 2 / 12, "feet"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16042. {
  16043. anthro: {
  16044. height: math.unit(10 + 9 / 12, "feet"),
  16045. weight: math.unit(224, "lb"),
  16046. name: "Anthro",
  16047. image: {
  16048. source: "./media/characters/grottos/anthro.svg",
  16049. extra: 350 / 332,
  16050. bottom: 0.045
  16051. }
  16052. },
  16053. feral: {
  16054. height: math.unit(20 + 7 / 12, "feet"),
  16055. weight: math.unit(629, "lb"),
  16056. name: "Feral",
  16057. image: {
  16058. source: "./media/characters/grottos/feral.svg",
  16059. extra: 207 / 190,
  16060. bottom: 0.05
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(10 + 9 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16074. {
  16075. anthro: {
  16076. height: math.unit(9 + 6 / 12, "feet"),
  16077. weight: math.unit(298, "lb"),
  16078. name: "Anthro",
  16079. image: {
  16080. source: "./media/characters/frifna/anthro.svg",
  16081. extra: 282 / 269,
  16082. bottom: 0.015
  16083. }
  16084. },
  16085. feral: {
  16086. height: math.unit(16 + 2 / 12, "feet"),
  16087. weight: math.unit(624, "lb"),
  16088. name: "Feral",
  16089. image: {
  16090. source: "./media/characters/frifna/feral.svg"
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(9 + 6 / 12, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6 + 2 / 12, "feet"),
  16107. weight: math.unit(168, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/elise/front.svg",
  16111. extra: 276 / 271
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(6 + 2 / 12, "feet"),
  16119. default: true
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(5 + 10 / 12, "feet"),
  16128. weight: math.unit(210, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/glade/front.svg",
  16132. extra: 258 / 247,
  16133. bottom: 0.008
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(5 + 10 / 12, "feet"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(5 + 10 / 12, "feet"),
  16150. weight: math.unit(129, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/rina/front.svg",
  16154. extra: 266 / 255,
  16155. bottom: 0.005
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(5 + 10 / 12, "feet"),
  16163. default: true
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(6 + 1 / 12, "feet"),
  16172. weight: math.unit(192, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/veronica/front.svg",
  16176. extra: 319 / 309,
  16177. bottom: 0.005
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(6 + 1 / 12, "feet"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(9 + 3 / 12, "feet"),
  16194. weight: math.unit(1100, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/braxton/front.svg",
  16198. extra: 1057 / 984,
  16199. bottom: 0.05
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(9 + 3 / 12, "feet")
  16207. },
  16208. {
  16209. name: "Giant",
  16210. height: math.unit(300, "feet"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Macro",
  16215. height: math.unit(700, "feet")
  16216. },
  16217. {
  16218. name: "Megamacro",
  16219. height: math.unit(6000, "feet")
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(6 + 7 / 12, "feet"),
  16228. weight: math.unit(150, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/blue-feyonics/front.svg",
  16232. extra: 1403 / 1306,
  16233. bottom: 0.047
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(6 + 7 / 12, "feet"),
  16241. default: true
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(1.8, "meters"),
  16250. weight: math.unit(60, "kg"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/maxwell/front.svg",
  16254. extra: 2060 / 1873
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Micro",
  16261. height: math.unit(1, "mm")
  16262. },
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(1.8, "meter"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Macro",
  16270. height: math.unit(30, "meters")
  16271. },
  16272. {
  16273. name: "Megamacro",
  16274. height: math.unit(10, "km")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/jack/front.svg",
  16287. extra: 1754 / 1640,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(80000, "feet"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Max size",
  16300. height: math.unit(10, "lightyears")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16306. {
  16307. urban: {
  16308. height: math.unit(5, "feet"),
  16309. weight: math.unit(240, "lb"),
  16310. name: "Urban",
  16311. image: {
  16312. source: "./media/characters/cafat/urban.svg",
  16313. extra: 1223/1126,
  16314. bottom: 205/1428
  16315. }
  16316. },
  16317. summer: {
  16318. height: math.unit(5, "feet"),
  16319. weight: math.unit(240, "lb"),
  16320. name: "Summer",
  16321. image: {
  16322. source: "./media/characters/cafat/summer.svg",
  16323. extra: 1223/1126,
  16324. bottom: 205/1428
  16325. }
  16326. },
  16327. winter: {
  16328. height: math.unit(5, "feet"),
  16329. weight: math.unit(240, "lb"),
  16330. name: "Winter",
  16331. image: {
  16332. source: "./media/characters/cafat/winter.svg",
  16333. extra: 1223/1126,
  16334. bottom: 205/1428
  16335. }
  16336. },
  16337. lingerie: {
  16338. height: math.unit(5, "feet"),
  16339. weight: math.unit(240, "lb"),
  16340. name: "Lingerie",
  16341. image: {
  16342. source: "./media/characters/cafat/lingerie.svg",
  16343. extra: 1223/1126,
  16344. bottom: 205/1428
  16345. }
  16346. },
  16347. upright: {
  16348. height: math.unit(6.3, "feet"),
  16349. weight: math.unit(240, "lb"),
  16350. name: "Upright",
  16351. image: {
  16352. source: "./media/characters/cafat/upright.svg",
  16353. bottom: 0.01
  16354. }
  16355. },
  16356. uprightFull: {
  16357. height: math.unit(6.3, "feet"),
  16358. weight: math.unit(240, "lb"),
  16359. name: "Upright (Full)",
  16360. image: {
  16361. source: "./media/characters/cafat/upright-full.svg",
  16362. bottom: 0.01
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Small",
  16369. height: math.unit(5, "feet"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Large",
  16374. height: math.unit(13, "feet")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(6, "feet"),
  16383. weight: math.unit(150, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/verin-raharra/front.svg",
  16387. extra: 5019 / 4835,
  16388. bottom: 0.023
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(7 + 5 / 12, "feet"),
  16396. default: true
  16397. },
  16398. {
  16399. name: "Upsized",
  16400. height: math.unit(20, "feet")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(7, "feet"),
  16409. weight: math.unit(230, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/nakata/front.svg",
  16413. extra: 1.005,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(7, "feet"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Big",
  16426. height: math.unit(14, "feet")
  16427. },
  16428. {
  16429. name: "Macro",
  16430. height: math.unit(400, "feet")
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(4.91, "feet"),
  16439. weight: math.unit(100, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/lily/front.svg",
  16443. extra: 1585 / 1415,
  16444. bottom: 0.02
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(4.91, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16458. {
  16459. laying: {
  16460. height: math.unit(4 + 4 / 12, "feet"),
  16461. weight: math.unit(600, "lb"),
  16462. name: "Laying",
  16463. image: {
  16464. source: "./media/characters/sheila/laying.svg",
  16465. extra: 1333 / 1265,
  16466. bottom: 0.16
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(4 + 4 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(6, "feet"),
  16483. weight: math.unit(190, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/sax/front.svg",
  16487. extra: 1187 / 973,
  16488. bottom: 0.042
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Micro",
  16495. height: math.unit(4, "inches"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(6, "feet"),
  16505. weight: math.unit(150, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/pandora/front.svg",
  16509. extra: 2720 / 2556,
  16510. bottom: 0.015
  16511. }
  16512. },
  16513. back: {
  16514. height: math.unit(6, "feet"),
  16515. weight: math.unit(150, "lb"),
  16516. name: "Back",
  16517. image: {
  16518. source: "./media/characters/pandora/back.svg",
  16519. extra: 2720 / 2556,
  16520. bottom: 0.01
  16521. }
  16522. },
  16523. beans: {
  16524. height: math.unit(6 / 8, "feet"),
  16525. name: "Beans",
  16526. image: {
  16527. source: "./media/characters/pandora/beans.svg"
  16528. }
  16529. },
  16530. collar: {
  16531. height: math.unit(0.31, "feet"),
  16532. name: "Collar",
  16533. image: {
  16534. source: "./media/characters/pandora/collar.svg"
  16535. }
  16536. },
  16537. skirt: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Skirt",
  16541. image: {
  16542. source: "./media/characters/pandora/skirt.svg",
  16543. extra: 1622 / 1525,
  16544. bottom: 0.015
  16545. }
  16546. },
  16547. hoodie: {
  16548. height: math.unit(6, "feet"),
  16549. weight: math.unit(150, "lb"),
  16550. name: "Hoodie",
  16551. image: {
  16552. source: "./media/characters/pandora/hoodie.svg",
  16553. extra: 1622 / 1525,
  16554. bottom: 0.015
  16555. }
  16556. },
  16557. casual: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(150, "lb"),
  16560. name: "Casual",
  16561. image: {
  16562. source: "./media/characters/pandora/casual.svg",
  16563. extra: 1622 / 1525,
  16564. bottom: 0.015
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(6, "feet")
  16572. },
  16573. {
  16574. name: "Big Steppy",
  16575. height: math.unit(1, "km"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Galactic Steppy",
  16580. height: math.unit(2, "gigameters")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16586. {
  16587. side: {
  16588. height: math.unit(10, "feet"),
  16589. weight: math.unit(800, "kg"),
  16590. name: "Side",
  16591. image: {
  16592. source: "./media/characters/venio-darcony/side.svg",
  16593. extra: 1373 / 1003,
  16594. bottom: 0.037
  16595. }
  16596. },
  16597. front: {
  16598. height: math.unit(19, "feet"),
  16599. weight: math.unit(800, "kg"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/venio-darcony/front.svg"
  16603. }
  16604. },
  16605. back: {
  16606. height: math.unit(19, "feet"),
  16607. weight: math.unit(800, "kg"),
  16608. name: "Back",
  16609. image: {
  16610. source: "./media/characters/venio-darcony/back.svg"
  16611. }
  16612. },
  16613. sideNsfw: {
  16614. height: math.unit(10, "feet"),
  16615. weight: math.unit(800, "kg"),
  16616. name: "Side (NSFW)",
  16617. image: {
  16618. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16619. extra: 1373 / 1003,
  16620. bottom: 0.037
  16621. }
  16622. },
  16623. frontNsfw: {
  16624. height: math.unit(19, "feet"),
  16625. weight: math.unit(800, "kg"),
  16626. name: "Front (NSFW)",
  16627. image: {
  16628. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16629. }
  16630. },
  16631. backNsfw: {
  16632. height: math.unit(19, "feet"),
  16633. weight: math.unit(800, "kg"),
  16634. name: "Back (NSFW)",
  16635. image: {
  16636. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16637. }
  16638. },
  16639. sideArmored: {
  16640. height: math.unit(10, "feet"),
  16641. weight: math.unit(800, "kg"),
  16642. name: "Side (Armored)",
  16643. image: {
  16644. source: "./media/characters/venio-darcony/side-armored.svg",
  16645. extra: 1373 / 1003,
  16646. bottom: 0.037
  16647. }
  16648. },
  16649. frontArmored: {
  16650. height: math.unit(19, "feet"),
  16651. weight: math.unit(900, "kg"),
  16652. name: "Front (Armored)",
  16653. image: {
  16654. source: "./media/characters/venio-darcony/front-armored.svg"
  16655. }
  16656. },
  16657. backArmored: {
  16658. height: math.unit(19, "feet"),
  16659. weight: math.unit(900, "kg"),
  16660. name: "Back (Armored)",
  16661. image: {
  16662. source: "./media/characters/venio-darcony/back-armored.svg"
  16663. }
  16664. },
  16665. sword: {
  16666. height: math.unit(10, "feet"),
  16667. weight: math.unit(50, "lb"),
  16668. name: "Sword",
  16669. image: {
  16670. source: "./media/characters/venio-darcony/sword.svg"
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(10, "feet")
  16678. },
  16679. {
  16680. name: "Macro",
  16681. height: math.unit(130, "feet"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Macro+",
  16686. height: math.unit(240, "feet")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16692. {
  16693. front: {
  16694. height: math.unit(6, "feet"),
  16695. weight: math.unit(150, "lb"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/veski/front.svg",
  16699. extra: 1299 / 1225,
  16700. bottom: 0.04
  16701. }
  16702. },
  16703. back: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Back",
  16707. image: {
  16708. source: "./media/characters/veski/back.svg",
  16709. extra: 1299 / 1225,
  16710. bottom: 0.008
  16711. }
  16712. },
  16713. maw: {
  16714. height: math.unit(1.5 * 1.21, "feet"),
  16715. name: "Maw",
  16716. image: {
  16717. source: "./media/characters/veski/maw.svg"
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Macro",
  16724. height: math.unit(2, "km"),
  16725. default: true
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(5 + 7 / 12, "feet"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/isabelle/front.svg",
  16737. extra: 2130 / 1976,
  16738. bottom: 0.05
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Supermicro",
  16745. height: math.unit(10, "micrometers")
  16746. },
  16747. {
  16748. name: "Micro",
  16749. height: math.unit(1, "inch")
  16750. },
  16751. {
  16752. name: "Tiny",
  16753. height: math.unit(5, "inches")
  16754. },
  16755. {
  16756. name: "Standard",
  16757. height: math.unit(5 + 7 / 12, "inches")
  16758. },
  16759. {
  16760. name: "Macro",
  16761. height: math.unit(80, "meters"),
  16762. default: true
  16763. },
  16764. {
  16765. name: "Megamacro",
  16766. height: math.unit(250, "meters")
  16767. },
  16768. {
  16769. name: "Gigamacro",
  16770. height: math.unit(5, "km")
  16771. },
  16772. {
  16773. name: "Cosmic",
  16774. height: math.unit(2.5e6, "miles")
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(6, "feet"),
  16783. weight: math.unit(150, "lb"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/hanzo/front.svg",
  16787. extra: 374 / 344,
  16788. bottom: 0.02
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(8, "feet"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(7, "feet"),
  16805. weight: math.unit(130, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/anna/front.svg",
  16809. extra: 169 / 145,
  16810. bottom: 0.06
  16811. }
  16812. },
  16813. full: {
  16814. height: math.unit(4.96, "feet"),
  16815. weight: math.unit(220, "lb"),
  16816. name: "Full",
  16817. image: {
  16818. source: "./media/characters/anna/full.svg",
  16819. extra: 138 / 114,
  16820. bottom: 0.15
  16821. }
  16822. },
  16823. tongue: {
  16824. height: math.unit(2.53, "feet"),
  16825. name: "Tongue",
  16826. image: {
  16827. source: "./media/characters/anna/tongue.svg"
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(7, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(7, "feet"),
  16844. weight: math.unit(150, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/ian-corvid/front.svg",
  16848. extra: 150 / 142,
  16849. bottom: 0.02
  16850. }
  16851. },
  16852. back: {
  16853. height: math.unit(7, "feet"),
  16854. weight: math.unit(150, "lb"),
  16855. name: "Back",
  16856. image: {
  16857. source: "./media/characters/ian-corvid/back.svg",
  16858. extra: 150 / 143,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. stomping: {
  16863. height: math.unit(7, "feet"),
  16864. weight: math.unit(150, "lb"),
  16865. name: "Stomping",
  16866. image: {
  16867. source: "./media/characters/ian-corvid/stomping.svg",
  16868. extra: 76 / 72
  16869. }
  16870. },
  16871. sitting: {
  16872. height: math.unit(7 / 1.8, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Sitting",
  16875. image: {
  16876. source: "./media/characters/ian-corvid/sitting.svg",
  16877. extra: 1400 / 1269,
  16878. bottom: 0.15
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Tiny Microw",
  16885. height: math.unit(1, "inch")
  16886. },
  16887. {
  16888. name: "Microw",
  16889. height: math.unit(6, "inches")
  16890. },
  16891. {
  16892. name: "Crow",
  16893. height: math.unit(7 + 1 / 12, "feet"),
  16894. default: true
  16895. },
  16896. {
  16897. name: "Macrow",
  16898. height: math.unit(176, "feet")
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(5 + 7 / 12, "feet"),
  16907. weight: math.unit(147, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/natalie-kellon/front.svg",
  16911. extra: 1214 / 1141,
  16912. bottom: 0.02
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Micro",
  16919. height: math.unit(1 / 16, "inch")
  16920. },
  16921. {
  16922. name: "Tiny",
  16923. height: math.unit(4, "inches")
  16924. },
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(5 + 7 / 12, "feet"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Amazon",
  16932. height: math.unit(12, "feet")
  16933. },
  16934. {
  16935. name: "Giantess",
  16936. height: math.unit(160, "meters")
  16937. },
  16938. {
  16939. name: "Titaness",
  16940. height: math.unit(800, "meters")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/alluria/front.svg",
  16953. extra: 806 / 738,
  16954. bottom: 0.01
  16955. }
  16956. },
  16957. side: {
  16958. height: math.unit(6, "feet"),
  16959. weight: math.unit(150, "lb"),
  16960. name: "Side",
  16961. image: {
  16962. source: "./media/characters/alluria/side.svg",
  16963. extra: 800 / 750,
  16964. }
  16965. },
  16966. back: {
  16967. height: math.unit(6, "feet"),
  16968. weight: math.unit(150, "lb"),
  16969. name: "Back",
  16970. image: {
  16971. source: "./media/characters/alluria/back.svg",
  16972. extra: 806 / 738,
  16973. }
  16974. },
  16975. frontMaid: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Front (Maid)",
  16979. image: {
  16980. source: "./media/characters/alluria/front-maid.svg",
  16981. extra: 806 / 738,
  16982. bottom: 0.01
  16983. }
  16984. },
  16985. sideMaid: {
  16986. height: math.unit(6, "feet"),
  16987. weight: math.unit(150, "lb"),
  16988. name: "Side (Maid)",
  16989. image: {
  16990. source: "./media/characters/alluria/side-maid.svg",
  16991. extra: 800 / 750,
  16992. bottom: 0.005
  16993. }
  16994. },
  16995. backMaid: {
  16996. height: math.unit(6, "feet"),
  16997. weight: math.unit(150, "lb"),
  16998. name: "Back (Maid)",
  16999. image: {
  17000. source: "./media/characters/alluria/back-maid.svg",
  17001. extra: 806 / 738,
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Micro",
  17008. height: math.unit(6, "inches"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17015. {
  17016. front: {
  17017. height: math.unit(6, "feet"),
  17018. weight: math.unit(150, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/kyle/front.svg",
  17022. extra: 1069 / 962,
  17023. bottom: 77.228 / 1727.45
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Macro",
  17030. height: math.unit(150, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(6, "feet"),
  17040. weight: math.unit(300, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/duncan/front.svg",
  17044. extra: 1650 / 1482,
  17045. bottom: 0.05
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Macro",
  17052. height: math.unit(100, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(5 + 4 / 12, "feet"),
  17062. weight: math.unit(220, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/memory/front.svg",
  17066. extra: 3641 / 3545,
  17067. bottom: 0.03
  17068. }
  17069. },
  17070. back: {
  17071. height: math.unit(5 + 4 / 12, "feet"),
  17072. weight: math.unit(220, "lb"),
  17073. name: "Back",
  17074. image: {
  17075. source: "./media/characters/memory/back.svg",
  17076. extra: 3641 / 3545,
  17077. bottom: 0.025
  17078. }
  17079. },
  17080. frontSkirt: {
  17081. height: math.unit(5 + 4 / 12, "feet"),
  17082. weight: math.unit(220, "lb"),
  17083. name: "Front (Skirt)",
  17084. image: {
  17085. source: "./media/characters/memory/front-skirt.svg",
  17086. extra: 3641 / 3545,
  17087. bottom: 0.03
  17088. }
  17089. },
  17090. frontDress: {
  17091. height: math.unit(5 + 4 / 12, "feet"),
  17092. weight: math.unit(220, "lb"),
  17093. name: "Front (Dress)",
  17094. image: {
  17095. source: "./media/characters/memory/front-dress.svg",
  17096. extra: 3641 / 3545,
  17097. bottom: 0.03
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Micro",
  17104. height: math.unit(6, "inches"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(5 + 4 / 12, "feet")
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(4 + 11 / 12, "feet"),
  17118. weight: math.unit(100, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/luno/front.svg",
  17122. extra: 1535 / 1487,
  17123. bottom: 0.03
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Micro",
  17130. height: math.unit(3, "inches")
  17131. },
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(4 + 11 / 12, "feet"),
  17135. default: true
  17136. },
  17137. {
  17138. name: "Macro",
  17139. height: math.unit(300, "feet")
  17140. },
  17141. {
  17142. name: "Megamacro",
  17143. height: math.unit(700, "miles")
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(6 + 2 / 12, "feet"),
  17152. weight: math.unit(170, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/jamesy/front.svg",
  17156. extra: 440 / 382,
  17157. bottom: 0.005
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Micro",
  17164. height: math.unit(3, "inches")
  17165. },
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(6 + 2 / 12, "feet"),
  17169. default: true
  17170. },
  17171. {
  17172. name: "Macro",
  17173. height: math.unit(300, "feet")
  17174. },
  17175. {
  17176. name: "Megamacro",
  17177. height: math.unit(700, "miles")
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(160, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/mark/front.svg",
  17190. extra: 3300 / 3100,
  17191. bottom: 136.42 / 3440.47
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Macro",
  17198. height: math.unit(120, "meters")
  17199. },
  17200. {
  17201. name: "Bigger Macro",
  17202. height: math.unit(350, "meters")
  17203. },
  17204. {
  17205. name: "Megamacro",
  17206. height: math.unit(8, "km"),
  17207. default: true
  17208. },
  17209. {
  17210. name: "Continental",
  17211. height: math.unit(4550, "km")
  17212. },
  17213. {
  17214. name: "Planetary",
  17215. height: math.unit(65000, "km")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(6, "feet"),
  17224. weight: math.unit(400, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/mac/front.svg",
  17228. extra: 1048 / 987.7,
  17229. bottom: 60 / 1107.6,
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Macro",
  17236. height: math.unit(500, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(5 + 2 / 12, "feet"),
  17246. weight: math.unit(190, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/bari/front.svg",
  17250. extra: 3156 / 2880,
  17251. bottom: 0.03
  17252. }
  17253. },
  17254. back: {
  17255. height: math.unit(5 + 2 / 12, "feet"),
  17256. weight: math.unit(190, "lb"),
  17257. name: "Back",
  17258. image: {
  17259. source: "./media/characters/bari/back.svg",
  17260. extra: 3260 / 2834,
  17261. bottom: 0.025
  17262. }
  17263. },
  17264. frontPlush: {
  17265. height: math.unit(5 + 2 / 12, "feet"),
  17266. weight: math.unit(190, "lb"),
  17267. name: "Front (Plush)",
  17268. image: {
  17269. source: "./media/characters/bari/front-plush.svg",
  17270. extra: 1112 / 1061,
  17271. bottom: 0.002
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Micro",
  17278. height: math.unit(3, "inches")
  17279. },
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(5 + 2 / 12, "feet"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Macro",
  17287. height: math.unit(20, "feet")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(6 + 1 / 12, "feet"),
  17296. weight: math.unit(275, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/hunter-misha-raven/front.svg"
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Mortal",
  17306. height: math.unit(6 + 1 / 12, "feet")
  17307. },
  17308. {
  17309. name: "Divine",
  17310. height: math.unit(1.12134e34, "parsecs"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(6 + 3 / 12, "feet"),
  17320. weight: math.unit(220, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/max-calore/front.svg",
  17324. extra: 1700 / 1648,
  17325. bottom: 0.01
  17326. }
  17327. },
  17328. back: {
  17329. height: math.unit(6 + 3 / 12, "feet"),
  17330. weight: math.unit(220, "lb"),
  17331. name: "Back",
  17332. image: {
  17333. source: "./media/characters/max-calore/back.svg",
  17334. extra: 1700 / 1648,
  17335. bottom: 0.01
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(6 + 3 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17349. {
  17350. side: {
  17351. height: math.unit(2 + 8 / 12, "feet"),
  17352. weight: math.unit(99, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/aspen/side.svg",
  17356. extra: 152 / 138,
  17357. bottom: 0.032
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(2 + 8 / 12, "feet"),
  17365. default: true
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17371. {
  17372. side: {
  17373. height: math.unit(3 + 2 / 12, "feet"),
  17374. weight: math.unit(224, "lb"),
  17375. name: "Side",
  17376. image: {
  17377. source: "./media/characters/sheila-feral-wolf/side.svg",
  17378. extra: 179 / 166,
  17379. bottom: 0.03
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(3 + 2 / 12, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17393. {
  17394. side: {
  17395. height: math.unit(1 + 9 / 12, "feet"),
  17396. weight: math.unit(38, "lb"),
  17397. name: "Side",
  17398. image: {
  17399. source: "./media/characters/michelle/side.svg",
  17400. extra: 147 / 136.7,
  17401. bottom: 0.03
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(1 + 9 / 12, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(1.54, "feet"),
  17418. weight: math.unit(50, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/nino/front.svg"
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(1.54, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(1.49, "feet"),
  17438. weight: math.unit(45, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/viola/front.svg"
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(1.49, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17455. {
  17456. front: {
  17457. height: math.unit(6 + 5 / 12, "feet"),
  17458. weight: math.unit(580, "lb"),
  17459. name: "Front",
  17460. image: {
  17461. source: "./media/characters/atlas/front.svg",
  17462. extra: 298.5 / 290,
  17463. bottom: 0.015
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(6 + 5 / 12, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17477. {
  17478. side: {
  17479. height: math.unit(15.6, "inches"),
  17480. weight: math.unit(10, "lb"),
  17481. name: "Side",
  17482. image: {
  17483. source: "./media/characters/davy/side.svg",
  17484. extra: 200 / 170,
  17485. bottom: 0.01
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(15.6, "inches"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17499. {
  17500. side: {
  17501. height: math.unit(4 + 8 / 12, "feet"),
  17502. weight: math.unit(166, "lb"),
  17503. name: "Side",
  17504. image: {
  17505. source: "./media/characters/fiona/side.svg",
  17506. extra: 232 / 220,
  17507. bottom: 0.03
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(4 + 8 / 12, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17521. {
  17522. front: {
  17523. height: math.unit(26, "inches"),
  17524. weight: math.unit(35, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/lyla/front.svg",
  17528. bottom: 0.1
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(3, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17542. {
  17543. side: {
  17544. height: math.unit(1.8, "feet"),
  17545. weight: math.unit(44, "lb"),
  17546. name: "Side",
  17547. image: {
  17548. source: "./media/characters/perseus/side.svg",
  17549. bottom: 0.21
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(1.8, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17563. {
  17564. side: {
  17565. height: math.unit(4 + 2 / 12, "feet"),
  17566. weight: math.unit(20, "lb"),
  17567. name: "Side",
  17568. image: {
  17569. source: "./media/characters/remus/side.svg"
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(4 + 2 / 12, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(4 + 11 / 12, "feet"),
  17586. weight: math.unit(114, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/raf/front.svg",
  17590. extra: 1504/1339,
  17591. bottom: 26/1530
  17592. }
  17593. },
  17594. side: {
  17595. height: math.unit(4 + 11 / 12, "feet"),
  17596. weight: math.unit(114, "lb"),
  17597. name: "Side",
  17598. image: {
  17599. source: "./media/characters/raf/side.svg",
  17600. extra: 1466/1316,
  17601. bottom: 29/1495
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Micro",
  17608. height: math.unit(2, "inches")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(4 + 11 / 12, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(70, "feet")
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(1.5, "meters"),
  17626. weight: math.unit(68, "kg"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/liam-einarr/front.svg",
  17630. extra: 2822 / 2666
  17631. }
  17632. },
  17633. back: {
  17634. height: math.unit(1.5, "meters"),
  17635. weight: math.unit(68, "kg"),
  17636. name: "Back",
  17637. image: {
  17638. source: "./media/characters/liam-einarr/back.svg",
  17639. extra: 2822 / 2666,
  17640. bottom: 0.015
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(1.5, "meters"),
  17648. default: true
  17649. },
  17650. {
  17651. name: "Macro",
  17652. height: math.unit(150, "meters")
  17653. },
  17654. {
  17655. name: "Megamacro",
  17656. height: math.unit(35, "km")
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6, "feet"),
  17665. weight: math.unit(75, "kg"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/linda/front.svg",
  17669. extra: 930 / 874,
  17670. bottom: 0.004
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(6, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(6 + 8 / 12, "feet"),
  17687. weight: math.unit(220, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/caylex/front.svg",
  17691. extra: 821 / 772,
  17692. bottom: 0.07
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(6 + 8 / 12, "feet"),
  17697. weight: math.unit(220, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/caylex/back.svg",
  17701. extra: 821 / 772,
  17702. bottom: 0.022
  17703. }
  17704. },
  17705. hand: {
  17706. height: math.unit(1.25, "feet"),
  17707. name: "Hand",
  17708. image: {
  17709. source: "./media/characters/caylex/hand.svg"
  17710. }
  17711. },
  17712. foot: {
  17713. height: math.unit(1.6, "feet"),
  17714. name: "Foot",
  17715. image: {
  17716. source: "./media/characters/caylex/foot.svg"
  17717. }
  17718. },
  17719. armored: {
  17720. height: math.unit(6 + 8 / 12, "feet"),
  17721. weight: math.unit(250, "lb"),
  17722. name: "Armored",
  17723. image: {
  17724. source: "./media/characters/caylex/armored.svg",
  17725. extra: 1420 / 1310,
  17726. bottom: 0.045
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(6 + 8 / 12, "feet"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Normal+",
  17738. height: math.unit(12, "feet")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(7 + 6 / 12, "feet"),
  17747. weight: math.unit(288, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/alana/front.svg",
  17751. extra: 679 / 653,
  17752. bottom: 22.5 / 701
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(7 + 6 / 12, "feet")
  17760. },
  17761. {
  17762. name: "Large",
  17763. height: math.unit(50, "feet")
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(100, "feet"),
  17768. default: true
  17769. },
  17770. {
  17771. name: "Macro+",
  17772. height: math.unit(200, "feet")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17778. {
  17779. front: {
  17780. height: math.unit(6 + 1 / 12, "feet"),
  17781. weight: math.unit(210, "lb"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/hasani/front.svg",
  17785. extra: 244 / 232,
  17786. bottom: 0.01
  17787. }
  17788. },
  17789. back: {
  17790. height: math.unit(6 + 1 / 12, "feet"),
  17791. weight: math.unit(210, "lb"),
  17792. name: "Back",
  17793. image: {
  17794. source: "./media/characters/hasani/back.svg",
  17795. extra: 244 / 232,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(6 + 1 / 12, "feet")
  17804. },
  17805. {
  17806. name: "Macro",
  17807. height: math.unit(175, "feet"),
  17808. default: true
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(1.82, "meters"),
  17817. weight: math.unit(140, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/nita/front.svg",
  17821. extra: 2473 / 2363,
  17822. bottom: 0.01
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(1.82, "m")
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(300, "m")
  17834. },
  17835. {
  17836. name: "Mistake Canon",
  17837. height: math.unit(0.5, "miles"),
  17838. default: true
  17839. },
  17840. {
  17841. name: "Big Mistake",
  17842. height: math.unit(13, "miles")
  17843. },
  17844. {
  17845. name: "Playing God",
  17846. height: math.unit(2450, "miles")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(4, "feet"),
  17855. weight: math.unit(120, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/shiriko/front.svg",
  17859. extra: 970/934,
  17860. bottom: 5/975
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(4, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(6, "feet"),
  17877. name: "front",
  17878. image: {
  17879. source: "./media/characters/deja/front.svg",
  17880. extra: 926 / 840,
  17881. bottom: 0.07
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Planck Length",
  17888. height: math.unit(1.6e-35, "meters")
  17889. },
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(30.48, "meters"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Universal",
  17897. height: math.unit(8.8e26, "meters")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17903. {
  17904. side: {
  17905. height: math.unit(8, "feet"),
  17906. weight: math.unit(6300, "lb"),
  17907. name: "Side",
  17908. image: {
  17909. source: "./media/characters/anima/side.svg",
  17910. bottom: 0.035
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(8, "feet"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(8, "feet"),
  17927. weight: math.unit(350, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/bianca/front.svg",
  17931. extra: 234 / 225,
  17932. bottom: 0.03
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(8, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(150, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/adinia/front.svg",
  17953. extra: 1845 / 1672,
  17954. bottom: 0.02
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(6, "feet"),
  17959. weight: math.unit(150, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/adinia/back.svg",
  17963. extra: 1845 / 1672,
  17964. bottom: 0.002
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(11 + 5 / 12, "feet"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(3, "meters"),
  17981. weight: math.unit(200, "kg"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/lykasa/front.svg",
  17985. extra: 1076 / 976,
  17986. bottom: 0.06
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(3, "meters")
  17994. },
  17995. {
  17996. name: "Kaiju",
  17997. height: math.unit(120, "meters"),
  17998. default: true
  17999. },
  18000. {
  18001. name: "Mega Kaiju",
  18002. height: math.unit(240, "km")
  18003. },
  18004. {
  18005. name: "Giga Kaiju",
  18006. height: math.unit(400, "megameters")
  18007. },
  18008. {
  18009. name: "Tera Kaiju",
  18010. height: math.unit(800, "gigameters")
  18011. },
  18012. {
  18013. name: "Kaiju Dragon Goddess",
  18014. height: math.unit(26, "zettaparsecs")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18020. {
  18021. side: {
  18022. height: math.unit(283 / 124 * 6, "feet"),
  18023. weight: math.unit(35000, "lb"),
  18024. name: "Side",
  18025. image: {
  18026. source: "./media/characters/malfaren/side.svg",
  18027. extra: 1310/529,
  18028. bottom: 24/1334
  18029. }
  18030. },
  18031. front: {
  18032. height: math.unit(22.36, "feet"),
  18033. weight: math.unit(35000, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/malfaren/front.svg",
  18037. extra: 1237/1115,
  18038. bottom: 32/1269
  18039. }
  18040. },
  18041. maw: {
  18042. height: math.unit(6.9, "feet"),
  18043. name: "Maw",
  18044. image: {
  18045. source: "./media/characters/malfaren/maw.svg"
  18046. }
  18047. },
  18048. dick: {
  18049. height: math.unit(6.19, "feet"),
  18050. name: "Dick",
  18051. image: {
  18052. source: "./media/characters/malfaren/dick.svg"
  18053. }
  18054. },
  18055. eye: {
  18056. height: math.unit(0.69, "feet"),
  18057. name: "Eye",
  18058. image: {
  18059. source: "./media/characters/malfaren/eye.svg"
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Big",
  18066. height: math.unit(283 / 162 * 6, "feet"),
  18067. },
  18068. {
  18069. name: "Bigger",
  18070. height: math.unit(283 / 124 * 6, "feet")
  18071. },
  18072. {
  18073. name: "Massive",
  18074. height: math.unit(283 / 92 * 6, "feet"),
  18075. default: true
  18076. },
  18077. {
  18078. name: "👀💦",
  18079. height: math.unit(283 / 73 * 6, "feet"),
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(1.7, "m"),
  18088. weight: math.unit(70, "kg"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/kernel/front.svg",
  18092. extra: 222 / 210,
  18093. bottom: 0.007
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Nano",
  18100. height: math.unit(17, "micrometers")
  18101. },
  18102. {
  18103. name: "Micro",
  18104. height: math.unit(1.7, "mm")
  18105. },
  18106. {
  18107. name: "Small",
  18108. height: math.unit(1.7, "cm")
  18109. },
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(1.7, "m"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18119. {
  18120. front: {
  18121. height: math.unit(1.75, "meters"),
  18122. weight: math.unit(65, "kg"),
  18123. name: "Front",
  18124. image: {
  18125. source: "./media/characters/jayne-folest/front.svg",
  18126. extra: 2115 / 2007,
  18127. bottom: 0.02
  18128. }
  18129. },
  18130. back: {
  18131. height: math.unit(1.75, "meters"),
  18132. weight: math.unit(65, "kg"),
  18133. name: "Back",
  18134. image: {
  18135. source: "./media/characters/jayne-folest/back.svg",
  18136. extra: 2115 / 2007,
  18137. bottom: 0.005
  18138. }
  18139. },
  18140. frontClothed: {
  18141. height: math.unit(1.75, "meters"),
  18142. weight: math.unit(65, "kg"),
  18143. name: "Front (Clothed)",
  18144. image: {
  18145. source: "./media/characters/jayne-folest/front-clothed.svg",
  18146. extra: 2115 / 2007,
  18147. bottom: 0.035
  18148. }
  18149. },
  18150. hand: {
  18151. height: math.unit(1 / 1.260, "feet"),
  18152. name: "Hand",
  18153. image: {
  18154. source: "./media/characters/jayne-folest/hand.svg"
  18155. }
  18156. },
  18157. foot: {
  18158. height: math.unit(1 / 0.918, "feet"),
  18159. name: "Foot",
  18160. image: {
  18161. source: "./media/characters/jayne-folest/foot.svg"
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Micro",
  18168. height: math.unit(4, "cm")
  18169. },
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(1.75, "meters")
  18173. },
  18174. {
  18175. name: "Macro",
  18176. height: math.unit(47.5, "meters"),
  18177. default: true
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(180, "cm"),
  18186. weight: math.unit(70, "kg"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/algier/front.svg",
  18190. extra: 596 / 572,
  18191. bottom: 0.04
  18192. }
  18193. },
  18194. back: {
  18195. height: math.unit(180, "cm"),
  18196. weight: math.unit(70, "kg"),
  18197. name: "Back",
  18198. image: {
  18199. source: "./media/characters/algier/back.svg",
  18200. extra: 596 / 572,
  18201. bottom: 0.025
  18202. }
  18203. },
  18204. frontdressed: {
  18205. height: math.unit(180, "cm"),
  18206. weight: math.unit(150, "kg"),
  18207. name: "Front-dressed",
  18208. image: {
  18209. source: "./media/characters/algier/front-dressed.svg",
  18210. extra: 596 / 572,
  18211. bottom: 0.038
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Micro",
  18218. height: math.unit(5, "cm")
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(180, "cm"),
  18223. default: true
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(64, "m")
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18233. {
  18234. upright: {
  18235. height: math.unit(7, "feet"),
  18236. weight: math.unit(300, "lb"),
  18237. name: "Upright",
  18238. image: {
  18239. source: "./media/characters/pretzel/upright.svg",
  18240. extra: 534 / 522,
  18241. bottom: 0.065
  18242. }
  18243. },
  18244. sprawling: {
  18245. height: math.unit(3.75, "feet"),
  18246. weight: math.unit(300, "lb"),
  18247. name: "Sprawling",
  18248. image: {
  18249. source: "./media/characters/pretzel/sprawling.svg",
  18250. extra: 314 / 281,
  18251. bottom: 0.1
  18252. }
  18253. },
  18254. tongue: {
  18255. height: math.unit(2, "feet"),
  18256. name: "Tongue",
  18257. image: {
  18258. source: "./media/characters/pretzel/tongue.svg"
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(7, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Oversized",
  18270. height: math.unit(15, "feet")
  18271. },
  18272. {
  18273. name: "Huge",
  18274. height: math.unit(30, "feet")
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(250, "feet")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18284. {
  18285. sideFront: {
  18286. height: math.unit(5 + 2 / 12, "feet"),
  18287. weight: math.unit(120, "lb"),
  18288. name: "Front Side",
  18289. image: {
  18290. source: "./media/characters/roxi/side-front.svg",
  18291. extra: 2924 / 2717,
  18292. bottom: 0.08
  18293. }
  18294. },
  18295. sideBack: {
  18296. height: math.unit(5 + 2 / 12, "feet"),
  18297. weight: math.unit(120, "lb"),
  18298. name: "Back Side",
  18299. image: {
  18300. source: "./media/characters/roxi/side-back.svg",
  18301. extra: 2904 / 2693,
  18302. bottom: 0.06
  18303. }
  18304. },
  18305. front: {
  18306. height: math.unit(5 + 2 / 12, "feet"),
  18307. weight: math.unit(120, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/roxi/front.svg",
  18311. extra: 2028 / 1907,
  18312. bottom: 0.01
  18313. }
  18314. },
  18315. frontAlt: {
  18316. height: math.unit(5 + 2 / 12, "feet"),
  18317. weight: math.unit(120, "lb"),
  18318. name: "Front (Alt)",
  18319. image: {
  18320. source: "./media/characters/roxi/front-alt.svg",
  18321. extra: 1828 / 1798,
  18322. bottom: 0.01
  18323. }
  18324. },
  18325. sitting: {
  18326. height: math.unit(2.8, "feet"),
  18327. weight: math.unit(120, "lb"),
  18328. name: "Sitting",
  18329. image: {
  18330. source: "./media/characters/roxi/sitting.svg",
  18331. extra: 2660 / 2462,
  18332. bottom: 0.1
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(5 + 2 / 12, "feet"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18346. {
  18347. side: {
  18348. height: math.unit(55, "feet"),
  18349. weight: math.unit(153, "tons"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/shadow/side.svg",
  18353. extra: 701 / 628,
  18354. bottom: 0.02
  18355. }
  18356. },
  18357. flying: {
  18358. height: math.unit(145, "feet"),
  18359. weight: math.unit(153, "tons"),
  18360. name: "Flying",
  18361. image: {
  18362. source: "./media/characters/shadow/flying.svg"
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(55, "feet"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(6, "feet"),
  18379. weight: math.unit(200, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/marcie/front.svg",
  18383. extra: 960 / 876,
  18384. bottom: 58 / 1017.87
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Macro",
  18391. height: math.unit(1, "mile"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18398. {
  18399. front: {
  18400. height: math.unit(7, "feet"),
  18401. weight: math.unit(200, "lb"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/kachina/front.svg",
  18405. extra: 1290.68 / 1119,
  18406. bottom: 36.5 / 1327.18
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(7, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18420. {
  18421. looking: {
  18422. height: math.unit(2, "meters"),
  18423. weight: math.unit(300, "kg"),
  18424. name: "Looking",
  18425. image: {
  18426. source: "./media/characters/kash/looking.svg",
  18427. extra: 474 / 344,
  18428. bottom: 0.03
  18429. }
  18430. },
  18431. side: {
  18432. height: math.unit(2, "meters"),
  18433. weight: math.unit(300, "kg"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/kash/side.svg",
  18437. extra: 302 / 251,
  18438. bottom: 0.03
  18439. }
  18440. },
  18441. front: {
  18442. height: math.unit(2, "meters"),
  18443. weight: math.unit(300, "kg"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/kash/front.svg",
  18447. extra: 495 / 360,
  18448. bottom: 0.015
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(2, "meters"),
  18456. default: true
  18457. },
  18458. {
  18459. name: "Big",
  18460. height: math.unit(3, "meters")
  18461. },
  18462. {
  18463. name: "Large",
  18464. height: math.unit(5, "meters")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18470. {
  18471. feeding: {
  18472. height: math.unit(6.7, "feet"),
  18473. weight: math.unit(350, "lb"),
  18474. name: "Feeding",
  18475. image: {
  18476. source: "./media/characters/lalim/feeding.svg",
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(6.7, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(9.5, "feet"),
  18493. weight: math.unit(600, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/de'vout/front.svg",
  18497. extra: 1443 / 1328,
  18498. bottom: 0.025
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(9.5, "feet"),
  18503. weight: math.unit(600, "lb"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/de'vout/back.svg",
  18507. extra: 1443 / 1328
  18508. }
  18509. },
  18510. frontDressed: {
  18511. height: math.unit(9.5, "feet"),
  18512. weight: math.unit(600, "lb"),
  18513. name: "Front (Dressed",
  18514. image: {
  18515. source: "./media/characters/de'vout/front-dressed.svg",
  18516. extra: 1443 / 1328,
  18517. bottom: 0.025
  18518. }
  18519. },
  18520. backDressed: {
  18521. height: math.unit(9.5, "feet"),
  18522. weight: math.unit(600, "lb"),
  18523. name: "Back (Dressed",
  18524. image: {
  18525. source: "./media/characters/de'vout/back-dressed.svg",
  18526. extra: 1443 / 1328
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(9.5, "feet"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(8, "feet"),
  18543. weight: math.unit(225, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/talana/front.svg",
  18547. extra: 1410 / 1300,
  18548. bottom: 0.015
  18549. }
  18550. },
  18551. frontDressed: {
  18552. height: math.unit(8, "feet"),
  18553. weight: math.unit(225, "lb"),
  18554. name: "Front (Dressed",
  18555. image: {
  18556. source: "./media/characters/talana/front-dressed.svg",
  18557. extra: 1410 / 1300,
  18558. bottom: 0.015
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(8, "feet"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18572. {
  18573. side: {
  18574. height: math.unit(7.2, "feet"),
  18575. weight: math.unit(150, "lb"),
  18576. name: "Side",
  18577. image: {
  18578. source: "./media/characters/xeauvok/side.svg",
  18579. extra: 1975 / 1523,
  18580. bottom: 0.07
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(7.2, "feet"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18594. {
  18595. side: {
  18596. height: math.unit(10, "feet"),
  18597. weight: math.unit(900, "kg"),
  18598. name: "Side",
  18599. image: {
  18600. source: "./media/characters/zara/side.svg",
  18601. extra: 504 / 498
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(10, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18615. {
  18616. side: {
  18617. height: math.unit(6, "feet"),
  18618. weight: math.unit(150, "lb"),
  18619. name: "Side",
  18620. image: {
  18621. source: "./media/characters/richard-dragon/side.svg",
  18622. extra: 845 / 340,
  18623. bottom: 0.017
  18624. }
  18625. },
  18626. maw: {
  18627. height: math.unit(2.97, "feet"),
  18628. name: "Maw",
  18629. image: {
  18630. source: "./media/characters/richard-dragon/maw.svg"
  18631. }
  18632. },
  18633. },
  18634. [
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(4, "feet"),
  18642. weight: math.unit(100, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/richard-smeargle/front.svg",
  18646. extra: 2952 / 2820,
  18647. bottom: 0.028
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(4, "feet"),
  18655. default: true
  18656. },
  18657. {
  18658. name: "Dynamax",
  18659. height: math.unit(20, "meters")
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(6, "feet"),
  18668. weight: math.unit(110, "lb"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/klay/front.svg",
  18672. extra: 962 / 883,
  18673. bottom: 0.04
  18674. }
  18675. },
  18676. back: {
  18677. height: math.unit(6, "feet"),
  18678. weight: math.unit(110, "lb"),
  18679. name: "Back",
  18680. image: {
  18681. source: "./media/characters/klay/back.svg",
  18682. extra: 962 / 883
  18683. }
  18684. },
  18685. beans: {
  18686. height: math.unit(1.15, "feet"),
  18687. name: "Beans",
  18688. image: {
  18689. source: "./media/characters/klay/beans.svg"
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Micro",
  18696. height: math.unit(6, "inches")
  18697. },
  18698. {
  18699. name: "Mini",
  18700. height: math.unit(3, "feet")
  18701. },
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(6, "feet"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Big",
  18709. height: math.unit(25, "feet")
  18710. },
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(100, "feet")
  18714. },
  18715. {
  18716. name: "Megamacro",
  18717. height: math.unit(400, "feet")
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(6, "feet"),
  18726. weight: math.unit(160, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/marcus/front.svg",
  18730. extra: 734 / 676,
  18731. bottom: 0.03
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Little",
  18738. height: math.unit(6, "feet")
  18739. },
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(110, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(250, "feet")
  18748. },
  18749. {
  18750. name: "Megamacro",
  18751. height: math.unit(1000, "feet")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(7, "feet"),
  18760. weight: math.unit(275, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/claude-delroute/front.svg",
  18764. extra: 902/827,
  18765. bottom: 26/928
  18766. }
  18767. },
  18768. side: {
  18769. height: math.unit(7, "feet"),
  18770. weight: math.unit(275, "lb"),
  18771. name: "Side",
  18772. image: {
  18773. source: "./media/characters/claude-delroute/side.svg",
  18774. extra: 908/853,
  18775. bottom: 16/924
  18776. }
  18777. },
  18778. back: {
  18779. height: math.unit(7, "feet"),
  18780. weight: math.unit(275, "lb"),
  18781. name: "Back",
  18782. image: {
  18783. source: "./media/characters/claude-delroute/back.svg",
  18784. extra: 911/829,
  18785. bottom: 18/929
  18786. }
  18787. },
  18788. maw: {
  18789. height: math.unit(0.6407, "meters"),
  18790. name: "Maw",
  18791. image: {
  18792. source: "./media/characters/claude-delroute/maw.svg"
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(7, "feet"),
  18800. default: true
  18801. },
  18802. {
  18803. name: "Lorge",
  18804. height: math.unit(20, "feet")
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(8 + 4 / 12, "feet"),
  18813. weight: math.unit(600, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/dragonien/front.svg",
  18817. extra: 100 / 94,
  18818. bottom: 3.3 / 103.3445
  18819. }
  18820. },
  18821. back: {
  18822. height: math.unit(8 + 4 / 12, "feet"),
  18823. weight: math.unit(600, "lb"),
  18824. name: "Back",
  18825. image: {
  18826. source: "./media/characters/dragonien/back.svg",
  18827. extra: 776 / 746,
  18828. bottom: 6.4 / 782.0616
  18829. }
  18830. },
  18831. foot: {
  18832. height: math.unit(1.54, "feet"),
  18833. name: "Foot",
  18834. image: {
  18835. source: "./media/characters/dragonien/foot.svg",
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(8 + 4 / 12, "feet"),
  18843. default: true
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(200, "feet")
  18848. },
  18849. {
  18850. name: "Megamacro",
  18851. height: math.unit(1, "mile")
  18852. },
  18853. {
  18854. name: "Gigamacro",
  18855. height: math.unit(1000, "miles")
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18861. {
  18862. front: {
  18863. height: math.unit(5 + 2 / 12, "feet"),
  18864. weight: math.unit(110, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/desta/front.svg",
  18868. extra: 767 / 726,
  18869. bottom: 11.7 / 779
  18870. }
  18871. },
  18872. back: {
  18873. height: math.unit(5 + 2 / 12, "feet"),
  18874. weight: math.unit(110, "lb"),
  18875. name: "Back",
  18876. image: {
  18877. source: "./media/characters/desta/back.svg",
  18878. extra: 777 / 728,
  18879. bottom: 6 / 784
  18880. }
  18881. },
  18882. frontAlt: {
  18883. height: math.unit(5 + 2 / 12, "feet"),
  18884. weight: math.unit(110, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/desta/front-alt.svg",
  18888. extra: 1482 / 1417
  18889. }
  18890. },
  18891. side: {
  18892. height: math.unit(5 + 2 / 12, "feet"),
  18893. weight: math.unit(110, "lb"),
  18894. name: "Side",
  18895. image: {
  18896. source: "./media/characters/desta/side.svg",
  18897. extra: 2579 / 2491,
  18898. bottom: 0.053
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Micro",
  18905. height: math.unit(6, "inches")
  18906. },
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(5 + 2 / 12, "feet"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Macro",
  18914. height: math.unit(62, "feet")
  18915. },
  18916. {
  18917. name: "Megamacro",
  18918. height: math.unit(1800, "feet")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(10, "feet"),
  18927. weight: math.unit(700, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/storm-alystar/front.svg",
  18931. extra: 2112 / 1898,
  18932. bottom: 0.034
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Micro",
  18939. height: math.unit(3.5, "inches")
  18940. },
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(10, "feet"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(400, "feet")
  18949. },
  18950. {
  18951. name: "Deific",
  18952. height: math.unit(60, "miles")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(2.35, "meters"),
  18961. weight: math.unit(119, "kg"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/ilia/front.svg",
  18965. extra: 1285 / 1255,
  18966. bottom: 0.06
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(2.35, "meters")
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(140, "meters"),
  18978. default: true
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(100, "miles")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(6 + 5 / 12, "feet"),
  18991. weight: math.unit(190, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/kingdead/front.svg",
  18995. extra: 1228 / 1177
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Micro",
  19002. height: math.unit(7, "inches")
  19003. },
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(6 + 5 / 12, "feet")
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(150, "feet"),
  19011. default: true
  19012. },
  19013. {
  19014. name: "Megamacro",
  19015. height: math.unit(200, "miles")
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19021. {
  19022. front: {
  19023. height: math.unit(8, "feet"),
  19024. weight: math.unit(600, "lb"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/kyrehx/front.svg",
  19028. extra: 1195 / 1095,
  19029. bottom: 0.034
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Micro",
  19036. height: math.unit(2, "inches")
  19037. },
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(8, "feet"),
  19041. default: true
  19042. },
  19043. {
  19044. name: "Macro",
  19045. height: math.unit(255, "feet")
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19054. weight: math.unit(184, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/xang/front.svg",
  19058. extra: 845 / 755
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19066. default: true
  19067. },
  19068. {
  19069. name: "Macro",
  19070. height: math.unit(0.935 * 146, "feet")
  19071. },
  19072. {
  19073. name: "Megamacro",
  19074. height: math.unit(0.935 * 3, "miles")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19080. {
  19081. frontDressed: {
  19082. height: math.unit(5 + 7 / 12, "feet"),
  19083. weight: math.unit(140, "lb"),
  19084. name: "Front (Dressed)",
  19085. image: {
  19086. source: "./media/characters/doc-weardno/front-dressed.svg",
  19087. extra: 263 / 234
  19088. }
  19089. },
  19090. backDressed: {
  19091. height: math.unit(5 + 7 / 12, "feet"),
  19092. weight: math.unit(140, "lb"),
  19093. name: "Back (Dressed)",
  19094. image: {
  19095. source: "./media/characters/doc-weardno/back-dressed.svg",
  19096. extra: 266 / 238
  19097. }
  19098. },
  19099. front: {
  19100. height: math.unit(5 + 7 / 12, "feet"),
  19101. weight: math.unit(140, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/doc-weardno/front.svg",
  19105. extra: 254 / 233
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Micro",
  19112. height: math.unit(3, "inches")
  19113. },
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(5 + 7 / 12, "feet"),
  19117. default: true
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(25, "feet")
  19122. },
  19123. {
  19124. name: "Megamacro",
  19125. height: math.unit(2, "miles")
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19131. {
  19132. front: {
  19133. height: math.unit(6 + 2 / 12, "feet"),
  19134. weight: math.unit(153, "lb"),
  19135. name: "Front",
  19136. image: {
  19137. source: "./media/characters/seth-whilst/front.svg",
  19138. bottom: 0.07
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Micro",
  19145. height: math.unit(5, "inches")
  19146. },
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(6 + 2 / 12, "feet"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(3, "inches"),
  19159. weight: math.unit(8, "grams"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/pocket-jabari/front.svg",
  19163. extra: 1024 / 974,
  19164. bottom: 0.039
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Minimicro",
  19171. height: math.unit(8, "mm")
  19172. },
  19173. {
  19174. name: "Micro",
  19175. height: math.unit(3, "inches"),
  19176. default: true
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(3, "feet")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(15, "feet"),
  19189. weight: math.unit(3280, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/sapphy/front.svg",
  19193. extra: 671 / 577,
  19194. bottom: 0.085
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(15, "feet"),
  19199. weight: math.unit(3280, "lb"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/sapphy/back.svg",
  19203. extra: 631 / 607,
  19204. bottom: 0.045
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(15, "feet")
  19212. },
  19213. {
  19214. name: "Casual Macro",
  19215. height: math.unit(120, "feet")
  19216. },
  19217. {
  19218. name: "Macro",
  19219. height: math.unit(2150, "feet"),
  19220. default: true
  19221. },
  19222. {
  19223. name: "Megamacro",
  19224. height: math.unit(8, "miles")
  19225. },
  19226. {
  19227. name: "Galaxy Mom",
  19228. height: math.unit(6, "megalightyears")
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(6, "feet"),
  19237. weight: math.unit(170, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/kiro/front.svg",
  19241. extra: 1064 / 1012,
  19242. bottom: 0.052
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Micro",
  19249. height: math.unit(6, "inches")
  19250. },
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(6, "feet"),
  19254. default: true
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(72, "feet")
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(5 + 9 / 12, "feet"),
  19267. weight: math.unit(175, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/irishfox/front.svg",
  19271. extra: 1912 / 1680,
  19272. bottom: 0.02
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Nano",
  19279. height: math.unit(1, "mm")
  19280. },
  19281. {
  19282. name: "Micro",
  19283. height: math.unit(2, "inches")
  19284. },
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 9 / 12, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(45, "feet")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(6 + 1 / 12, "feet"),
  19301. weight: math.unit(75, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/aronai-sieyes/front.svg",
  19305. extra: 1532/1450,
  19306. bottom: 42/1574
  19307. }
  19308. },
  19309. side: {
  19310. height: math.unit(6 + 1 / 12, "feet"),
  19311. weight: math.unit(75, "lb"),
  19312. name: "Side",
  19313. image: {
  19314. source: "./media/characters/aronai-sieyes/side.svg",
  19315. extra: 1422/1365,
  19316. bottom: 148/1570
  19317. }
  19318. },
  19319. back: {
  19320. height: math.unit(6 + 1 / 12, "feet"),
  19321. weight: math.unit(75, "lb"),
  19322. name: "Back",
  19323. image: {
  19324. source: "./media/characters/aronai-sieyes/back.svg",
  19325. extra: 1526/1464,
  19326. bottom: 51/1577
  19327. }
  19328. },
  19329. dressed: {
  19330. height: math.unit(6 + 1 / 12, "feet"),
  19331. weight: math.unit(75, "lb"),
  19332. name: "Dressed",
  19333. image: {
  19334. source: "./media/characters/aronai-sieyes/dressed.svg",
  19335. extra: 1559/1483,
  19336. bottom: 39/1598
  19337. }
  19338. },
  19339. slit: {
  19340. height: math.unit(1.3, "feet"),
  19341. name: "Slit",
  19342. image: {
  19343. source: "./media/characters/aronai-sieyes/slit.svg"
  19344. }
  19345. },
  19346. slitSpread: {
  19347. height: math.unit(0.9, "feet"),
  19348. name: "Slit (Spread)",
  19349. image: {
  19350. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19351. }
  19352. },
  19353. rump: {
  19354. height: math.unit(1.3, "feet"),
  19355. name: "Rump",
  19356. image: {
  19357. source: "./media/characters/aronai-sieyes/rump.svg"
  19358. }
  19359. },
  19360. maw: {
  19361. height: math.unit(1.25, "feet"),
  19362. name: "Maw",
  19363. image: {
  19364. source: "./media/characters/aronai-sieyes/maw.svg"
  19365. }
  19366. },
  19367. feral: {
  19368. height: math.unit(18, "feet"),
  19369. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19370. name: "Feral",
  19371. image: {
  19372. source: "./media/characters/aronai-sieyes/feral.svg",
  19373. extra: 1530 / 1240,
  19374. bottom: 0.035
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Micro",
  19381. height: math.unit(2, "inches")
  19382. },
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(6 + 1 / 12, "feet"),
  19386. default: true
  19387. }
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(12, "feet"),
  19395. weight: math.unit(410, "kg"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/xuna/front.svg",
  19399. extra: 2184 / 1980
  19400. }
  19401. },
  19402. side: {
  19403. height: math.unit(12, "feet"),
  19404. weight: math.unit(410, "kg"),
  19405. name: "Side",
  19406. image: {
  19407. source: "./media/characters/xuna/side.svg",
  19408. extra: 2184 / 1980
  19409. }
  19410. },
  19411. back: {
  19412. height: math.unit(12, "feet"),
  19413. weight: math.unit(410, "kg"),
  19414. name: "Back",
  19415. image: {
  19416. source: "./media/characters/xuna/back.svg",
  19417. extra: 2184 / 1980
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Nano glow",
  19424. height: math.unit(10, "nm")
  19425. },
  19426. {
  19427. name: "Micro floof",
  19428. height: math.unit(0.3, "m")
  19429. },
  19430. {
  19431. name: "Huggable softy boi",
  19432. height: math.unit(3.6576, "m"),
  19433. default: true
  19434. },
  19435. {
  19436. name: "Admirable floof",
  19437. height: math.unit(80, "meters")
  19438. },
  19439. {
  19440. name: "Gentle macro",
  19441. height: math.unit(300, "meters")
  19442. },
  19443. {
  19444. name: "Very careful floof",
  19445. height: math.unit(3200, "meters")
  19446. },
  19447. {
  19448. name: "The mega floof",
  19449. height: math.unit(36000, "meters")
  19450. },
  19451. {
  19452. name: "Giga-fur-Wicker",
  19453. height: math.unit(4800000, "meters")
  19454. },
  19455. {
  19456. name: "Licky world",
  19457. height: math.unit(20000000, "meters")
  19458. },
  19459. {
  19460. name: "Floofy cyan sun",
  19461. height: math.unit(1500000000, "meters")
  19462. },
  19463. {
  19464. name: "Milky Wicker",
  19465. height: math.unit(1000000000000000000000, "meters")
  19466. },
  19467. {
  19468. name: "The observing Wicker",
  19469. height: math.unit(999999999999999999999999999, "meters")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(5 + 9 / 12, "feet"),
  19478. weight: math.unit(150, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/arokha-sieyes/front.svg",
  19482. extra: 1425 / 1284,
  19483. bottom: 0.05
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(5 + 9 / 12, "feet")
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(30, "meters"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(6, "feet"),
  19504. weight: math.unit(180, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/arokh-sieyes/front.svg",
  19508. extra: 1830 / 1769,
  19509. bottom: 0.01
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(6, "feet")
  19517. },
  19518. {
  19519. name: "Macro",
  19520. height: math.unit(30, "meters"),
  19521. default: true
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19527. {
  19528. side: {
  19529. height: math.unit(13 + 1 / 12, "feet"),
  19530. weight: math.unit(8.5, "tonnes"),
  19531. name: "Side",
  19532. image: {
  19533. source: "./media/characters/goldeneye/side.svg",
  19534. extra: 1182 / 778,
  19535. bottom: 0.067
  19536. }
  19537. },
  19538. paw: {
  19539. height: math.unit(3.4, "feet"),
  19540. name: "Paw",
  19541. image: {
  19542. source: "./media/characters/goldeneye/paw.svg"
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(13 + 1 / 12, "feet"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19556. {
  19557. front: {
  19558. height: math.unit(6 + 1 / 12, "feet"),
  19559. weight: math.unit(210, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/leonardo-lycheborne/front.svg",
  19563. extra: 776/723,
  19564. bottom: 34/810
  19565. }
  19566. },
  19567. side: {
  19568. height: math.unit(6 + 1 / 12, "feet"),
  19569. weight: math.unit(210, "lb"),
  19570. name: "Side",
  19571. image: {
  19572. source: "./media/characters/leonardo-lycheborne/side.svg",
  19573. extra: 780/728,
  19574. bottom: 12/792
  19575. }
  19576. },
  19577. back: {
  19578. height: math.unit(6 + 1 / 12, "feet"),
  19579. weight: math.unit(210, "lb"),
  19580. name: "Back",
  19581. image: {
  19582. source: "./media/characters/leonardo-lycheborne/back.svg",
  19583. extra: 775/721,
  19584. bottom: 17/792
  19585. }
  19586. },
  19587. hand: {
  19588. height: math.unit(1.08, "feet"),
  19589. name: "Hand",
  19590. image: {
  19591. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19592. }
  19593. },
  19594. foot: {
  19595. height: math.unit(1.32, "feet"),
  19596. name: "Foot",
  19597. image: {
  19598. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19599. }
  19600. },
  19601. maw: {
  19602. height: math.unit(1, "feet"),
  19603. name: "Maw",
  19604. image: {
  19605. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19606. }
  19607. },
  19608. were: {
  19609. height: math.unit(20, "feet"),
  19610. weight: math.unit(7800, "lb"),
  19611. name: "Were",
  19612. image: {
  19613. source: "./media/characters/leonardo-lycheborne/were.svg",
  19614. extra: 1224/1165,
  19615. bottom: 72/1296
  19616. }
  19617. },
  19618. feral: {
  19619. height: math.unit(7.5, "feet"),
  19620. weight: math.unit(600, "lb"),
  19621. name: "Feral",
  19622. image: {
  19623. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19624. extra: 797/702,
  19625. bottom: 139/936
  19626. }
  19627. },
  19628. taur: {
  19629. height: math.unit(11, "feet"),
  19630. weight: math.unit(3300, "lb"),
  19631. name: "Taur",
  19632. image: {
  19633. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19634. extra: 1271/1197,
  19635. bottom: 47/1318
  19636. }
  19637. },
  19638. barghest: {
  19639. height: math.unit(11, "feet"),
  19640. weight: math.unit(1300, "lb"),
  19641. name: "Barghest",
  19642. image: {
  19643. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19644. extra: 1291/1204,
  19645. bottom: 37/1328
  19646. }
  19647. },
  19648. dick: {
  19649. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19650. name: "Dick",
  19651. image: {
  19652. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19653. }
  19654. },
  19655. dickWere: {
  19656. height: math.unit((20) / 3.8, "feet"),
  19657. name: "Dick (Were)",
  19658. image: {
  19659. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6 + 1 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(10, "feet"),
  19676. weight: math.unit(350, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/jet/front.svg",
  19680. extra: 2050 / 1980,
  19681. bottom: 0.013
  19682. }
  19683. },
  19684. back: {
  19685. height: math.unit(10, "feet"),
  19686. weight: math.unit(350, "lb"),
  19687. name: "Back",
  19688. image: {
  19689. source: "./media/characters/jet/back.svg",
  19690. extra: 2050 / 1980,
  19691. bottom: 0.013
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Micro",
  19698. height: math.unit(6, "inches")
  19699. },
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(10, "feet"),
  19703. default: true
  19704. },
  19705. {
  19706. name: "Macro",
  19707. height: math.unit(100, "feet")
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(15, "feet"),
  19716. weight: math.unit(2800, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/tanarath/front.svg",
  19720. extra: 2392 / 2220,
  19721. bottom: 0.03
  19722. }
  19723. },
  19724. back: {
  19725. height: math.unit(15, "feet"),
  19726. weight: math.unit(2800, "lb"),
  19727. name: "Back",
  19728. image: {
  19729. source: "./media/characters/tanarath/back.svg",
  19730. extra: 2392 / 2220,
  19731. bottom: 0.03
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(15, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(7 + 1 / 12, "feet"),
  19748. weight: math.unit(175, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/patty-cattybatty/front.svg",
  19752. extra: 908 / 874,
  19753. bottom: 0.025
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(1, "inch")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(7 + 1 / 12, "feet")
  19765. },
  19766. {
  19767. name: "Mini Macro",
  19768. height: math.unit(155, "feet")
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(1077, "feet")
  19773. },
  19774. {
  19775. name: "Mega Macro",
  19776. height: math.unit(47650, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "Giga Macro",
  19781. height: math.unit(440, "miles")
  19782. },
  19783. {
  19784. name: "Tera Macro",
  19785. height: math.unit(8700, "miles")
  19786. },
  19787. {
  19788. name: "Planetary Macro",
  19789. height: math.unit(32700, "miles")
  19790. },
  19791. {
  19792. name: "Solar Macro",
  19793. height: math.unit(550000, "miles")
  19794. },
  19795. {
  19796. name: "Celestial Macro",
  19797. height: math.unit(2.5, "AU")
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(4 + 5 / 12, "feet"),
  19806. weight: math.unit(90, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/cappu/front.svg",
  19810. extra: 1247 / 1152,
  19811. bottom: 0.012
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(4 + 5 / 12, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19825. {
  19826. frontDressed: {
  19827. height: math.unit(70, "cm"),
  19828. weight: math.unit(6, "kg"),
  19829. name: "Front (Dressed)",
  19830. image: {
  19831. source: "./media/characters/sebi/front-dressed.svg",
  19832. extra: 713.5 / 686.5,
  19833. bottom: 0.003
  19834. }
  19835. },
  19836. front: {
  19837. height: math.unit(70, "cm"),
  19838. weight: math.unit(5, "kg"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/sebi/front.svg",
  19842. extra: 713.5 / 686.5,
  19843. bottom: 0.003
  19844. }
  19845. }
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(70, "cm"),
  19851. default: true
  19852. },
  19853. {
  19854. name: "Macro",
  19855. height: math.unit(8, "meters")
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(6, "feet"),
  19864. weight: math.unit(150, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/typhek/front.svg",
  19868. extra: 1948 / 1929,
  19869. bottom: 0.025
  19870. }
  19871. },
  19872. side: {
  19873. height: math.unit(6, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Side",
  19876. image: {
  19877. source: "./media/characters/typhek/side.svg",
  19878. extra: 2034 / 2010,
  19879. bottom: 0.003
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(6, "feet"),
  19884. weight: math.unit(150, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/typhek/back.svg",
  19888. extra: 2005 / 1978,
  19889. bottom: 0.004
  19890. }
  19891. },
  19892. palm: {
  19893. height: math.unit(1.2, "feet"),
  19894. name: "Palm",
  19895. image: {
  19896. source: "./media/characters/typhek/palm.svg"
  19897. }
  19898. },
  19899. fist: {
  19900. height: math.unit(1.1, "feet"),
  19901. name: "Fist",
  19902. image: {
  19903. source: "./media/characters/typhek/fist.svg"
  19904. }
  19905. },
  19906. foot: {
  19907. height: math.unit(1.57, "feet"),
  19908. name: "Foot",
  19909. image: {
  19910. source: "./media/characters/typhek/foot.svg"
  19911. }
  19912. },
  19913. sole: {
  19914. height: math.unit(2.05, "feet"),
  19915. name: "Sole",
  19916. image: {
  19917. source: "./media/characters/typhek/sole.svg"
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Macro",
  19924. height: math.unit(40, "stories"),
  19925. default: true
  19926. },
  19927. {
  19928. name: "Megamacro",
  19929. height: math.unit(1, "mile")
  19930. },
  19931. {
  19932. name: "Gigamacro",
  19933. height: math.unit(4000, "solarradii")
  19934. },
  19935. {
  19936. name: "Universal",
  19937. height: math.unit(1.1, "universes")
  19938. }
  19939. ]
  19940. ))
  19941. characterMakers.push(() => makeCharacter(
  19942. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19943. {
  19944. side: {
  19945. height: math.unit(5 + 7 / 12, "feet"),
  19946. weight: math.unit(150, "lb"),
  19947. name: "Side",
  19948. image: {
  19949. source: "./media/characters/kassy/side.svg",
  19950. extra: 1280 / 1225,
  19951. bottom: 0.002
  19952. }
  19953. },
  19954. front: {
  19955. height: math.unit(5 + 7 / 12, "feet"),
  19956. weight: math.unit(150, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/kassy/front.svg",
  19960. extra: 1280 / 1225,
  19961. bottom: 0.025
  19962. }
  19963. },
  19964. back: {
  19965. height: math.unit(5 + 7 / 12, "feet"),
  19966. weight: math.unit(150, "lb"),
  19967. name: "Back",
  19968. image: {
  19969. source: "./media/characters/kassy/back.svg",
  19970. extra: 1280 / 1225,
  19971. bottom: 0.002
  19972. }
  19973. },
  19974. foot: {
  19975. height: math.unit(1.266, "feet"),
  19976. name: "Foot",
  19977. image: {
  19978. source: "./media/characters/kassy/foot.svg"
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(5 + 7 / 12, "feet")
  19986. },
  19987. {
  19988. name: "Macro",
  19989. height: math.unit(137, "feet"),
  19990. default: true
  19991. },
  19992. {
  19993. name: "Megamacro",
  19994. height: math.unit(1, "mile")
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 1 / 12, "feet"),
  20003. weight: math.unit(200, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/neil/front.svg",
  20007. extra: 1326 / 1250,
  20008. bottom: 0.023
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(6 + 1 / 12, "feet"),
  20016. default: true
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(200, "feet")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(5 + 9 / 12, "feet"),
  20029. weight: math.unit(190, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/atticus/front.svg",
  20033. extra: 2934 / 2785,
  20034. bottom: 0.025
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(5 + 9 / 12, "feet"),
  20042. default: true
  20043. },
  20044. {
  20045. name: "Macro",
  20046. height: math.unit(180, "feet")
  20047. },
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20052. {
  20053. side: {
  20054. height: math.unit(9, "feet"),
  20055. weight: math.unit(650, "lb"),
  20056. name: "Side",
  20057. image: {
  20058. source: "./media/characters/milo/side.svg",
  20059. extra: 2644 / 2310,
  20060. bottom: 0.032
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(9, "feet"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Macro",
  20072. height: math.unit(300, "feet")
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20078. {
  20079. side: {
  20080. height: math.unit(8, "meters"),
  20081. weight: math.unit(90000, "kg"),
  20082. name: "Side",
  20083. image: {
  20084. source: "./media/characters/ijzer/side.svg",
  20085. extra: 2756 / 1600,
  20086. bottom: 0.01
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Small",
  20093. height: math.unit(3, "meters")
  20094. },
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(8, "meters"),
  20098. default: true
  20099. },
  20100. {
  20101. name: "Normal+",
  20102. height: math.unit(10, "meters")
  20103. },
  20104. {
  20105. name: "Bigger",
  20106. height: math.unit(24, "meters")
  20107. },
  20108. {
  20109. name: "Huge",
  20110. height: math.unit(80, "meters")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(6 + 2 / 12, "feet"),
  20119. weight: math.unit(153, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/luca-cervicum/front.svg",
  20123. extra: 370 / 327,
  20124. bottom: 0.015
  20125. }
  20126. },
  20127. back: {
  20128. height: math.unit(6 + 2 / 12, "feet"),
  20129. weight: math.unit(153, "lb"),
  20130. name: "Back",
  20131. image: {
  20132. source: "./media/characters/luca-cervicum/back.svg",
  20133. extra: 367 / 333,
  20134. bottom: 0.005
  20135. }
  20136. },
  20137. frontGear: {
  20138. height: math.unit(6 + 2 / 12, "feet"),
  20139. weight: math.unit(173, "lb"),
  20140. name: "Front (Gear)",
  20141. image: {
  20142. source: "./media/characters/luca-cervicum/front-gear.svg",
  20143. extra: 377 / 333,
  20144. bottom: 0.006
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(6 + 2 / 12, "feet"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(6 + 1 / 12, "feet"),
  20161. weight: math.unit(304, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/oliver/front.svg",
  20165. extra: 157 / 143,
  20166. bottom: 0.08
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(6 + 1 / 12, "feet"),
  20174. default: true
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(5 + 7 / 12, "feet"),
  20183. weight: math.unit(140, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/shane/front.svg",
  20187. extra: 304 / 289,
  20188. bottom: 0.005
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(5 + 7 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(5 + 9 / 12, "feet"),
  20205. weight: math.unit(178, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/shin/front.svg",
  20209. extra: 159 / 151,
  20210. bottom: 0.015
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(5 + 9 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(5 + 10 / 12, "feet"),
  20227. weight: math.unit(168, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/xerxes/front.svg",
  20231. extra: 282 / 260,
  20232. bottom: 0.045
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(5 + 10 / 12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(6 + 7 / 12, "feet"),
  20249. weight: math.unit(208, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/chaska/front.svg",
  20253. extra: 332 / 319,
  20254. bottom: 0.015
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(6 + 7 / 12, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(5 + 8 / 12, "feet"),
  20271. weight: math.unit(208, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/enuk/front.svg",
  20275. extra: 437 / 406,
  20276. bottom: 0.02
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(5 + 8 / 12, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(5 + 10 / 12, "feet"),
  20293. weight: math.unit(252, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/bruun/front.svg",
  20297. extra: 197 / 187,
  20298. bottom: 0.012
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5 + 10 / 12, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(6 + 10 / 12, "feet"),
  20315. weight: math.unit(255, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/alexeev/front.svg",
  20319. extra: 213 / 200,
  20320. bottom: 0.05
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(6 + 10 / 12, "feet"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(2 + 8 / 12, "feet"),
  20337. weight: math.unit(22, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/evelyn/front.svg",
  20341. extra: 208 / 180
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(2 + 8 / 12, "feet"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20355. {
  20356. front: {
  20357. height: math.unit(5 + 9 / 12, "feet"),
  20358. weight: math.unit(139, "lb"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/inca/front.svg",
  20362. extra: 294 / 291,
  20363. bottom: 0.03
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(5 + 9 / 12, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(6 + 3 / 12, "feet"),
  20380. weight: math.unit(185, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/mera/front.svg",
  20384. extra: 291 / 277,
  20385. bottom: 0.03
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(6 + 3 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(6 + 7 / 12, "feet"),
  20402. weight: math.unit(160, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/ceres/front.svg",
  20406. extra: 1023 / 950,
  20407. bottom: 0.027
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(6 + 7 / 12, "feet"),
  20412. weight: math.unit(160, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/ceres/back.svg",
  20416. extra: 1023 / 950
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(6 + 7 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5 + 10 / 12, "feet"),
  20433. weight: math.unit(150, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/kris/front.svg",
  20437. extra: 885 / 803,
  20438. bottom: 0.03
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 10 / 12, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(7, "feet"),
  20455. weight: math.unit(120, "kg"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/taluthus/front.svg",
  20459. extra: 903 / 833,
  20460. bottom: 0.015
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(7, "feet"),
  20468. default: true
  20469. },
  20470. {
  20471. name: "Macro",
  20472. height: math.unit(300, "feet")
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(5 + 9 / 12, "feet"),
  20481. weight: math.unit(145, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/dawn/front.svg",
  20485. extra: 2094 / 2016,
  20486. bottom: 0.025
  20487. }
  20488. },
  20489. back: {
  20490. height: math.unit(5 + 9 / 12, "feet"),
  20491. weight: math.unit(160, "lb"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/dawn/back.svg",
  20495. extra: 2112 / 2080,
  20496. bottom: 0.005
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(6 + 7 / 12, "feet"),
  20504. default: true
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20510. {
  20511. anthro: {
  20512. height: math.unit(8 + 3 / 12, "feet"),
  20513. weight: math.unit(450, "lb"),
  20514. name: "Anthro",
  20515. image: {
  20516. source: "./media/characters/arador/anthro.svg",
  20517. extra: 1835 / 1718,
  20518. bottom: 0.025
  20519. }
  20520. },
  20521. feral: {
  20522. height: math.unit(4, "feet"),
  20523. weight: math.unit(200, "lb"),
  20524. name: "Feral",
  20525. image: {
  20526. source: "./media/characters/arador/feral.svg",
  20527. extra: 1683 / 1514,
  20528. bottom: 0.07
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(8 + 3 / 12, "feet")
  20536. },
  20537. {
  20538. name: "Macro",
  20539. height: math.unit(82.5, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 10 / 12, "feet"),
  20549. weight: math.unit(125, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/dharsi/front.svg",
  20553. extra: 716 / 630,
  20554. bottom: 0.035
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Nano",
  20561. height: math.unit(100, "nm")
  20562. },
  20563. {
  20564. name: "Micro",
  20565. height: math.unit(2, "inches")
  20566. },
  20567. {
  20568. name: "Normal",
  20569. height: math.unit(5 + 10 / 12, "feet"),
  20570. default: true
  20571. },
  20572. {
  20573. name: "Macro",
  20574. height: math.unit(1000, "feet")
  20575. },
  20576. {
  20577. name: "Megamacro",
  20578. height: math.unit(10, "miles")
  20579. },
  20580. {
  20581. name: "Gigamacro",
  20582. height: math.unit(3000, "miles")
  20583. },
  20584. {
  20585. name: "Teramacro",
  20586. height: math.unit(500000, "miles")
  20587. },
  20588. {
  20589. name: "Teramacro+",
  20590. height: math.unit(30, "galaxies")
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20596. {
  20597. front: {
  20598. height: math.unit(6, "feet"),
  20599. weight: math.unit(150, "lb"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/deathy/front.svg",
  20603. extra: 1552 / 1463,
  20604. bottom: 0.025
  20605. }
  20606. },
  20607. side: {
  20608. height: math.unit(6, "feet"),
  20609. weight: math.unit(150, "lb"),
  20610. name: "Side",
  20611. image: {
  20612. source: "./media/characters/deathy/side.svg",
  20613. extra: 1604 / 1455,
  20614. bottom: 0.025
  20615. }
  20616. },
  20617. back: {
  20618. height: math.unit(6, "feet"),
  20619. weight: math.unit(150, "lb"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/deathy/back.svg",
  20623. extra: 1580 / 1463,
  20624. bottom: 0.005
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Micro",
  20631. height: math.unit(5, "millimeters")
  20632. },
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(6 + 5 / 12, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20642. {
  20643. front: {
  20644. height: math.unit(16, "feet"),
  20645. weight: math.unit(4000, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/juniper/front.svg",
  20649. bottom: 0.04
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(16, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(6, "feet"),
  20666. weight: math.unit(150, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/hipster/front.svg",
  20670. extra: 1312 / 1209,
  20671. bottom: 0.025
  20672. }
  20673. },
  20674. back: {
  20675. height: math.unit(6, "feet"),
  20676. weight: math.unit(150, "lb"),
  20677. name: "Back",
  20678. image: {
  20679. source: "./media/characters/hipster/back.svg",
  20680. extra: 1281 / 1196,
  20681. bottom: 0.01
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Micro",
  20688. height: math.unit(1, "mm")
  20689. },
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(4, "inches"),
  20693. default: true
  20694. },
  20695. {
  20696. name: "Macro",
  20697. height: math.unit(500, "feet")
  20698. },
  20699. {
  20700. name: "Megamacro",
  20701. height: math.unit(1000, "miles")
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(6, "feet"),
  20710. weight: math.unit(150, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/tendirmuldr/front.svg",
  20714. extra: 1878 / 1772,
  20715. bottom: 0.015
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Megamacro",
  20722. height: math.unit(1500, "miles"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20729. {
  20730. front: {
  20731. height: math.unit(14, "feet"),
  20732. weight: math.unit(12000, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/mort/front.svg",
  20736. extra: 365 / 318,
  20737. bottom: 0.01
  20738. }
  20739. },
  20740. side: {
  20741. height: math.unit(14, "feet"),
  20742. weight: math.unit(12000, "lb"),
  20743. name: "Side",
  20744. image: {
  20745. source: "./media/characters/mort/side.svg",
  20746. extra: 365 / 318,
  20747. bottom: 0.052
  20748. },
  20749. default: true
  20750. },
  20751. back: {
  20752. height: math.unit(14, "feet"),
  20753. weight: math.unit(12000, "lb"),
  20754. name: "Back",
  20755. image: {
  20756. source: "./media/characters/mort/back.svg",
  20757. extra: 371 / 332,
  20758. bottom: 0.18
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(14, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20772. {
  20773. front: {
  20774. height: math.unit(8, "feet"),
  20775. weight: math.unit(1, "ton"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/lycoa/front.svg",
  20779. extra: 1836/1728,
  20780. bottom: 81/1917
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(8, "feet"),
  20785. weight: math.unit(1, "ton"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/lycoa/back.svg",
  20789. extra: 1785/1720,
  20790. bottom: 91/1876
  20791. }
  20792. },
  20793. head: {
  20794. height: math.unit(1.6243, "feet"),
  20795. name: "Head",
  20796. image: {
  20797. source: "./media/characters/lycoa/head.svg",
  20798. extra: 1011/782,
  20799. bottom: 0/1011
  20800. }
  20801. },
  20802. tailmaw: {
  20803. height: math.unit(1.9, "feet"),
  20804. name: "Tailmaw",
  20805. image: {
  20806. source: "./media/characters/lycoa/tailmaw.svg"
  20807. }
  20808. },
  20809. tentacles: {
  20810. height: math.unit(2.1, "feet"),
  20811. name: "Tentacles",
  20812. image: {
  20813. source: "./media/characters/lycoa/tentacles.svg"
  20814. }
  20815. },
  20816. dick: {
  20817. height: math.unit(1.73, "feet"),
  20818. name: "Dick",
  20819. image: {
  20820. source: "./media/characters/lycoa/dick.svg"
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(8, "feet"),
  20828. default: true
  20829. },
  20830. {
  20831. name: "Macro",
  20832. height: math.unit(30, "feet")
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20838. {
  20839. front: {
  20840. height: math.unit(4 + 2 / 12, "feet"),
  20841. weight: math.unit(70, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/naldara/front.svg",
  20845. extra: 1664/1387,
  20846. bottom: 81/1745
  20847. },
  20848. form: "anthro",
  20849. default: true
  20850. },
  20851. naga: {
  20852. height: math.unit(20, "feet"),
  20853. weight: math.unit(15000, "kg"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/naldara/naga.svg",
  20857. extra: 1590/1396,
  20858. bottom: 285/1875
  20859. },
  20860. form: "naga",
  20861. default: true
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(4 + 2 / 12, "feet"),
  20868. form: "anthro",
  20869. default: true
  20870. },
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(20, "feet"),
  20874. form: "naga",
  20875. default: true
  20876. },
  20877. ],
  20878. {
  20879. "anthro": {
  20880. name: "Anthro",
  20881. default: true
  20882. },
  20883. "naga": {
  20884. name: "Naga"
  20885. }
  20886. }
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(13 + 7 / 12, "feet"),
  20893. weight: math.unit(1500, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/briar/front.svg",
  20897. extra: 1223/1157,
  20898. bottom: 123/1346
  20899. }
  20900. },
  20901. },
  20902. [
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(13 + 7 / 12, "feet"),
  20906. default: true
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20912. {
  20913. side: {
  20914. height: math.unit(16, "feet"),
  20915. weight: math.unit(500, "lb"),
  20916. name: "Side",
  20917. image: {
  20918. source: "./media/characters/vanguard/side.svg",
  20919. extra: 1022/914,
  20920. bottom: 30/1052
  20921. }
  20922. },
  20923. sideAlt: {
  20924. height: math.unit(10, "feet"),
  20925. weight: math.unit(500, "lb"),
  20926. name: "Side (Alt)",
  20927. image: {
  20928. source: "./media/characters/vanguard/side-alt.svg",
  20929. extra: 502 / 425,
  20930. bottom: 0.087
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(17.71, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(7.5, "feet"),
  20947. weight: math.unit(2, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/artemis/work-safe-front.svg",
  20951. extra: 1192 / 1075,
  20952. bottom: 0.07
  20953. },
  20954. form: "work-safe",
  20955. default: true
  20956. },
  20957. frontNsfw: {
  20958. height: math.unit(7.5, "feet"),
  20959. weight: math.unit(2, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/artemis/calibrating-front.svg",
  20963. extra: 1192 / 1075,
  20964. bottom: 0.07
  20965. },
  20966. form: "calibrating",
  20967. default: true
  20968. },
  20969. frontNsfwer: {
  20970. height: math.unit(7.5, "feet"),
  20971. weight: math.unit(2, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/artemis/oversize-load-front.svg",
  20975. extra: 1192 / 1075,
  20976. bottom: 0.07
  20977. },
  20978. form: "oversize-load",
  20979. default: true
  20980. },
  20981. side: {
  20982. height: math.unit(7.5, "feet"),
  20983. weight: math.unit(2, "lb"),
  20984. name: "Side",
  20985. image: {
  20986. source: "./media/characters/artemis/work-safe-side.svg",
  20987. extra: 1192 / 1075,
  20988. bottom: 0.07
  20989. },
  20990. form: "work-safe"
  20991. },
  20992. sideNsfw: {
  20993. height: math.unit(7.5, "feet"),
  20994. weight: math.unit(2, "lb"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/artemis/calibrating-side.svg",
  20998. extra: 1192 / 1075,
  20999. bottom: 0.07
  21000. },
  21001. form: "calibrating"
  21002. },
  21003. sideNsfwer: {
  21004. height: math.unit(7.5, "feet"),
  21005. weight: math.unit(2, "lb"),
  21006. name: "Side",
  21007. image: {
  21008. source: "./media/characters/artemis/oversize-load-side.svg",
  21009. extra: 1192 / 1075,
  21010. bottom: 0.07
  21011. },
  21012. form: "oversize-load"
  21013. },
  21014. maw: {
  21015. height: math.unit(1.1, "feet"),
  21016. name: "Maw",
  21017. image: {
  21018. source: "./media/characters/artemis/maw.svg"
  21019. },
  21020. form: "work-safe"
  21021. },
  21022. stomach: {
  21023. height: math.unit(0.95, "feet"),
  21024. name: "Stomach",
  21025. image: {
  21026. source: "./media/characters/artemis/stomach.svg"
  21027. },
  21028. form: "work-safe"
  21029. },
  21030. dickCanine: {
  21031. height: math.unit(1, "feet"),
  21032. name: "Dick (Canine)",
  21033. image: {
  21034. source: "./media/characters/artemis/dick-canine.svg"
  21035. },
  21036. form: "calibrating"
  21037. },
  21038. dickEquine: {
  21039. height: math.unit(0.85, "feet"),
  21040. name: "Dick (Equine)",
  21041. image: {
  21042. source: "./media/characters/artemis/dick-equine.svg"
  21043. },
  21044. form: "calibrating"
  21045. },
  21046. dickExotic: {
  21047. height: math.unit(0.85, "feet"),
  21048. name: "Dick (Exotic)",
  21049. image: {
  21050. source: "./media/characters/artemis/dick-exotic.svg"
  21051. },
  21052. form: "calibrating"
  21053. },
  21054. dickCanineBigger: {
  21055. height: math.unit(1 * 1.33, "feet"),
  21056. name: "Dick (Canine)",
  21057. image: {
  21058. source: "./media/characters/artemis/dick-canine.svg"
  21059. },
  21060. form: "oversize-load"
  21061. },
  21062. dickEquineBigger: {
  21063. height: math.unit(0.85 * 1.33, "feet"),
  21064. name: "Dick (Equine)",
  21065. image: {
  21066. source: "./media/characters/artemis/dick-equine.svg"
  21067. },
  21068. form: "oversize-load"
  21069. },
  21070. dickExoticBigger: {
  21071. height: math.unit(0.85 * 1.33, "feet"),
  21072. name: "Dick (Exotic)",
  21073. image: {
  21074. source: "./media/characters/artemis/dick-exotic.svg"
  21075. },
  21076. form: "oversize-load"
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(7.5, "feet"),
  21083. form: "work-safe",
  21084. default: true
  21085. },
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(7.5, "feet"),
  21089. form: "calibrating",
  21090. default: true
  21091. },
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(7.5, "feet"),
  21095. form: "oversize-load",
  21096. default: true
  21097. },
  21098. {
  21099. name: "Enlarged",
  21100. height: math.unit(12, "feet"),
  21101. form: "work-safe",
  21102. },
  21103. {
  21104. name: "Enlarged",
  21105. height: math.unit(12, "feet"),
  21106. form: "calibrating",
  21107. },
  21108. {
  21109. name: "Enlarged",
  21110. height: math.unit(12, "feet"),
  21111. form: "oversize-load",
  21112. },
  21113. ],
  21114. {
  21115. "work-safe": {
  21116. name: "Work-Safe",
  21117. default: true
  21118. },
  21119. "calibrating": {
  21120. name: "Calibrating"
  21121. },
  21122. "oversize-load": {
  21123. name: "Oversize Load"
  21124. }
  21125. }
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(5 + 3 / 12, "feet"),
  21132. weight: math.unit(160, "lb"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/kira/front.svg",
  21136. extra: 906 / 786,
  21137. bottom: 0.01
  21138. }
  21139. },
  21140. back: {
  21141. height: math.unit(5 + 3 / 12, "feet"),
  21142. weight: math.unit(160, "lb"),
  21143. name: "Back",
  21144. image: {
  21145. source: "./media/characters/kira/back.svg",
  21146. extra: 882 / 757,
  21147. bottom: 0.005
  21148. }
  21149. },
  21150. frontDressed: {
  21151. height: math.unit(5 + 3 / 12, "feet"),
  21152. weight: math.unit(160, "lb"),
  21153. name: "Front (Dressed)",
  21154. image: {
  21155. source: "./media/characters/kira/front-dressed.svg",
  21156. extra: 906 / 786,
  21157. bottom: 0.01
  21158. }
  21159. },
  21160. beans: {
  21161. height: math.unit(0.92, "feet"),
  21162. name: "Beans",
  21163. image: {
  21164. source: "./media/characters/kira/beans.svg"
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(5 + 3 / 12, "feet"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 4 / 12, "feet"),
  21181. weight: math.unit(145, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/scramble/front.svg",
  21185. extra: 763 / 727,
  21186. bottom: 0.05
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(5 + 4 / 12, "feet"),
  21191. weight: math.unit(145, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/scramble/back.svg",
  21195. extra: 826 / 737,
  21196. bottom: 0.002
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(5 + 4 / 12, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21210. {
  21211. side: {
  21212. height: math.unit(6 + 2 / 12, "feet"),
  21213. weight: math.unit(190, "lb"),
  21214. name: "Side",
  21215. image: {
  21216. source: "./media/characters/biscuit/side.svg",
  21217. extra: 858 / 791,
  21218. bottom: 0.044
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(6 + 2 / 12, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(5 + 2 / 12, "feet"),
  21235. weight: math.unit(120, "lb"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/poffin/front.svg",
  21239. extra: 786 / 680,
  21240. bottom: 0.005
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(5 + 2 / 12, "feet"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(6 + 3 / 12, "feet"),
  21257. weight: math.unit(519, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/dhari/front.svg",
  21261. extra: 1048 / 946,
  21262. bottom: 0.015
  21263. }
  21264. },
  21265. back: {
  21266. height: math.unit(6 + 3 / 12, "feet"),
  21267. weight: math.unit(519, "lb"),
  21268. name: "Back",
  21269. image: {
  21270. source: "./media/characters/dhari/back.svg",
  21271. extra: 1048 / 931,
  21272. bottom: 0.005
  21273. }
  21274. },
  21275. frontDressed: {
  21276. height: math.unit(6 + 3 / 12, "feet"),
  21277. weight: math.unit(519, "lb"),
  21278. name: "Front (Dressed)",
  21279. image: {
  21280. source: "./media/characters/dhari/front-dressed.svg",
  21281. extra: 1713 / 1546,
  21282. bottom: 0.02
  21283. }
  21284. },
  21285. backDressed: {
  21286. height: math.unit(6 + 3 / 12, "feet"),
  21287. weight: math.unit(519, "lb"),
  21288. name: "Back (Dressed)",
  21289. image: {
  21290. source: "./media/characters/dhari/back-dressed.svg",
  21291. extra: 1699 / 1537,
  21292. bottom: 0.01
  21293. }
  21294. },
  21295. maw: {
  21296. height: math.unit(0.95, "feet"),
  21297. name: "Maw",
  21298. image: {
  21299. source: "./media/characters/dhari/maw.svg"
  21300. }
  21301. },
  21302. wereFront: {
  21303. height: math.unit(12 + 8 / 12, "feet"),
  21304. weight: math.unit(4000, "lb"),
  21305. name: "Front (Were)",
  21306. image: {
  21307. source: "./media/characters/dhari/were-front.svg",
  21308. extra: 1065 / 969,
  21309. bottom: 0.015
  21310. }
  21311. },
  21312. wereBack: {
  21313. height: math.unit(12 + 8 / 12, "feet"),
  21314. weight: math.unit(4000, "lb"),
  21315. name: "Back (Were)",
  21316. image: {
  21317. source: "./media/characters/dhari/were-back.svg",
  21318. extra: 1065 / 969,
  21319. bottom: 0.012
  21320. }
  21321. },
  21322. wereMaw: {
  21323. height: math.unit(0.625, "meters"),
  21324. name: "Maw (Were)",
  21325. image: {
  21326. source: "./media/characters/dhari/were-maw.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(6 + 3 / 12, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21340. {
  21341. anthro: {
  21342. height: math.unit(5 + 7 / 12, "feet"),
  21343. weight: math.unit(175, "lb"),
  21344. name: "Anthro",
  21345. image: {
  21346. source: "./media/characters/rena-dyne/anthro.svg",
  21347. extra: 1849 / 1785,
  21348. bottom: 0.005
  21349. }
  21350. },
  21351. taur: {
  21352. height: math.unit(15 + 6 / 12, "feet"),
  21353. weight: math.unit(8000, "lb"),
  21354. name: "Taur",
  21355. image: {
  21356. source: "./media/characters/rena-dyne/taur.svg",
  21357. extra: 2315 / 2234,
  21358. bottom: 0.033
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 7 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(8, "feet"),
  21375. weight: math.unit(600, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/weremeep/front.svg",
  21379. extra: 967 / 862,
  21380. bottom: 0.01
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(8, "feet"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Lorg",
  21392. height: math.unit(12, "feet")
  21393. },
  21394. {
  21395. name: "Oh Lawd She Comin'",
  21396. height: math.unit(20, "feet")
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21402. {
  21403. front: {
  21404. height: math.unit(4, "feet"),
  21405. weight: math.unit(90, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/reza/front.svg",
  21409. extra: 1183 / 1111,
  21410. bottom: 0.017
  21411. }
  21412. },
  21413. back: {
  21414. height: math.unit(4, "feet"),
  21415. weight: math.unit(90, "lb"),
  21416. name: "Back",
  21417. image: {
  21418. source: "./media/characters/reza/back.svg",
  21419. extra: 1183 / 1111,
  21420. bottom: 0.01
  21421. }
  21422. },
  21423. drake: {
  21424. height: math.unit(30, "feet"),
  21425. weight: math.unit(246960, "lb"),
  21426. name: "Drake",
  21427. image: {
  21428. source: "./media/characters/reza/drake.svg",
  21429. extra: 2350 / 2024,
  21430. bottom: 60.7 / 2403
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(4, "feet"),
  21438. default: true
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21444. {
  21445. side: {
  21446. height: math.unit(15, "feet"),
  21447. weight: math.unit(14, "tons"),
  21448. name: "Side",
  21449. image: {
  21450. source: "./media/characters/athea/side.svg",
  21451. extra: 960 / 540,
  21452. bottom: 0.003
  21453. }
  21454. },
  21455. sitting: {
  21456. height: math.unit(6 * 2.85, "feet"),
  21457. weight: math.unit(14, "tons"),
  21458. name: "Sitting",
  21459. image: {
  21460. source: "./media/characters/athea/sitting.svg",
  21461. extra: 621 / 581,
  21462. bottom: 0.075
  21463. }
  21464. },
  21465. maw: {
  21466. height: math.unit(7.59498031496063, "feet"),
  21467. name: "Maw",
  21468. image: {
  21469. source: "./media/characters/athea/maw.svg"
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Lap Cat",
  21476. height: math.unit(2.5, "feet")
  21477. },
  21478. {
  21479. name: "Minimacro",
  21480. height: math.unit(15, "feet"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Macro",
  21485. height: math.unit(120, "feet")
  21486. },
  21487. {
  21488. name: "Macro+",
  21489. height: math.unit(640, "feet")
  21490. },
  21491. {
  21492. name: "Colossus",
  21493. height: math.unit(2.2, "miles")
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(8 + 8 / 12, "feet"),
  21502. weight: math.unit(130, "kg"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/seroko/front.svg",
  21506. extra: 1385 / 1280,
  21507. bottom: 0.025
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(8 + 8 / 12, "feet"),
  21512. weight: math.unit(130, "kg"),
  21513. name: "Back",
  21514. image: {
  21515. source: "./media/characters/seroko/back.svg",
  21516. extra: 1369 / 1238,
  21517. bottom: 0.018
  21518. }
  21519. },
  21520. frontDressed: {
  21521. height: math.unit(8 + 8 / 12, "feet"),
  21522. weight: math.unit(130, "kg"),
  21523. name: "Front (Dressed)",
  21524. image: {
  21525. source: "./media/characters/seroko/front-dressed.svg",
  21526. extra: 1366 / 1275,
  21527. bottom: 0.03
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(8 + 8 / 12, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(5.5, "feet"),
  21544. weight: math.unit(160, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/quatzi/front.svg",
  21548. extra: 2346 / 2242,
  21549. bottom: 0.015
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(5.5, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Big",
  21561. height: math.unit(7.7, "feet")
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(5 + 11 / 12, "feet"),
  21570. weight: math.unit(180, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/sen/front.svg",
  21574. extra: 1321 / 1254,
  21575. bottom: 0.015
  21576. }
  21577. },
  21578. side: {
  21579. height: math.unit(5 + 11 / 12, "feet"),
  21580. weight: math.unit(180, "lb"),
  21581. name: "Side",
  21582. image: {
  21583. source: "./media/characters/sen/side.svg",
  21584. extra: 1321 / 1254,
  21585. bottom: 0.007
  21586. }
  21587. },
  21588. back: {
  21589. height: math.unit(5 + 11 / 12, "feet"),
  21590. weight: math.unit(180, "lb"),
  21591. name: "Back",
  21592. image: {
  21593. source: "./media/characters/sen/back.svg",
  21594. extra: 1321 / 1254
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 11 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(166.6, "cm"),
  21611. weight: math.unit(66.6, "kg"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/fruity/front.svg",
  21615. extra: 1510 / 1386,
  21616. bottom: 0.04
  21617. }
  21618. },
  21619. back: {
  21620. height: math.unit(166.6, "cm"),
  21621. weight: math.unit(66.6, "lb"),
  21622. name: "Back",
  21623. image: {
  21624. source: "./media/characters/fruity/back.svg",
  21625. extra: 1563 / 1435,
  21626. bottom: 0.005
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(166.6, "cm"),
  21634. default: true
  21635. },
  21636. {
  21637. name: "Demonic",
  21638. height: math.unit(166.6, "feet")
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21644. {
  21645. side: {
  21646. height: math.unit(10, "feet"),
  21647. weight: math.unit(500, "lb"),
  21648. name: "Side",
  21649. image: {
  21650. source: "./media/characters/zost/side.svg",
  21651. extra: 2870/2533,
  21652. bottom: 252/3122
  21653. }
  21654. },
  21655. mawFront: {
  21656. height: math.unit(1.08, "meters"),
  21657. name: "Maw (Front)",
  21658. image: {
  21659. source: "./media/characters/zost/maw-front.svg"
  21660. }
  21661. },
  21662. mawSide: {
  21663. height: math.unit(2.66, "feet"),
  21664. name: "Maw (Side)",
  21665. image: {
  21666. source: "./media/characters/zost/maw-side.svg"
  21667. }
  21668. },
  21669. wingspan: {
  21670. height: math.unit(7.4, "feet"),
  21671. name: "Wingspan",
  21672. image: {
  21673. source: "./media/characters/zost/wingspan.svg"
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(10, "feet"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21687. {
  21688. front: {
  21689. height: math.unit(5 + 4 / 12, "feet"),
  21690. weight: math.unit(120, "lb"),
  21691. name: "Front",
  21692. image: {
  21693. source: "./media/characters/luci/front.svg",
  21694. extra: 1985 / 1884,
  21695. bottom: 0.04
  21696. }
  21697. },
  21698. back: {
  21699. height: math.unit(5 + 4 / 12, "feet"),
  21700. weight: math.unit(120, "lb"),
  21701. name: "Back",
  21702. image: {
  21703. source: "./media/characters/luci/back.svg",
  21704. extra: 1892 / 1791,
  21705. bottom: 0.002
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(5 + 4 / 12, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(1500, "feet"),
  21722. weight: math.unit(3.8e6, "tons"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/2th/front.svg",
  21726. extra: 3489 / 3350,
  21727. bottom: 0.1
  21728. }
  21729. },
  21730. foot: {
  21731. height: math.unit(461, "feet"),
  21732. name: "Foot",
  21733. image: {
  21734. source: "./media/characters/2th/foot.svg"
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "\"Micro\"",
  21741. height: math.unit(15 + 7 / 12, "feet")
  21742. },
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(1500, "feet"),
  21746. default: true
  21747. },
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(5000, "feet")
  21751. },
  21752. {
  21753. name: "Megamacro",
  21754. height: math.unit(15, "miles")
  21755. },
  21756. {
  21757. name: "Gigamacro",
  21758. height: math.unit(4000, "miles")
  21759. },
  21760. {
  21761. name: "Galactic",
  21762. height: math.unit(50, "AU")
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(5 + 6 / 12, "feet"),
  21771. weight: math.unit(220, "lb"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/amethyst/front.svg",
  21775. extra: 2078 / 2040,
  21776. bottom: 0.045
  21777. }
  21778. },
  21779. back: {
  21780. height: math.unit(5 + 6 / 12, "feet"),
  21781. weight: math.unit(220, "lb"),
  21782. name: "Back",
  21783. image: {
  21784. source: "./media/characters/amethyst/back.svg",
  21785. extra: 2021 / 1989,
  21786. bottom: 0.02
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5 + 6 / 12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(4 + 11 / 12, "feet"),
  21803. weight: math.unit(120, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/yumi-akiyama/front.svg",
  21807. extra: 1327 / 1235,
  21808. bottom: 0.02
  21809. }
  21810. },
  21811. back: {
  21812. height: math.unit(4 + 11 / 12, "feet"),
  21813. weight: math.unit(120, "lb"),
  21814. name: "Back",
  21815. image: {
  21816. source: "./media/characters/yumi-akiyama/back.svg",
  21817. extra: 1287 / 1245,
  21818. bottom: 0.002
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Galactic",
  21825. height: math.unit(50, "galaxies"),
  21826. default: true
  21827. },
  21828. {
  21829. name: "Universal",
  21830. height: math.unit(100, "universes")
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(8, "feet"),
  21839. weight: math.unit(500, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/rifter-yrmori/front.svg",
  21843. extra: 1180 / 1125,
  21844. bottom: 0.02
  21845. }
  21846. },
  21847. back: {
  21848. height: math.unit(8, "feet"),
  21849. weight: math.unit(500, "lb"),
  21850. name: "Back",
  21851. image: {
  21852. source: "./media/characters/rifter-yrmori/back.svg",
  21853. extra: 1190 / 1145,
  21854. bottom: 0.001
  21855. }
  21856. },
  21857. wings: {
  21858. height: math.unit(7.75, "feet"),
  21859. weight: math.unit(500, "lb"),
  21860. name: "Wings",
  21861. image: {
  21862. source: "./media/characters/rifter-yrmori/wings.svg",
  21863. extra: 1357 / 1285
  21864. }
  21865. },
  21866. maw: {
  21867. height: math.unit(0.8, "feet"),
  21868. name: "Maw",
  21869. image: {
  21870. source: "./media/characters/rifter-yrmori/maw.svg"
  21871. }
  21872. },
  21873. mawfront: {
  21874. height: math.unit(1.45, "feet"),
  21875. name: "Maw (Front)",
  21876. image: {
  21877. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(8, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(42, "meters")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21895. {
  21896. were: {
  21897. height: math.unit(25 + 6 / 12, "feet"),
  21898. weight: math.unit(10000, "lb"),
  21899. name: "Were",
  21900. image: {
  21901. source: "./media/characters/tahajin/were.svg",
  21902. extra: 801 / 770,
  21903. bottom: 0.042
  21904. }
  21905. },
  21906. aquatic: {
  21907. height: math.unit(6 + 4 / 12, "feet"),
  21908. weight: math.unit(160, "lb"),
  21909. name: "Aquatic",
  21910. image: {
  21911. source: "./media/characters/tahajin/aquatic.svg",
  21912. extra: 572 / 542,
  21913. bottom: 0.04
  21914. }
  21915. },
  21916. chow: {
  21917. height: math.unit(8 + 11 / 12, "feet"),
  21918. weight: math.unit(450, "lb"),
  21919. name: "Chow",
  21920. image: {
  21921. source: "./media/characters/tahajin/chow.svg",
  21922. extra: 660 / 640,
  21923. bottom: 0.015
  21924. }
  21925. },
  21926. demiNaga: {
  21927. height: math.unit(6 + 8 / 12, "feet"),
  21928. weight: math.unit(300, "lb"),
  21929. name: "Demi Naga",
  21930. image: {
  21931. source: "./media/characters/tahajin/demi-naga.svg",
  21932. extra: 643 / 615,
  21933. bottom: 0.1
  21934. }
  21935. },
  21936. data: {
  21937. height: math.unit(5, "inches"),
  21938. weight: math.unit(0.1, "lb"),
  21939. name: "Data",
  21940. image: {
  21941. source: "./media/characters/tahajin/data.svg"
  21942. }
  21943. },
  21944. fluu: {
  21945. height: math.unit(5 + 7 / 12, "feet"),
  21946. weight: math.unit(140, "lb"),
  21947. name: "Fluu",
  21948. image: {
  21949. source: "./media/characters/tahajin/fluu.svg",
  21950. extra: 628 / 592,
  21951. bottom: 0.02
  21952. }
  21953. },
  21954. starWarrior: {
  21955. height: math.unit(4 + 5 / 12, "feet"),
  21956. weight: math.unit(50, "lb"),
  21957. name: "Star Warrior",
  21958. image: {
  21959. source: "./media/characters/tahajin/star-warrior.svg"
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(25 + 6 / 12, "feet"),
  21967. default: true
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21973. {
  21974. front: {
  21975. height: math.unit(8, "feet"),
  21976. weight: math.unit(350, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/gabira/front.svg",
  21980. extra: 608 / 580,
  21981. bottom: 0.03
  21982. }
  21983. },
  21984. back: {
  21985. height: math.unit(8, "feet"),
  21986. weight: math.unit(350, "lb"),
  21987. name: "Back",
  21988. image: {
  21989. source: "./media/characters/gabira/back.svg",
  21990. extra: 608 / 580,
  21991. bottom: 0.03
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(8, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(5 + 3 / 12, "feet"),
  22008. weight: math.unit(137, "lb"),
  22009. name: "Front",
  22010. image: {
  22011. source: "./media/characters/sasha-katraine/front.svg",
  22012. extra: 1745/1694,
  22013. bottom: 37/1782
  22014. }
  22015. },
  22016. back: {
  22017. height: math.unit(5 + 3 / 12, "feet"),
  22018. weight: math.unit(137, "lb"),
  22019. name: "Back",
  22020. image: {
  22021. source: "./media/characters/sasha-katraine/back.svg",
  22022. extra: 1776/1699,
  22023. bottom: 26/1802
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Micro",
  22030. height: math.unit(5, "inches")
  22031. },
  22032. {
  22033. name: "Normal",
  22034. height: math.unit(5 + 3 / 12, "feet"),
  22035. default: true
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22041. {
  22042. side: {
  22043. height: math.unit(4, "inches"),
  22044. weight: math.unit(200, "grams"),
  22045. name: "Side",
  22046. image: {
  22047. source: "./media/characters/der/side.svg",
  22048. extra: 719 / 400,
  22049. bottom: 30.6 / 749.9187
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Micro",
  22056. height: math.unit(4, "inches"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22063. {
  22064. side: {
  22065. height: math.unit(30, "meters"),
  22066. weight: math.unit(700, "tonnes"),
  22067. name: "Side",
  22068. image: {
  22069. source: "./media/characters/fixerdragon/side.svg",
  22070. extra: (1293.0514 - 116.03) / 1106.86,
  22071. bottom: 116.03 / 1293.0514
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Planck",
  22078. height: math.unit(1.6e-35, "meters")
  22079. },
  22080. {
  22081. name: "Micro",
  22082. height: math.unit(0.4, "meters")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(30, "meters"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Megamacro",
  22091. height: math.unit(1.2, "megameters")
  22092. },
  22093. {
  22094. name: "Teramacro",
  22095. height: math.unit(130, "terameters")
  22096. },
  22097. {
  22098. name: "Yottamacro",
  22099. height: math.unit(6200, "yottameters")
  22100. },
  22101. ]
  22102. ));
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(8, "feet"),
  22108. weight: math.unit(250, "lb"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/kite/front.svg",
  22112. extra: 2796 / 2659,
  22113. bottom: 0.002
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(8, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(360, "feet")
  22126. },
  22127. {
  22128. name: "Megamacro",
  22129. height: math.unit(1500, "feet")
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(5 + 11/12, "feet"),
  22138. weight: math.unit(170, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/poojawa-vynar/front.svg",
  22142. extra: 1735/1585,
  22143. bottom: 96/1831
  22144. }
  22145. },
  22146. back: {
  22147. height: math.unit(5 + 11/12, "feet"),
  22148. weight: math.unit(170, "lb"),
  22149. name: "Back",
  22150. image: {
  22151. source: "./media/characters/poojawa-vynar/back.svg",
  22152. extra: 1749/1607,
  22153. bottom: 28/1777
  22154. }
  22155. },
  22156. male: {
  22157. height: math.unit(5 + 11/12, "feet"),
  22158. weight: math.unit(170, "lb"),
  22159. name: "Male",
  22160. image: {
  22161. source: "./media/characters/poojawa-vynar/male.svg",
  22162. extra: 1855/1713,
  22163. bottom: 63/1918
  22164. }
  22165. },
  22166. taur: {
  22167. height: math.unit(5 + 11/12, "feet"),
  22168. weight: math.unit(170, "lb"),
  22169. name: "Taur",
  22170. image: {
  22171. source: "./media/characters/poojawa-vynar/taur.svg",
  22172. extra: 1151/1059,
  22173. bottom: 356/1507
  22174. }
  22175. },
  22176. frontDressed: {
  22177. height: math.unit(5 + 11/12, "feet"),
  22178. weight: math.unit(170, "lb"),
  22179. name: "Front (Dressed)",
  22180. image: {
  22181. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22182. extra: 1735/1585,
  22183. bottom: 96/1831
  22184. }
  22185. },
  22186. backDressed: {
  22187. height: math.unit(5 + 11/12, "feet"),
  22188. weight: math.unit(170, "lb"),
  22189. name: "Back (Dressed)",
  22190. image: {
  22191. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22192. extra: 1749/1607,
  22193. bottom: 28/1777
  22194. }
  22195. },
  22196. maleDressed: {
  22197. height: math.unit(5 + 11/12, "feet"),
  22198. weight: math.unit(170, "lb"),
  22199. name: "Male (Dressed)",
  22200. image: {
  22201. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22202. extra: 1855/1713,
  22203. bottom: 63/1918
  22204. }
  22205. },
  22206. taurDressed: {
  22207. height: math.unit(5 + 11/12, "feet"),
  22208. weight: math.unit(170, "lb"),
  22209. name: "Taur (Dressed)",
  22210. image: {
  22211. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22212. extra: 1151/1059,
  22213. bottom: 356/1507
  22214. }
  22215. },
  22216. maw: {
  22217. height: math.unit(1.46, "feet"),
  22218. name: "Maw",
  22219. image: {
  22220. source: "./media/characters/poojawa-vynar/maw.svg"
  22221. }
  22222. },
  22223. head: {
  22224. height: math.unit(2.34, "feet"),
  22225. name: "Head",
  22226. image: {
  22227. source: "./media/characters/poojawa-vynar/head.svg"
  22228. }
  22229. },
  22230. paw: {
  22231. height: math.unit(1.61, "feet"),
  22232. name: "Paw",
  22233. image: {
  22234. source: "./media/characters/poojawa-vynar/paw.svg"
  22235. }
  22236. },
  22237. pawToering: {
  22238. height: math.unit(1.72, "feet"),
  22239. name: "Paw (Toering)",
  22240. image: {
  22241. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22242. }
  22243. },
  22244. toering: {
  22245. height: math.unit(2.9, "inches"),
  22246. name: "Toering",
  22247. image: {
  22248. source: "./media/characters/poojawa-vynar/toering.svg"
  22249. }
  22250. },
  22251. shaft: {
  22252. height: math.unit(0.625, "feet"),
  22253. name: "Shaft",
  22254. image: {
  22255. source: "./media/characters/poojawa-vynar/shaft.svg"
  22256. }
  22257. },
  22258. spade: {
  22259. height: math.unit(0.42, "feet"),
  22260. name: "Spade",
  22261. image: {
  22262. source: "./media/characters/poojawa-vynar/spade.svg"
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Shortstack",
  22269. height: math.unit(4, "feet")
  22270. },
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(5 + 11 / 12, "feet"),
  22274. default: true
  22275. },
  22276. {
  22277. name: "Tauric",
  22278. height: math.unit(4, "meters")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(293, "meters"),
  22287. weight: math.unit(70400, "tons"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/violette/front.svg",
  22291. extra: 1227 / 1180,
  22292. bottom: 0.005
  22293. }
  22294. },
  22295. back: {
  22296. height: math.unit(293, "meters"),
  22297. weight: math.unit(70400, "tons"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/violette/back.svg",
  22301. extra: 1227 / 1180,
  22302. bottom: 0.005
  22303. }
  22304. },
  22305. },
  22306. [
  22307. {
  22308. name: "Macro",
  22309. height: math.unit(293, "meters"),
  22310. default: true
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(1050, "feet"),
  22319. weight: math.unit(200000, "tons"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/alessandra/front.svg",
  22323. extra: 960 / 912,
  22324. bottom: 0.06
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Macro",
  22331. height: math.unit(1050, "feet")
  22332. },
  22333. {
  22334. name: "Macro+",
  22335. height: math.unit(900, "meters"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(5, "feet"),
  22345. weight: math.unit(187, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/person/front.svg",
  22349. extra: 3087 / 2945,
  22350. bottom: 91 / 3181
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Micro",
  22357. height: math.unit(3, "inches")
  22358. },
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(5, "feet"),
  22362. default: true
  22363. },
  22364. {
  22365. name: "Macro",
  22366. height: math.unit(90, "feet")
  22367. },
  22368. {
  22369. name: "Max Size",
  22370. height: math.unit(280, "feet")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22376. {
  22377. front: {
  22378. height: math.unit(4.5, "meters"),
  22379. weight: math.unit(3200, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/ty/front.svg",
  22383. extra: 1038 / 960,
  22384. bottom: 31.156 / 1068
  22385. }
  22386. },
  22387. back: {
  22388. height: math.unit(4.5, "meters"),
  22389. weight: math.unit(3200, "lb"),
  22390. name: "Back",
  22391. image: {
  22392. source: "./media/characters/ty/back.svg",
  22393. extra: 1044 / 966,
  22394. bottom: 7.48 / 1049
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(4.5, "meters"),
  22402. default: true
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(5 + 4 / 12, "feet"),
  22411. weight: math.unit(115, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/rocky/front.svg",
  22415. extra: 1012 / 975,
  22416. bottom: 54 / 1066
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Normal",
  22423. height: math.unit(5 + 4 / 12, "feet"),
  22424. default: true
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22430. {
  22431. upright: {
  22432. height: math.unit(6, "meters"),
  22433. weight: math.unit(4000, "kg"),
  22434. name: "Upright",
  22435. image: {
  22436. source: "./media/characters/ruin/upright.svg",
  22437. extra: 668 / 661,
  22438. bottom: 42 / 799.8396
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(6, "meters"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(5, "feet"),
  22455. weight: math.unit(106, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/robin/front.svg",
  22459. extra: 862 / 799,
  22460. bottom: 42.4 / 914.8856
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(5, "feet"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22474. {
  22475. side: {
  22476. height: math.unit(3, "feet"),
  22477. weight: math.unit(225, "lb"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/saian/side.svg",
  22481. extra: 566 / 356,
  22482. bottom: 79.7 / 643
  22483. }
  22484. },
  22485. maw: {
  22486. height: math.unit(2.85, "feet"),
  22487. name: "Maw",
  22488. image: {
  22489. source: "./media/characters/saian/maw.svg"
  22490. }
  22491. },
  22492. },
  22493. [
  22494. {
  22495. name: "Normal",
  22496. height: math.unit(3, "feet"),
  22497. default: true
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22503. {
  22504. side: {
  22505. height: math.unit(8, "feet"),
  22506. weight: math.unit(300, "lb"),
  22507. name: "Side",
  22508. image: {
  22509. source: "./media/characters/equus-silvermane/side.svg",
  22510. extra: 2176 / 2050,
  22511. bottom: 65.7 / 2245
  22512. }
  22513. },
  22514. front: {
  22515. height: math.unit(8, "feet"),
  22516. weight: math.unit(300, "lb"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/equus-silvermane/front.svg",
  22520. extra: 4633 / 4400,
  22521. bottom: 71.3 / 4706.915
  22522. }
  22523. },
  22524. sideStepping: {
  22525. height: math.unit(8, "feet"),
  22526. weight: math.unit(300, "lb"),
  22527. name: "Side (Stepping)",
  22528. image: {
  22529. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22530. extra: 1968 / 1860,
  22531. bottom: 16.4 / 1989
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(8, "feet")
  22539. },
  22540. {
  22541. name: "Minimacro",
  22542. height: math.unit(75, "feet"),
  22543. default: true
  22544. },
  22545. {
  22546. name: "Macro",
  22547. height: math.unit(150, "feet")
  22548. },
  22549. {
  22550. name: "Macro+",
  22551. height: math.unit(1000, "feet")
  22552. },
  22553. {
  22554. name: "Megamacro",
  22555. height: math.unit(1, "mile")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22561. {
  22562. side: {
  22563. height: math.unit(20, "feet"),
  22564. weight: math.unit(30000, "kg"),
  22565. name: "Side",
  22566. image: {
  22567. source: "./media/characters/windar/side.svg",
  22568. extra: 1491 / 1248,
  22569. bottom: 82.56 / 1568
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(20, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22583. {
  22584. side: {
  22585. height: math.unit(15.66, "feet"),
  22586. weight: math.unit(150, "lb"),
  22587. name: "Side",
  22588. image: {
  22589. source: "./media/characters/melody/side.svg",
  22590. extra: 1097 / 944,
  22591. bottom: 11.8 / 1109
  22592. }
  22593. },
  22594. sideOutfit: {
  22595. height: math.unit(15.66, "feet"),
  22596. weight: math.unit(150, "lb"),
  22597. name: "Side (Outfit)",
  22598. image: {
  22599. source: "./media/characters/melody/side-outfit.svg",
  22600. extra: 1097 / 944,
  22601. bottom: 11.8 / 1109
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(15.66, "feet"),
  22609. default: true
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22615. {
  22616. front: {
  22617. height: math.unit(8, "feet"),
  22618. weight: math.unit(325, "lb"),
  22619. name: "Front",
  22620. image: {
  22621. source: "./media/characters/windera/front.svg",
  22622. extra: 3180 / 2845,
  22623. bottom: 178 / 3365
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(8, "feet"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22637. {
  22638. front: {
  22639. height: math.unit(28.75, "feet"),
  22640. weight: math.unit(2000, "kg"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/sonear/front.svg",
  22644. extra: 1041.1 / 964.9,
  22645. bottom: 53.7 / 1096.6
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(28.75, "feet"),
  22653. default: true
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22659. {
  22660. side: {
  22661. height: math.unit(25.5, "feet"),
  22662. weight: math.unit(23000, "kg"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/kanara/side.svg"
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(25.5, "feet"),
  22673. default: true
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22679. {
  22680. side: {
  22681. height: math.unit(10, "feet"),
  22682. weight: math.unit(1000, "kg"),
  22683. name: "Side",
  22684. image: {
  22685. source: "./media/characters/ereus/side.svg",
  22686. extra: 1157 / 959,
  22687. bottom: 153 / 1312.5
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(10, "feet"),
  22695. default: true
  22696. },
  22697. ]
  22698. ))
  22699. characterMakers.push(() => makeCharacter(
  22700. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22701. {
  22702. side: {
  22703. height: math.unit(4.5, "feet"),
  22704. weight: math.unit(500, "lb"),
  22705. name: "Side",
  22706. image: {
  22707. source: "./media/characters/e-ter/side.svg",
  22708. extra: 1550 / 1248,
  22709. bottom: 146 / 1694
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(4.5, "feet"),
  22717. default: true
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22723. {
  22724. side: {
  22725. height: math.unit(9.7, "feet"),
  22726. weight: math.unit(4000, "kg"),
  22727. name: "Side",
  22728. image: {
  22729. source: "./media/characters/yamie/side.svg"
  22730. }
  22731. },
  22732. },
  22733. [
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(9.7, "feet"),
  22737. default: true
  22738. },
  22739. ]
  22740. ))
  22741. characterMakers.push(() => makeCharacter(
  22742. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22743. {
  22744. front: {
  22745. height: math.unit(50, "feet"),
  22746. weight: math.unit(50000, "kg"),
  22747. name: "Front",
  22748. image: {
  22749. source: "./media/characters/anders/front.svg",
  22750. extra: 570 / 539,
  22751. bottom: 14.7 / 586.7
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Large",
  22758. height: math.unit(50, "feet")
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(2000, "feet"),
  22763. default: true
  22764. },
  22765. {
  22766. name: "Megamacro",
  22767. height: math.unit(12, "miles")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(7 + 2 / 12, "feet"),
  22776. weight: math.unit(300, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/reban/front.svg",
  22780. extra: 1287/1212,
  22781. bottom: 148/1435
  22782. }
  22783. },
  22784. head: {
  22785. height: math.unit(1.95, "feet"),
  22786. name: "Head",
  22787. image: {
  22788. source: "./media/characters/reban/head.svg"
  22789. }
  22790. },
  22791. maw: {
  22792. height: math.unit(0.95, "feet"),
  22793. name: "Maw",
  22794. image: {
  22795. source: "./media/characters/reban/maw.svg"
  22796. }
  22797. },
  22798. foot: {
  22799. height: math.unit(1.65, "feet"),
  22800. name: "Foot",
  22801. image: {
  22802. source: "./media/characters/reban/foot.svg"
  22803. }
  22804. },
  22805. dick: {
  22806. height: math.unit(7 / 5, "feet"),
  22807. name: "Dick",
  22808. image: {
  22809. source: "./media/characters/reban/dick.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Natural Height",
  22816. height: math.unit(7 + 2 / 12, "feet")
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(500, "feet"),
  22821. default: true
  22822. },
  22823. {
  22824. name: "Canon Height",
  22825. height: math.unit(50, "AU")
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22831. {
  22832. front: {
  22833. height: math.unit(6, "feet"),
  22834. weight: math.unit(150, "lb"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/terrance-keayes/front.svg",
  22838. extra: 1.005,
  22839. bottom: 151 / 1615
  22840. }
  22841. },
  22842. side: {
  22843. height: math.unit(6, "feet"),
  22844. weight: math.unit(150, "lb"),
  22845. name: "Side",
  22846. image: {
  22847. source: "./media/characters/terrance-keayes/side.svg",
  22848. extra: 1.005,
  22849. bottom: 129.4 / 1544
  22850. }
  22851. },
  22852. back: {
  22853. height: math.unit(6, "feet"),
  22854. weight: math.unit(150, "lb"),
  22855. name: "Back",
  22856. image: {
  22857. source: "./media/characters/terrance-keayes/back.svg",
  22858. extra: 1.005,
  22859. bottom: 58.4 / 1557.3
  22860. }
  22861. },
  22862. dick: {
  22863. height: math.unit(6 * 0.208, "feet"),
  22864. name: "Dick",
  22865. image: {
  22866. source: "./media/characters/terrance-keayes/dick.svg"
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Canon Height",
  22873. height: math.unit(35, "miles"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(6, "feet"),
  22883. weight: math.unit(150, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/ofelia/front.svg",
  22887. extra: 1130/1117,
  22888. bottom: 91/1221
  22889. }
  22890. },
  22891. back: {
  22892. height: math.unit(6, "feet"),
  22893. weight: math.unit(150, "lb"),
  22894. name: "Back",
  22895. image: {
  22896. source: "./media/characters/ofelia/back.svg",
  22897. extra: 1172/1159,
  22898. bottom: 28/1200
  22899. }
  22900. },
  22901. maw: {
  22902. height: math.unit(1, "feet"),
  22903. name: "Maw",
  22904. image: {
  22905. source: "./media/characters/ofelia/maw.svg"
  22906. }
  22907. },
  22908. foot: {
  22909. height: math.unit(1.949, "feet"),
  22910. name: "Foot",
  22911. image: {
  22912. source: "./media/characters/ofelia/foot.svg"
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Canon Height",
  22919. height: math.unit(2000, "miles"),
  22920. default: true
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22926. {
  22927. front: {
  22928. height: math.unit(6, "feet"),
  22929. weight: math.unit(150, "lb"),
  22930. name: "Front",
  22931. image: {
  22932. source: "./media/characters/samuel/front.svg",
  22933. extra: 265 / 258,
  22934. bottom: 2 / 266.1566
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(100, "feet"),
  22942. default: true
  22943. },
  22944. {
  22945. name: "Full Size",
  22946. height: math.unit(1000, "miles")
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(6, "feet"),
  22955. weight: math.unit(300, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/beishir-kiel/front.svg",
  22959. extra: 569 / 547,
  22960. bottom: 41.9 / 609
  22961. }
  22962. },
  22963. maw: {
  22964. height: math.unit(6 * 0.202, "feet"),
  22965. name: "Maw",
  22966. image: {
  22967. source: "./media/characters/beishir-kiel/maw.svg"
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Macro",
  22974. height: math.unit(300, "feet"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(5 + 7/12, "feet"),
  22984. weight: math.unit(120, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/logan-grey/front.svg",
  22988. extra: 1836/1738,
  22989. bottom: 108/1944
  22990. }
  22991. },
  22992. back: {
  22993. height: math.unit(5 + 7/12, "feet"),
  22994. weight: math.unit(120, "lb"),
  22995. name: "Back",
  22996. image: {
  22997. source: "./media/characters/logan-grey/back.svg",
  22998. extra: 1880/1794,
  22999. bottom: 24/1904
  23000. }
  23001. },
  23002. frontSfw: {
  23003. height: math.unit(5 + 7/12, "feet"),
  23004. weight: math.unit(120, "lb"),
  23005. name: "Front (SFW)",
  23006. image: {
  23007. source: "./media/characters/logan-grey/front-sfw.svg",
  23008. extra: 1836/1738,
  23009. bottom: 108/1944
  23010. }
  23011. },
  23012. backSfw: {
  23013. height: math.unit(5 + 7/12, "feet"),
  23014. weight: math.unit(120, "lb"),
  23015. name: "Back (SFW)",
  23016. image: {
  23017. source: "./media/characters/logan-grey/back-sfw.svg",
  23018. extra: 1880/1794,
  23019. bottom: 24/1904
  23020. }
  23021. },
  23022. hands: {
  23023. height: math.unit(0.84, "feet"),
  23024. name: "Hands",
  23025. image: {
  23026. source: "./media/characters/logan-grey/hands.svg"
  23027. }
  23028. },
  23029. paws: {
  23030. height: math.unit(0.72, "feet"),
  23031. name: "Paws",
  23032. image: {
  23033. source: "./media/characters/logan-grey/paws.svg"
  23034. }
  23035. },
  23036. cock: {
  23037. height: math.unit(1.45, "feet"),
  23038. name: "Cock",
  23039. image: {
  23040. source: "./media/characters/logan-grey/cock.svg"
  23041. }
  23042. },
  23043. cockAlt: {
  23044. height: math.unit(1.437, "feet"),
  23045. name: "Cock (alt)",
  23046. image: {
  23047. source: "./media/characters/logan-grey/cock-alt.svg"
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(5 + 8 / 12, "feet")
  23055. },
  23056. {
  23057. name: "The 500 Foot Femboy",
  23058. height: math.unit(500, "feet"),
  23059. default: true
  23060. },
  23061. {
  23062. name: "Megmacro",
  23063. height: math.unit(20, "miles")
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(8 + 2 / 12, "feet"),
  23072. weight: math.unit(275, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/draganta/front.svg",
  23076. extra: 1177 / 1135,
  23077. bottom: 33.46 / 1212.1
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(8 + 6 / 12, "feet"),
  23085. default: true
  23086. },
  23087. {
  23088. name: "Macro",
  23089. height: math.unit(150, "feet")
  23090. },
  23091. {
  23092. name: "Megamacro",
  23093. height: math.unit(1000, "miles")
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(1.72, "m"),
  23102. weight: math.unit(80, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/voski/front.svg",
  23106. extra: 2076.22 / 2022.4,
  23107. bottom: 102.7 / 2177.3866
  23108. }
  23109. },
  23110. frontFlaccid: {
  23111. height: math.unit(1.72, "m"),
  23112. weight: math.unit(80, "lb"),
  23113. name: "Front (Flaccid)",
  23114. image: {
  23115. source: "./media/characters/voski/front-flaccid.svg",
  23116. extra: 2076.22 / 2022.4,
  23117. bottom: 102.7 / 2177.3866
  23118. }
  23119. },
  23120. frontErect: {
  23121. height: math.unit(1.72, "m"),
  23122. weight: math.unit(80, "lb"),
  23123. name: "Front (Erect)",
  23124. image: {
  23125. source: "./media/characters/voski/front-erect.svg",
  23126. extra: 2076.22 / 2022.4,
  23127. bottom: 102.7 / 2177.3866
  23128. }
  23129. },
  23130. back: {
  23131. height: math.unit(1.72, "m"),
  23132. weight: math.unit(80, "lb"),
  23133. name: "Back",
  23134. image: {
  23135. source: "./media/characters/voski/back.svg",
  23136. extra: 2104 / 2051,
  23137. bottom: 10.45 / 2113.63
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(1.72, "m")
  23145. },
  23146. {
  23147. name: "Macro",
  23148. height: math.unit(55, "m"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Macro+",
  23153. height: math.unit(300, "m")
  23154. },
  23155. {
  23156. name: "Macro++",
  23157. height: math.unit(700, "m")
  23158. },
  23159. {
  23160. name: "Macro+++",
  23161. height: math.unit(4500, "m")
  23162. },
  23163. {
  23164. name: "Macro++++",
  23165. height: math.unit(45, "km")
  23166. },
  23167. {
  23168. name: "Macro+++++",
  23169. height: math.unit(1220, "km")
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(2.3, "m"),
  23178. weight: math.unit(304, "kg"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/icowom-lee/front.svg",
  23182. extra: 985 / 955,
  23183. bottom: 25.4 / 1012
  23184. }
  23185. },
  23186. fronttentacles: {
  23187. height: math.unit(2.3, "m"),
  23188. weight: math.unit(304, "kg"),
  23189. name: "Front-tentacles",
  23190. image: {
  23191. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23192. extra: 985 / 955,
  23193. bottom: 25.4 / 1012
  23194. }
  23195. },
  23196. back: {
  23197. height: math.unit(2.3, "m"),
  23198. weight: math.unit(304, "kg"),
  23199. name: "Back",
  23200. image: {
  23201. source: "./media/characters/icowom-lee/back.svg",
  23202. extra: 975 / 954,
  23203. bottom: 9.5 / 985
  23204. }
  23205. },
  23206. backtentacles: {
  23207. height: math.unit(2.3, "m"),
  23208. weight: math.unit(304, "kg"),
  23209. name: "Back-tentacles",
  23210. image: {
  23211. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23212. extra: 975 / 954,
  23213. bottom: 9.5 / 985
  23214. }
  23215. },
  23216. frontDressed: {
  23217. height: math.unit(2.3, "m"),
  23218. weight: math.unit(304, "kg"),
  23219. name: "Front (Dressed)",
  23220. image: {
  23221. source: "./media/characters/icowom-lee/front-dressed.svg",
  23222. extra: 3076 / 2933,
  23223. bottom: 51.4 / 3125.1889
  23224. }
  23225. },
  23226. rump: {
  23227. height: math.unit(0.776, "meters"),
  23228. name: "Rump",
  23229. image: {
  23230. source: "./media/characters/icowom-lee/rump.svg"
  23231. }
  23232. },
  23233. genitals: {
  23234. height: math.unit(0.78, "meters"),
  23235. name: "Genitals",
  23236. image: {
  23237. source: "./media/characters/icowom-lee/genitals.svg"
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(2.3, "meters"),
  23245. default: true
  23246. },
  23247. {
  23248. name: "Macro",
  23249. height: math.unit(94, "meters"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(22, "meters"),
  23259. weight: math.unit(21000, "kg"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/shock-diamond/front.svg",
  23263. extra: 2204 / 2053,
  23264. bottom: 65 / 2239.47
  23265. }
  23266. },
  23267. frontNude: {
  23268. height: math.unit(22, "meters"),
  23269. weight: math.unit(21000, "kg"),
  23270. name: "Front (Nude)",
  23271. image: {
  23272. source: "./media/characters/shock-diamond/front-nude.svg",
  23273. extra: 2514 / 2285,
  23274. bottom: 13 / 2527.56
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(3, "meters")
  23282. },
  23283. {
  23284. name: "Macro",
  23285. height: math.unit(22, "meters"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(5 + 4 / 12, "feet"),
  23295. weight: math.unit(120, "lb"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/rory/front.svg",
  23299. extra: 1318/1241,
  23300. bottom: 42/1360
  23301. }
  23302. },
  23303. back: {
  23304. height: math.unit(5 + 4 / 12, "feet"),
  23305. weight: math.unit(120, "lb"),
  23306. name: "Back",
  23307. image: {
  23308. source: "./media/characters/rory/back.svg",
  23309. extra: 1318/1241,
  23310. bottom: 42/1360
  23311. }
  23312. },
  23313. butt: {
  23314. height: math.unit(1.74, "feet"),
  23315. name: "Butt",
  23316. image: {
  23317. source: "./media/characters/rory/butt.svg"
  23318. }
  23319. },
  23320. dick: {
  23321. height: math.unit(1.02, "feet"),
  23322. name: "Dick",
  23323. image: {
  23324. source: "./media/characters/rory/dick.svg"
  23325. }
  23326. },
  23327. paws: {
  23328. height: math.unit(1, "feet"),
  23329. name: "Paws",
  23330. image: {
  23331. source: "./media/characters/rory/paws.svg"
  23332. }
  23333. },
  23334. frontAlt: {
  23335. height: math.unit(5 + 4 / 12, "feet"),
  23336. weight: math.unit(120, "lb"),
  23337. name: "Front (Alt)",
  23338. image: {
  23339. source: "./media/characters/rory/front-alt.svg",
  23340. extra: 589 / 556,
  23341. bottom: 45.7 / 635.76
  23342. }
  23343. },
  23344. frontAltNude: {
  23345. height: math.unit(5 + 4 / 12, "feet"),
  23346. weight: math.unit(120, "lb"),
  23347. name: "Front (Alt, Nude)",
  23348. image: {
  23349. source: "./media/characters/rory/front-alt-nude.svg",
  23350. extra: 589 / 556,
  23351. bottom: 45.7 / 635.76
  23352. }
  23353. },
  23354. side: {
  23355. height: math.unit(5 + 4 / 12, "feet"),
  23356. weight: math.unit(120, "lb"),
  23357. name: "Side",
  23358. image: {
  23359. source: "./media/characters/rory/side.svg",
  23360. extra: 597 / 564,
  23361. bottom: 55 / 653
  23362. }
  23363. },
  23364. backAlt: {
  23365. height: math.unit(5 + 4 / 12, "feet"),
  23366. weight: math.unit(120, "lb"),
  23367. name: "Back (Alt)",
  23368. image: {
  23369. source: "./media/characters/rory/back-alt.svg",
  23370. extra: 620 / 585,
  23371. bottom: 8.86 / 630.43
  23372. }
  23373. },
  23374. dickAlt: {
  23375. height: math.unit(0.86, "feet"),
  23376. name: "Dick (Alt)",
  23377. image: {
  23378. source: "./media/characters/rory/dick-alt.svg"
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(5 + 4 / 12, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Macro",
  23390. height: math.unit(100, "feet")
  23391. },
  23392. {
  23393. name: "Macro+",
  23394. height: math.unit(140, "feet")
  23395. },
  23396. {
  23397. name: "Macro++",
  23398. height: math.unit(300, "feet")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(5 + 9 / 12, "feet"),
  23407. weight: math.unit(190, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/sprisk/front.svg",
  23411. extra: 1225 / 1180,
  23412. bottom: 42.7 / 1266.4
  23413. }
  23414. },
  23415. frontNsfw: {
  23416. height: math.unit(5 + 9 / 12, "feet"),
  23417. weight: math.unit(190, "lb"),
  23418. name: "Front (NSFW)",
  23419. image: {
  23420. source: "./media/characters/sprisk/front-nsfw.svg",
  23421. extra: 1225 / 1180,
  23422. bottom: 42.7 / 1266.4
  23423. }
  23424. },
  23425. back: {
  23426. height: math.unit(5 + 9 / 12, "feet"),
  23427. weight: math.unit(190, "lb"),
  23428. name: "Back",
  23429. image: {
  23430. source: "./media/characters/sprisk/back.svg",
  23431. extra: 1247 / 1200,
  23432. bottom: 5.6 / 1253.04
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Tiny",
  23439. height: math.unit(2, "inches")
  23440. },
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(5 + 9 / 12, "feet"),
  23444. default: true
  23445. },
  23446. {
  23447. name: "Mini Macro",
  23448. height: math.unit(18, "feet")
  23449. },
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(100, "feet")
  23453. },
  23454. {
  23455. name: "MACRO",
  23456. height: math.unit(50, "miles")
  23457. },
  23458. {
  23459. name: "M A C R O",
  23460. height: math.unit(300, "miles")
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23466. {
  23467. side: {
  23468. height: math.unit(15.6, "meters"),
  23469. weight: math.unit(700000, "kg"),
  23470. name: "Side",
  23471. image: {
  23472. source: "./media/characters/bunsen/side.svg",
  23473. extra: 1644 / 358
  23474. }
  23475. },
  23476. foot: {
  23477. height: math.unit(1.611 * 1644 / 358, "meter"),
  23478. name: "Foot",
  23479. image: {
  23480. source: "./media/characters/bunsen/foot.svg"
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Small",
  23487. height: math.unit(10, "feet")
  23488. },
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(15.6, "meters"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23498. {
  23499. front: {
  23500. height: math.unit(4 + 11 / 12, "feet"),
  23501. weight: math.unit(140, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/sesh/front.svg",
  23505. extra: 3420 / 3231,
  23506. bottom: 72 / 3949.5
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Normal",
  23513. height: math.unit(4 + 11 / 12, "feet")
  23514. },
  23515. {
  23516. name: "Grown",
  23517. height: math.unit(15, "feet"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Macro",
  23522. height: math.unit(1500, "feet")
  23523. },
  23524. {
  23525. name: "Megamacro",
  23526. height: math.unit(30, "miles")
  23527. },
  23528. {
  23529. name: "Continental",
  23530. height: math.unit(3000, "miles")
  23531. },
  23532. {
  23533. name: "Gravity Mass",
  23534. height: math.unit(300000, "miles")
  23535. },
  23536. {
  23537. name: "Planet Buster",
  23538. height: math.unit(30000000, "miles")
  23539. },
  23540. {
  23541. name: "Big",
  23542. height: math.unit(3000000000, "miles")
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(9, "feet"),
  23551. weight: math.unit(350, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/pepper/front.svg",
  23555. extra: 1448 / 1312,
  23556. bottom: 9.4 / 1457.88
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(9, "feet"),
  23561. weight: math.unit(350, "lb"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/pepper/back.svg",
  23565. extra: 1423 / 1300,
  23566. bottom: 4.6 / 1429
  23567. }
  23568. },
  23569. maw: {
  23570. height: math.unit(0.932, "feet"),
  23571. name: "Maw",
  23572. image: {
  23573. source: "./media/characters/pepper/maw.svg"
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(9, "feet"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(6, "feet"),
  23590. weight: math.unit(150, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/maelstrom/front.svg",
  23594. extra: 2100 / 1883,
  23595. bottom: 94 / 2196.7
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Less Kaiju",
  23602. height: math.unit(200, "feet")
  23603. },
  23604. {
  23605. name: "Kaiju",
  23606. height: math.unit(400, "feet"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Kaiju-er",
  23611. height: math.unit(600, "feet")
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(6 + 5 / 12, "feet"),
  23620. weight: math.unit(180, "lb"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/lexir/front.svg",
  23624. extra: 180 / 172,
  23625. bottom: 12 / 192
  23626. }
  23627. },
  23628. back: {
  23629. height: math.unit(6 + 5 / 12, "feet"),
  23630. weight: math.unit(180, "lb"),
  23631. name: "Back",
  23632. image: {
  23633. source: "./media/characters/lexir/back.svg",
  23634. extra: 1273/1201,
  23635. bottom: 39/1312
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Very Smal",
  23642. height: math.unit(1, "nm")
  23643. },
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(6 + 5 / 12, "feet"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(1, "mile")
  23652. },
  23653. {
  23654. name: "Megamacro",
  23655. height: math.unit(50, "miles")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(1.5, "meters"),
  23664. weight: math.unit(100, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/maksio/front.svg",
  23668. extra: 1549 / 1531,
  23669. bottom: 123.7 / 1674.5429
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(1.5, "meters"),
  23674. weight: math.unit(100, "lb"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/maksio/back.svg",
  23678. extra: 1541 / 1509,
  23679. bottom: 97 / 1639
  23680. }
  23681. },
  23682. hand: {
  23683. height: math.unit(0.621, "feet"),
  23684. name: "Hand",
  23685. image: {
  23686. source: "./media/characters/maksio/hand.svg"
  23687. }
  23688. },
  23689. foot: {
  23690. height: math.unit(1.611, "feet"),
  23691. name: "Foot",
  23692. image: {
  23693. source: "./media/characters/maksio/foot.svg"
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Shrunken",
  23700. height: math.unit(10, "cm")
  23701. },
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(150, "cm"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(100, "feet"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/erza-bear/front.svg",
  23717. extra: 2449 / 2390,
  23718. bottom: 46 / 2494
  23719. }
  23720. },
  23721. back: {
  23722. height: math.unit(100, "feet"),
  23723. name: "Back",
  23724. image: {
  23725. source: "./media/characters/erza-bear/back.svg",
  23726. extra: 2489 / 2430,
  23727. bottom: 85.4 / 2480
  23728. }
  23729. },
  23730. tail: {
  23731. height: math.unit(42, "feet"),
  23732. name: "Tail",
  23733. image: {
  23734. source: "./media/characters/erza-bear/tail.svg"
  23735. }
  23736. },
  23737. tongue: {
  23738. height: math.unit(8, "feet"),
  23739. name: "Tongue",
  23740. image: {
  23741. source: "./media/characters/erza-bear/tongue.svg"
  23742. }
  23743. },
  23744. dick: {
  23745. height: math.unit(10.5, "feet"),
  23746. name: "Dick",
  23747. image: {
  23748. source: "./media/characters/erza-bear/dick.svg"
  23749. }
  23750. },
  23751. dickVertical: {
  23752. height: math.unit(16.9, "feet"),
  23753. name: "Dick (Vertical)",
  23754. image: {
  23755. source: "./media/characters/erza-bear/dick-vertical.svg"
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Macro",
  23762. height: math.unit(100, "feet"),
  23763. default: true
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23769. {
  23770. front: {
  23771. height: math.unit(172, "cm"),
  23772. weight: math.unit(73, "kg"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/violet-flor/front.svg",
  23776. extra: 1530 / 1442,
  23777. bottom: 61.9 / 1588.8
  23778. }
  23779. },
  23780. back: {
  23781. height: math.unit(180, "cm"),
  23782. weight: math.unit(73, "kg"),
  23783. name: "Back",
  23784. image: {
  23785. source: "./media/characters/violet-flor/back.svg",
  23786. extra: 1692 / 1630,
  23787. bottom: 20 / 1712
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(172, "cm"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(6, "feet"),
  23804. weight: math.unit(220, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/lynn-rhea/front.svg",
  23808. extra: 310 / 273
  23809. }
  23810. },
  23811. back: {
  23812. height: math.unit(6, "feet"),
  23813. weight: math.unit(220, "lb"),
  23814. name: "Back",
  23815. image: {
  23816. source: "./media/characters/lynn-rhea/back.svg",
  23817. extra: 310 / 273
  23818. }
  23819. },
  23820. dicks: {
  23821. height: math.unit(0.9, "feet"),
  23822. name: "Dicks",
  23823. image: {
  23824. source: "./media/characters/lynn-rhea/dicks.svg"
  23825. }
  23826. },
  23827. slit: {
  23828. height: math.unit(0.4, "feet"),
  23829. name: "Slit",
  23830. image: {
  23831. source: "./media/characters/lynn-rhea/slit.svg"
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Micro",
  23838. height: math.unit(1, "inch")
  23839. },
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(60, "feet"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(2, "miles")
  23848. },
  23849. {
  23850. name: "Gigamacro",
  23851. height: math.unit(3, "earths")
  23852. },
  23853. {
  23854. name: "Galactic",
  23855. height: math.unit(0.8, "galaxies")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23861. {
  23862. front: {
  23863. height: math.unit(1600, "feet"),
  23864. weight: math.unit(85758785169, "kg"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/valathos/front.svg",
  23868. extra: 1451 / 1339
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(1600, "feet"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(7 + 5 / 12, "feet"),
  23885. weight: math.unit(300, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/azula/front.svg",
  23889. extra: 3208 / 2880,
  23890. bottom: 80.2 / 3277
  23891. }
  23892. },
  23893. back: {
  23894. height: math.unit(7 + 5 / 12, "feet"),
  23895. weight: math.unit(300, "lb"),
  23896. name: "Back",
  23897. image: {
  23898. source: "./media/characters/azula/back.svg",
  23899. extra: 3169 / 2822,
  23900. bottom: 150.6 / 3321
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(7 + 5 / 12, "feet"),
  23908. default: true
  23909. },
  23910. {
  23911. name: "Big",
  23912. height: math.unit(20, "feet")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(5 + 1 / 12, "feet"),
  23921. weight: math.unit(110, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/rupert/front.svg",
  23925. extra: 1549 / 1495,
  23926. bottom: 54.2 / 1604.4
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(5 + 1 / 12, "feet"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23940. {
  23941. front: {
  23942. height: math.unit(8 + 4 / 12, "feet"),
  23943. weight: math.unit(350, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/sheera-castellar/front.svg",
  23947. extra: 1957 / 1894,
  23948. bottom: 26.97 / 1975.017
  23949. }
  23950. },
  23951. side: {
  23952. height: math.unit(8 + 4 / 12, "feet"),
  23953. weight: math.unit(350, "lb"),
  23954. name: "Side",
  23955. image: {
  23956. source: "./media/characters/sheera-castellar/side.svg",
  23957. extra: 1957 / 1894
  23958. }
  23959. },
  23960. back: {
  23961. height: math.unit(8 + 4 / 12, "feet"),
  23962. weight: math.unit(350, "lb"),
  23963. name: "Back",
  23964. image: {
  23965. source: "./media/characters/sheera-castellar/back.svg",
  23966. extra: 1957 / 1894
  23967. }
  23968. },
  23969. angled: {
  23970. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23971. weight: math.unit(350, "lb"),
  23972. name: "Angled",
  23973. image: {
  23974. source: "./media/characters/sheera-castellar/angled.svg",
  23975. extra: 1807 / 1707,
  23976. bottom: 68 / 1875
  23977. }
  23978. },
  23979. genitals: {
  23980. height: math.unit(2.2, "feet"),
  23981. name: "Genitals",
  23982. image: {
  23983. source: "./media/characters/sheera-castellar/genitals.svg"
  23984. }
  23985. },
  23986. taur: {
  23987. height: math.unit(10 + 6/12, "feet"),
  23988. name: "Taur",
  23989. image: {
  23990. source: "./media/characters/sheera-castellar/taur.svg",
  23991. extra: 2017/1909,
  23992. bottom: 185/2202
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(8 + 4 / 12, "feet")
  24000. },
  24001. {
  24002. name: "Macro",
  24003. height: math.unit(150, "feet"),
  24004. default: true
  24005. },
  24006. {
  24007. name: "Macro+",
  24008. height: math.unit(800, "feet")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(6, "feet"),
  24017. weight: math.unit(150, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/jaipur/front.svg",
  24021. extra: 3860 / 3731,
  24022. bottom: 287 / 4140
  24023. }
  24024. },
  24025. back: {
  24026. height: math.unit(6, "feet"),
  24027. weight: math.unit(150, "lb"),
  24028. name: "Back",
  24029. image: {
  24030. source: "./media/characters/jaipur/back.svg",
  24031. extra: 1637/1561,
  24032. bottom: 154/1791
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(1.85, "meters"),
  24040. default: true
  24041. },
  24042. {
  24043. name: "Macro",
  24044. height: math.unit(150, "meters")
  24045. },
  24046. {
  24047. name: "Macro+",
  24048. height: math.unit(0.5, "miles")
  24049. },
  24050. {
  24051. name: "Macro++",
  24052. height: math.unit(2.5, "miles")
  24053. },
  24054. {
  24055. name: "Macro+++",
  24056. height: math.unit(12, "miles")
  24057. },
  24058. {
  24059. name: "Macro++++",
  24060. height: math.unit(120, "miles")
  24061. },
  24062. {
  24063. name: "Macro+++++",
  24064. height: math.unit(1200, "miles")
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(6, "feet"),
  24073. weight: math.unit(150, "lb"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/sheila-wolf/front.svg",
  24077. extra: 1931 / 1808,
  24078. bottom: 29.5 / 1960
  24079. }
  24080. },
  24081. dick: {
  24082. height: math.unit(1.464, "feet"),
  24083. name: "Dick",
  24084. image: {
  24085. source: "./media/characters/sheila-wolf/dick.svg"
  24086. }
  24087. },
  24088. muzzle: {
  24089. height: math.unit(0.513, "feet"),
  24090. name: "Muzzle",
  24091. image: {
  24092. source: "./media/characters/sheila-wolf/muzzle.svg"
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Macro",
  24099. height: math.unit(70, "feet"),
  24100. default: true
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(32, "meters"),
  24109. weight: math.unit(300000, "kg"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/almor/front.svg",
  24113. extra: 1408 / 1322,
  24114. bottom: 94.6 / 1506.5
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Macro",
  24121. height: math.unit(32, "meters"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(7, "feet"),
  24131. weight: math.unit(200, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/silver/front.svg",
  24135. extra: 472.1 / 450.5,
  24136. bottom: 26.5 / 499.424
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(7, "feet"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Macro",
  24148. height: math.unit(800, "feet")
  24149. },
  24150. {
  24151. name: "Megamacro",
  24152. height: math.unit(250, "miles")
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(6, "feet"),
  24161. weight: math.unit(150, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/pliskin/front.svg",
  24165. extra: 1469 / 1359,
  24166. bottom: 70 / 1540
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Micro",
  24173. height: math.unit(3, "inches")
  24174. },
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(5 + 11 / 12, "feet"),
  24178. default: true
  24179. },
  24180. {
  24181. name: "Macro",
  24182. height: math.unit(120, "feet")
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(150, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/sammy/front.svg",
  24195. extra: 1193 / 1089,
  24196. bottom: 30.5 / 1226
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Macro",
  24203. height: math.unit(1700, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Examacro",
  24208. height: math.unit(2.5e9, "lightyears")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(21, "meters"),
  24217. weight: math.unit(12, "tonnes"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/kuru/front.svg",
  24221. extra: 4301 / 3785,
  24222. bottom: 371.3 / 4691
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Macro",
  24229. height: math.unit(21, "meters"),
  24230. default: true
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(23, "meters"),
  24239. weight: math.unit(12.2, "tonnes"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/rakka/front.svg",
  24243. extra: 4670 / 4169,
  24244. bottom: 301 / 4968.7
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(23, "meters"),
  24252. default: true
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Rhys (Feline)", species: ["cat"], 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/rhys-feline/front.svg",
  24265. extra: 2488 / 2308,
  24266. bottom: 35.67 / 2519.19
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Really Small",
  24273. height: math.unit(1, "nm")
  24274. },
  24275. {
  24276. name: "Micro",
  24277. height: math.unit(4, "inches")
  24278. },
  24279. {
  24280. name: "Normal",
  24281. height: math.unit(4 + 10 / 12, "feet"),
  24282. default: true
  24283. },
  24284. {
  24285. name: "Macro",
  24286. height: math.unit(100, "feet")
  24287. },
  24288. {
  24289. name: "Megamacto",
  24290. height: math.unit(50, "miles")
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24296. {
  24297. side: {
  24298. height: math.unit(30, "feet"),
  24299. weight: math.unit(35000, "kg"),
  24300. name: "Side",
  24301. image: {
  24302. source: "./media/characters/alydar/side.svg",
  24303. extra: 234 / 222,
  24304. bottom: 6.5 / 241
  24305. }
  24306. },
  24307. front: {
  24308. height: math.unit(30, "feet"),
  24309. weight: math.unit(35000, "kg"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/alydar/front.svg",
  24313. extra: 223.37 / 210.2,
  24314. bottom: 22.3 / 246.76
  24315. }
  24316. },
  24317. top: {
  24318. height: math.unit(64.54, "feet"),
  24319. weight: math.unit(35000, "kg"),
  24320. name: "Top",
  24321. image: {
  24322. source: "./media/characters/alydar/top.svg"
  24323. }
  24324. },
  24325. anthro: {
  24326. height: math.unit(30, "feet"),
  24327. weight: math.unit(9000, "kg"),
  24328. name: "Anthro",
  24329. image: {
  24330. source: "./media/characters/alydar/anthro.svg",
  24331. extra: 432 / 421,
  24332. bottom: 7.18 / 440
  24333. }
  24334. },
  24335. maw: {
  24336. height: math.unit(11.693, "feet"),
  24337. name: "Maw",
  24338. image: {
  24339. source: "./media/characters/alydar/maw.svg"
  24340. }
  24341. },
  24342. head: {
  24343. height: math.unit(11.693, "feet"),
  24344. name: "Head",
  24345. image: {
  24346. source: "./media/characters/alydar/head.svg"
  24347. }
  24348. },
  24349. headAlt: {
  24350. height: math.unit(12.861, "feet"),
  24351. name: "Head (Alt)",
  24352. image: {
  24353. source: "./media/characters/alydar/head-alt.svg"
  24354. }
  24355. },
  24356. wing: {
  24357. height: math.unit(20.712, "feet"),
  24358. name: "Wing",
  24359. image: {
  24360. source: "./media/characters/alydar/wing.svg"
  24361. }
  24362. },
  24363. wingFeather: {
  24364. height: math.unit(9.662, "feet"),
  24365. name: "Wing Feather",
  24366. image: {
  24367. source: "./media/characters/alydar/wing-feather.svg"
  24368. }
  24369. },
  24370. countourFeather: {
  24371. height: math.unit(4.154, "feet"),
  24372. name: "Contour Feather",
  24373. image: {
  24374. source: "./media/characters/alydar/contour-feather.svg"
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Diplomatic",
  24381. height: math.unit(13, "feet"),
  24382. default: true
  24383. },
  24384. {
  24385. name: "Small",
  24386. height: math.unit(30, "feet")
  24387. },
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(95, "feet"),
  24391. default: true
  24392. },
  24393. {
  24394. name: "Large",
  24395. height: math.unit(285, "feet")
  24396. },
  24397. {
  24398. name: "Incomprehensible",
  24399. height: math.unit(450, "megameters")
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24405. {
  24406. side: {
  24407. height: math.unit(11, "feet"),
  24408. weight: math.unit(1750, "kg"),
  24409. name: "Side",
  24410. image: {
  24411. source: "./media/characters/selicia/side.svg",
  24412. extra: 440 / 396,
  24413. bottom: 24.8 / 465.979
  24414. }
  24415. },
  24416. maw: {
  24417. height: math.unit(4.665, "feet"),
  24418. name: "Maw",
  24419. image: {
  24420. source: "./media/characters/selicia/maw.svg"
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Normal",
  24427. height: math.unit(11, "feet"),
  24428. default: true
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24434. {
  24435. side: {
  24436. height: math.unit(2 + 6 / 12, "feet"),
  24437. weight: math.unit(30, "lb"),
  24438. name: "Side",
  24439. image: {
  24440. source: "./media/characters/layla/side.svg",
  24441. extra: 244 / 188,
  24442. bottom: 18.2 / 262.1
  24443. }
  24444. },
  24445. back: {
  24446. height: math.unit(2 + 6 / 12, "feet"),
  24447. weight: math.unit(30, "lb"),
  24448. name: "Back",
  24449. image: {
  24450. source: "./media/characters/layla/back.svg",
  24451. extra: 308 / 241.5,
  24452. bottom: 8.9 / 316.8
  24453. }
  24454. },
  24455. cumming: {
  24456. height: math.unit(2 + 6 / 12, "feet"),
  24457. weight: math.unit(30, "lb"),
  24458. name: "Cumming",
  24459. image: {
  24460. source: "./media/characters/layla/cumming.svg",
  24461. extra: 342 / 279,
  24462. bottom: 595 / 938
  24463. }
  24464. },
  24465. dickFlaccid: {
  24466. height: math.unit(2.595, "feet"),
  24467. name: "Flaccid Genitals",
  24468. image: {
  24469. source: "./media/characters/layla/dick-flaccid.svg"
  24470. }
  24471. },
  24472. dickErect: {
  24473. height: math.unit(2.359, "feet"),
  24474. name: "Erect Genitals",
  24475. image: {
  24476. source: "./media/characters/layla/dick-erect.svg"
  24477. }
  24478. },
  24479. dragon: {
  24480. height: math.unit(40, "feet"),
  24481. name: "Dragon",
  24482. image: {
  24483. source: "./media/characters/layla/dragon.svg",
  24484. extra: 610/535,
  24485. bottom: 367/977
  24486. }
  24487. },
  24488. taur: {
  24489. height: math.unit(30, "feet"),
  24490. name: "Taur",
  24491. image: {
  24492. source: "./media/characters/layla/taur.svg",
  24493. extra: 1268/1199,
  24494. bottom: 112/1380
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Micro",
  24501. height: math.unit(1, "inch")
  24502. },
  24503. {
  24504. name: "Small",
  24505. height: math.unit(1, "foot")
  24506. },
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(2 + 6 / 12, "feet"),
  24510. default: true
  24511. },
  24512. {
  24513. name: "Macro",
  24514. height: math.unit(200, "feet")
  24515. },
  24516. {
  24517. name: "Megamacro",
  24518. height: math.unit(1000, "miles")
  24519. },
  24520. {
  24521. name: "Planetary",
  24522. height: math.unit(8000, "miles")
  24523. },
  24524. {
  24525. name: "True Layla",
  24526. height: math.unit(200000 * 7, "multiverses")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24532. {
  24533. back: {
  24534. height: math.unit(10.5, "feet"),
  24535. weight: math.unit(800, "lb"),
  24536. name: "Back",
  24537. image: {
  24538. source: "./media/characters/knox/back.svg",
  24539. extra: 1486 / 1089,
  24540. bottom: 107 / 1601.4
  24541. }
  24542. },
  24543. side: {
  24544. height: math.unit(10.5, "feet"),
  24545. weight: math.unit(800, "lb"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/knox/side.svg",
  24549. extra: 244 / 218,
  24550. bottom: 14 / 260
  24551. }
  24552. },
  24553. },
  24554. [
  24555. {
  24556. name: "Compact",
  24557. height: math.unit(10.5, "feet"),
  24558. default: true
  24559. },
  24560. {
  24561. name: "Dynamax",
  24562. height: math.unit(210, "feet")
  24563. },
  24564. {
  24565. name: "Full Macro",
  24566. height: math.unit(850, "feet")
  24567. },
  24568. ]
  24569. ))
  24570. characterMakers.push(() => makeCharacter(
  24571. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24572. {
  24573. front: {
  24574. height: math.unit(28, "feet"),
  24575. weight: math.unit(10500, "lb"),
  24576. name: "Front",
  24577. image: {
  24578. source: "./media/characters/kayda/front.svg",
  24579. extra: 1536 / 1428,
  24580. bottom: 68.7 / 1603
  24581. }
  24582. },
  24583. back: {
  24584. height: math.unit(28, "feet"),
  24585. weight: math.unit(10500, "lb"),
  24586. name: "Back",
  24587. image: {
  24588. source: "./media/characters/kayda/back.svg",
  24589. extra: 1557 / 1464,
  24590. bottom: 39.5 / 1597.49
  24591. }
  24592. },
  24593. dick: {
  24594. height: math.unit(3.858, "feet"),
  24595. name: "Dick",
  24596. image: {
  24597. source: "./media/characters/kayda/dick.svg"
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(28, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(10 + 11 / 12, "feet"),
  24614. weight: math.unit(1400, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/brian/front.svg",
  24618. extra: 737 / 692,
  24619. bottom: 55.4 / 785
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(10 + 11 / 12, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5 + 8 / 12, "feet"),
  24636. weight: math.unit(140, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/khemri/front.svg",
  24640. extra: 4780 / 4059,
  24641. bottom: 80.1 / 4859.25
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Micro",
  24648. height: math.unit(6, "inches")
  24649. },
  24650. {
  24651. name: "Normal",
  24652. height: math.unit(5 + 8 / 12, "feet"),
  24653. default: true
  24654. },
  24655. ]
  24656. ))
  24657. characterMakers.push(() => makeCharacter(
  24658. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24659. {
  24660. front: {
  24661. height: math.unit(13, "feet"),
  24662. weight: math.unit(1700, "lb"),
  24663. name: "Front",
  24664. image: {
  24665. source: "./media/characters/felix-braveheart/front.svg",
  24666. extra: 1222 / 1157,
  24667. bottom: 53.2 / 1280
  24668. }
  24669. },
  24670. back: {
  24671. height: math.unit(13, "feet"),
  24672. weight: math.unit(1700, "lb"),
  24673. name: "Back",
  24674. image: {
  24675. source: "./media/characters/felix-braveheart/back.svg",
  24676. extra: 1277 / 1203,
  24677. bottom: 50.2 / 1327
  24678. }
  24679. },
  24680. feral: {
  24681. height: math.unit(6, "feet"),
  24682. weight: math.unit(400, "lb"),
  24683. name: "Feral",
  24684. image: {
  24685. source: "./media/characters/felix-braveheart/feral.svg",
  24686. extra: 682 / 625,
  24687. bottom: 6.9 / 688
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(13, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24701. {
  24702. side: {
  24703. height: math.unit(5 + 11 / 12, "feet"),
  24704. weight: math.unit(1400, "lb"),
  24705. name: "Side",
  24706. image: {
  24707. source: "./media/characters/shadow-blade/side.svg",
  24708. extra: 1726 / 1267,
  24709. bottom: 58.4 / 1785
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(5 + 11 / 12, "feet"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(1 + 6 / 12, "feet"),
  24726. weight: math.unit(25, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/karla-halldor/front.svg",
  24730. extra: 1459 / 1383,
  24731. bottom: 12 / 1472
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(1 + 6 / 12, "feet"),
  24739. default: true
  24740. },
  24741. ]
  24742. ))
  24743. characterMakers.push(() => makeCharacter(
  24744. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24745. {
  24746. front: {
  24747. height: math.unit(6 + 2 / 12, "feet"),
  24748. weight: math.unit(160, "lb"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/ariam/front.svg",
  24752. extra: 1073/976,
  24753. bottom: 52/1125
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(6 + 2/12, "feet"),
  24758. weight: math.unit(160, "lb"),
  24759. name: "Back",
  24760. image: {
  24761. source: "./media/characters/ariam/back.svg",
  24762. extra: 1103/1023,
  24763. bottom: 9/1112
  24764. }
  24765. },
  24766. dressed: {
  24767. height: math.unit(6 + 2/12, "feet"),
  24768. weight: math.unit(160, "lb"),
  24769. name: "Dressed",
  24770. image: {
  24771. source: "./media/characters/ariam/dressed.svg",
  24772. extra: 1099/1009,
  24773. bottom: 25/1124
  24774. }
  24775. },
  24776. squatting: {
  24777. height: math.unit(4.1, "feet"),
  24778. weight: math.unit(160, "lb"),
  24779. name: "Squatting",
  24780. image: {
  24781. source: "./media/characters/ariam/squatting.svg",
  24782. extra: 2617 / 2112,
  24783. bottom: 61.2 / 2681,
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(6 + 2 / 12, "feet"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Normal+",
  24795. height: math.unit(4, "meters")
  24796. },
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(50, "meters")
  24800. },
  24801. {
  24802. name: "Macro+",
  24803. height: math.unit(100, "meters")
  24804. },
  24805. {
  24806. name: "Megamacro",
  24807. height: math.unit(20, "km")
  24808. },
  24809. {
  24810. name: "Caretaker",
  24811. height: math.unit(444, "megameters")
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(1.67, "meters"),
  24820. weight: math.unit(140, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24824. extra: 438 / 410,
  24825. bottom: 0.75 / 439
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Shrunken",
  24832. height: math.unit(7.6, "cm")
  24833. },
  24834. {
  24835. name: "Human Scale",
  24836. height: math.unit(1.67, "meters")
  24837. },
  24838. {
  24839. name: "Wolxi Scale",
  24840. height: math.unit(36.7, "meters"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(1.73, "meters"),
  24850. weight: math.unit(240, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/izue-two-mothers/front.svg",
  24854. extra: 469 / 437,
  24855. bottom: 1.24 / 470.6
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Shrunken",
  24862. height: math.unit(7.86, "cm")
  24863. },
  24864. {
  24865. name: "Human Scale",
  24866. height: math.unit(1.73, "meters")
  24867. },
  24868. {
  24869. name: "Wolxi Scale",
  24870. height: math.unit(38, "meters"),
  24871. default: true
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(1.55, "meters"),
  24880. weight: math.unit(120, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/teeku-love-shack/front.svg",
  24884. extra: 387 / 362,
  24885. bottom: 1.51 / 388
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Shrunken",
  24892. height: math.unit(7, "cm")
  24893. },
  24894. {
  24895. name: "Human Scale",
  24896. height: math.unit(1.55, "meters")
  24897. },
  24898. {
  24899. name: "Wolxi Scale",
  24900. height: math.unit(34.1, "meters"),
  24901. default: true
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(1.83, "meters"),
  24910. weight: math.unit(135, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/dejma-the-red/front.svg",
  24914. extra: 480 / 458,
  24915. bottom: 1.8 / 482
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Shrunken",
  24922. height: math.unit(8.3, "cm")
  24923. },
  24924. {
  24925. name: "Human Scale",
  24926. height: math.unit(1.83, "meters")
  24927. },
  24928. {
  24929. name: "Wolxi Scale",
  24930. height: math.unit(40, "meters"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(1.78, "meters"),
  24940. weight: math.unit(65, "kg"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/aki/front.svg",
  24944. extra: 452 / 415
  24945. }
  24946. },
  24947. frontNsfw: {
  24948. height: math.unit(1.78, "meters"),
  24949. weight: math.unit(65, "kg"),
  24950. name: "Front (NSFW)",
  24951. image: {
  24952. source: "./media/characters/aki/front-nsfw.svg",
  24953. extra: 452 / 415
  24954. }
  24955. },
  24956. back: {
  24957. height: math.unit(1.78, "meters"),
  24958. weight: math.unit(65, "kg"),
  24959. name: "Back",
  24960. image: {
  24961. source: "./media/characters/aki/back.svg",
  24962. extra: 452 / 415
  24963. }
  24964. },
  24965. rump: {
  24966. height: math.unit(2.05, "feet"),
  24967. name: "Rump",
  24968. image: {
  24969. source: "./media/characters/aki/rump.svg"
  24970. }
  24971. },
  24972. dick: {
  24973. height: math.unit(0.95, "feet"),
  24974. name: "Dick",
  24975. image: {
  24976. source: "./media/characters/aki/dick.svg"
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Micro",
  24983. height: math.unit(15, "cm")
  24984. },
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(178, "cm"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Macro",
  24992. height: math.unit(214, "m")
  24993. },
  24994. {
  24995. name: "Macro+",
  24996. height: math.unit(534, "m")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(5 + 5 / 12, "feet"),
  25005. weight: math.unit(120, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/ari/front.svg",
  25009. extra: 714.5 / 682,
  25010. bottom: 8 / 722.5
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(5 + 5 / 12, "feet")
  25018. },
  25019. {
  25020. name: "Macro",
  25021. height: math.unit(100, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Megamacro",
  25026. height: math.unit(100, "miles")
  25027. },
  25028. {
  25029. name: "Gigamacro",
  25030. height: math.unit(80000, "miles")
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25036. {
  25037. side: {
  25038. height: math.unit(9, "feet"),
  25039. weight: math.unit(400, "kg"),
  25040. name: "Side",
  25041. image: {
  25042. source: "./media/characters/bolt/side.svg",
  25043. extra: 1126 / 896,
  25044. bottom: 60 / 1187.3,
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(5, "inches")
  25052. },
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(9, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Macro",
  25060. height: math.unit(700, "feet")
  25061. },
  25062. {
  25063. name: "Max Size",
  25064. height: math.unit(1.52e22, "yottameters")
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(4.3, "meters"),
  25073. weight: math.unit(3, "tons"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/draekon-sylviar/front.svg",
  25077. extra: 2072/1512,
  25078. bottom: 74/2146
  25079. }
  25080. },
  25081. back: {
  25082. height: math.unit(4.3, "meters"),
  25083. weight: math.unit(3, "tons"),
  25084. name: "Back",
  25085. image: {
  25086. source: "./media/characters/draekon-sylviar/back.svg",
  25087. extra: 1639/1483,
  25088. bottom: 41/1680
  25089. }
  25090. },
  25091. feral: {
  25092. height: math.unit(1.15, "meters"),
  25093. weight: math.unit(3, "tons"),
  25094. name: "Feral",
  25095. image: {
  25096. source: "./media/characters/draekon-sylviar/feral.svg",
  25097. extra: 1033/395,
  25098. bottom: 130/1163
  25099. }
  25100. },
  25101. maw: {
  25102. height: math.unit(1.3, "meters"),
  25103. name: "Maw",
  25104. image: {
  25105. source: "./media/characters/draekon-sylviar/maw.svg"
  25106. }
  25107. },
  25108. mawSeparated: {
  25109. height: math.unit(1.53, "meters"),
  25110. name: "Separated Maw",
  25111. image: {
  25112. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25113. }
  25114. },
  25115. tail: {
  25116. height: math.unit(1.15, "meters"),
  25117. name: "Tail",
  25118. image: {
  25119. source: "./media/characters/draekon-sylviar/tail.svg"
  25120. }
  25121. },
  25122. tailDick: {
  25123. height: math.unit(1.15, "meters"),
  25124. name: "Tail (Dick)",
  25125. image: {
  25126. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25127. }
  25128. },
  25129. tailDickSeparated: {
  25130. height: math.unit(1.19, "meters"),
  25131. name: "Tail (Separated Dick)",
  25132. image: {
  25133. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25134. }
  25135. },
  25136. slit: {
  25137. height: math.unit(1, "meters"),
  25138. name: "Slit",
  25139. image: {
  25140. source: "./media/characters/draekon-sylviar/slit.svg"
  25141. }
  25142. },
  25143. dick: {
  25144. height: math.unit(1.15, "meters"),
  25145. name: "Dick",
  25146. image: {
  25147. source: "./media/characters/draekon-sylviar/dick.svg"
  25148. }
  25149. },
  25150. dickSeparated: {
  25151. height: math.unit(1.1, "meters"),
  25152. name: "Separated Dick",
  25153. image: {
  25154. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25155. }
  25156. },
  25157. sheath: {
  25158. height: math.unit(1.15, "meters"),
  25159. name: "Sheath",
  25160. image: {
  25161. source: "./media/characters/draekon-sylviar/sheath.svg"
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Small",
  25168. height: math.unit(4.53 / 2, "meters"),
  25169. default: true
  25170. },
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(4.53, "meters"),
  25174. default: true
  25175. },
  25176. {
  25177. name: "Large",
  25178. height: math.unit(4.53 * 2, "meters"),
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(6 + 2 / 12, "feet"),
  25187. weight: math.unit(180, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/brawler/front.svg",
  25191. extra: 3301 / 3027,
  25192. bottom: 138 / 3439
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Normal",
  25199. height: math.unit(6 + 2 / 12, "feet"),
  25200. default: true
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(11, "feet"),
  25209. weight: math.unit(1000, "lb"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/alex/front.svg",
  25213. bottom: 44.5 / 620
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Micro",
  25220. height: math.unit(5, "inches")
  25221. },
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(11, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Macro",
  25229. height: math.unit(9.5e9, "feet")
  25230. },
  25231. {
  25232. name: "Max Size",
  25233. height: math.unit(1.4e283, "yottameters")
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25239. {
  25240. female: {
  25241. height: math.unit(29.9, "m"),
  25242. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25243. name: "Female",
  25244. image: {
  25245. source: "./media/characters/zenari/female.svg",
  25246. extra: 3281.6 / 3217,
  25247. bottom: 72.2 / 3353
  25248. }
  25249. },
  25250. male: {
  25251. height: math.unit(27.7, "m"),
  25252. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25253. name: "Male",
  25254. image: {
  25255. source: "./media/characters/zenari/male.svg",
  25256. extra: 3008 / 2991,
  25257. bottom: 54.6 / 3069
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Macro",
  25264. height: math.unit(29.7, "meters"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25271. {
  25272. female: {
  25273. height: math.unit(23.8, "m"),
  25274. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25275. name: "Female",
  25276. image: {
  25277. source: "./media/characters/mactarian/female.svg",
  25278. extra: 2662 / 2569,
  25279. bottom: 73 / 2736
  25280. }
  25281. },
  25282. male: {
  25283. height: math.unit(23.8, "m"),
  25284. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25285. name: "Male",
  25286. image: {
  25287. source: "./media/characters/mactarian/male.svg",
  25288. extra: 2673 / 2600,
  25289. bottom: 76 / 2750
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(23.8, "meters"),
  25297. default: true
  25298. },
  25299. ]
  25300. ))
  25301. characterMakers.push(() => makeCharacter(
  25302. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25303. {
  25304. female: {
  25305. height: math.unit(19.3, "m"),
  25306. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25307. name: "Female",
  25308. image: {
  25309. source: "./media/characters/umok/female.svg",
  25310. extra: 2186 / 2078,
  25311. bottom: 87 / 2277
  25312. }
  25313. },
  25314. male: {
  25315. height: math.unit(19.5, "m"),
  25316. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25317. name: "Male",
  25318. image: {
  25319. source: "./media/characters/umok/male.svg",
  25320. extra: 2233 / 2140,
  25321. bottom: 24.4 / 2258
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Macro",
  25328. height: math.unit(19.3, "meters"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25335. {
  25336. female: {
  25337. height: math.unit(26.15, "m"),
  25338. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25339. name: "Female",
  25340. image: {
  25341. source: "./media/characters/joraxian/female.svg",
  25342. extra: 2912 / 2824,
  25343. bottom: 36 / 2956
  25344. }
  25345. },
  25346. male: {
  25347. height: math.unit(25.4, "m"),
  25348. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25349. name: "Male",
  25350. image: {
  25351. source: "./media/characters/joraxian/male.svg",
  25352. extra: 2877 / 2721,
  25353. bottom: 82 / 2967
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Macro",
  25360. height: math.unit(26.15, "meters"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25367. {
  25368. female: {
  25369. height: math.unit(21.6, "m"),
  25370. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25371. name: "Female",
  25372. image: {
  25373. source: "./media/characters/sthara/female.svg",
  25374. extra: 2516 / 2347,
  25375. bottom: 21.5 / 2537
  25376. }
  25377. },
  25378. male: {
  25379. height: math.unit(24, "m"),
  25380. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25381. name: "Male",
  25382. image: {
  25383. source: "./media/characters/sthara/male.svg",
  25384. extra: 2732 / 2607,
  25385. bottom: 23 / 2732
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Macro",
  25392. height: math.unit(21.6, "meters"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(6 + 4 / 12, "feet"),
  25402. weight: math.unit(175, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/luka-bryzant/front.svg",
  25406. extra: 311 / 289,
  25407. bottom: 4 / 315
  25408. }
  25409. },
  25410. back: {
  25411. height: math.unit(6 + 4 / 12, "feet"),
  25412. weight: math.unit(175, "lb"),
  25413. name: "Back",
  25414. image: {
  25415. source: "./media/characters/luka-bryzant/back.svg",
  25416. extra: 311 / 289,
  25417. bottom: 3.8 / 313.7
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Micro",
  25424. height: math.unit(10, "inches")
  25425. },
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(6 + 4 / 12, "feet"),
  25429. default: true
  25430. },
  25431. {
  25432. name: "Large",
  25433. height: math.unit(12, "feet")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(5 + 7 / 12, "feet"),
  25442. weight: math.unit(185, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/aman-aquila/front.svg",
  25446. extra: 1013 / 976,
  25447. bottom: 45.6 / 1057
  25448. }
  25449. },
  25450. side: {
  25451. height: math.unit(5 + 7 / 12, "feet"),
  25452. weight: math.unit(185, "lb"),
  25453. name: "Side",
  25454. image: {
  25455. source: "./media/characters/aman-aquila/side.svg",
  25456. extra: 1054 / 1011,
  25457. bottom: 15 / 1070
  25458. }
  25459. },
  25460. back: {
  25461. height: math.unit(5 + 7 / 12, "feet"),
  25462. weight: math.unit(185, "lb"),
  25463. name: "Back",
  25464. image: {
  25465. source: "./media/characters/aman-aquila/back.svg",
  25466. extra: 1026 / 970,
  25467. bottom: 12 / 1039
  25468. }
  25469. },
  25470. head: {
  25471. height: math.unit(1.211, "feet"),
  25472. name: "Head",
  25473. image: {
  25474. source: "./media/characters/aman-aquila/head.svg",
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Minimicro",
  25481. height: math.unit(0.057, "inches")
  25482. },
  25483. {
  25484. name: "Micro",
  25485. height: math.unit(7, "inches")
  25486. },
  25487. {
  25488. name: "Mini",
  25489. height: math.unit(3 + 7 / 12, "feet")
  25490. },
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(5 + 7 / 12, "feet"),
  25494. default: true
  25495. },
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(157 + 7 / 12, "feet")
  25499. },
  25500. {
  25501. name: "Megamacro",
  25502. height: math.unit(1557 + 7 / 12, "feet")
  25503. },
  25504. {
  25505. name: "Gigamacro",
  25506. height: math.unit(15557 + 7 / 12, "feet")
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(3 + 2 / 12, "inches"),
  25515. weight: math.unit(0.3, "ounces"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/hiphae/front.svg",
  25519. extra: 1931 / 1683,
  25520. bottom: 24 / 1955
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(3 + 1 / 2, "inches"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(5 + 10 / 12, "feet"),
  25537. weight: math.unit(165, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/nicky/front.svg",
  25541. extra: 3144 / 2886,
  25542. bottom: 45.6 / 3192
  25543. }
  25544. },
  25545. back: {
  25546. height: math.unit(5 + 10 / 12, "feet"),
  25547. weight: math.unit(165, "lb"),
  25548. name: "Back",
  25549. image: {
  25550. source: "./media/characters/nicky/back.svg",
  25551. extra: 3055 / 2804,
  25552. bottom: 28.4 / 3087
  25553. }
  25554. },
  25555. frontclothed: {
  25556. height: math.unit(5 + 10 / 12, "feet"),
  25557. weight: math.unit(165, "lb"),
  25558. name: "Front-clothed",
  25559. image: {
  25560. source: "./media/characters/nicky/front-clothed.svg",
  25561. extra: 3184.9 / 2926.9,
  25562. bottom: 86.5 / 3239.9
  25563. }
  25564. },
  25565. foot: {
  25566. height: math.unit(1.16, "feet"),
  25567. name: "Foot",
  25568. image: {
  25569. source: "./media/characters/nicky/foot.svg"
  25570. }
  25571. },
  25572. feet: {
  25573. height: math.unit(1.34, "feet"),
  25574. name: "Feet",
  25575. image: {
  25576. source: "./media/characters/nicky/feet.svg"
  25577. }
  25578. },
  25579. maw: {
  25580. height: math.unit(0.9, "feet"),
  25581. name: "Maw",
  25582. image: {
  25583. source: "./media/characters/nicky/maw.svg"
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(5 + 10 / 12, "feet"),
  25591. default: true
  25592. },
  25593. {
  25594. name: "Macro",
  25595. height: math.unit(60, "feet")
  25596. },
  25597. {
  25598. name: "Megamacro",
  25599. height: math.unit(1, "mile")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25605. {
  25606. side: {
  25607. height: math.unit(10, "feet"),
  25608. weight: math.unit(600, "lb"),
  25609. name: "Side",
  25610. image: {
  25611. source: "./media/characters/blair/side.svg",
  25612. bottom: 16.6 / 475,
  25613. extra: 458 / 431
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Micro",
  25620. height: math.unit(8, "inches")
  25621. },
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(10, "feet"),
  25625. default: true
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(180, "feet")
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(5 + 4 / 12, "feet"),
  25638. weight: math.unit(125, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/fisher/front.svg",
  25642. extra: 444 / 390,
  25643. bottom: 2 / 444.8
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Micro",
  25650. height: math.unit(4, "inches")
  25651. },
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(5 + 4 / 12, "feet"),
  25655. default: true
  25656. },
  25657. {
  25658. name: "Macro",
  25659. height: math.unit(100, "feet")
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(6.71, "feet"),
  25668. weight: math.unit(200, "lb"),
  25669. capacity: math.unit(1000000, "people"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/gliss/front.svg",
  25673. extra: 2347 / 2231,
  25674. bottom: 113 / 2462
  25675. }
  25676. },
  25677. hammerspaceSize: {
  25678. height: math.unit(6.71 * 717, "feet"),
  25679. weight: math.unit(200, "lb"),
  25680. capacity: math.unit(1000000, "people"),
  25681. name: "Hammerspace Size",
  25682. image: {
  25683. source: "./media/characters/gliss/front.svg",
  25684. extra: 2347 / 2231,
  25685. bottom: 113 / 2462
  25686. }
  25687. },
  25688. },
  25689. [
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(6.71, "feet"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25699. {
  25700. side: {
  25701. height: math.unit(1.44, "m"),
  25702. weight: math.unit(80, "kg"),
  25703. name: "Side",
  25704. image: {
  25705. source: "./media/characters/dune-anderson/side.svg",
  25706. bottom: 49 / 1426
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Wolf-sized",
  25713. height: math.unit(1.44, "meters")
  25714. },
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(5.05, "meters"),
  25718. default: true
  25719. },
  25720. {
  25721. name: "Big",
  25722. height: math.unit(14.4, "meters")
  25723. },
  25724. {
  25725. name: "Huge",
  25726. height: math.unit(144, "meters")
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(7, "feet"),
  25735. weight: math.unit(425, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/hind/front.svg",
  25739. extra: 2091 / 1860,
  25740. bottom: 129 / 2220
  25741. }
  25742. },
  25743. back: {
  25744. height: math.unit(7, "feet"),
  25745. weight: math.unit(425, "lb"),
  25746. name: "Back",
  25747. image: {
  25748. source: "./media/characters/hind/back.svg",
  25749. extra: 2091 / 1860,
  25750. bottom: 24.6 / 2309
  25751. }
  25752. },
  25753. tail: {
  25754. height: math.unit(2.8, "feet"),
  25755. name: "Tail",
  25756. image: {
  25757. source: "./media/characters/hind/tail.svg"
  25758. }
  25759. },
  25760. head: {
  25761. height: math.unit(2.55, "feet"),
  25762. name: "Head",
  25763. image: {
  25764. source: "./media/characters/hind/head.svg"
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "XS",
  25771. height: math.unit(0.7, "feet")
  25772. },
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(7, "feet"),
  25776. default: true
  25777. },
  25778. {
  25779. name: "XL",
  25780. height: math.unit(70, "feet")
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(2.1, "meters"),
  25789. weight: math.unit(150, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/tharquench-sizestealer/front.svg",
  25793. extra: 1605/1470,
  25794. bottom: 36/1641
  25795. }
  25796. },
  25797. frontAlt: {
  25798. height: math.unit(2.1, "meters"),
  25799. weight: math.unit(150, "lb"),
  25800. name: "Front (Alt)",
  25801. image: {
  25802. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25803. extra: 2318 / 2063,
  25804. bottom: 93.4 / 2410
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Nano",
  25811. height: math.unit(1, "mm")
  25812. },
  25813. {
  25814. name: "Micro",
  25815. height: math.unit(1, "cm")
  25816. },
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(2.1, "meters"),
  25820. default: true
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(7 + 5 / 12, "feet"),
  25829. weight: math.unit(357, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/solex-draconov/front.svg",
  25833. extra: 1993 / 1865,
  25834. bottom: 117 / 2111
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Natural Height",
  25841. height: math.unit(7 + 5 / 12, "feet"),
  25842. default: true
  25843. },
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(350, "feet")
  25847. },
  25848. {
  25849. name: "Macro+",
  25850. height: math.unit(1000, "feet")
  25851. },
  25852. {
  25853. name: "Megamacro",
  25854. height: math.unit(20, "km")
  25855. },
  25856. {
  25857. name: "Megamacro+",
  25858. height: math.unit(1000, "km")
  25859. },
  25860. {
  25861. name: "Gigamacro",
  25862. height: math.unit(2.5, "Gm")
  25863. },
  25864. {
  25865. name: "Teramacro",
  25866. height: math.unit(15, "Tm")
  25867. },
  25868. {
  25869. name: "Galactic",
  25870. height: math.unit(30, "Zm")
  25871. },
  25872. {
  25873. name: "Universal",
  25874. height: math.unit(21000, "Ym")
  25875. },
  25876. {
  25877. name: "Omniversal",
  25878. height: math.unit(9.861e50, "Ym")
  25879. },
  25880. {
  25881. name: "Existential",
  25882. height: math.unit(1e300, "meters")
  25883. },
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25888. {
  25889. side: {
  25890. height: math.unit(25, "feet"),
  25891. weight: math.unit(90000, "lb"),
  25892. name: "Side",
  25893. image: {
  25894. source: "./media/characters/mandarax/side.svg",
  25895. extra: 614 / 332,
  25896. bottom: 55 / 630
  25897. }
  25898. },
  25899. lounging: {
  25900. height: math.unit(15.4, "feet"),
  25901. weight: math.unit(90000, "lb"),
  25902. name: "Lounging",
  25903. image: {
  25904. source: "./media/characters/mandarax/lounging.svg",
  25905. extra: 817/609,
  25906. bottom: 685/1502
  25907. }
  25908. },
  25909. head: {
  25910. height: math.unit(11.4, "feet"),
  25911. name: "Head",
  25912. image: {
  25913. source: "./media/characters/mandarax/head.svg"
  25914. }
  25915. },
  25916. belly: {
  25917. height: math.unit(33, "feet"),
  25918. name: "Belly",
  25919. capacity: math.unit(500, "people"),
  25920. image: {
  25921. source: "./media/characters/mandarax/belly.svg"
  25922. }
  25923. },
  25924. dick: {
  25925. height: math.unit(8.46, "feet"),
  25926. name: "Dick",
  25927. image: {
  25928. source: "./media/characters/mandarax/dick.svg"
  25929. }
  25930. },
  25931. top: {
  25932. height: math.unit(28, "meters"),
  25933. name: "Top",
  25934. image: {
  25935. source: "./media/characters/mandarax/top.svg"
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(25, "feet"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(5, "feet"),
  25952. weight: math.unit(90, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/pixil/front.svg",
  25956. extra: 2000 / 1618,
  25957. bottom: 12.3 / 2011
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(5, "feet"),
  25965. default: true
  25966. },
  25967. {
  25968. name: "Megamacro",
  25969. height: math.unit(10, "miles"),
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(7 + 2 / 12, "feet"),
  25978. weight: math.unit(200, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/angel/front.svg",
  25982. extra: 1830 / 1737,
  25983. bottom: 22.6 / 1854,
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(7 + 2 / 12, "feet"),
  25991. default: true
  25992. },
  25993. {
  25994. name: "Macro",
  25995. height: math.unit(1000, "feet")
  25996. },
  25997. {
  25998. name: "Megamacro",
  25999. height: math.unit(2, "miles")
  26000. },
  26001. {
  26002. name: "Gigamacro",
  26003. height: math.unit(20, "earths")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(5, "feet"),
  26012. weight: math.unit(180, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/mekana/front.svg",
  26016. extra: 1671 / 1605,
  26017. bottom: 3.5 / 1691
  26018. }
  26019. },
  26020. side: {
  26021. height: math.unit(5, "feet"),
  26022. weight: math.unit(180, "lb"),
  26023. name: "Side",
  26024. image: {
  26025. source: "./media/characters/mekana/side.svg",
  26026. extra: 1671 / 1605,
  26027. bottom: 3.5 / 1691
  26028. }
  26029. },
  26030. back: {
  26031. height: math.unit(5, "feet"),
  26032. weight: math.unit(180, "lb"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/mekana/back.svg",
  26036. extra: 1671 / 1605,
  26037. bottom: 3.5 / 1691
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(5, "feet"),
  26045. default: true
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(4 + 6 / 12, "feet"),
  26054. weight: math.unit(80, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/pixie/front.svg",
  26058. extra: 1924 / 1825,
  26059. bottom: 22.4 / 1946
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(4 + 6 / 12, "feet"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(40, "feet")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(2.1, "meters"),
  26080. weight: math.unit(200, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/the-lascivious/front.svg",
  26084. extra: 1 / 0.893,
  26085. bottom: 3.5 / 573.7
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Human Scale",
  26092. height: math.unit(2.1, "meters")
  26093. },
  26094. {
  26095. name: "Wolxi Scale",
  26096. height: math.unit(46.2, "m"),
  26097. default: true
  26098. },
  26099. {
  26100. name: "Boinker of Buildings",
  26101. height: math.unit(10, "km")
  26102. },
  26103. {
  26104. name: "Shagger of Skyscrapers",
  26105. height: math.unit(40, "km")
  26106. },
  26107. {
  26108. name: "Banger of Boroughs",
  26109. height: math.unit(4000, "km")
  26110. },
  26111. {
  26112. name: "Screwer of States",
  26113. height: math.unit(100000, "km")
  26114. },
  26115. {
  26116. name: "Pounder of Planets",
  26117. height: math.unit(2000000, "km")
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(6, "feet"),
  26126. weight: math.unit(150, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/aj/front.svg",
  26130. extra: 2039 / 1562,
  26131. bottom: 40 / 2079
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(11 + 6 / 12, "feet"),
  26139. default: true
  26140. },
  26141. {
  26142. name: "Megamacro",
  26143. height: math.unit(60, "megameters")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26149. {
  26150. side: {
  26151. height: math.unit(31 + 8 / 12, "feet"),
  26152. weight: math.unit(75000, "kg"),
  26153. name: "Side",
  26154. image: {
  26155. source: "./media/characters/koros/side.svg",
  26156. extra: 1442 / 1297,
  26157. bottom: 122.7 / 1562
  26158. }
  26159. },
  26160. dicksKingsCrown: {
  26161. height: math.unit(6, "feet"),
  26162. name: "Dicks (King's Crown)",
  26163. image: {
  26164. source: "./media/characters/koros/dicks-kings-crown.svg"
  26165. }
  26166. },
  26167. dicksTailSet: {
  26168. height: math.unit(3, "feet"),
  26169. name: "Dicks (Tail Set)",
  26170. image: {
  26171. source: "./media/characters/koros/dicks-tail-set.svg"
  26172. }
  26173. },
  26174. dickCumming: {
  26175. height: math.unit(7.98, "feet"),
  26176. name: "Dick (Cumming)",
  26177. image: {
  26178. source: "./media/characters/koros/dick-cumming.svg"
  26179. }
  26180. },
  26181. dicksBack: {
  26182. height: math.unit(5.9, "feet"),
  26183. name: "Dicks (Back)",
  26184. image: {
  26185. source: "./media/characters/koros/dicks-back.svg"
  26186. }
  26187. },
  26188. dicksFront: {
  26189. height: math.unit(3.72, "feet"),
  26190. name: "Dicks (Front)",
  26191. image: {
  26192. source: "./media/characters/koros/dicks-front.svg"
  26193. }
  26194. },
  26195. dicksPeeking: {
  26196. height: math.unit(3.0, "feet"),
  26197. name: "Dicks (Peeking)",
  26198. image: {
  26199. source: "./media/characters/koros/dicks-peeking.svg"
  26200. }
  26201. },
  26202. eye: {
  26203. height: math.unit(1.7, "feet"),
  26204. name: "Eye",
  26205. image: {
  26206. source: "./media/characters/koros/eye.svg"
  26207. }
  26208. },
  26209. headFront: {
  26210. height: math.unit(11.69, "feet"),
  26211. name: "Head (Front)",
  26212. image: {
  26213. source: "./media/characters/koros/head-front.svg"
  26214. }
  26215. },
  26216. headSide: {
  26217. height: math.unit(14, "feet"),
  26218. name: "Head (Side)",
  26219. image: {
  26220. source: "./media/characters/koros/head-side.svg"
  26221. }
  26222. },
  26223. leg: {
  26224. height: math.unit(17, "feet"),
  26225. name: "Leg",
  26226. image: {
  26227. source: "./media/characters/koros/leg.svg"
  26228. }
  26229. },
  26230. mawSide: {
  26231. height: math.unit(12.8, "feet"),
  26232. name: "Maw (Side)",
  26233. image: {
  26234. source: "./media/characters/koros/maw-side.svg"
  26235. }
  26236. },
  26237. mawSpitting: {
  26238. height: math.unit(17, "feet"),
  26239. name: "Maw (Spitting)",
  26240. image: {
  26241. source: "./media/characters/koros/maw-spitting.svg"
  26242. }
  26243. },
  26244. slit: {
  26245. height: math.unit(2.8, "feet"),
  26246. name: "Slit",
  26247. image: {
  26248. source: "./media/characters/koros/slit.svg"
  26249. }
  26250. },
  26251. stomach: {
  26252. height: math.unit(6.8, "feet"),
  26253. capacity: math.unit(20, "people"),
  26254. name: "Stomach",
  26255. image: {
  26256. source: "./media/characters/koros/stomach.svg"
  26257. }
  26258. },
  26259. wingspanBottom: {
  26260. height: math.unit(114, "feet"),
  26261. name: "Wingspan (Bottom)",
  26262. image: {
  26263. source: "./media/characters/koros/wingspan-bottom.svg"
  26264. }
  26265. },
  26266. wingspanTop: {
  26267. height: math.unit(104, "feet"),
  26268. name: "Wingspan (Top)",
  26269. image: {
  26270. source: "./media/characters/koros/wingspan-top.svg"
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(31 + 8 / 12, "feet"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(18 + 5 / 12, "feet"),
  26287. weight: math.unit(3750, "kg"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/vexx/front.svg",
  26291. extra: 426 / 396,
  26292. bottom: 31.5 / 458
  26293. }
  26294. },
  26295. maw: {
  26296. height: math.unit(6, "feet"),
  26297. name: "Maw",
  26298. image: {
  26299. source: "./media/characters/vexx/maw.svg"
  26300. }
  26301. },
  26302. },
  26303. [
  26304. {
  26305. name: "Normal",
  26306. height: math.unit(18 + 5 / 12, "feet"),
  26307. default: true
  26308. },
  26309. ]
  26310. ))
  26311. characterMakers.push(() => makeCharacter(
  26312. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26313. {
  26314. front: {
  26315. height: math.unit(17 + 6 / 12, "feet"),
  26316. weight: math.unit(150, "lb"),
  26317. name: "Front",
  26318. image: {
  26319. source: "./media/characters/baadra/front.svg",
  26320. extra: 1694/1553,
  26321. bottom: 179/1873
  26322. }
  26323. },
  26324. frontAlt: {
  26325. height: math.unit(17 + 6 / 12, "feet"),
  26326. weight: math.unit(150, "lb"),
  26327. name: "Front (Alt)",
  26328. image: {
  26329. source: "./media/characters/baadra/front-alt.svg",
  26330. extra: 3137 / 2890,
  26331. bottom: 168.4 / 3305
  26332. }
  26333. },
  26334. back: {
  26335. height: math.unit(17 + 6 / 12, "feet"),
  26336. weight: math.unit(150, "lb"),
  26337. name: "Back",
  26338. image: {
  26339. source: "./media/characters/baadra/back.svg",
  26340. extra: 3142 / 2890,
  26341. bottom: 220 / 3371
  26342. }
  26343. },
  26344. head: {
  26345. height: math.unit(5.45, "feet"),
  26346. name: "Head",
  26347. image: {
  26348. source: "./media/characters/baadra/head.svg"
  26349. }
  26350. },
  26351. headAngry: {
  26352. height: math.unit(4.95, "feet"),
  26353. name: "Head (Angry)",
  26354. image: {
  26355. source: "./media/characters/baadra/head-angry.svg"
  26356. }
  26357. },
  26358. headOpen: {
  26359. height: math.unit(6, "feet"),
  26360. name: "Head (Open)",
  26361. image: {
  26362. source: "./media/characters/baadra/head-open.svg"
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(17 + 6 / 12, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(7 + 3 / 12, "feet"),
  26379. weight: math.unit(180, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/juri/front.svg",
  26383. extra: 1401 / 1237,
  26384. bottom: 18.5 / 1418
  26385. }
  26386. },
  26387. side: {
  26388. height: math.unit(7 + 3 / 12, "feet"),
  26389. weight: math.unit(180, "lb"),
  26390. name: "Side",
  26391. image: {
  26392. source: "./media/characters/juri/side.svg",
  26393. extra: 1424 / 1242,
  26394. bottom: 18.5 / 1447
  26395. }
  26396. },
  26397. sitting: {
  26398. height: math.unit(6, "feet"),
  26399. weight: math.unit(180, "lb"),
  26400. name: "Sitting",
  26401. image: {
  26402. source: "./media/characters/juri/sitting.svg",
  26403. extra: 1270 / 1143,
  26404. bottom: 100 / 1343
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(7 + 3 / 12, "feet"),
  26409. weight: math.unit(180, "lb"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/juri/back.svg",
  26413. extra: 1377 / 1240,
  26414. bottom: 23.7 / 1405
  26415. }
  26416. },
  26417. maw: {
  26418. height: math.unit(2.8, "feet"),
  26419. name: "Maw",
  26420. image: {
  26421. source: "./media/characters/juri/maw.svg"
  26422. }
  26423. },
  26424. stomach: {
  26425. height: math.unit(0.89, "feet"),
  26426. capacity: math.unit(4, "liters"),
  26427. name: "Stomach",
  26428. image: {
  26429. source: "./media/characters/juri/stomach.svg"
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(7 + 3 / 12, "feet"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26443. {
  26444. fox: {
  26445. height: math.unit(5 + 6 / 12, "feet"),
  26446. weight: math.unit(140, "lb"),
  26447. name: "Fox",
  26448. image: {
  26449. source: "./media/characters/maxene-sita/fox.svg",
  26450. extra: 146 / 138,
  26451. bottom: 2.1 / 148.19
  26452. }
  26453. },
  26454. foxLaying: {
  26455. height: math.unit(1.70, "feet"),
  26456. weight: math.unit(140, "lb"),
  26457. name: "Fox (Laying)",
  26458. image: {
  26459. source: "./media/characters/maxene-sita/fox-laying.svg",
  26460. extra: 910 / 572,
  26461. bottom: 71 / 981
  26462. }
  26463. },
  26464. kitsune: {
  26465. height: math.unit(10, "feet"),
  26466. weight: math.unit(800, "lb"),
  26467. name: "Kitsune",
  26468. image: {
  26469. source: "./media/characters/maxene-sita/kitsune.svg",
  26470. extra: 185 / 176,
  26471. bottom: 4.7 / 189.9
  26472. }
  26473. },
  26474. hellhound: {
  26475. height: math.unit(10, "feet"),
  26476. weight: math.unit(700, "lb"),
  26477. name: "Hellhound",
  26478. image: {
  26479. source: "./media/characters/maxene-sita/hellhound.svg",
  26480. extra: 1600 / 1545,
  26481. bottom: 81 / 1681
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(5 + 6 / 12, "feet"),
  26489. default: true
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26495. {
  26496. front: {
  26497. height: math.unit(3 + 4 / 12, "feet"),
  26498. weight: math.unit(70, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/maia/front.svg",
  26502. extra: 227 / 219.5,
  26503. bottom: 40 / 267
  26504. }
  26505. },
  26506. back: {
  26507. height: math.unit(3 + 4 / 12, "feet"),
  26508. weight: math.unit(70, "lb"),
  26509. name: "Back",
  26510. image: {
  26511. source: "./media/characters/maia/back.svg",
  26512. extra: 237 / 225
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Normal",
  26519. height: math.unit(3 + 4 / 12, "feet"),
  26520. default: true
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(5 + 10 / 12, "feet"),
  26529. weight: math.unit(197, "lb"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/jabaro/front.svg",
  26533. extra: 225 / 216,
  26534. bottom: 5.06 / 230
  26535. }
  26536. },
  26537. back: {
  26538. height: math.unit(5 + 10 / 12, "feet"),
  26539. weight: math.unit(197, "lb"),
  26540. name: "Back",
  26541. image: {
  26542. source: "./media/characters/jabaro/back.svg",
  26543. extra: 225 / 219,
  26544. bottom: 1.9 / 227
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Normal",
  26551. height: math.unit(5 + 10 / 12, "feet"),
  26552. default: true
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26558. {
  26559. front: {
  26560. height: math.unit(5 + 8 / 12, "feet"),
  26561. weight: math.unit(139, "lb"),
  26562. name: "Front",
  26563. image: {
  26564. source: "./media/characters/risa/front.svg",
  26565. extra: 270 / 260,
  26566. bottom: 11.2 / 282
  26567. }
  26568. },
  26569. back: {
  26570. height: math.unit(5 + 8 / 12, "feet"),
  26571. weight: math.unit(139, "lb"),
  26572. name: "Back",
  26573. image: {
  26574. source: "./media/characters/risa/back.svg",
  26575. extra: 264 / 255,
  26576. bottom: 4 / 268
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(5 + 8 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(2 + 11 / 12, "feet"),
  26593. weight: math.unit(30, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/weatley/front.svg",
  26597. bottom: 10.7 / 414,
  26598. extra: 403.5 / 362
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(2 + 11 / 12, "feet"),
  26603. weight: math.unit(30, "lb"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/weatley/back.svg",
  26607. bottom: 10.7 / 414,
  26608. extra: 403.5 / 362
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Normal",
  26615. height: math.unit(2 + 11 / 12, "feet"),
  26616. default: true
  26617. },
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26622. {
  26623. front: {
  26624. height: math.unit(5 + 2 / 12, "feet"),
  26625. weight: math.unit(50, "kg"),
  26626. name: "Front",
  26627. image: {
  26628. source: "./media/characters/mercury-crescent/front.svg",
  26629. extra: 1088 / 1033,
  26630. bottom: 18.9 / 1109
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(5 + 2 / 12, "feet"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(2, "feet"),
  26647. weight: math.unit(15, "kg"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/diamond-jones/front.svg",
  26651. extra: 727/723,
  26652. bottom: 46/773
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(2, "feet"),
  26660. default: true
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26666. {
  26667. front: {
  26668. height: math.unit(3, "feet"),
  26669. weight: math.unit(30, "kg"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/sweet-bit/front.svg",
  26673. extra: 675 / 567,
  26674. bottom: 27.7 / 703
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(3, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26688. {
  26689. side: {
  26690. height: math.unit(9.178, "feet"),
  26691. weight: math.unit(500, "lb"),
  26692. name: "Side",
  26693. image: {
  26694. source: "./media/characters/umbrazen/side.svg",
  26695. extra: 1730 / 1473,
  26696. bottom: 34.6 / 1765
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(9.178, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(10, "feet"),
  26713. weight: math.unit(750, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/arlist/front.svg",
  26717. extra: 961 / 778,
  26718. bottom: 6.2 / 986
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(10, "feet"),
  26726. default: true
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(5 + 1 / 12, "feet"),
  26735. weight: math.unit(110, "lb"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/aradel/front.svg",
  26739. extra: 324 / 303,
  26740. bottom: 3.6 / 329.4
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(5 + 1 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26754. {
  26755. dressed: {
  26756. height: math.unit(3 + 8 / 12, "feet"),
  26757. weight: math.unit(50, "lb"),
  26758. name: "Dressed",
  26759. image: {
  26760. source: "./media/characters/serryn/dressed.svg",
  26761. extra: 1792 / 1656,
  26762. bottom: 43.5 / 1840
  26763. }
  26764. },
  26765. nude: {
  26766. height: math.unit(3 + 8 / 12, "feet"),
  26767. weight: math.unit(50, "lb"),
  26768. name: "Nude",
  26769. image: {
  26770. source: "./media/characters/serryn/nude.svg",
  26771. extra: 1792 / 1656,
  26772. bottom: 43.5 / 1840
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(3 + 8 / 12, "feet"),
  26780. default: true
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(7 + 10 / 12, "feet"),
  26789. weight: math.unit(255, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/xavier-thyme/front.svg",
  26793. extra: 3733 / 3642,
  26794. bottom: 131 / 3869
  26795. }
  26796. },
  26797. frontRaven: {
  26798. height: math.unit(7 + 10 / 12, "feet"),
  26799. weight: math.unit(255, "lb"),
  26800. name: "Front (Raven)",
  26801. image: {
  26802. source: "./media/characters/xavier-thyme/front-raven.svg",
  26803. extra: 4385 / 3642,
  26804. bottom: 131 / 4517
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(7 + 10 / 12, "feet"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(1.6, "m"),
  26821. weight: math.unit(50, "kg"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/kiki/front.svg",
  26825. extra: 4682 / 3610,
  26826. bottom: 115 / 4777
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Normal",
  26833. height: math.unit(1.6, "meters"),
  26834. default: true
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26840. {
  26841. front: {
  26842. height: math.unit(50, "m"),
  26843. weight: math.unit(500, "tonnes"),
  26844. name: "Front",
  26845. image: {
  26846. source: "./media/characters/ryoko/front.svg",
  26847. extra: 4632 / 3926,
  26848. bottom: 193 / 4823
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(50, "meters"),
  26856. default: true
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26862. {
  26863. front: {
  26864. height: math.unit(30, "m"),
  26865. weight: math.unit(22, "tonnes"),
  26866. name: "Front",
  26867. image: {
  26868. source: "./media/characters/elio/front.svg",
  26869. extra: 4582 / 3720,
  26870. bottom: 236 / 4828
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(30, "meters"),
  26878. default: true
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6 + 3 / 12, "feet"),
  26887. weight: math.unit(120, "lb"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/azura/front.svg",
  26891. extra: 1149 / 1135,
  26892. bottom: 45 / 1194
  26893. }
  26894. },
  26895. frontClothed: {
  26896. height: math.unit(6 + 3 / 12, "feet"),
  26897. weight: math.unit(120, "lb"),
  26898. name: "Front (Clothed)",
  26899. image: {
  26900. source: "./media/characters/azura/front-clothed.svg",
  26901. extra: 1149 / 1135,
  26902. bottom: 45 / 1194
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(6 + 3 / 12, "feet"),
  26910. default: true
  26911. },
  26912. {
  26913. name: "Macro",
  26914. height: math.unit(20 + 6 / 12, "feet")
  26915. },
  26916. {
  26917. name: "Megamacro",
  26918. height: math.unit(12, "miles")
  26919. },
  26920. {
  26921. name: "Gigamacro",
  26922. height: math.unit(10000, "miles")
  26923. },
  26924. {
  26925. name: "Teramacro",
  26926. height: math.unit(900000, "miles")
  26927. },
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26932. {
  26933. front: {
  26934. height: math.unit(12, "feet"),
  26935. weight: math.unit(1, "ton"),
  26936. capacity: math.unit(660000, "gallons"),
  26937. name: "Front",
  26938. image: {
  26939. source: "./media/characters/zeus/front.svg",
  26940. extra: 5005 / 4717,
  26941. bottom: 363 / 5388
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(12, "feet")
  26949. },
  26950. {
  26951. name: "Preferred Size",
  26952. height: math.unit(0.5, "miles"),
  26953. default: true
  26954. },
  26955. {
  26956. name: "Giga Horse",
  26957. height: math.unit(300, "miles")
  26958. },
  26959. {
  26960. name: "Riding Planets",
  26961. height: math.unit(30, "megameters")
  26962. },
  26963. {
  26964. name: "Cosmic Giant",
  26965. height: math.unit(3, "zettameters")
  26966. },
  26967. {
  26968. name: "Breeding God",
  26969. height: math.unit(9.92e22, "yottameters")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26975. {
  26976. side: {
  26977. height: math.unit(9, "feet"),
  26978. weight: math.unit(1500, "kg"),
  26979. name: "Side",
  26980. image: {
  26981. source: "./media/characters/fang/side.svg",
  26982. extra: 924 / 866,
  26983. bottom: 47.5 / 972.3
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(9, "feet"),
  26991. default: true
  26992. },
  26993. {
  26994. name: "Macro",
  26995. height: math.unit(75 + 6 / 12, "feet")
  26996. },
  26997. {
  26998. name: "Teramacro",
  26999. height: math.unit(50000, "miles")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(10, "feet"),
  27008. weight: math.unit(2, "tons"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/rekhit/front.svg",
  27012. extra: 2796 / 2590,
  27013. bottom: 225 / 3022
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(10, "feet"),
  27021. default: true
  27022. },
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(500, "feet")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(7 + 6.451 / 12, "feet"),
  27034. weight: math.unit(310, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/dahlia-verrick/front.svg",
  27038. extra: 1488 / 1365,
  27039. bottom: 6.2 / 1495
  27040. }
  27041. },
  27042. back: {
  27043. height: math.unit(7 + 6.451 / 12, "feet"),
  27044. weight: math.unit(310, "lb"),
  27045. name: "Back",
  27046. image: {
  27047. source: "./media/characters/dahlia-verrick/back.svg",
  27048. extra: 1472 / 1351,
  27049. bottom: 5.28 / 1477
  27050. }
  27051. },
  27052. frontBusiness: {
  27053. height: math.unit(7 + 6.451 / 12, "feet"),
  27054. weight: math.unit(200, "lb"),
  27055. name: "Front (Business)",
  27056. image: {
  27057. source: "./media/characters/dahlia-verrick/front-business.svg",
  27058. extra: 1478 / 1381,
  27059. bottom: 5.5 / 1484
  27060. }
  27061. },
  27062. frontCasual: {
  27063. height: math.unit(7 + 6.451 / 12, "feet"),
  27064. weight: math.unit(200, "lb"),
  27065. name: "Front (Casual)",
  27066. image: {
  27067. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27068. extra: 1478 / 1381,
  27069. bottom: 5.5 / 1484
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Travel-Sized",
  27076. height: math.unit(7.45, "inches")
  27077. },
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(7 + 6.451 / 12, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Hitting the Town",
  27085. height: math.unit(37 + 8 / 12, "feet")
  27086. },
  27087. {
  27088. name: "Stomp in the Suburbs",
  27089. height: math.unit(964 + 9.728 / 12, "feet")
  27090. },
  27091. {
  27092. name: "Sit on the City",
  27093. height: math.unit(61747 + 10.592 / 12, "feet")
  27094. },
  27095. {
  27096. name: "Glomp the Globe",
  27097. height: math.unit(252919327 + 4.832 / 12, "feet")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6 + 4 / 12, "feet"),
  27106. weight: math.unit(320, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/balina-mahigan/front.svg",
  27110. extra: 447 / 428,
  27111. bottom: 18 / 466
  27112. }
  27113. },
  27114. back: {
  27115. height: math.unit(6 + 4 / 12, "feet"),
  27116. weight: math.unit(320, "lb"),
  27117. name: "Back",
  27118. image: {
  27119. source: "./media/characters/balina-mahigan/back.svg",
  27120. extra: 445 / 428,
  27121. bottom: 4.07 / 448
  27122. }
  27123. },
  27124. arm: {
  27125. height: math.unit(1.88, "feet"),
  27126. name: "Arm",
  27127. image: {
  27128. source: "./media/characters/balina-mahigan/arm.svg"
  27129. }
  27130. },
  27131. backPort: {
  27132. height: math.unit(0.685, "feet"),
  27133. name: "Back Port",
  27134. image: {
  27135. source: "./media/characters/balina-mahigan/back-port.svg"
  27136. }
  27137. },
  27138. hoofpaw: {
  27139. height: math.unit(1.41, "feet"),
  27140. name: "Hoofpaw",
  27141. image: {
  27142. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27143. }
  27144. },
  27145. leftHandBack: {
  27146. height: math.unit(0.938, "feet"),
  27147. name: "Left Hand (Back)",
  27148. image: {
  27149. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27150. }
  27151. },
  27152. leftHandFront: {
  27153. height: math.unit(0.938, "feet"),
  27154. name: "Left Hand (Front)",
  27155. image: {
  27156. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27157. }
  27158. },
  27159. rightHandBack: {
  27160. height: math.unit(0.95, "feet"),
  27161. name: "Right Hand (Back)",
  27162. image: {
  27163. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27164. }
  27165. },
  27166. rightHandFront: {
  27167. height: math.unit(0.95, "feet"),
  27168. name: "Right Hand (Front)",
  27169. image: {
  27170. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(6 + 4 / 12, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(6, "feet"),
  27187. weight: math.unit(320, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/balina-mejeri/front.svg",
  27191. extra: 517 / 488,
  27192. bottom: 44.2 / 561
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(6 + 4 / 12, "feet")
  27200. },
  27201. {
  27202. name: "Business",
  27203. height: math.unit(155, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27210. {
  27211. kneeling: {
  27212. height: math.unit(6 + 4 / 12, "feet"),
  27213. weight: math.unit(300 * 20, "lb"),
  27214. name: "Kneeling",
  27215. image: {
  27216. source: "./media/characters/balbarian/kneeling.svg",
  27217. extra: 922 / 862,
  27218. bottom: 42.4 / 965
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(6 + 4 / 12, "feet")
  27226. },
  27227. {
  27228. name: "Treasured",
  27229. height: math.unit(18 + 9 / 12, "feet"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "Macro",
  27234. height: math.unit(900, "feet")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(6 + 4 / 12, "feet"),
  27243. weight: math.unit(325, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/balina-amarini/front.svg",
  27247. extra: 415 / 403,
  27248. bottom: 19 / 433.4
  27249. }
  27250. },
  27251. back: {
  27252. height: math.unit(6 + 4 / 12, "feet"),
  27253. weight: math.unit(325, "lb"),
  27254. name: "Back",
  27255. image: {
  27256. source: "./media/characters/balina-amarini/back.svg",
  27257. extra: 415 / 403,
  27258. bottom: 13.5 / 432
  27259. }
  27260. },
  27261. overdrive: {
  27262. height: math.unit(6 + 4 / 12, "feet"),
  27263. weight: math.unit(400, "lb"),
  27264. name: "Overdrive",
  27265. image: {
  27266. source: "./media/characters/balina-amarini/overdrive.svg",
  27267. extra: 269 / 259,
  27268. bottom: 12 / 282
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Boom",
  27275. height: math.unit(9 + 10 / 12, "feet"),
  27276. default: true
  27277. },
  27278. {
  27279. name: "Macro",
  27280. height: math.unit(280, "feet")
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27286. {
  27287. goddess: {
  27288. height: math.unit(600, "feet"),
  27289. weight: math.unit(2000000, "tons"),
  27290. name: "Goddess",
  27291. image: {
  27292. source: "./media/characters/lady-kubwa/goddess.svg",
  27293. extra: 1240.5 / 1223,
  27294. bottom: 22 / 1263
  27295. }
  27296. },
  27297. goddesser: {
  27298. height: math.unit(900, "feet"),
  27299. weight: math.unit(20000000, "lb"),
  27300. name: "Goddess-er",
  27301. image: {
  27302. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27303. extra: 899 / 888,
  27304. bottom: 12.6 / 912
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Macro",
  27311. height: math.unit(600, "feet"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Megamacro",
  27316. height: math.unit(250, "miles")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(7 + 7 / 12, "feet"),
  27325. weight: math.unit(250, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/tala-grovehorn/front.svg",
  27329. extra: 2636 / 2525,
  27330. bottom: 147 / 2781
  27331. }
  27332. },
  27333. back: {
  27334. height: math.unit(7 + 7 / 12, "feet"),
  27335. weight: math.unit(250, "lb"),
  27336. name: "Back",
  27337. image: {
  27338. source: "./media/characters/tala-grovehorn/back.svg",
  27339. extra: 2635 / 2539,
  27340. bottom: 100 / 2732.8
  27341. }
  27342. },
  27343. mouth: {
  27344. height: math.unit(1.15, "feet"),
  27345. name: "Mouth",
  27346. image: {
  27347. source: "./media/characters/tala-grovehorn/mouth.svg"
  27348. }
  27349. },
  27350. dick: {
  27351. height: math.unit(2.36, "feet"),
  27352. name: "Dick",
  27353. image: {
  27354. source: "./media/characters/tala-grovehorn/dick.svg"
  27355. }
  27356. },
  27357. slit: {
  27358. height: math.unit(0.61, "feet"),
  27359. name: "Slit",
  27360. image: {
  27361. source: "./media/characters/tala-grovehorn/slit.svg"
  27362. }
  27363. },
  27364. },
  27365. [
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(7 + 7 / 12, "feet"),
  27373. weight: math.unit(225, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/epona/front.svg",
  27377. extra: 2445 / 2290,
  27378. bottom: 251 / 2696
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(7 + 7 / 12, "feet"),
  27383. weight: math.unit(225, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/epona/back.svg",
  27387. extra: 2546 / 2408,
  27388. bottom: 44 / 2589
  27389. }
  27390. },
  27391. genitals: {
  27392. height: math.unit(1.5, "feet"),
  27393. name: "Genitals",
  27394. image: {
  27395. source: "./media/characters/epona/genitals.svg"
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Normal",
  27402. height: math.unit(7 + 7 / 12, "feet"),
  27403. default: true
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(7, "feet"),
  27412. weight: math.unit(518, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/avia-bloodbourn/front.svg",
  27416. extra: 1466 / 1350,
  27417. bottom: 65 / 1527
  27418. }
  27419. },
  27420. },
  27421. [
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(9.35, "feet"),
  27429. weight: math.unit(600, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/amera/front.svg",
  27433. extra: 891 / 818,
  27434. bottom: 30 / 922.7
  27435. }
  27436. },
  27437. back: {
  27438. height: math.unit(9.35, "feet"),
  27439. weight: math.unit(600, "lb"),
  27440. name: "Back",
  27441. image: {
  27442. source: "./media/characters/amera/back.svg",
  27443. extra: 876 / 824,
  27444. bottom: 6.8 / 884
  27445. }
  27446. },
  27447. dick: {
  27448. height: math.unit(2.14, "feet"),
  27449. name: "Dick",
  27450. image: {
  27451. source: "./media/characters/amera/dick.svg"
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Normal",
  27458. height: math.unit(9.35, "feet"),
  27459. default: true
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27465. {
  27466. kneeling: {
  27467. height: math.unit(3 + 4 / 12, "feet"),
  27468. weight: math.unit(90, "lb"),
  27469. name: "Kneeling",
  27470. image: {
  27471. source: "./media/characters/rosewen/kneeling.svg",
  27472. extra: 1835 / 1571,
  27473. bottom: 27.7 / 1862
  27474. }
  27475. },
  27476. },
  27477. [
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(3 + 4 / 12, "feet"),
  27481. default: true
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27487. {
  27488. front: {
  27489. height: math.unit(5 + 10 / 12, "feet"),
  27490. weight: math.unit(200, "lb"),
  27491. name: "Front",
  27492. image: {
  27493. source: "./media/characters/sabah/front.svg",
  27494. extra: 849 / 763,
  27495. bottom: 33.9 / 881
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Normal",
  27502. height: math.unit(5 + 10 / 12, "feet"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27509. {
  27510. front: {
  27511. height: math.unit(3 + 5 / 12, "feet"),
  27512. weight: math.unit(40, "kg"),
  27513. name: "Front",
  27514. image: {
  27515. source: "./media/characters/purple-flame/front.svg",
  27516. extra: 1577 / 1412,
  27517. bottom: 97 / 1694
  27518. }
  27519. },
  27520. frontDressed: {
  27521. height: math.unit(3 + 5 / 12, "feet"),
  27522. weight: math.unit(40, "kg"),
  27523. name: "Front (Dressed)",
  27524. image: {
  27525. source: "./media/characters/purple-flame/front-dressed.svg",
  27526. extra: 1577 / 1412,
  27527. bottom: 97 / 1694
  27528. }
  27529. },
  27530. headphones: {
  27531. height: math.unit(0.85, "feet"),
  27532. name: "Headphones",
  27533. image: {
  27534. source: "./media/characters/purple-flame/headphones.svg"
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Really Small",
  27541. height: math.unit(5, "cm")
  27542. },
  27543. {
  27544. name: "Micro",
  27545. height: math.unit(1 + 5 / 12, "feet")
  27546. },
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(3 + 5 / 12, "feet"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Minimacro",
  27554. height: math.unit(125, "feet")
  27555. },
  27556. {
  27557. name: "Macro",
  27558. height: math.unit(0.5, "miles")
  27559. },
  27560. {
  27561. name: "Megamacro",
  27562. height: math.unit(50, "miles")
  27563. },
  27564. {
  27565. name: "Gigantic",
  27566. height: math.unit(750, "miles")
  27567. },
  27568. {
  27569. name: "Planetary",
  27570. height: math.unit(15000, "miles")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(14, "feet"),
  27579. weight: math.unit(959, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/arsenal/front.svg",
  27583. extra: 2357 / 2157,
  27584. bottom: 93 / 2458
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(14, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(6, "feet"),
  27601. weight: math.unit(150, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/adira/front.svg",
  27605. extra: 1078 / 1029,
  27606. bottom: 87 / 1166
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Micro",
  27613. height: math.unit(4, "inches"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(50, "feet")
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27624. {
  27625. front: {
  27626. height: math.unit(16, "feet"),
  27627. weight: math.unit(1000, "lb"),
  27628. name: "Front",
  27629. image: {
  27630. source: "./media/characters/grim/front.svg",
  27631. extra: 622 / 614,
  27632. bottom: 18.1 / 642
  27633. }
  27634. },
  27635. back: {
  27636. height: math.unit(16, "feet"),
  27637. weight: math.unit(1000, "lb"),
  27638. name: "Back",
  27639. image: {
  27640. source: "./media/characters/grim/back.svg",
  27641. extra: 610.6 / 602,
  27642. bottom: 40.8 / 652
  27643. }
  27644. },
  27645. hunched: {
  27646. height: math.unit(9.75, "feet"),
  27647. weight: math.unit(1000, "lb"),
  27648. name: "Hunched",
  27649. image: {
  27650. source: "./media/characters/grim/hunched.svg",
  27651. extra: 304 / 297,
  27652. bottom: 35.4 / 394
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(16, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(2.3, "meters"),
  27669. weight: math.unit(300, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/sinja/front-sfw.svg",
  27673. extra: 1393 / 1294,
  27674. bottom: 70 / 1463
  27675. }
  27676. },
  27677. frontNsfw: {
  27678. height: math.unit(2.3, "meters"),
  27679. weight: math.unit(300, "lb"),
  27680. name: "Front (NSFW)",
  27681. image: {
  27682. source: "./media/characters/sinja/front-nsfw.svg",
  27683. extra: 1393 / 1294,
  27684. bottom: 70 / 1463
  27685. }
  27686. },
  27687. back: {
  27688. height: math.unit(2.3, "meters"),
  27689. weight: math.unit(300, "lb"),
  27690. name: "Back",
  27691. image: {
  27692. source: "./media/characters/sinja/back.svg",
  27693. extra: 1393 / 1294,
  27694. bottom: 70 / 1463
  27695. }
  27696. },
  27697. head: {
  27698. height: math.unit(1.771, "feet"),
  27699. name: "Head",
  27700. image: {
  27701. source: "./media/characters/sinja/head.svg"
  27702. }
  27703. },
  27704. slit: {
  27705. height: math.unit(0.8, "feet"),
  27706. name: "Slit",
  27707. image: {
  27708. source: "./media/characters/sinja/slit.svg"
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(2.3, "meters")
  27716. },
  27717. {
  27718. name: "Macro",
  27719. height: math.unit(91, "meters"),
  27720. default: true
  27721. },
  27722. {
  27723. name: "Megamacro",
  27724. height: math.unit(91440, "meters")
  27725. },
  27726. {
  27727. name: "Gigamacro",
  27728. height: math.unit(60960000, "meters")
  27729. },
  27730. {
  27731. name: "Teramacro",
  27732. height: math.unit(9144000000, "meters")
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(1.7, "meters"),
  27741. weight: math.unit(130, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/kyu/front.svg",
  27745. extra: 415 / 395,
  27746. bottom: 5 / 420
  27747. }
  27748. },
  27749. head: {
  27750. height: math.unit(1.75, "feet"),
  27751. name: "Head",
  27752. image: {
  27753. source: "./media/characters/kyu/head.svg"
  27754. }
  27755. },
  27756. foot: {
  27757. height: math.unit(0.81, "feet"),
  27758. name: "Foot",
  27759. image: {
  27760. source: "./media/characters/kyu/foot.svg"
  27761. }
  27762. },
  27763. },
  27764. [
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(1.7, "meters")
  27768. },
  27769. {
  27770. name: "Macro",
  27771. height: math.unit(131, "feet"),
  27772. default: true
  27773. },
  27774. {
  27775. name: "Megamacro",
  27776. height: math.unit(91440, "meters")
  27777. },
  27778. {
  27779. name: "Gigamacro",
  27780. height: math.unit(60960000, "meters")
  27781. },
  27782. {
  27783. name: "Teramacro",
  27784. height: math.unit(9144000000, "meters")
  27785. },
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(7 + 1 / 12, "feet"),
  27793. weight: math.unit(250, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/joey/front.svg",
  27797. extra: 1791 / 1537,
  27798. bottom: 28 / 1816
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Micro",
  27805. height: math.unit(3, "inches")
  27806. },
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(7 + 1 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(165, "cm"),
  27819. weight: math.unit(140, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/sam-evans/front.svg",
  27823. extra: 3417 / 3230,
  27824. bottom: 41.3 / 3417
  27825. }
  27826. },
  27827. frontSixTails: {
  27828. height: math.unit(165, "cm"),
  27829. weight: math.unit(140, "lb"),
  27830. name: "Front-six-tails",
  27831. image: {
  27832. source: "./media/characters/sam-evans/front-six-tails.svg",
  27833. extra: 3417 / 3230,
  27834. bottom: 41.3 / 3417
  27835. }
  27836. },
  27837. back: {
  27838. height: math.unit(165, "cm"),
  27839. weight: math.unit(140, "lb"),
  27840. name: "Back",
  27841. image: {
  27842. source: "./media/characters/sam-evans/back.svg",
  27843. extra: 3227 / 3032,
  27844. bottom: 6.8 / 3234
  27845. }
  27846. },
  27847. face: {
  27848. height: math.unit(0.68, "feet"),
  27849. name: "Face",
  27850. image: {
  27851. source: "./media/characters/sam-evans/face.svg"
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(165, "cm"),
  27859. default: true
  27860. },
  27861. {
  27862. name: "Macro",
  27863. height: math.unit(100, "meters")
  27864. },
  27865. {
  27866. name: "Macro+",
  27867. height: math.unit(800, "meters")
  27868. },
  27869. {
  27870. name: "Macro++",
  27871. height: math.unit(3, "km")
  27872. },
  27873. {
  27874. name: "Macro+++",
  27875. height: math.unit(30, "km")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(10, "feet"),
  27884. weight: math.unit(750, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/juliet-a/front.svg",
  27888. extra: 1766 / 1720,
  27889. bottom: 43 / 1809
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(10, "feet"),
  27894. weight: math.unit(750, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/juliet-a/back.svg",
  27898. extra: 1781 / 1734,
  27899. bottom: 35 / 1810,
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(10, "feet"),
  27907. default: true
  27908. },
  27909. {
  27910. name: "Dragon Form",
  27911. height: math.unit(250, "feet")
  27912. },
  27913. {
  27914. name: "Macro",
  27915. height: math.unit(1000, "feet")
  27916. },
  27917. {
  27918. name: "Megamacro",
  27919. height: math.unit(10000, "feet")
  27920. }
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27925. {
  27926. regular: {
  27927. height: math.unit(7 + 3 / 12, "feet"),
  27928. weight: math.unit(260, "lb"),
  27929. name: "Regular",
  27930. image: {
  27931. source: "./media/characters/wild/regular.svg",
  27932. extra: 97.45 / 92,
  27933. bottom: 6.8 / 104.3
  27934. }
  27935. },
  27936. biggums: {
  27937. height: math.unit(8 + 6 / 12, "feet"),
  27938. weight: math.unit(425, "lb"),
  27939. name: "Biggums",
  27940. image: {
  27941. source: "./media/characters/wild/biggums.svg",
  27942. extra: 97.45 / 92,
  27943. bottom: 7.5 / 132.34
  27944. }
  27945. },
  27946. mawRegular: {
  27947. height: math.unit(1.24, "feet"),
  27948. name: "Maw (Regular)",
  27949. image: {
  27950. source: "./media/characters/wild/maw.svg"
  27951. }
  27952. },
  27953. mawBiggums: {
  27954. height: math.unit(1.47, "feet"),
  27955. name: "Maw (Biggums)",
  27956. image: {
  27957. source: "./media/characters/wild/maw.svg"
  27958. }
  27959. },
  27960. },
  27961. [
  27962. {
  27963. name: "Normal",
  27964. height: math.unit(7 + 3 / 12, "feet"),
  27965. default: true
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27971. {
  27972. front: {
  27973. height: math.unit(2.5, "meters"),
  27974. weight: math.unit(200, "kg"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/vidar/front.svg",
  27978. extra: 2994 / 2795,
  27979. bottom: 56 / 3061
  27980. }
  27981. },
  27982. back: {
  27983. height: math.unit(2.5, "meters"),
  27984. weight: math.unit(200, "kg"),
  27985. name: "Back",
  27986. image: {
  27987. source: "./media/characters/vidar/back.svg",
  27988. extra: 3131 / 2928,
  27989. bottom: 13.5 / 3141.5
  27990. }
  27991. },
  27992. feral: {
  27993. height: math.unit(2.5, "meters"),
  27994. weight: math.unit(2000, "kg"),
  27995. name: "Feral",
  27996. image: {
  27997. source: "./media/characters/vidar/feral.svg",
  27998. extra: 2790 / 1765,
  27999. bottom: 6 / 2796
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(2.5, "meters"),
  28007. default: true
  28008. },
  28009. {
  28010. name: "Macro",
  28011. height: math.unit(100, "meters")
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(5 + 9 / 12, "feet"),
  28020. weight: math.unit(120, "lb"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/ash/front.svg",
  28024. extra: 2189 / 1961,
  28025. bottom: 5.2 / 2194
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(5 + 9 / 12, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(9, "feet"),
  28042. weight: math.unit(10000, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/gygabite/front.svg",
  28046. bottom: 31.7 / 537.8,
  28047. extra: 505 / 370
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(9, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(12, "feet"),
  28064. weight: math.unit(35000, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/p0tat0/front.svg",
  28068. extra: 1065 / 921,
  28069. bottom: 55.7 / 1121.25
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(12, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28083. {
  28084. side: {
  28085. height: math.unit(6.5, "feet"),
  28086. weight: math.unit(800, "lb"),
  28087. name: "Side",
  28088. image: {
  28089. source: "./media/characters/dusk/side.svg",
  28090. extra: 615 / 373,
  28091. bottom: 53 / 664
  28092. }
  28093. },
  28094. sitting: {
  28095. height: math.unit(7, "feet"),
  28096. weight: math.unit(800, "lb"),
  28097. name: "Sitting",
  28098. image: {
  28099. source: "./media/characters/dusk/sitting.svg",
  28100. extra: 753 / 425,
  28101. bottom: 33 / 774
  28102. }
  28103. },
  28104. head: {
  28105. height: math.unit(6.1, "feet"),
  28106. name: "Head",
  28107. image: {
  28108. source: "./media/characters/dusk/head.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(7, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(15, "feet"),
  28125. weight: math.unit(7000, "lb"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/jay-direwolf/front.svg",
  28129. extra: 1810 / 1732,
  28130. bottom: 66 / 1892
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(15, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(4 + 9 / 12, "feet"),
  28147. weight: math.unit(130, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/anchovie/front.svg",
  28151. extra: 382 / 350,
  28152. bottom: 25 / 409
  28153. }
  28154. },
  28155. back: {
  28156. height: math.unit(4 + 9 / 12, "feet"),
  28157. weight: math.unit(130, "lb"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/anchovie/back.svg",
  28161. extra: 385 / 352,
  28162. bottom: 16.6 / 402
  28163. }
  28164. },
  28165. frontDressed: {
  28166. height: math.unit(4 + 9 / 12, "feet"),
  28167. weight: math.unit(130, "lb"),
  28168. name: "Front (Dressed)",
  28169. image: {
  28170. source: "./media/characters/anchovie/front-dressed.svg",
  28171. extra: 382 / 350,
  28172. bottom: 25 / 409
  28173. }
  28174. },
  28175. backDressed: {
  28176. height: math.unit(4 + 9 / 12, "feet"),
  28177. weight: math.unit(130, "lb"),
  28178. name: "Back (Dressed)",
  28179. image: {
  28180. source: "./media/characters/anchovie/back-dressed.svg",
  28181. extra: 385 / 352,
  28182. bottom: 16.6 / 402
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Micro",
  28189. height: math.unit(6.4, "inches")
  28190. },
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(4 + 9 / 12, "feet"),
  28194. default: true
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(2, "meters"),
  28203. weight: math.unit(180, "lb"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/acidrenamon/front.svg",
  28207. extra: 987 / 890,
  28208. bottom: 22.8 / 1009
  28209. }
  28210. },
  28211. back: {
  28212. height: math.unit(2, "meters"),
  28213. weight: math.unit(180, "lb"),
  28214. name: "Back",
  28215. image: {
  28216. source: "./media/characters/acidrenamon/back.svg",
  28217. extra: 983 / 891,
  28218. bottom: 8.4 / 992
  28219. }
  28220. },
  28221. head: {
  28222. height: math.unit(1.92, "feet"),
  28223. name: "Head",
  28224. image: {
  28225. source: "./media/characters/acidrenamon/head.svg"
  28226. }
  28227. },
  28228. rump: {
  28229. height: math.unit(1.72, "feet"),
  28230. name: "Rump",
  28231. image: {
  28232. source: "./media/characters/acidrenamon/rump.svg"
  28233. }
  28234. },
  28235. tail: {
  28236. height: math.unit(4.2, "feet"),
  28237. name: "Tail",
  28238. image: {
  28239. source: "./media/characters/acidrenamon/tail.svg"
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(2, "meters"),
  28247. default: true
  28248. },
  28249. {
  28250. name: "Minimacro",
  28251. height: math.unit(7, "meters")
  28252. },
  28253. {
  28254. name: "Macro",
  28255. height: math.unit(200, "meters")
  28256. },
  28257. {
  28258. name: "Gigamacro",
  28259. height: math.unit(0.2, "earths")
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(152, "feet"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/kenzie-lee/front.svg",
  28271. extra: 1869/1774,
  28272. bottom: 128/1997
  28273. }
  28274. },
  28275. side: {
  28276. height: math.unit(86, "feet"),
  28277. name: "Side",
  28278. image: {
  28279. source: "./media/characters/kenzie-lee/side.svg",
  28280. extra: 930/815,
  28281. bottom: 177/1107
  28282. }
  28283. },
  28284. paw: {
  28285. height: math.unit(15, "feet"),
  28286. name: "Paw",
  28287. image: {
  28288. source: "./media/characters/kenzie-lee/paw.svg"
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Micro",
  28295. height: math.unit(1.5, "inches")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(152, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Megamacro",
  28304. height: math.unit(7, "miles")
  28305. },
  28306. {
  28307. name: "Gigamacro",
  28308. height: math.unit(8000, "miles")
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28314. {
  28315. side: {
  28316. height: math.unit(6, "feet"),
  28317. weight: math.unit(150, "lb"),
  28318. name: "Side",
  28319. image: {
  28320. source: "./media/characters/withers/side.svg",
  28321. extra: 1830 / 1728,
  28322. bottom: 96 / 1927
  28323. }
  28324. },
  28325. front: {
  28326. height: math.unit(6, "feet"),
  28327. weight: math.unit(150, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/withers/front.svg",
  28331. extra: 1514 / 1438,
  28332. bottom: 118 / 1632
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(168, "feet"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Megamacro",
  28344. height: math.unit(15, "miles")
  28345. }
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(6 + 7 / 12, "feet"),
  28353. weight: math.unit(250, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/nemoskii/front.svg",
  28357. extra: 2270 / 1734,
  28358. bottom: 86 / 2354
  28359. }
  28360. },
  28361. back: {
  28362. height: math.unit(6 + 7 / 12, "feet"),
  28363. weight: math.unit(250, "lb"),
  28364. name: "Back",
  28365. image: {
  28366. source: "./media/characters/nemoskii/back.svg",
  28367. extra: 1845 / 1788,
  28368. bottom: 10.5 / 1852
  28369. }
  28370. },
  28371. head: {
  28372. height: math.unit(1.31, "feet"),
  28373. name: "Head",
  28374. image: {
  28375. source: "./media/characters/nemoskii/head.svg"
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Micro",
  28382. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28383. },
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(6 + 7 / 12, "feet"),
  28387. default: true
  28388. },
  28389. {
  28390. name: "Macro",
  28391. height: math.unit((6 + 7 / 12) * 150, "feet")
  28392. },
  28393. {
  28394. name: "Macro+",
  28395. height: math.unit((6 + 7 / 12) * 500, "feet")
  28396. },
  28397. {
  28398. name: "Megamacro",
  28399. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(1, "mile"),
  28408. weight: math.unit(265261.9, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/shui/front.svg",
  28412. extra: 1633 / 1564,
  28413. bottom: 91.5 / 1726
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(1, "mile"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(12 + 6 / 12, "feet"),
  28430. weight: math.unit(1342, "lb"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/arokh-takakura/front.svg",
  28434. extra: 1089 / 1043,
  28435. bottom: 77.4 / 1176.7
  28436. }
  28437. },
  28438. back: {
  28439. height: math.unit(12 + 6 / 12, "feet"),
  28440. weight: math.unit(1342, "lb"),
  28441. name: "Back",
  28442. image: {
  28443. source: "./media/characters/arokh-takakura/back.svg",
  28444. extra: 1046 / 1019,
  28445. bottom: 102 / 1150
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Big",
  28452. height: math.unit(12 + 6 / 12, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(5 + 6 / 12, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/theo/front.svg",
  28466. extra: 1184 / 1131,
  28467. bottom: 7.4 / 1191
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Micro",
  28474. height: math.unit(5, "inches")
  28475. },
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(5 + 6 / 12, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(5 + 9 / 12, "feet"),
  28488. weight: math.unit(130, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/cecelia-swift/front.svg",
  28492. extra: 502 / 484,
  28493. bottom: 23 / 523
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(5 + 9 / 12, "feet"),
  28498. weight: math.unit(130, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/cecelia-swift/back.svg",
  28502. extra: 499 / 485,
  28503. bottom: 12 / 511
  28504. }
  28505. },
  28506. head: {
  28507. height: math.unit(0.90, "feet"),
  28508. name: "Head",
  28509. image: {
  28510. source: "./media/characters/cecelia-swift/head.svg"
  28511. }
  28512. },
  28513. rump: {
  28514. height: math.unit(1.75, "feet"),
  28515. name: "Rump",
  28516. image: {
  28517. source: "./media/characters/cecelia-swift/rump.svg"
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Normal",
  28524. height: math.unit(5 + 9 / 12, "feet"),
  28525. default: true
  28526. },
  28527. {
  28528. name: "Big",
  28529. height: math.unit(50, "feet")
  28530. },
  28531. {
  28532. name: "Macro",
  28533. height: math.unit(100, "feet")
  28534. },
  28535. {
  28536. name: "Macro+",
  28537. height: math.unit(500, "feet")
  28538. },
  28539. {
  28540. name: "Macro++",
  28541. height: math.unit(1000, "feet")
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(6, "feet"),
  28550. weight: math.unit(150, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/kaunan/front.svg",
  28554. extra: 2890 / 2523,
  28555. bottom: 49 / 2939
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Macro",
  28562. height: math.unit(150, "feet"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28569. {
  28570. front: {
  28571. height: math.unit(175, "cm"),
  28572. weight: math.unit(60, "kg"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/fei/front.svg",
  28576. extra: 1873/1723,
  28577. bottom: 53/1926
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Mortal",
  28584. height: math.unit(175, "cm")
  28585. },
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(3500, "m"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Stroll",
  28593. height: math.unit(17.5, "km")
  28594. },
  28595. {
  28596. name: "Showoff",
  28597. height: math.unit(175, "km")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(7, "feet"),
  28606. weight: math.unit(1000, "kg"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/edrax/front.svg",
  28610. extra: 2838 / 2550,
  28611. bottom: 130 / 2968
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Small",
  28618. height: math.unit(7, "feet")
  28619. },
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(1500, "meters")
  28623. },
  28624. {
  28625. name: "Mega",
  28626. height: math.unit(12000000, "km"),
  28627. default: true
  28628. },
  28629. {
  28630. name: "Megamacro",
  28631. height: math.unit(10600000, "lightyears")
  28632. },
  28633. {
  28634. name: "Hypermacro",
  28635. height: math.unit(256, "yottameters")
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(10, "feet"),
  28644. weight: math.unit(750, "lb"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/clove/front.svg",
  28648. extra: 1918/1751,
  28649. bottom: 52/1970
  28650. }
  28651. },
  28652. back: {
  28653. height: math.unit(10, "feet"),
  28654. weight: math.unit(750, "lb"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/clove/back.svg",
  28658. extra: 1912/1747,
  28659. bottom: 50/1962
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Normal",
  28666. height: math.unit(10, "feet"),
  28667. default: true
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28673. {
  28674. front: {
  28675. height: math.unit(4, "feet"),
  28676. weight: math.unit(50, "lb"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/alex-rabbit/front.svg",
  28680. extra: 507 / 458,
  28681. bottom: 18.5 / 527
  28682. }
  28683. },
  28684. back: {
  28685. height: math.unit(4, "feet"),
  28686. weight: math.unit(50, "lb"),
  28687. name: "Back",
  28688. image: {
  28689. source: "./media/characters/alex-rabbit/back.svg",
  28690. extra: 502 / 460,
  28691. bottom: 18.9 / 521
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(4, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(1 + 3 / 12, "feet"),
  28708. weight: math.unit(80, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/zander-rose/front.svg",
  28712. extra: 916 / 797,
  28713. bottom: 17 / 933
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(1 + 3 / 12, "feet"),
  28718. weight: math.unit(80, "lb"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/zander-rose/back.svg",
  28722. extra: 903 / 779,
  28723. bottom: 31 / 934
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Normal",
  28730. height: math.unit(1 + 3 / 12, "feet"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28737. {
  28738. anthro: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Anthro",
  28742. image: {
  28743. source: "./media/characters/razz/anthro.svg",
  28744. extra: 1437 / 1343,
  28745. bottom: 48 / 1485
  28746. }
  28747. },
  28748. feral: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Feral",
  28752. image: {
  28753. source: "./media/characters/razz/feral.svg",
  28754. extra: 2569 / 1385,
  28755. bottom: 95 / 2664
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(6, "feet"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(9 + 4 / 12, "feet"),
  28772. weight: math.unit(500, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/morrigan/front.svg",
  28776. extra: 2707 / 2579,
  28777. bottom: 156 / 2863
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(9 + 4 / 12, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(5, "stories"),
  28794. weight: math.unit(4000, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/jenene/front.svg",
  28798. extra: 1780 / 1710,
  28799. bottom: 57 / 1837
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(5, "stories"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28813. {
  28814. taurSfw: {
  28815. height: math.unit(10, "meters"),
  28816. weight: math.unit(17500, "kg"),
  28817. name: "Taur",
  28818. image: {
  28819. source: "./media/characters/faey/taur-sfw.svg",
  28820. extra: 1200 / 968,
  28821. bottom: 41 / 1241
  28822. }
  28823. },
  28824. chestmaw: {
  28825. height: math.unit(2.01, "meters"),
  28826. name: "Chestmaw",
  28827. image: {
  28828. source: "./media/characters/faey/chestmaw.svg"
  28829. }
  28830. },
  28831. foot: {
  28832. height: math.unit(2.43, "meters"),
  28833. name: "Foot",
  28834. image: {
  28835. source: "./media/characters/faey/foot.svg"
  28836. }
  28837. },
  28838. jaws: {
  28839. height: math.unit(1.66, "meters"),
  28840. name: "Jaws",
  28841. image: {
  28842. source: "./media/characters/faey/jaws.svg"
  28843. }
  28844. },
  28845. tongues: {
  28846. height: math.unit(2.01, "meters"),
  28847. name: "Tongues",
  28848. image: {
  28849. source: "./media/characters/faey/tongues.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Small",
  28856. height: math.unit(10, "meters"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Big",
  28861. height: math.unit(500000, "km")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(7, "feet"),
  28870. weight: math.unit(275, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/roku/front.svg",
  28874. extra: 903 / 878,
  28875. bottom: 37 / 940
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(7, "feet"),
  28883. default: true
  28884. },
  28885. {
  28886. name: "Macro",
  28887. height: math.unit(500, "feet")
  28888. },
  28889. {
  28890. name: "Megamacro",
  28891. height: math.unit(200, "miles")
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(6 + 2 / 12, "feet"),
  28900. weight: math.unit(150, "lb"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/lira/front.svg",
  28904. extra: 1727 / 1605,
  28905. bottom: 26 / 1753
  28906. }
  28907. },
  28908. back: {
  28909. height: math.unit(6 + 2 / 12, "feet"),
  28910. weight: math.unit(150, "lb"),
  28911. name: "Back",
  28912. image: {
  28913. source: "./media/characters/lira/back.svg",
  28914. extra: 1713/1621,
  28915. bottom: 20/1733
  28916. }
  28917. },
  28918. hand: {
  28919. height: math.unit(0.75, "feet"),
  28920. name: "Hand",
  28921. image: {
  28922. source: "./media/characters/lira/hand.svg"
  28923. }
  28924. },
  28925. maw: {
  28926. height: math.unit(0.65, "feet"),
  28927. name: "Maw",
  28928. image: {
  28929. source: "./media/characters/lira/maw.svg"
  28930. }
  28931. },
  28932. pawDigi: {
  28933. height: math.unit(1.6, "feet"),
  28934. name: "Paw Digi",
  28935. image: {
  28936. source: "./media/characters/lira/paw-digi.svg"
  28937. }
  28938. },
  28939. pawPlanti: {
  28940. height: math.unit(1.4, "feet"),
  28941. name: "Paw Planti",
  28942. image: {
  28943. source: "./media/characters/lira/paw-planti.svg"
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(6 + 2 / 12, "feet"),
  28951. default: true
  28952. },
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(100, "feet")
  28956. },
  28957. {
  28958. name: "Macro²",
  28959. height: math.unit(1600, "feet")
  28960. },
  28961. {
  28962. name: "Planetary",
  28963. height: math.unit(20, "earths")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(6, "feet"),
  28972. weight: math.unit(150, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/hadjet/front.svg",
  28976. extra: 1480 / 1346,
  28977. bottom: 26 / 1506
  28978. }
  28979. },
  28980. frontNsfw: {
  28981. height: math.unit(6, "feet"),
  28982. weight: math.unit(150, "lb"),
  28983. name: "Front (NSFW)",
  28984. image: {
  28985. source: "./media/characters/hadjet/front-nsfw.svg",
  28986. extra: 1440 / 1358,
  28987. bottom: 52 / 1492
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Macro",
  28994. height: math.unit(10, "stories"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Megamacro",
  28999. height: math.unit(1.5, "miles")
  29000. },
  29001. {
  29002. name: "Megamacro+",
  29003. height: math.unit(5, "miles")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29009. {
  29010. side: {
  29011. height: math.unit(106, "feet"),
  29012. weight: math.unit(500, "tonnes"),
  29013. name: "Side",
  29014. image: {
  29015. source: "./media/characters/kodran/side.svg",
  29016. extra: 553 / 480,
  29017. bottom: 33 / 586
  29018. }
  29019. },
  29020. front: {
  29021. height: math.unit(132, "feet"),
  29022. weight: math.unit(500, "tonnes"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/kodran/front.svg",
  29026. extra: 667 / 643,
  29027. bottom: 42 / 709
  29028. }
  29029. },
  29030. flying: {
  29031. height: math.unit(350, "feet"),
  29032. weight: math.unit(500, "tonnes"),
  29033. name: "Flying",
  29034. image: {
  29035. source: "./media/characters/kodran/flying.svg"
  29036. }
  29037. },
  29038. foot: {
  29039. height: math.unit(33, "feet"),
  29040. name: "Foot",
  29041. image: {
  29042. source: "./media/characters/kodran/foot.svg"
  29043. }
  29044. },
  29045. footFront: {
  29046. height: math.unit(19, "feet"),
  29047. name: "Foot (Front)",
  29048. image: {
  29049. source: "./media/characters/kodran/foot-front.svg",
  29050. extra: 261 / 261,
  29051. bottom: 91 / 352
  29052. }
  29053. },
  29054. headFront: {
  29055. height: math.unit(53, "feet"),
  29056. name: "Head (Front)",
  29057. image: {
  29058. source: "./media/characters/kodran/head-front.svg"
  29059. }
  29060. },
  29061. headSide: {
  29062. height: math.unit(65, "feet"),
  29063. name: "Head (Side)",
  29064. image: {
  29065. source: "./media/characters/kodran/head-side.svg"
  29066. }
  29067. },
  29068. throat: {
  29069. height: math.unit(79, "feet"),
  29070. name: "Throat",
  29071. image: {
  29072. source: "./media/characters/kodran/throat.svg"
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Large",
  29079. height: math.unit(106, "feet"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29086. {
  29087. side: {
  29088. height: math.unit(11, "feet"),
  29089. weight: math.unit(150, "lb"),
  29090. name: "Side",
  29091. image: {
  29092. source: "./media/characters/pyxaron/side.svg",
  29093. extra: 305 / 195,
  29094. bottom: 17 / 322
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(11, "feet"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/meep/front.svg",
  29115. extra: 88 / 80,
  29116. bottom: 6 / 94
  29117. }
  29118. },
  29119. },
  29120. [
  29121. {
  29122. name: "Fun Sized",
  29123. height: math.unit(2, "inches"),
  29124. default: true
  29125. },
  29126. {
  29127. name: "Friend Sized",
  29128. height: math.unit(8, "inches")
  29129. },
  29130. ]
  29131. ))
  29132. characterMakers.push(() => makeCharacter(
  29133. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29134. {
  29135. front: {
  29136. height: math.unit(15, "feet"),
  29137. weight: math.unit(2500, "lb"),
  29138. name: "Front",
  29139. image: {
  29140. source: "./media/characters/holly-rabbit/front.svg",
  29141. extra: 1433 / 1233,
  29142. bottom: 125 / 1558
  29143. }
  29144. },
  29145. dick: {
  29146. height: math.unit(4.6, "feet"),
  29147. name: "Dick",
  29148. image: {
  29149. source: "./media/characters/holly-rabbit/dick.svg"
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(15, "feet"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Macro",
  29161. height: math.unit(250, "feet")
  29162. },
  29163. {
  29164. name: "Macro+",
  29165. height: math.unit(2500, "feet")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(3.02, "meters"),
  29174. weight: math.unit(500, "kg"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/drena/front.svg",
  29178. extra: 282 / 243,
  29179. bottom: 8 / 290
  29180. }
  29181. },
  29182. side: {
  29183. height: math.unit(3.02, "meters"),
  29184. weight: math.unit(500, "kg"),
  29185. name: "Side",
  29186. image: {
  29187. source: "./media/characters/drena/side.svg",
  29188. extra: 280 / 245,
  29189. bottom: 10 / 290
  29190. }
  29191. },
  29192. back: {
  29193. height: math.unit(3.02, "meters"),
  29194. weight: math.unit(500, "kg"),
  29195. name: "Back",
  29196. image: {
  29197. source: "./media/characters/drena/back.svg",
  29198. extra: 278 / 243,
  29199. bottom: 2 / 280
  29200. }
  29201. },
  29202. foot: {
  29203. height: math.unit(0.75, "meters"),
  29204. name: "Foot",
  29205. image: {
  29206. source: "./media/characters/drena/foot.svg"
  29207. }
  29208. },
  29209. maw: {
  29210. height: math.unit(0.82, "meters"),
  29211. name: "Maw",
  29212. image: {
  29213. source: "./media/characters/drena/maw.svg"
  29214. }
  29215. },
  29216. eating: {
  29217. height: math.unit(0.75, "meters"),
  29218. name: "Eating",
  29219. image: {
  29220. source: "./media/characters/drena/eating.svg"
  29221. }
  29222. },
  29223. rump: {
  29224. height: math.unit(0.93, "meters"),
  29225. name: "Rump",
  29226. image: {
  29227. source: "./media/characters/drena/rump.svg"
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(3.02, "meters"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(6 + 4 / 12, "feet"),
  29244. weight: math.unit(250, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/remmyzilla/front.svg",
  29248. extra: 4033 / 3588,
  29249. bottom: 123 / 4156
  29250. }
  29251. },
  29252. back: {
  29253. height: math.unit(6 + 4 / 12, "feet"),
  29254. weight: math.unit(250, "lb"),
  29255. name: "Back",
  29256. image: {
  29257. source: "./media/characters/remmyzilla/back.svg",
  29258. extra: 2687 / 2555,
  29259. bottom: 48 / 2735
  29260. }
  29261. },
  29262. paw: {
  29263. height: math.unit(1.73, "feet"),
  29264. name: "Paw",
  29265. image: {
  29266. source: "./media/characters/remmyzilla/paw.svg"
  29267. }
  29268. },
  29269. maw: {
  29270. height: math.unit(1.73, "feet"),
  29271. name: "Maw",
  29272. image: {
  29273. source: "./media/characters/remmyzilla/maw.svg"
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(6 + 4 / 12, "feet")
  29281. },
  29282. {
  29283. name: "Minimacro",
  29284. height: math.unit(12 + 8 / 12, "feet")
  29285. },
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(640, "feet"),
  29289. default: true
  29290. },
  29291. {
  29292. name: "Megamacro",
  29293. height: math.unit(6400, "feet")
  29294. },
  29295. {
  29296. name: "Gigamacro",
  29297. height: math.unit(64000, "miles")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(2.5, "meters"),
  29306. weight: math.unit(300, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/lawrence/front.svg",
  29310. extra: 357 / 335,
  29311. bottom: 30 / 387
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(2.5, "meters"),
  29316. weight: math.unit(300, "lb"),
  29317. name: "Back",
  29318. image: {
  29319. source: "./media/characters/lawrence/back.svg",
  29320. extra: 357 / 338,
  29321. bottom: 16 / 373
  29322. }
  29323. },
  29324. head: {
  29325. height: math.unit(0.9, "meter"),
  29326. name: "Head",
  29327. image: {
  29328. source: "./media/characters/lawrence/head.svg"
  29329. }
  29330. },
  29331. maw: {
  29332. height: math.unit(0.7, "meter"),
  29333. name: "Maw",
  29334. image: {
  29335. source: "./media/characters/lawrence/maw.svg"
  29336. }
  29337. },
  29338. footBottom: {
  29339. height: math.unit(0.5, "meter"),
  29340. name: "Foot (Bottom)",
  29341. image: {
  29342. source: "./media/characters/lawrence/foot-bottom.svg"
  29343. }
  29344. },
  29345. footTop: {
  29346. height: math.unit(0.5, "meter"),
  29347. name: "Foot (Top)",
  29348. image: {
  29349. source: "./media/characters/lawrence/foot-top.svg"
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(2.5, "meters"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Macro",
  29361. height: math.unit(95, "meters")
  29362. },
  29363. {
  29364. name: "Megamacro",
  29365. height: math.unit(150, "km")
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29371. {
  29372. front: {
  29373. height: math.unit(4.2, "meters"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/sydney/front.svg",
  29377. extra: 1323 / 1277,
  29378. bottom: 111 / 1434
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(4.2, "meters"),
  29386. default: true
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29392. {
  29393. back: {
  29394. height: math.unit(201, "feet"),
  29395. name: "Back",
  29396. image: {
  29397. source: "./media/characters/jessica/back.svg",
  29398. extra: 273 / 259,
  29399. bottom: 7 / 280
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(201, "feet"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Megamacro",
  29411. height: math.unit(8, "miles")
  29412. },
  29413. ]
  29414. ))
  29415. characterMakers.push(() => makeCharacter(
  29416. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29417. {
  29418. side: {
  29419. height: math.unit(5.6, "m"),
  29420. weight: math.unit(8000, "kg"),
  29421. name: "Side",
  29422. image: {
  29423. source: "./media/characters/victoria/side.svg",
  29424. extra: 1542/1229,
  29425. bottom: 124/1666
  29426. }
  29427. },
  29428. maw: {
  29429. height: math.unit(7.14, "feet"),
  29430. name: "Maw",
  29431. image: {
  29432. source: "./media/characters/victoria/maw.svg"
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Normal",
  29439. height: math.unit(5.6, "m"),
  29440. default: true
  29441. },
  29442. ]
  29443. ))
  29444. characterMakers.push(() => makeCharacter(
  29445. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29446. {
  29447. front: {
  29448. height: math.unit(5 + 6 / 12, "feet"),
  29449. name: "Front",
  29450. image: {
  29451. source: "./media/characters/cat/front.svg",
  29452. extra: 1449/1295,
  29453. bottom: 34/1483
  29454. },
  29455. form: "cat",
  29456. default: true
  29457. },
  29458. back: {
  29459. height: math.unit(5 + 6 / 12, "feet"),
  29460. name: "Back",
  29461. image: {
  29462. source: "./media/characters/cat/back.svg",
  29463. extra: 1466/1301,
  29464. bottom: 19/1485
  29465. },
  29466. form: "cat"
  29467. },
  29468. taur: {
  29469. height: math.unit(7, "feet"),
  29470. name: "Taur",
  29471. image: {
  29472. source: "./media/characters/cat/taur.svg",
  29473. extra: 1389/1233,
  29474. bottom: 83/1472
  29475. },
  29476. form: "taur",
  29477. default: true
  29478. },
  29479. lucarioFront: {
  29480. height: math.unit(4, "feet"),
  29481. name: "Lucario (Front)",
  29482. image: {
  29483. source: "./media/characters/cat/lucario-front.svg",
  29484. extra: 1149/1019,
  29485. bottom: 84/1233
  29486. },
  29487. form: "lucario",
  29488. default: true
  29489. },
  29490. lucarioBack: {
  29491. height: math.unit(4, "feet"),
  29492. name: "Lucario (Back)",
  29493. image: {
  29494. source: "./media/characters/cat/lucario-back.svg",
  29495. extra: 1190/1059,
  29496. bottom: 33/1223
  29497. },
  29498. form: "lucario"
  29499. },
  29500. megaLucario: {
  29501. height: math.unit(4, "feet"),
  29502. name: "Mega Lucario",
  29503. image: {
  29504. source: "./media/characters/cat/mega-lucario.svg",
  29505. extra: 1515 / 1319,
  29506. bottom: 63 / 1578
  29507. },
  29508. form: "lucario"
  29509. },
  29510. nickit: {
  29511. height: math.unit(2, "feet"),
  29512. name: "Nickit",
  29513. image: {
  29514. source: "./media/characters/cat/nickit.svg",
  29515. extra: 1980 / 1585,
  29516. bottom: 102 / 2082
  29517. },
  29518. form: "nickit",
  29519. default: true
  29520. },
  29521. lopunnyFront: {
  29522. height: math.unit(5, "feet"),
  29523. name: "Lopunny (Front)",
  29524. image: {
  29525. source: "./media/characters/cat/lopunny-front.svg",
  29526. extra: 1782 / 1469,
  29527. bottom: 38 / 1820
  29528. },
  29529. form: "lopunny",
  29530. default: true
  29531. },
  29532. lopunnyBack: {
  29533. height: math.unit(5, "feet"),
  29534. name: "Lopunny (Back)",
  29535. image: {
  29536. source: "./media/characters/cat/lopunny-back.svg",
  29537. extra: 1660 / 1490,
  29538. bottom: 25 / 1685
  29539. },
  29540. form: "lopunny"
  29541. },
  29542. },
  29543. [
  29544. {
  29545. name: "Really small",
  29546. height: math.unit(1, "nm")
  29547. },
  29548. {
  29549. name: "Micro",
  29550. height: math.unit(5, "inches")
  29551. },
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(5 + 6 / 12, "feet"),
  29555. default: true
  29556. },
  29557. {
  29558. name: "Macro",
  29559. height: math.unit(50, "feet")
  29560. },
  29561. {
  29562. name: "Macro+",
  29563. height: math.unit(150, "feet")
  29564. },
  29565. {
  29566. name: "Megamacro",
  29567. height: math.unit(100, "miles")
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(63.4, "meters"),
  29576. weight: math.unit(3.28349e+6, "kilograms"),
  29577. name: "Front",
  29578. image: {
  29579. source: "./media/characters/kirina-violet/front.svg",
  29580. extra: 2812 / 2725,
  29581. bottom: 0 / 2812
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(63.4, "meters"),
  29586. weight: math.unit(3.28349e+6, "kilograms"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/kirina-violet/back.svg",
  29590. extra: 2812 / 2725,
  29591. bottom: 0 / 2812
  29592. }
  29593. },
  29594. mouth: {
  29595. height: math.unit(4.35, "meters"),
  29596. name: "Mouth",
  29597. image: {
  29598. source: "./media/characters/kirina-violet/mouth.svg"
  29599. }
  29600. },
  29601. paw: {
  29602. height: math.unit(5.6, "meters"),
  29603. name: "Paw",
  29604. image: {
  29605. source: "./media/characters/kirina-violet/paw.svg"
  29606. }
  29607. },
  29608. tail: {
  29609. height: math.unit(18, "meters"),
  29610. name: "Tail",
  29611. image: {
  29612. source: "./media/characters/kirina-violet/tail.svg"
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Macro",
  29619. height: math.unit(63.4, "meters"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(75, "feet"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/cat-gigachu/front.svg",
  29632. extra: 1239/1027,
  29633. bottom: 32/1271
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(75, "feet"),
  29638. name: "Back",
  29639. image: {
  29640. source: "./media/characters/cat-gigachu/back.svg",
  29641. extra: 1229/1030,
  29642. bottom: 9/1238
  29643. }
  29644. },
  29645. },
  29646. [
  29647. {
  29648. name: "Dynamax",
  29649. height: math.unit(75, "feet"),
  29650. default: true
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29656. {
  29657. front: {
  29658. height: math.unit(6, "feet"),
  29659. weight: math.unit(150, "lb"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/sfaiyan/front.svg",
  29663. extra: 999 / 978,
  29664. bottom: 5 / 1004
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(1.82, "meters")
  29672. },
  29673. {
  29674. name: "Giant",
  29675. height: math.unit(2.27, "km"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(179, "cm"),
  29685. weight: math.unit(100, "kg"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/raunehkeli/front.svg",
  29689. extra: 1934 / 1926,
  29690. bottom: 0 / 1934
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(179, "cm")
  29698. },
  29699. {
  29700. name: "Maximum",
  29701. height: math.unit(575, "meters"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(6, "feet"),
  29711. weight: math.unit(150, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29715. extra: 2625 / 2518,
  29716. bottom: 60 / 2685
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(6 + 2 / 12, "feet")
  29724. },
  29725. {
  29726. name: "Macro",
  29727. height: math.unit(1180, "feet"),
  29728. default: true
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(5 + 6 / 12, "feet"),
  29737. weight: math.unit(108, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/lilith-zott/front.svg",
  29741. extra: 2510 / 2238,
  29742. bottom: 100 / 2610
  29743. }
  29744. },
  29745. frontDressed: {
  29746. height: math.unit(5 + 6 / 12, "feet"),
  29747. weight: math.unit(108, "lb"),
  29748. name: "Front (Dressed)",
  29749. image: {
  29750. source: "./media/characters/lilith-zott/front-dressed.svg",
  29751. extra: 2510 / 2238,
  29752. bottom: 100 / 2610
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(5 + 6 / 12, "feet")
  29760. },
  29761. {
  29762. name: "Macro",
  29763. height: math.unit(1030, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29777. extra: 2567 / 2435,
  29778. bottom: 39 / 2606
  29779. }
  29780. },
  29781. frontSuper: {
  29782. height: math.unit(6, "feet"),
  29783. name: "Front (Super)",
  29784. image: {
  29785. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29786. extra: 2567 / 2435,
  29787. bottom: 39 / 2606
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(5 + 10 / 12, "feet")
  29795. },
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(1100, "feet"),
  29799. default: true
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(100, "miles"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/sona/front.svg",
  29811. extra: 2433 / 2201,
  29812. bottom: 53 / 2486
  29813. }
  29814. },
  29815. foot: {
  29816. height: math.unit(16.1, "miles"),
  29817. name: "Foot",
  29818. image: {
  29819. source: "./media/characters/sona/foot.svg"
  29820. }
  29821. },
  29822. },
  29823. [
  29824. {
  29825. name: "Macro",
  29826. height: math.unit(100, "miles"),
  29827. default: true
  29828. },
  29829. ]
  29830. ))
  29831. characterMakers.push(() => makeCharacter(
  29832. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29833. {
  29834. front: {
  29835. height: math.unit(6, "feet"),
  29836. weight: math.unit(150, "lb"),
  29837. name: "Front",
  29838. image: {
  29839. source: "./media/characters/bailey/front.svg",
  29840. extra: 1778 / 1724,
  29841. bottom: 30 / 1808
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Micro",
  29848. height: math.unit(4, "inches")
  29849. },
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(5 + 5 / 12, "feet"),
  29853. default: true
  29854. },
  29855. {
  29856. name: "Macro",
  29857. height: math.unit(250, "feet")
  29858. },
  29859. {
  29860. name: "Megamacro",
  29861. height: math.unit(100, "miles")
  29862. },
  29863. ]
  29864. ))
  29865. characterMakers.push(() => makeCharacter(
  29866. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29867. {
  29868. front: {
  29869. height: math.unit(5 + 2 / 12, "feet"),
  29870. weight: math.unit(120, "lb"),
  29871. name: "Front",
  29872. image: {
  29873. source: "./media/characters/snaps/front.svg",
  29874. extra: 2370 / 2177,
  29875. bottom: 48 / 2418
  29876. }
  29877. },
  29878. back: {
  29879. height: math.unit(5 + 2 / 12, "feet"),
  29880. weight: math.unit(120, "lb"),
  29881. name: "Back",
  29882. image: {
  29883. source: "./media/characters/snaps/back.svg",
  29884. extra: 2408 / 2258,
  29885. bottom: 15 / 2423
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Micro",
  29892. height: math.unit(9, "inches")
  29893. },
  29894. {
  29895. name: "Normal",
  29896. height: math.unit(5 + 2 / 12, "feet"),
  29897. default: true
  29898. },
  29899. {
  29900. name: "Mini Macro",
  29901. height: math.unit(10, "feet")
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29907. {
  29908. front: {
  29909. height: math.unit(1.8, "meters"),
  29910. weight: math.unit(85, "kg"),
  29911. name: "Front",
  29912. image: {
  29913. source: "./media/characters/azteck/front.svg",
  29914. extra: 2815 / 2625,
  29915. bottom: 89 / 2904
  29916. }
  29917. },
  29918. back: {
  29919. height: math.unit(1.8, "meters"),
  29920. weight: math.unit(85, "kg"),
  29921. name: "Back",
  29922. image: {
  29923. source: "./media/characters/azteck/back.svg",
  29924. extra: 2856 / 2648,
  29925. bottom: 85 / 2941
  29926. }
  29927. },
  29928. frontDressed: {
  29929. height: math.unit(1.8, "meters"),
  29930. weight: math.unit(85, "kg"),
  29931. name: "Front (Dressed)",
  29932. image: {
  29933. source: "./media/characters/azteck/front-dressed.svg",
  29934. extra: 2147 / 2003,
  29935. bottom: 68 / 2215
  29936. }
  29937. },
  29938. head: {
  29939. height: math.unit(0.47, "meters"),
  29940. weight: math.unit(85, "kg"),
  29941. name: "Head",
  29942. image: {
  29943. source: "./media/characters/azteck/head.svg"
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Bite sized",
  29950. height: math.unit(16, "cm")
  29951. },
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(1.8, "meters"),
  29955. default: true
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(6, "feet"),
  29964. weight: math.unit(150, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/pidge/front.svg",
  29968. extra: 620 / 588,
  29969. bottom: 9 / 629
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(6, "feet"),
  29974. weight: math.unit(150, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/pidge/back.svg",
  29978. extra: 620 / 588,
  29979. bottom: 9 / 629
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Macro",
  29986. height: math.unit(1, "mile"),
  29987. default: true
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(6, "feet"),
  29996. weight: math.unit(150, "lb"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/en/front.svg",
  30000. extra: 1697 / 1563,
  30001. bottom: 103 / 1800
  30002. }
  30003. },
  30004. back: {
  30005. height: math.unit(6, "feet"),
  30006. weight: math.unit(150, "lb"),
  30007. name: "Back",
  30008. image: {
  30009. source: "./media/characters/en/back.svg",
  30010. extra: 1700 / 1570,
  30011. bottom: 51 / 1751
  30012. }
  30013. },
  30014. frontDressed: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(150, "lb"),
  30017. name: "Front (Dressed)",
  30018. image: {
  30019. source: "./media/characters/en/front-dressed.svg",
  30020. extra: 1697 / 1563,
  30021. bottom: 103 / 1800
  30022. }
  30023. },
  30024. backDressed: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Back (Dressed)",
  30028. image: {
  30029. source: "./media/characters/en/back-dressed.svg",
  30030. extra: 1700 / 1570,
  30031. bottom: 51 / 1751
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Macro",
  30038. height: math.unit(210, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(6, "feet"),
  30048. weight: math.unit(150, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/haze-orris/front.svg",
  30052. extra: 3975 / 3525,
  30053. bottom: 137 / 4112
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Micro",
  30060. height: math.unit(150, "mm"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(6, "feet"),
  30070. weight: math.unit(150, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/casselene-yaro/front.svg",
  30074. extra: 4721 / 4541,
  30075. bottom: 82 / 4803
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(6, "feet"),
  30080. weight: math.unit(150, "lb"),
  30081. name: "Back",
  30082. image: {
  30083. source: "./media/characters/casselene-yaro/back.svg",
  30084. extra: 4569 / 4377,
  30085. bottom: 69 / 4638
  30086. }
  30087. },
  30088. frontDressed: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(150, "lb"),
  30091. name: "Front-dressed",
  30092. image: {
  30093. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30094. extra: 4721 / 4541,
  30095. bottom: 82 / 4803
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Macro",
  30102. height: math.unit(190, "feet"),
  30103. default: true
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(6, "feet"),
  30112. weight: math.unit(150, "lb"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/myra-rue-delore/front.svg",
  30116. extra: 1340 / 1308,
  30117. bottom: 67 / 1407
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(6, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/myra-rue-delore/back.svg",
  30126. extra: 1341 / 1310,
  30127. bottom: 40 / 1381
  30128. }
  30129. },
  30130. frontDressed: {
  30131. height: math.unit(6, "feet"),
  30132. weight: math.unit(150, "lb"),
  30133. name: "Front (Dressed)",
  30134. image: {
  30135. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30136. extra: 1340 / 1308,
  30137. bottom: 67 / 1407
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(150, "feet"),
  30145. default: true
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(10, "feet"),
  30154. weight: math.unit(15015, "lb"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/fem!plat/front.svg",
  30158. extra: 2799 / 2604,
  30159. bottom: 149 / 2948
  30160. }
  30161. },
  30162. },
  30163. [
  30164. {
  30165. name: "Normal",
  30166. height: math.unit(10, "feet"),
  30167. default: true
  30168. },
  30169. {
  30170. name: "Macro",
  30171. height: math.unit(100, "feet")
  30172. },
  30173. {
  30174. name: "Megamacro",
  30175. height: math.unit(1000, "feet")
  30176. },
  30177. ]
  30178. ))
  30179. characterMakers.push(() => makeCharacter(
  30180. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30181. {
  30182. front: {
  30183. height: math.unit(15 + 5 / 12, "feet"),
  30184. weight: math.unit(4600, "lb"),
  30185. name: "Front",
  30186. image: {
  30187. source: "./media/characters/neapolitan-ananassa/front.svg",
  30188. extra: 2903 / 2736,
  30189. bottom: 0 / 2903
  30190. }
  30191. },
  30192. side: {
  30193. height: math.unit(15 + 5 / 12, "feet"),
  30194. weight: math.unit(4600, "lb"),
  30195. name: "Side",
  30196. image: {
  30197. source: "./media/characters/neapolitan-ananassa/side.svg",
  30198. extra: 2925 / 2719,
  30199. bottom: 0 / 2925
  30200. }
  30201. },
  30202. back: {
  30203. height: math.unit(15 + 5 / 12, "feet"),
  30204. weight: math.unit(4600, "lb"),
  30205. name: "Back",
  30206. image: {
  30207. source: "./media/characters/neapolitan-ananassa/back.svg",
  30208. extra: 2903 / 2736,
  30209. bottom: 0 / 2903
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(15 + 5 / 12, "feet"),
  30217. default: true
  30218. },
  30219. {
  30220. name: "Post-Millenium",
  30221. height: math.unit(35 + 5 / 12, "feet")
  30222. },
  30223. {
  30224. name: "Post-Era",
  30225. height: math.unit(450 + 5 / 12, "feet")
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30231. {
  30232. front: {
  30233. height: math.unit(300, "meters"),
  30234. weight: math.unit(125000, "tonnes"),
  30235. name: "Front",
  30236. image: {
  30237. source: "./media/characters/pazuzu/front.svg",
  30238. extra: 877 / 794,
  30239. bottom: 47 / 924
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(300, "meters"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30253. {
  30254. side: {
  30255. height: math.unit(10 + 7 / 12, "feet"),
  30256. weight: math.unit(2.5, "tons"),
  30257. name: "Side",
  30258. image: {
  30259. source: "./media/characters/aasha/side.svg",
  30260. extra: 1345 / 1245,
  30261. bottom: 111 / 1456
  30262. }
  30263. },
  30264. back: {
  30265. height: math.unit(10 + 7 / 12, "feet"),
  30266. weight: math.unit(2.5, "tons"),
  30267. name: "Back",
  30268. image: {
  30269. source: "./media/characters/aasha/back.svg",
  30270. extra: 1133 / 1057,
  30271. bottom: 257 / 1390
  30272. }
  30273. },
  30274. },
  30275. [
  30276. {
  30277. name: "Normal",
  30278. height: math.unit(10 + 7 / 12, "feet"),
  30279. default: true
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30285. {
  30286. front: {
  30287. height: math.unit(6 + 3 / 12, "feet"),
  30288. name: "Front",
  30289. image: {
  30290. source: "./media/characters/nevan/front.svg",
  30291. extra: 704 / 704,
  30292. bottom: 28 / 732
  30293. }
  30294. },
  30295. back: {
  30296. height: math.unit(6 + 3 / 12, "feet"),
  30297. name: "Back",
  30298. image: {
  30299. source: "./media/characters/nevan/back.svg",
  30300. extra: 714 / 714,
  30301. bottom: 21 / 735
  30302. }
  30303. },
  30304. frontFlaccid: {
  30305. height: math.unit(6 + 3 / 12, "feet"),
  30306. name: "Front (Flaccid)",
  30307. image: {
  30308. source: "./media/characters/nevan/front-flaccid.svg",
  30309. extra: 704 / 704,
  30310. bottom: 28 / 732
  30311. }
  30312. },
  30313. frontErect: {
  30314. height: math.unit(6 + 3 / 12, "feet"),
  30315. name: "Front (Erect)",
  30316. image: {
  30317. source: "./media/characters/nevan/front-erect.svg",
  30318. extra: 704 / 704,
  30319. bottom: 28 / 732
  30320. }
  30321. },
  30322. backFlaccid: {
  30323. height: math.unit(6 + 3 / 12, "feet"),
  30324. name: "Back (Flaccid)",
  30325. image: {
  30326. source: "./media/characters/nevan/back-flaccid.svg",
  30327. extra: 714 / 714,
  30328. bottom: 21 / 735
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Normal",
  30335. height: math.unit(6 + 3 / 12, "feet"),
  30336. default: true
  30337. },
  30338. ]
  30339. ))
  30340. characterMakers.push(() => makeCharacter(
  30341. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30342. {
  30343. front: {
  30344. height: math.unit(4, "feet"),
  30345. name: "Front",
  30346. image: {
  30347. source: "./media/characters/arhan/front.svg",
  30348. extra: 3368 / 3133,
  30349. bottom: 0 / 3368
  30350. }
  30351. },
  30352. side: {
  30353. height: math.unit(4, "feet"),
  30354. name: "Side",
  30355. image: {
  30356. source: "./media/characters/arhan/side.svg",
  30357. extra: 3347 / 3105,
  30358. bottom: 0 / 3347
  30359. }
  30360. },
  30361. tongue: {
  30362. height: math.unit(1.42, "feet"),
  30363. name: "Tongue",
  30364. image: {
  30365. source: "./media/characters/arhan/tongue.svg"
  30366. }
  30367. },
  30368. head: {
  30369. height: math.unit(0.85, "feet"),
  30370. name: "Head",
  30371. image: {
  30372. source: "./media/characters/arhan/head.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(4, "feet"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(5 + 7.5 / 12, "feet"),
  30389. weight: math.unit(120, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/digi-duncan/front.svg",
  30393. extra: 330 / 326,
  30394. bottom: 16 / 346
  30395. }
  30396. },
  30397. side: {
  30398. height: math.unit(5 + 7.5 / 12, "feet"),
  30399. weight: math.unit(120, "lb"),
  30400. name: "Side",
  30401. image: {
  30402. source: "./media/characters/digi-duncan/side.svg",
  30403. extra: 341 / 337,
  30404. bottom: 1 / 342
  30405. }
  30406. },
  30407. back: {
  30408. height: math.unit(5 + 7.5 / 12, "feet"),
  30409. weight: math.unit(120, "lb"),
  30410. name: "Back",
  30411. image: {
  30412. source: "./media/characters/digi-duncan/back.svg",
  30413. extra: 330 / 326,
  30414. bottom: 12 / 342
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Speck",
  30421. height: math.unit(0.25, "mm")
  30422. },
  30423. {
  30424. name: "Micro",
  30425. height: math.unit(5, "mm")
  30426. },
  30427. {
  30428. name: "Tiny",
  30429. height: math.unit(0.5, "inches"),
  30430. default: true
  30431. },
  30432. {
  30433. name: "Human",
  30434. height: math.unit(5 + 7.5 / 12, "feet")
  30435. },
  30436. {
  30437. name: "Minigiant",
  30438. height: math.unit(8 + 5.25, "feet")
  30439. },
  30440. {
  30441. name: "Giant",
  30442. height: math.unit(2000, "feet")
  30443. },
  30444. {
  30445. name: "Mega",
  30446. height: math.unit(371.1, "miles")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(2, "meters"),
  30455. weight: math.unit(350, "kg"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30459. extra: 898 / 838,
  30460. bottom: 9 / 907
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Micro",
  30467. height: math.unit(8, "meters")
  30468. },
  30469. {
  30470. name: "Normal",
  30471. height: math.unit(50, "meters"),
  30472. default: true
  30473. },
  30474. {
  30475. name: "Macro",
  30476. height: math.unit(500, "meters")
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(6 + 6 / 12, "feet"),
  30485. name: "Front",
  30486. image: {
  30487. source: "./media/characters/khardesh/front.svg",
  30488. extra: 1788/1596,
  30489. bottom: 66/1854
  30490. }
  30491. },
  30492. back: {
  30493. height: math.unit(6 + 6 / 12, "feet"),
  30494. name: "Back",
  30495. image: {
  30496. source: "./media/characters/khardesh/back.svg",
  30497. extra: 1781/1584,
  30498. bottom: 68/1849
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Normal",
  30505. height: math.unit(6 + 6 / 12, "feet"),
  30506. default: true
  30507. },
  30508. {
  30509. name: "Normal+",
  30510. height: math.unit(4, "meters")
  30511. },
  30512. {
  30513. name: "Macro",
  30514. height: math.unit(50, "meters")
  30515. },
  30516. {
  30517. name: "Macro+",
  30518. height: math.unit(100, "meters")
  30519. },
  30520. {
  30521. name: "Megamacro",
  30522. height: math.unit(20, "km")
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(6, "feet"),
  30531. weight: math.unit(150, "lb"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/kosho/front.svg",
  30535. extra: 1847 / 1847,
  30536. bottom: 86 / 1933
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Second-stage micro",
  30543. height: math.unit(0.5, "inches")
  30544. },
  30545. {
  30546. name: "First-stage micro",
  30547. height: math.unit(6, "inches")
  30548. },
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(6, "feet"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "First-stage macro",
  30556. height: math.unit(72, "feet")
  30557. },
  30558. {
  30559. name: "Second-stage macro",
  30560. height: math.unit(864, "feet")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30566. {
  30567. normal: {
  30568. height: math.unit(4 + 6 / 12, "feet"),
  30569. name: "Normal",
  30570. image: {
  30571. source: "./media/characters/hydra/normal.svg",
  30572. extra: 2833 / 2634,
  30573. bottom: 68 / 2901
  30574. }
  30575. },
  30576. smol: {
  30577. height: math.unit(0.705, "inches"),
  30578. name: "Smol",
  30579. image: {
  30580. source: "./media/characters/hydra/smol.svg",
  30581. extra: 2715 / 2540,
  30582. bottom: 0 / 2715
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(4 + 6 / 12, "feet"),
  30590. default: true
  30591. }
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(0.6, "cm"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/daz/front.svg",
  30602. extra: 1682 / 1164,
  30603. bottom: 42 / 1724
  30604. }
  30605. },
  30606. },
  30607. [
  30608. {
  30609. name: "Normal",
  30610. height: math.unit(0.6, "cm"),
  30611. default: true
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(6, "feet"),
  30620. weight: math.unit(235, "lb"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/theo-pangolin/front.svg",
  30624. extra: 1996 / 1969,
  30625. bottom: 115 / 2111
  30626. }
  30627. },
  30628. back: {
  30629. height: math.unit(6, "feet"),
  30630. weight: math.unit(235, "lb"),
  30631. name: "Back",
  30632. image: {
  30633. source: "./media/characters/theo-pangolin/back.svg",
  30634. extra: 1979 / 1979,
  30635. bottom: 40 / 2019
  30636. }
  30637. },
  30638. feral: {
  30639. height: math.unit(2, "feet"),
  30640. weight: math.unit(30, "lb"),
  30641. name: "Feral",
  30642. image: {
  30643. source: "./media/characters/theo-pangolin/feral.svg",
  30644. extra: 803 / 791,
  30645. bottom: 181 / 984
  30646. }
  30647. },
  30648. footFive: {
  30649. height: math.unit(1.43, "feet"),
  30650. name: "Foot (Five Toes)",
  30651. image: {
  30652. source: "./media/characters/theo-pangolin/foot-five.svg"
  30653. }
  30654. },
  30655. footFour: {
  30656. height: math.unit(1.43, "feet"),
  30657. name: "Foot (Four Toes)",
  30658. image: {
  30659. source: "./media/characters/theo-pangolin/foot-four.svg"
  30660. }
  30661. },
  30662. handFour: {
  30663. height: math.unit(0.81, "feet"),
  30664. name: "Hand (Four Fingers)",
  30665. image: {
  30666. source: "./media/characters/theo-pangolin/hand-four.svg"
  30667. }
  30668. },
  30669. handThree: {
  30670. height: math.unit(0.81, "feet"),
  30671. name: "Hand (Three Fingers)",
  30672. image: {
  30673. source: "./media/characters/theo-pangolin/hand-three.svg"
  30674. }
  30675. },
  30676. headFront: {
  30677. height: math.unit(1.37, "feet"),
  30678. name: "Head (Front)",
  30679. image: {
  30680. source: "./media/characters/theo-pangolin/head-front.svg"
  30681. }
  30682. },
  30683. headSide: {
  30684. height: math.unit(1.43, "feet"),
  30685. name: "Head (Side)",
  30686. image: {
  30687. source: "./media/characters/theo-pangolin/head-side.svg"
  30688. }
  30689. },
  30690. tongue: {
  30691. height: math.unit(2.29, "feet"),
  30692. name: "Tongue",
  30693. image: {
  30694. source: "./media/characters/theo-pangolin/tongue.svg"
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Normal",
  30701. height: math.unit(6, "feet")
  30702. },
  30703. {
  30704. name: "Macro",
  30705. height: math.unit(400, "feet"),
  30706. default: true
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(6, "inches"),
  30715. weight: math.unit(0.036, "kg"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/renée/front.svg",
  30719. extra: 900 / 886,
  30720. bottom: 8 / 908
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Nano",
  30727. height: math.unit(1, "nm")
  30728. },
  30729. {
  30730. name: "Micro",
  30731. height: math.unit(1, "mm")
  30732. },
  30733. {
  30734. name: "Normal",
  30735. height: math.unit(6, "inches")
  30736. },
  30737. {
  30738. name: "Macro",
  30739. height: math.unit(2000, "feet"),
  30740. default: true
  30741. },
  30742. {
  30743. name: "Megamacro",
  30744. height: math.unit(2, "km")
  30745. },
  30746. {
  30747. name: "Gigamacro",
  30748. height: math.unit(2000, "km")
  30749. },
  30750. {
  30751. name: "Teramacro",
  30752. height: math.unit(250000, "km")
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30758. {
  30759. front: {
  30760. height: math.unit(4, "meters"),
  30761. weight: math.unit(150, "kg"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/caledvwlch/front.svg",
  30765. extra: 1760 / 1551,
  30766. bottom: 28 / 1788
  30767. }
  30768. },
  30769. side: {
  30770. height: math.unit(4, "meters"),
  30771. weight: math.unit(150, "kg"),
  30772. name: "Side",
  30773. image: {
  30774. source: "./media/characters/caledvwlch/side.svg",
  30775. extra: 1605 / 1536,
  30776. bottom: 31 / 1636
  30777. }
  30778. },
  30779. back: {
  30780. height: math.unit(4, "meters"),
  30781. weight: math.unit(150, "kg"),
  30782. name: "Back",
  30783. image: {
  30784. source: "./media/characters/caledvwlch/back.svg",
  30785. extra: 1635 / 1565,
  30786. bottom: 27 / 1662
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "\"Incognito\"",
  30793. height: math.unit(4, "meters")
  30794. },
  30795. {
  30796. name: "Small rampage",
  30797. height: math.unit(600, "meters")
  30798. },
  30799. {
  30800. name: "Mega",
  30801. height: math.unit(30, "km")
  30802. },
  30803. {
  30804. name: "Home-size",
  30805. height: math.unit(50, "km"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Giga",
  30810. height: math.unit(300, "km")
  30811. },
  30812. {
  30813. name: "Lounging",
  30814. height: math.unit(11000, "km")
  30815. },
  30816. {
  30817. name: "Planet snacking",
  30818. height: math.unit(2000000, "km")
  30819. },
  30820. ]
  30821. ))
  30822. characterMakers.push(() => makeCharacter(
  30823. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30824. {
  30825. front: {
  30826. height: math.unit(6, "feet"),
  30827. weight: math.unit(215, "lb"),
  30828. name: "Front",
  30829. image: {
  30830. source: "./media/characters/sapphire-svell/front.svg",
  30831. extra: 495 / 455,
  30832. bottom: 20 / 515
  30833. }
  30834. },
  30835. back: {
  30836. height: math.unit(6, "feet"),
  30837. weight: math.unit(216, "lb"),
  30838. name: "Back",
  30839. image: {
  30840. source: "./media/characters/sapphire-svell/back.svg",
  30841. extra: 497 / 477,
  30842. bottom: 7 / 504
  30843. }
  30844. },
  30845. maw: {
  30846. height: math.unit(1.57, "feet"),
  30847. name: "Maw",
  30848. image: {
  30849. source: "./media/characters/sapphire-svell/maw.svg"
  30850. }
  30851. },
  30852. foot: {
  30853. height: math.unit(1.07, "feet"),
  30854. name: "Foot",
  30855. image: {
  30856. source: "./media/characters/sapphire-svell/foot.svg"
  30857. }
  30858. },
  30859. toering: {
  30860. height: math.unit(1.7, "inch"),
  30861. name: "Toering",
  30862. image: {
  30863. source: "./media/characters/sapphire-svell/toering.svg"
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(300, "feet"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Augmented",
  30875. height: math.unit(1250, "feet")
  30876. },
  30877. {
  30878. name: "Unleashed",
  30879. height: math.unit(3000, "feet")
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30885. {
  30886. side: {
  30887. height: math.unit(2 + 3 / 12, "feet"),
  30888. weight: math.unit(110, "lb"),
  30889. name: "Side",
  30890. image: {
  30891. source: "./media/characters/glitch-flux/side.svg",
  30892. extra: 997 / 805,
  30893. bottom: 20 / 1017
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(2 + 3 / 12, "feet"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(4, "meters"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/mid/front.svg",
  30913. extra: 507 / 476,
  30914. bottom: 17 / 524
  30915. }
  30916. },
  30917. back: {
  30918. height: math.unit(4, "meters"),
  30919. name: "Back",
  30920. image: {
  30921. source: "./media/characters/mid/back.svg",
  30922. extra: 519 / 487,
  30923. bottom: 7 / 526
  30924. }
  30925. },
  30926. stuck: {
  30927. height: math.unit(2.2, "meters"),
  30928. name: "Stuck",
  30929. image: {
  30930. source: "./media/characters/mid/stuck.svg",
  30931. extra: 1951 / 1869,
  30932. bottom: 88 / 2039
  30933. }
  30934. }
  30935. },
  30936. [
  30937. {
  30938. name: "Normal",
  30939. height: math.unit(4, "meters"),
  30940. default: true
  30941. },
  30942. {
  30943. name: "Big",
  30944. height: math.unit(10, "meters")
  30945. },
  30946. {
  30947. name: "Macro",
  30948. height: math.unit(800, "meters")
  30949. },
  30950. {
  30951. name: "Megamacro",
  30952. height: math.unit(100, "km")
  30953. },
  30954. {
  30955. name: "Overgrown",
  30956. height: math.unit(1, "parsec")
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30962. {
  30963. front: {
  30964. height: math.unit(2.5, "meters"),
  30965. weight: math.unit(225, "kg"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/iris/front.svg",
  30969. extra: 3348 / 3251,
  30970. bottom: 205 / 3553
  30971. }
  30972. },
  30973. maw: {
  30974. height: math.unit(0.56, "meter"),
  30975. name: "Maw",
  30976. image: {
  30977. source: "./media/characters/iris/maw.svg"
  30978. }
  30979. },
  30980. },
  30981. [
  30982. {
  30983. name: "Mewter cat",
  30984. height: math.unit(1.2, "meters")
  30985. },
  30986. {
  30987. name: "Minimacro",
  30988. height: math.unit(2.5, "meters"),
  30989. default: true
  30990. },
  30991. {
  30992. name: "Macro",
  30993. height: math.unit(180, "meters")
  30994. },
  30995. {
  30996. name: "Megamacro",
  30997. height: math.unit(2746, "meters")
  30998. },
  30999. ]
  31000. ))
  31001. characterMakers.push(() => makeCharacter(
  31002. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31003. {
  31004. front: {
  31005. height: math.unit(6, "feet"),
  31006. weight: math.unit(135, "lb"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/axel/front.svg",
  31010. extra: 908 / 908,
  31011. bottom: 58 / 966
  31012. }
  31013. },
  31014. side: {
  31015. height: math.unit(6, "feet"),
  31016. weight: math.unit(135, "lb"),
  31017. name: "Side",
  31018. image: {
  31019. source: "./media/characters/axel/side.svg",
  31020. extra: 958 / 958,
  31021. bottom: 11 / 969
  31022. }
  31023. },
  31024. back: {
  31025. height: math.unit(6, "feet"),
  31026. weight: math.unit(135, "lb"),
  31027. name: "Back",
  31028. image: {
  31029. source: "./media/characters/axel/back.svg",
  31030. extra: 887 / 887,
  31031. bottom: 34 / 921
  31032. }
  31033. },
  31034. head: {
  31035. height: math.unit(1.07, "feet"),
  31036. name: "Head",
  31037. image: {
  31038. source: "./media/characters/axel/head.svg"
  31039. }
  31040. },
  31041. beak: {
  31042. height: math.unit(1.4, "feet"),
  31043. name: "Beak",
  31044. image: {
  31045. source: "./media/characters/axel/beak.svg"
  31046. }
  31047. },
  31048. beakSide: {
  31049. height: math.unit(1.4, "feet"),
  31050. name: "Beak Side",
  31051. image: {
  31052. source: "./media/characters/axel/beak-side.svg"
  31053. }
  31054. },
  31055. sheath: {
  31056. height: math.unit(0.5, "feet"),
  31057. name: "Sheath",
  31058. image: {
  31059. source: "./media/characters/axel/sheath.svg"
  31060. }
  31061. },
  31062. dick: {
  31063. height: math.unit(0.98, "feet"),
  31064. name: "Dick",
  31065. image: {
  31066. source: "./media/characters/axel/dick.svg"
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(68, "meters"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(3.5, "meters"),
  31083. weight: math.unit(1200, "kg"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/joanna/front.svg",
  31087. extra: 1596 / 1488,
  31088. bottom: 29 / 1625
  31089. }
  31090. },
  31091. back: {
  31092. height: math.unit(3.5, "meters"),
  31093. weight: math.unit(1200, "kg"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/joanna/back.svg",
  31097. extra: 1594 / 1495,
  31098. bottom: 26 / 1620
  31099. }
  31100. },
  31101. frontShorts: {
  31102. height: math.unit(3.5, "meters"),
  31103. weight: math.unit(1200, "kg"),
  31104. name: "Front (Shorts)",
  31105. image: {
  31106. source: "./media/characters/joanna/front-shorts.svg",
  31107. extra: 1596 / 1488,
  31108. bottom: 29 / 1625
  31109. }
  31110. },
  31111. frontBiker: {
  31112. height: math.unit(3.5, "meters"),
  31113. weight: math.unit(1200, "kg"),
  31114. name: "Front (Biker)",
  31115. image: {
  31116. source: "./media/characters/joanna/front-biker.svg",
  31117. extra: 1596 / 1488,
  31118. bottom: 29 / 1625
  31119. }
  31120. },
  31121. backBiker: {
  31122. height: math.unit(3.5, "meters"),
  31123. weight: math.unit(1200, "kg"),
  31124. name: "Back (Biker)",
  31125. image: {
  31126. source: "./media/characters/joanna/back-biker.svg",
  31127. extra: 1594 / 1495,
  31128. bottom: 88 / 1682
  31129. }
  31130. },
  31131. bikeLeft: {
  31132. height: math.unit(2.4, "meters"),
  31133. weight: math.unit(1600, "kg"),
  31134. name: "Bike (Left)",
  31135. image: {
  31136. source: "./media/characters/joanna/bike-left.svg",
  31137. extra: 720 / 720,
  31138. bottom: 8 / 728
  31139. }
  31140. },
  31141. bikeRight: {
  31142. height: math.unit(2.4, "meters"),
  31143. weight: math.unit(1600, "kg"),
  31144. name: "Bike (Right)",
  31145. image: {
  31146. source: "./media/characters/joanna/bike-right.svg",
  31147. extra: 720 / 720,
  31148. bottom: 8 / 728
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Incognito",
  31155. height: math.unit(3.5, "meters")
  31156. },
  31157. {
  31158. name: "Casual Big",
  31159. height: math.unit(200, "meters")
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(600, "meters")
  31164. },
  31165. {
  31166. name: "Original",
  31167. height: math.unit(20, "km"),
  31168. default: true
  31169. },
  31170. {
  31171. name: "Giga",
  31172. height: math.unit(400, "km")
  31173. },
  31174. {
  31175. name: "Lounging",
  31176. height: math.unit(1500, "km")
  31177. },
  31178. {
  31179. name: "Planetary",
  31180. height: math.unit(200000, "km")
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(6, "feet"),
  31189. weight: math.unit(150, "lb"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/hugo-sigil/front.svg",
  31193. extra: 522 / 500,
  31194. bottom: 2 / 524
  31195. }
  31196. },
  31197. back: {
  31198. height: math.unit(6, "feet"),
  31199. weight: math.unit(150, "lb"),
  31200. name: "Back",
  31201. image: {
  31202. source: "./media/characters/hugo-sigil/back.svg",
  31203. extra: 519 / 495,
  31204. bottom: 5 / 524
  31205. }
  31206. },
  31207. maw: {
  31208. height: math.unit(1.4, "feet"),
  31209. weight: math.unit(150, "lb"),
  31210. name: "Maw",
  31211. image: {
  31212. source: "./media/characters/hugo-sigil/maw.svg"
  31213. }
  31214. },
  31215. feet: {
  31216. height: math.unit(1.56, "feet"),
  31217. weight: math.unit(150, "lb"),
  31218. name: "Feet",
  31219. image: {
  31220. source: "./media/characters/hugo-sigil/feet.svg",
  31221. extra: 177 / 177,
  31222. bottom: 12 / 189
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(6, "feet")
  31230. },
  31231. {
  31232. name: "Macro",
  31233. height: math.unit(200, "feet"),
  31234. default: true
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/peri/front.svg",
  31247. extra: 2354 / 2233,
  31248. bottom: 49 / 2403
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Really Small",
  31255. height: math.unit(1, "nm")
  31256. },
  31257. {
  31258. name: "Micro",
  31259. height: math.unit(4, "inches")
  31260. },
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(7, "inches"),
  31264. default: true
  31265. },
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(400, "feet")
  31269. },
  31270. {
  31271. name: "Megamacro",
  31272. height: math.unit(100, "miles")
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31278. {
  31279. frontSlim: {
  31280. height: math.unit(7, "feet"),
  31281. name: "Front (Slim)",
  31282. image: {
  31283. source: "./media/characters/issilora/front-slim.svg",
  31284. extra: 529 / 449,
  31285. bottom: 53 / 582
  31286. }
  31287. },
  31288. sideSlim: {
  31289. height: math.unit(7, "feet"),
  31290. name: "Side (Slim)",
  31291. image: {
  31292. source: "./media/characters/issilora/side-slim.svg",
  31293. extra: 570 / 480,
  31294. bottom: 30 / 600
  31295. }
  31296. },
  31297. backSlim: {
  31298. height: math.unit(7, "feet"),
  31299. name: "Back (Slim)",
  31300. image: {
  31301. source: "./media/characters/issilora/back-slim.svg",
  31302. extra: 537 / 455,
  31303. bottom: 46 / 583
  31304. }
  31305. },
  31306. frontBuff: {
  31307. height: math.unit(7, "feet"),
  31308. name: "Front (Buff)",
  31309. image: {
  31310. source: "./media/characters/issilora/front-buff.svg",
  31311. extra: 2310 / 2035,
  31312. bottom: 335 / 2645
  31313. }
  31314. },
  31315. head: {
  31316. height: math.unit(1.94, "feet"),
  31317. name: "Head",
  31318. image: {
  31319. source: "./media/characters/issilora/head.svg"
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Minimum",
  31326. height: math.unit(7, "feet")
  31327. },
  31328. {
  31329. name: "Comfortable",
  31330. height: math.unit(17, "feet")
  31331. },
  31332. {
  31333. name: "Fun Size",
  31334. height: math.unit(47, "feet")
  31335. },
  31336. {
  31337. name: "Natural Macro",
  31338. height: math.unit(137, "feet"),
  31339. default: true
  31340. },
  31341. {
  31342. name: "Maximum Kaiju",
  31343. height: math.unit(397, "feet")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31349. {
  31350. front: {
  31351. height: math.unit(50 + 9/12, "feet"),
  31352. weight: math.unit(32.8, "tons"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/irb'iiritaahn/front.svg",
  31356. extra: 1878/1826,
  31357. bottom: 326/2204
  31358. }
  31359. },
  31360. back: {
  31361. height: math.unit(50 + 9/12, "feet"),
  31362. weight: math.unit(32.8, "tons"),
  31363. name: "Back",
  31364. image: {
  31365. source: "./media/characters/irb'iiritaahn/back.svg",
  31366. extra: 2052/2018,
  31367. bottom: 152/2204
  31368. }
  31369. },
  31370. head: {
  31371. height: math.unit(12.86, "feet"),
  31372. name: "Head",
  31373. image: {
  31374. source: "./media/characters/irb'iiritaahn/head.svg"
  31375. }
  31376. },
  31377. maw: {
  31378. height: math.unit(9.66, "feet"),
  31379. name: "Maw",
  31380. image: {
  31381. source: "./media/characters/irb'iiritaahn/maw.svg"
  31382. }
  31383. },
  31384. frontDick: {
  31385. height: math.unit(8.78461, "feet"),
  31386. name: "Front Dick",
  31387. image: {
  31388. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31389. }
  31390. },
  31391. rearDick: {
  31392. height: math.unit(8.78461, "feet"),
  31393. name: "Rear Dick",
  31394. image: {
  31395. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31396. }
  31397. },
  31398. rearDickUnfolded: {
  31399. height: math.unit(8.78, "feet"),
  31400. name: "Rear Dick (Unfolded)",
  31401. image: {
  31402. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31403. }
  31404. },
  31405. wings: {
  31406. height: math.unit(43, "feet"),
  31407. name: "Wings",
  31408. image: {
  31409. source: "./media/characters/irb'iiritaahn/wings.svg"
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Macro",
  31416. height: math.unit(50 + 9/12, "feet"),
  31417. default: true
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(205, "cm"),
  31426. weight: math.unit(102, "kg"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/irbisgreif/front.svg",
  31430. extra: 785/706,
  31431. bottom: 13/798
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(205, "cm"),
  31436. weight: math.unit(102, "kg"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/irbisgreif/back.svg",
  31440. extra: 713/701,
  31441. bottom: 26/739
  31442. }
  31443. },
  31444. frontDressed: {
  31445. height: math.unit(216, "cm"),
  31446. weight: math.unit(102, "kg"),
  31447. name: "Front-dressed",
  31448. image: {
  31449. source: "./media/characters/irbisgreif/front-dressed.svg",
  31450. extra: 902/776,
  31451. bottom: 14/916
  31452. }
  31453. },
  31454. sideDressed: {
  31455. height: math.unit(195, "cm"),
  31456. weight: math.unit(102, "kg"),
  31457. name: "Side-dressed",
  31458. image: {
  31459. source: "./media/characters/irbisgreif/side-dressed.svg",
  31460. extra: 788/688,
  31461. bottom: 21/809
  31462. }
  31463. },
  31464. backDressed: {
  31465. height: math.unit(216, "cm"),
  31466. weight: math.unit(102, "kg"),
  31467. name: "Back-dressed",
  31468. image: {
  31469. source: "./media/characters/irbisgreif/back-dressed.svg",
  31470. extra: 901/783,
  31471. bottom: 10/911
  31472. }
  31473. },
  31474. dick: {
  31475. height: math.unit(0.49, "feet"),
  31476. name: "Dick",
  31477. image: {
  31478. source: "./media/characters/irbisgreif/dick.svg"
  31479. }
  31480. },
  31481. wingTop: {
  31482. height: math.unit(1.93 , "feet"),
  31483. name: "Wing-top",
  31484. image: {
  31485. source: "./media/characters/irbisgreif/wing-top.svg"
  31486. }
  31487. },
  31488. wingBottom: {
  31489. height: math.unit(1.93 , "feet"),
  31490. name: "Wing-bottom",
  31491. image: {
  31492. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(216, "cm"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(6, "feet"),
  31509. weight: math.unit(150, "lb"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/pride/front.svg",
  31513. extra: 1299/1230,
  31514. bottom: 18/1317
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(7, "feet")
  31522. },
  31523. {
  31524. name: "Mini-macro",
  31525. height: math.unit(11, "feet")
  31526. },
  31527. {
  31528. name: "Macro",
  31529. height: math.unit(15, "meters"),
  31530. default: true
  31531. },
  31532. {
  31533. name: "Macro+",
  31534. height: math.unit(40, "meters")
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31540. {
  31541. front: {
  31542. height: math.unit(4 + 2 / 12, "feet"),
  31543. weight: math.unit(95, "lb"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/vaelophis-nyx/front.svg",
  31547. extra: 2532/2330,
  31548. bottom: 0/2532
  31549. }
  31550. },
  31551. back: {
  31552. height: math.unit(4 + 2 / 12, "feet"),
  31553. weight: math.unit(95, "lb"),
  31554. name: "Back",
  31555. image: {
  31556. source: "./media/characters/vaelophis-nyx/back.svg",
  31557. extra: 2484/2361,
  31558. bottom: 0/2484
  31559. }
  31560. },
  31561. feralSide: {
  31562. height: math.unit(2 + 1/12, "feet"),
  31563. weight: math.unit(20, "lb"),
  31564. name: "Feral (Side)",
  31565. image: {
  31566. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31567. extra: 1721/1581,
  31568. bottom: 70/1791
  31569. }
  31570. },
  31571. feralLazing: {
  31572. height: math.unit(1.08, "feet"),
  31573. weight: math.unit(20, "lb"),
  31574. name: "Feral (Lazing)",
  31575. image: {
  31576. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31577. extra: 822/822,
  31578. bottom: 248/1070
  31579. }
  31580. },
  31581. ear: {
  31582. height: math.unit(0.416, "feet"),
  31583. name: "Ear",
  31584. image: {
  31585. source: "./media/characters/vaelophis-nyx/ear.svg"
  31586. }
  31587. },
  31588. eye: {
  31589. height: math.unit(0.0748, "feet"),
  31590. name: "Eye",
  31591. image: {
  31592. source: "./media/characters/vaelophis-nyx/eye.svg"
  31593. }
  31594. },
  31595. mouth: {
  31596. height: math.unit(0.378, "feet"),
  31597. name: "Mouth",
  31598. image: {
  31599. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31600. }
  31601. },
  31602. spade: {
  31603. height: math.unit(0.55, "feet"),
  31604. name: "Spade",
  31605. image: {
  31606. source: "./media/characters/vaelophis-nyx/spade.svg"
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Normal",
  31613. height: math.unit(4 + 2/12, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31620. {
  31621. front: {
  31622. height: math.unit(7, "feet"),
  31623. weight: math.unit(231, "lb"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/flux/front.svg",
  31627. extra: 919/871,
  31628. bottom: 0/919
  31629. }
  31630. },
  31631. back: {
  31632. height: math.unit(7, "feet"),
  31633. weight: math.unit(231, "lb"),
  31634. name: "Back",
  31635. image: {
  31636. source: "./media/characters/flux/back.svg",
  31637. extra: 1040/992,
  31638. bottom: 0/1040
  31639. }
  31640. },
  31641. frontDressed: {
  31642. height: math.unit(7, "feet"),
  31643. weight: math.unit(231, "lb"),
  31644. name: "Front (Dressed)",
  31645. image: {
  31646. source: "./media/characters/flux/front-dressed.svg",
  31647. extra: 919/871,
  31648. bottom: 0/919
  31649. }
  31650. },
  31651. feralSide: {
  31652. height: math.unit(5, "feet"),
  31653. weight: math.unit(150, "lb"),
  31654. name: "Feral (Side)",
  31655. image: {
  31656. source: "./media/characters/flux/feral-side.svg",
  31657. extra: 598/528,
  31658. bottom: 28/626
  31659. }
  31660. },
  31661. head: {
  31662. height: math.unit(1.585, "feet"),
  31663. name: "Head",
  31664. image: {
  31665. source: "./media/characters/flux/head.svg"
  31666. }
  31667. },
  31668. headSide: {
  31669. height: math.unit(1.74, "feet"),
  31670. name: "Head (Side)",
  31671. image: {
  31672. source: "./media/characters/flux/head-side.svg"
  31673. }
  31674. },
  31675. headSideFire: {
  31676. height: math.unit(1.76, "feet"),
  31677. name: "Head (Side, Fire)",
  31678. image: {
  31679. source: "./media/characters/flux/head-side-fire.svg"
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(7, "feet"),
  31687. default: true
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31693. {
  31694. front: {
  31695. height: math.unit(9, "feet"),
  31696. weight: math.unit(1012, "lb"),
  31697. name: "Front",
  31698. image: {
  31699. source: "./media/characters/ulfra-lupae/front.svg",
  31700. extra: 1083/1011,
  31701. bottom: 67/1150
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Micro",
  31708. height: math.unit(6, "inches")
  31709. },
  31710. {
  31711. name: "Socializing",
  31712. height: math.unit(6 + 5/12, "feet")
  31713. },
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(9, "feet"),
  31717. default: true
  31718. },
  31719. {
  31720. name: "Macro",
  31721. height: math.unit(150, "feet")
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(5 + 2/12, "feet"),
  31730. weight: math.unit(120, "lb"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/timber/front.svg",
  31734. extra: 2814/2705,
  31735. bottom: 181/2995
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(5 + 2/12, "feet"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(5 + 7/12, "feet"),
  31752. weight: math.unit(220, "lb"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/nicki/front.svg",
  31756. extra: 453/419,
  31757. bottom: 7/460
  31758. }
  31759. },
  31760. frontAlt: {
  31761. height: math.unit(5 + 7/12, "feet"),
  31762. weight: math.unit(220, "lb"),
  31763. name: "Front-alt",
  31764. image: {
  31765. source: "./media/characters/nicki/front-alt.svg",
  31766. extra: 435/411,
  31767. bottom: 12/447
  31768. }
  31769. },
  31770. back: {
  31771. height: math.unit(5 + 7/12, "feet"),
  31772. weight: math.unit(220, "lb"),
  31773. name: "Back",
  31774. image: {
  31775. source: "./media/characters/nicki/back.svg",
  31776. extra: 440/413,
  31777. bottom: 19/459
  31778. }
  31779. },
  31780. taur: {
  31781. height: math.unit(7 + 6/12, "feet"),
  31782. weight: math.unit(700, "lb"),
  31783. name: "Taur",
  31784. image: {
  31785. source: "./media/characters/nicki/taur.svg",
  31786. extra: 975/773,
  31787. bottom: 0/975
  31788. }
  31789. },
  31790. frontNsfw: {
  31791. height: math.unit(5 + 7/12, "feet"),
  31792. weight: math.unit(220, "lb"),
  31793. name: "Front (NSFW)",
  31794. image: {
  31795. source: "./media/characters/nicki/front-nsfw.svg",
  31796. extra: 453/419,
  31797. bottom: 7/460
  31798. }
  31799. },
  31800. frontNsfwAlt: {
  31801. height: math.unit(5 + 7/12, "feet"),
  31802. weight: math.unit(220, "lb"),
  31803. name: "Front (Alt, NSFW)",
  31804. image: {
  31805. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31806. extra: 435/411,
  31807. bottom: 12/447
  31808. }
  31809. },
  31810. backNsfw: {
  31811. height: math.unit(5 + 7/12, "feet"),
  31812. weight: math.unit(220, "lb"),
  31813. name: "Back (NSFW)",
  31814. image: {
  31815. source: "./media/characters/nicki/back-nsfw.svg",
  31816. extra: 440/413,
  31817. bottom: 19/459
  31818. }
  31819. },
  31820. head: {
  31821. height: math.unit(2.1, "feet"),
  31822. name: "Head",
  31823. image: {
  31824. source: "./media/characters/nicki/head.svg"
  31825. }
  31826. },
  31827. paw: {
  31828. height: math.unit(1.88, "feet"),
  31829. name: "Paw",
  31830. image: {
  31831. source: "./media/characters/nicki/paw.svg"
  31832. }
  31833. },
  31834. },
  31835. [
  31836. {
  31837. name: "Normal",
  31838. height: math.unit(5 + 7/12, "feet"),
  31839. default: true
  31840. },
  31841. ]
  31842. ))
  31843. characterMakers.push(() => makeCharacter(
  31844. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31845. {
  31846. front: {
  31847. height: math.unit(7 + 10/12, "feet"),
  31848. weight: math.unit(3.5, "tons"),
  31849. name: "Front",
  31850. image: {
  31851. source: "./media/characters/lee/front.svg",
  31852. extra: 1773/1615,
  31853. bottom: 86/1859
  31854. }
  31855. },
  31856. hand: {
  31857. height: math.unit(1.78, "feet"),
  31858. name: "Hand",
  31859. image: {
  31860. source: "./media/characters/lee/hand.svg"
  31861. }
  31862. },
  31863. maw: {
  31864. height: math.unit(1.18, "feet"),
  31865. name: "Maw",
  31866. image: {
  31867. source: "./media/characters/lee/maw.svg"
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(7 + 10/12, "feet"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31881. {
  31882. front: {
  31883. height: math.unit(9, "feet"),
  31884. name: "Front",
  31885. image: {
  31886. source: "./media/characters/guti/front.svg",
  31887. extra: 4551/4355,
  31888. bottom: 123/4674
  31889. }
  31890. },
  31891. tongue: {
  31892. height: math.unit(1, "feet"),
  31893. name: "Tongue",
  31894. image: {
  31895. source: "./media/characters/guti/tongue.svg"
  31896. }
  31897. },
  31898. paw: {
  31899. height: math.unit(1.18, "feet"),
  31900. name: "Paw",
  31901. image: {
  31902. source: "./media/characters/guti/paw.svg"
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(9, "feet"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31916. {
  31917. side: {
  31918. height: math.unit(5, "meters"),
  31919. name: "Side",
  31920. image: {
  31921. source: "./media/characters/vesper/side.svg",
  31922. extra: 1605/1518,
  31923. bottom: 0/1605
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Small",
  31930. height: math.unit(5, "meters")
  31931. },
  31932. {
  31933. name: "Sage",
  31934. height: math.unit(100, "meters"),
  31935. default: true
  31936. },
  31937. {
  31938. name: "Fun Size",
  31939. height: math.unit(600, "meters")
  31940. },
  31941. {
  31942. name: "Goddess",
  31943. height: math.unit(20000, "km")
  31944. },
  31945. {
  31946. name: "Maximum",
  31947. height: math.unit(5, "galaxies")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(6 + 3/12, "feet"),
  31956. weight: math.unit(190, "lb"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/gawain/front.svg",
  31960. extra: 2222/2139,
  31961. bottom: 90/2312
  31962. }
  31963. },
  31964. back: {
  31965. height: math.unit(6 + 3/12, "feet"),
  31966. weight: math.unit(190, "lb"),
  31967. name: "Back",
  31968. image: {
  31969. source: "./media/characters/gawain/back.svg",
  31970. extra: 2199/2111,
  31971. bottom: 73/2272
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(6 + 3/12, "feet"),
  31979. default: true
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31985. {
  31986. side: {
  31987. height: math.unit(3.5, "meters"),
  31988. weight: math.unit(16000, "lb"),
  31989. name: "Side",
  31990. image: {
  31991. source: "./media/characters/dascalti/side.svg",
  31992. extra: 392/273,
  31993. bottom: 47/439
  31994. }
  31995. },
  31996. breath: {
  31997. height: math.unit(7.4, "feet"),
  31998. name: "Breath",
  31999. image: {
  32000. source: "./media/characters/dascalti/breath.svg"
  32001. }
  32002. },
  32003. fed: {
  32004. height: math.unit(3.6, "meters"),
  32005. weight: math.unit(16000, "lb"),
  32006. name: "Fed",
  32007. image: {
  32008. source: "./media/characters/dascalti/fed.svg",
  32009. extra: 1419/820,
  32010. bottom: 95/1514
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Normal",
  32017. height: math.unit(3.5, "meters"),
  32018. default: true
  32019. },
  32020. ]
  32021. ))
  32022. characterMakers.push(() => makeCharacter(
  32023. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32024. {
  32025. front: {
  32026. height: math.unit(3 + 5/12, "feet"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/mauve/front.svg",
  32030. extra: 1126/1033,
  32031. bottom: 65/1191
  32032. }
  32033. },
  32034. side: {
  32035. height: math.unit(3 + 5/12, "feet"),
  32036. name: "Side",
  32037. image: {
  32038. source: "./media/characters/mauve/side.svg",
  32039. extra: 1089/1001,
  32040. bottom: 29/1118
  32041. }
  32042. },
  32043. back: {
  32044. height: math.unit(3 + 5/12, "feet"),
  32045. name: "Back",
  32046. image: {
  32047. source: "./media/characters/mauve/back.svg",
  32048. extra: 1173/1053,
  32049. bottom: 109/1282
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(3 + 5/12, "feet"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(6 + 3/12, "feet"),
  32066. weight: math.unit(430, "lb"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/carlos/front.svg",
  32070. extra: 1964/1913,
  32071. bottom: 70/2034
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(6 + 3/12, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32085. {
  32086. back: {
  32087. height: math.unit(5 + 10/12, "feet"),
  32088. weight: math.unit(200, "lb"),
  32089. name: "Back",
  32090. image: {
  32091. source: "./media/characters/jax/back.svg",
  32092. extra: 764/739,
  32093. bottom: 25/789
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(5 + 10/12, "feet"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(8, "feet"),
  32110. weight: math.unit(250, "lb"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/eikthynir/front.svg",
  32114. extra: 1332/1166,
  32115. bottom: 82/1414
  32116. }
  32117. },
  32118. back: {
  32119. height: math.unit(8, "feet"),
  32120. weight: math.unit(250, "lb"),
  32121. name: "Back",
  32122. image: {
  32123. source: "./media/characters/eikthynir/back.svg",
  32124. extra: 1342/1190,
  32125. bottom: 19/1361
  32126. }
  32127. },
  32128. dick: {
  32129. height: math.unit(2.35, "feet"),
  32130. name: "Dick",
  32131. image: {
  32132. source: "./media/characters/eikthynir/dick.svg"
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Normal",
  32139. height: math.unit(8, "feet"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(99, "meters"),
  32149. weight: math.unit(13000, "tons"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/zlmos/front.svg",
  32153. extra: 2202/1992,
  32154. bottom: 315/2517
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Macro",
  32161. height: math.unit(99, "meters"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(6 + 5/12, "feet"),
  32171. name: "Front",
  32172. image: {
  32173. source: "./media/characters/purri/front.svg",
  32174. extra: 1698/1610,
  32175. bottom: 32/1730
  32176. }
  32177. },
  32178. frontAlt: {
  32179. height: math.unit(6 + 5/12, "feet"),
  32180. name: "Front (Alt)",
  32181. image: {
  32182. source: "./media/characters/purri/front-alt.svg",
  32183. extra: 450/420,
  32184. bottom: 26/476
  32185. }
  32186. },
  32187. boots: {
  32188. height: math.unit(5.5, "feet"),
  32189. name: "Boots",
  32190. image: {
  32191. source: "./media/characters/purri/boots.svg",
  32192. extra: 905/853,
  32193. bottom: 18/923
  32194. }
  32195. },
  32196. lying: {
  32197. height: math.unit(2, "feet"),
  32198. name: "Lying",
  32199. image: {
  32200. source: "./media/characters/purri/lying.svg",
  32201. extra: 940/843,
  32202. bottom: 146/1086
  32203. }
  32204. },
  32205. devious: {
  32206. height: math.unit(1.77, "feet"),
  32207. name: "Devious",
  32208. image: {
  32209. source: "./media/characters/purri/devious.svg",
  32210. extra: 1440/1155,
  32211. bottom: 147/1587
  32212. }
  32213. },
  32214. bean: {
  32215. height: math.unit(1.94, "feet"),
  32216. name: "Bean",
  32217. image: {
  32218. source: "./media/characters/purri/bean.svg"
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Micro",
  32225. height: math.unit(1, "mm")
  32226. },
  32227. {
  32228. name: "Normal",
  32229. height: math.unit(6 + 5/12, "feet"),
  32230. default: true
  32231. },
  32232. {
  32233. name: "Macro :3c",
  32234. height: math.unit(2, "miles")
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32240. {
  32241. front: {
  32242. height: math.unit(6 + 2/12, "feet"),
  32243. weight: math.unit(250, "lb"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/moonlight/front.svg",
  32247. extra: 1044/908,
  32248. bottom: 56/1100
  32249. }
  32250. },
  32251. feral: {
  32252. height: math.unit(3 + 1/12, "feet"),
  32253. weight: math.unit(50, "kg"),
  32254. name: "Feral",
  32255. image: {
  32256. source: "./media/characters/moonlight/feral.svg",
  32257. extra: 3705/2791,
  32258. bottom: 145/3850
  32259. }
  32260. },
  32261. paw: {
  32262. height: math.unit(1, "feet"),
  32263. name: "Paw",
  32264. image: {
  32265. source: "./media/characters/moonlight/paw.svg"
  32266. }
  32267. },
  32268. paws: {
  32269. height: math.unit(0.98, "feet"),
  32270. name: "Paws",
  32271. image: {
  32272. source: "./media/characters/moonlight/paws.svg",
  32273. extra: 939/939,
  32274. bottom: 50/989
  32275. }
  32276. },
  32277. mouth: {
  32278. height: math.unit(0.48, "feet"),
  32279. name: "Mouth",
  32280. image: {
  32281. source: "./media/characters/moonlight/mouth.svg"
  32282. }
  32283. },
  32284. dick: {
  32285. height: math.unit(1.46, "feet"),
  32286. name: "Dick",
  32287. image: {
  32288. source: "./media/characters/moonlight/dick.svg"
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(6 + 2/12, "feet"),
  32296. default: true
  32297. },
  32298. {
  32299. name: "Macro",
  32300. height: math.unit(300, "feet")
  32301. },
  32302. {
  32303. name: "Macro+",
  32304. height: math.unit(1, "mile")
  32305. },
  32306. {
  32307. name: "Mt. Moon",
  32308. height: math.unit(5, "miles")
  32309. },
  32310. {
  32311. name: "Megamacro",
  32312. height: math.unit(15, "miles")
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32318. {
  32319. back: {
  32320. height: math.unit(6, "feet"),
  32321. weight: math.unit(150, "lb"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/sylen/back.svg",
  32325. extra: 1335/1273,
  32326. bottom: 107/1442
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(5 + 5/12, "feet")
  32334. },
  32335. {
  32336. name: "Megamacro",
  32337. height: math.unit(3, "miles"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(6, "feet"),
  32347. weight: math.unit(190, "lb"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/huttser/front.svg",
  32351. extra: 1152/1058,
  32352. bottom: 23/1175
  32353. }
  32354. },
  32355. side: {
  32356. height: math.unit(6, "feet"),
  32357. weight: math.unit(190, "lb"),
  32358. name: "Side",
  32359. image: {
  32360. source: "./media/characters/huttser/side.svg",
  32361. extra: 1174/1065,
  32362. bottom: 18/1192
  32363. }
  32364. },
  32365. back: {
  32366. height: math.unit(6, "feet"),
  32367. weight: math.unit(190, "lb"),
  32368. name: "Back",
  32369. image: {
  32370. source: "./media/characters/huttser/back.svg",
  32371. extra: 1158/1056,
  32372. bottom: 12/1170
  32373. }
  32374. },
  32375. },
  32376. [
  32377. ]
  32378. ))
  32379. characterMakers.push(() => makeCharacter(
  32380. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32381. {
  32382. side: {
  32383. height: math.unit(12 + 9/12, "feet"),
  32384. weight: math.unit(15000, "lb"),
  32385. name: "Side",
  32386. image: {
  32387. source: "./media/characters/faan/side.svg",
  32388. extra: 2747/2697,
  32389. bottom: 0/2747
  32390. }
  32391. },
  32392. front: {
  32393. height: math.unit(12 + 9/12, "feet"),
  32394. weight: math.unit(15000, "lb"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/faan/front.svg",
  32398. extra: 607/571,
  32399. bottom: 24/631
  32400. }
  32401. },
  32402. head: {
  32403. height: math.unit(2.85, "feet"),
  32404. name: "Head",
  32405. image: {
  32406. source: "./media/characters/faan/head.svg"
  32407. }
  32408. },
  32409. headAlt: {
  32410. height: math.unit(3.13, "feet"),
  32411. name: "Head-alt",
  32412. image: {
  32413. source: "./media/characters/faan/head-alt.svg"
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(12 + 9/12, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(6, "feet"),
  32430. weight: math.unit(300, "lb"),
  32431. name: "Front",
  32432. image: {
  32433. source: "./media/characters/tanio/front.svg",
  32434. extra: 711/673,
  32435. bottom: 25/736
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(6, "feet"),
  32443. default: true
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32449. {
  32450. front: {
  32451. height: math.unit(3, "inches"),
  32452. name: "Front",
  32453. image: {
  32454. source: "./media/characters/noboru/front.svg",
  32455. extra: 1039/932,
  32456. bottom: 18/1057
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Micro",
  32463. height: math.unit(3, "inches"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(1.85, "meters"),
  32473. weight: math.unit(80, "kg"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/daniel-barrett/front.svg",
  32477. extra: 355/337,
  32478. bottom: 9/364
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Pico",
  32485. height: math.unit(0.0433, "mm")
  32486. },
  32487. {
  32488. name: "Nano",
  32489. height: math.unit(1.5, "mm")
  32490. },
  32491. {
  32492. name: "Micro",
  32493. height: math.unit(5.3, "cm"),
  32494. default: true
  32495. },
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(1.85, "meters")
  32499. },
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(64.7, "meters")
  32503. },
  32504. {
  32505. name: "Megamacro",
  32506. height: math.unit(2.26, "km")
  32507. },
  32508. {
  32509. name: "Gigamacro",
  32510. height: math.unit(79, "km")
  32511. },
  32512. {
  32513. name: "Teramacro",
  32514. height: math.unit(2765, "km")
  32515. },
  32516. {
  32517. name: "Petamacro",
  32518. height: math.unit(96678, "km")
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32524. {
  32525. front: {
  32526. height: math.unit(30, "meters"),
  32527. weight: math.unit(400, "tons"),
  32528. name: "Front",
  32529. image: {
  32530. source: "./media/characters/zeel/front.svg",
  32531. extra: 2599/2599,
  32532. bottom: 226/2825
  32533. }
  32534. },
  32535. },
  32536. [
  32537. {
  32538. name: "Macro",
  32539. height: math.unit(30, "meters"),
  32540. default: true
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32546. {
  32547. front: {
  32548. height: math.unit(6 + 7/12, "feet"),
  32549. weight: math.unit(210, "lb"),
  32550. name: "Front",
  32551. image: {
  32552. source: "./media/characters/tarn/front.svg",
  32553. extra: 3517/3220,
  32554. bottom: 91/3608
  32555. }
  32556. },
  32557. back: {
  32558. height: math.unit(6 + 7/12, "feet"),
  32559. weight: math.unit(210, "lb"),
  32560. name: "Back",
  32561. image: {
  32562. source: "./media/characters/tarn/back.svg",
  32563. extra: 3566/3241,
  32564. bottom: 34/3600
  32565. }
  32566. },
  32567. dick: {
  32568. height: math.unit(1.65, "feet"),
  32569. name: "Dick",
  32570. image: {
  32571. source: "./media/characters/tarn/dick.svg"
  32572. }
  32573. },
  32574. paw: {
  32575. height: math.unit(1.80, "feet"),
  32576. name: "Paw",
  32577. image: {
  32578. source: "./media/characters/tarn/paw.svg"
  32579. }
  32580. },
  32581. tongue: {
  32582. height: math.unit(0.97, "feet"),
  32583. name: "Tongue",
  32584. image: {
  32585. source: "./media/characters/tarn/tongue.svg"
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Micro",
  32592. height: math.unit(4, "inches")
  32593. },
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(6 + 7/12, "feet"),
  32597. default: true
  32598. },
  32599. {
  32600. name: "Macro",
  32601. height: math.unit(300, "feet")
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32607. {
  32608. front: {
  32609. height: math.unit(5 + 7/12, "feet"),
  32610. weight: math.unit(80, "kg"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32614. extra: 3023/2865,
  32615. bottom: 33/3056
  32616. }
  32617. },
  32618. back: {
  32619. height: math.unit(5 + 7/12, "feet"),
  32620. weight: math.unit(80, "kg"),
  32621. name: "Back",
  32622. image: {
  32623. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32624. extra: 3020/2886,
  32625. bottom: 30/3050
  32626. }
  32627. },
  32628. dick: {
  32629. height: math.unit(0.98, "feet"),
  32630. name: "Dick",
  32631. image: {
  32632. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32633. }
  32634. },
  32635. anatomy: {
  32636. height: math.unit(2.86, "feet"),
  32637. name: "Anatomy",
  32638. image: {
  32639. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Really Small",
  32646. height: math.unit(2, "inches")
  32647. },
  32648. {
  32649. name: "Micro",
  32650. height: math.unit(5.583, "inches")
  32651. },
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(5 + 7/12, "feet"),
  32655. default: true
  32656. },
  32657. {
  32658. name: "Macro",
  32659. height: math.unit(67, "feet")
  32660. },
  32661. {
  32662. name: "Megamacro",
  32663. height: math.unit(134, "feet")
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(9, "feet"),
  32672. weight: math.unit(120, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/sally/front.svg",
  32676. extra: 1506/1349,
  32677. bottom: 66/1572
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(9, "feet"),
  32685. default: true
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32691. {
  32692. front: {
  32693. height: math.unit(8, "feet"),
  32694. weight: math.unit(900, "lb"),
  32695. name: "Front",
  32696. image: {
  32697. source: "./media/characters/owen/front.svg",
  32698. extra: 1761/1657,
  32699. bottom: 74/1835
  32700. }
  32701. },
  32702. side: {
  32703. height: math.unit(8, "feet"),
  32704. weight: math.unit(900, "lb"),
  32705. name: "Side",
  32706. image: {
  32707. source: "./media/characters/owen/side.svg",
  32708. extra: 1797/1734,
  32709. bottom: 30/1827
  32710. }
  32711. },
  32712. back: {
  32713. height: math.unit(8, "feet"),
  32714. weight: math.unit(900, "lb"),
  32715. name: "Back",
  32716. image: {
  32717. source: "./media/characters/owen/back.svg",
  32718. extra: 1796/1706,
  32719. bottom: 59/1855
  32720. }
  32721. },
  32722. maw: {
  32723. height: math.unit(1.76, "feet"),
  32724. name: "Maw",
  32725. image: {
  32726. source: "./media/characters/owen/maw.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(8, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32740. {
  32741. front: {
  32742. height: math.unit(4, "feet"),
  32743. weight: math.unit(400, "lb"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/ryth/front.svg",
  32747. extra: 1920/1748,
  32748. bottom: 42/1962
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(4, "feet"),
  32753. weight: math.unit(400, "lb"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/ryth/back.svg",
  32757. extra: 1897/1690,
  32758. bottom: 89/1986
  32759. }
  32760. },
  32761. mouth: {
  32762. height: math.unit(1.39, "feet"),
  32763. name: "Mouth",
  32764. image: {
  32765. source: "./media/characters/ryth/mouth.svg"
  32766. }
  32767. },
  32768. tailmaw: {
  32769. height: math.unit(1.23, "feet"),
  32770. name: "Tailmaw",
  32771. image: {
  32772. source: "./media/characters/ryth/tailmaw.svg"
  32773. }
  32774. },
  32775. goia: {
  32776. height: math.unit(4, "meters"),
  32777. weight: math.unit(10800, "lb"),
  32778. name: "Goia",
  32779. image: {
  32780. source: "./media/characters/ryth/goia.svg",
  32781. extra: 745/640,
  32782. bottom: 107/852
  32783. }
  32784. },
  32785. goiaFront: {
  32786. height: math.unit(4, "meters"),
  32787. weight: math.unit(10800, "lb"),
  32788. name: "Goia (Front)",
  32789. image: {
  32790. source: "./media/characters/ryth/goia-front.svg",
  32791. extra: 750/586,
  32792. bottom: 114/864
  32793. }
  32794. },
  32795. goiaMaw: {
  32796. height: math.unit(5.55, "feet"),
  32797. name: "Goia Maw",
  32798. image: {
  32799. source: "./media/characters/ryth/goia-maw.svg"
  32800. }
  32801. },
  32802. goiaForepaw: {
  32803. height: math.unit(3.5, "feet"),
  32804. name: "Goia Forepaw",
  32805. image: {
  32806. source: "./media/characters/ryth/goia-forepaw.svg"
  32807. }
  32808. },
  32809. goiaHindpaw: {
  32810. height: math.unit(5.55, "feet"),
  32811. name: "Goia Hindpaw",
  32812. image: {
  32813. source: "./media/characters/ryth/goia-hindpaw.svg"
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(4, "feet"),
  32821. default: true
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(7, "feet"),
  32830. weight: math.unit(180, "lb"),
  32831. name: "Front",
  32832. image: {
  32833. source: "./media/characters/necrolance/front.svg",
  32834. extra: 1062/947,
  32835. bottom: 41/1103
  32836. }
  32837. },
  32838. back: {
  32839. height: math.unit(7, "feet"),
  32840. weight: math.unit(180, "lb"),
  32841. name: "Back",
  32842. image: {
  32843. source: "./media/characters/necrolance/back.svg",
  32844. extra: 1045/984,
  32845. bottom: 14/1059
  32846. }
  32847. },
  32848. wing: {
  32849. height: math.unit(2.67, "feet"),
  32850. name: "Wing",
  32851. image: {
  32852. source: "./media/characters/necrolance/wing.svg"
  32853. }
  32854. },
  32855. },
  32856. [
  32857. {
  32858. name: "Normal",
  32859. height: math.unit(7, "feet"),
  32860. default: true
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32866. {
  32867. front: {
  32868. height: math.unit(76, "meters"),
  32869. weight: math.unit(30000, "tons"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/tyler/front.svg",
  32873. extra: 1640/1640,
  32874. bottom: 114/1754
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Macro",
  32881. height: math.unit(76, "meters"),
  32882. default: true
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32888. {
  32889. front: {
  32890. height: math.unit(4 + 11/12, "feet"),
  32891. weight: math.unit(132, "lb"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/icey/front.svg",
  32895. extra: 2750/2550,
  32896. bottom: 33/2783
  32897. }
  32898. },
  32899. back: {
  32900. height: math.unit(4 + 11/12, "feet"),
  32901. weight: math.unit(132, "lb"),
  32902. name: "Back",
  32903. image: {
  32904. source: "./media/characters/icey/back.svg",
  32905. extra: 2624/2481,
  32906. bottom: 35/2659
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Normal",
  32913. height: math.unit(4 + 11/12, "feet"),
  32914. default: true
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32920. {
  32921. front: {
  32922. height: math.unit(100, "feet"),
  32923. weight: math.unit(0, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/smile/front.svg",
  32927. extra: 2983/2912,
  32928. bottom: 162/3145
  32929. }
  32930. },
  32931. back: {
  32932. height: math.unit(100, "feet"),
  32933. weight: math.unit(0, "lb"),
  32934. name: "Back",
  32935. image: {
  32936. source: "./media/characters/smile/back.svg",
  32937. extra: 3143/3031,
  32938. bottom: 91/3234
  32939. }
  32940. },
  32941. head: {
  32942. height: math.unit(26.3, "feet"),
  32943. weight: math.unit(0, "lb"),
  32944. name: "Head",
  32945. image: {
  32946. source: "./media/characters/smile/head.svg"
  32947. }
  32948. },
  32949. collar: {
  32950. height: math.unit(5.3, "feet"),
  32951. weight: math.unit(0, "lb"),
  32952. name: "Collar",
  32953. image: {
  32954. source: "./media/characters/smile/collar.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Macro",
  32961. height: math.unit(100, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32968. {
  32969. dragon: {
  32970. height: math.unit(26, "feet"),
  32971. weight: math.unit(36, "tons"),
  32972. name: "Dragon",
  32973. image: {
  32974. source: "./media/characters/arimphae/dragon.svg",
  32975. extra: 1574/983,
  32976. bottom: 357/1931
  32977. }
  32978. },
  32979. drake: {
  32980. height: math.unit(9, "feet"),
  32981. weight: math.unit(1.5, "tons"),
  32982. name: "Drake",
  32983. image: {
  32984. source: "./media/characters/arimphae/drake.svg",
  32985. extra: 1120/925,
  32986. bottom: 435/1555
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Small",
  32993. height: math.unit(26*5/9, "feet")
  32994. },
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(26, "feet"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(8 + 9/12, "feet"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/xander/front.svg",
  33010. extra: 1237/974,
  33011. bottom: 94/1331
  33012. }
  33013. },
  33014. },
  33015. [
  33016. {
  33017. name: "Normal",
  33018. height: math.unit(8 + 9/12, "feet"),
  33019. default: true
  33020. },
  33021. {
  33022. name: "Gaze Grabber",
  33023. height: math.unit(13 + 8/12, "feet")
  33024. },
  33025. {
  33026. name: "Jaw Dropper",
  33027. height: math.unit(27, "feet")
  33028. },
  33029. {
  33030. name: "Show Stopper",
  33031. height: math.unit(136, "feet")
  33032. },
  33033. {
  33034. name: "Superstar",
  33035. height: math.unit(1.9e6, "miles")
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33041. {
  33042. side: {
  33043. height: math.unit(2100, "feet"),
  33044. name: "Side",
  33045. image: {
  33046. source: "./media/characters/osiris/side.svg",
  33047. extra: 1105/939,
  33048. bottom: 167/1272
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Macro",
  33055. height: math.unit(2100, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(6 + 8/12, "feet"),
  33065. weight: math.unit(225, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/rhys-londe/front.svg",
  33069. extra: 2258/2141,
  33070. bottom: 188/2446
  33071. }
  33072. },
  33073. back: {
  33074. height: math.unit(6 + 8/12, "feet"),
  33075. weight: math.unit(225, "lb"),
  33076. name: "Back",
  33077. image: {
  33078. source: "./media/characters/rhys-londe/back.svg",
  33079. extra: 2237/2137,
  33080. bottom: 63/2300
  33081. }
  33082. },
  33083. frontNsfw: {
  33084. height: math.unit(6 + 8/12, "feet"),
  33085. weight: math.unit(225, "lb"),
  33086. name: "Front (NSFW)",
  33087. image: {
  33088. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33089. extra: 2258/2141,
  33090. bottom: 188/2446
  33091. }
  33092. },
  33093. backNsfw: {
  33094. height: math.unit(6 + 8/12, "feet"),
  33095. weight: math.unit(225, "lb"),
  33096. name: "Back (NSFW)",
  33097. image: {
  33098. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33099. extra: 2237/2137,
  33100. bottom: 63/2300
  33101. }
  33102. },
  33103. dick: {
  33104. height: math.unit(30, "inches"),
  33105. name: "Dick",
  33106. image: {
  33107. source: "./media/characters/rhys-londe/dick.svg"
  33108. }
  33109. },
  33110. maw: {
  33111. height: math.unit(1.6, "feet"),
  33112. name: "Maw",
  33113. image: {
  33114. source: "./media/characters/rhys-londe/maw.svg"
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Normal",
  33121. height: math.unit(6 + 8/12, "feet"),
  33122. default: true
  33123. },
  33124. ]
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(3 + 10/12, "feet"),
  33131. weight: math.unit(90, "lb"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/taivas-ensim/front.svg",
  33135. extra: 1327/1216,
  33136. bottom: 96/1423
  33137. }
  33138. },
  33139. back: {
  33140. height: math.unit(3 + 10/12, "feet"),
  33141. weight: math.unit(90, "lb"),
  33142. name: "Back",
  33143. image: {
  33144. source: "./media/characters/taivas-ensim/back.svg",
  33145. extra: 1355/1247,
  33146. bottom: 11/1366
  33147. }
  33148. },
  33149. frontNsfw: {
  33150. height: math.unit(3 + 10/12, "feet"),
  33151. weight: math.unit(90, "lb"),
  33152. name: "Front (NSFW)",
  33153. image: {
  33154. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33155. extra: 1327/1216,
  33156. bottom: 96/1423
  33157. }
  33158. },
  33159. backNsfw: {
  33160. height: math.unit(3 + 10/12, "feet"),
  33161. weight: math.unit(90, "lb"),
  33162. name: "Back (NSFW)",
  33163. image: {
  33164. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33165. extra: 1355/1247,
  33166. bottom: 11/1366
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(3 + 10/12, "feet"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(9 + 6/12, "feet"),
  33183. weight: math.unit(940, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/byliss/front.svg",
  33187. extra: 1327/1290,
  33188. bottom: 82/1409
  33189. }
  33190. },
  33191. back: {
  33192. height: math.unit(9 + 6/12, "feet"),
  33193. weight: math.unit(940, "lb"),
  33194. name: "Back",
  33195. image: {
  33196. source: "./media/characters/byliss/back.svg",
  33197. extra: 1376/1349,
  33198. bottom: 9/1385
  33199. }
  33200. },
  33201. frontNsfw: {
  33202. height: math.unit(9 + 6/12, "feet"),
  33203. weight: math.unit(940, "lb"),
  33204. name: "Front (NSFW)",
  33205. image: {
  33206. source: "./media/characters/byliss/front-nsfw.svg",
  33207. extra: 1327/1290,
  33208. bottom: 82/1409
  33209. }
  33210. },
  33211. backNsfw: {
  33212. height: math.unit(9 + 6/12, "feet"),
  33213. weight: math.unit(940, "lb"),
  33214. name: "Back (NSFW)",
  33215. image: {
  33216. source: "./media/characters/byliss/back-nsfw.svg",
  33217. extra: 1376/1349,
  33218. bottom: 9/1385
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Normal",
  33225. height: math.unit(9 + 6/12, "feet"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(5 + 2/12, "feet"),
  33235. weight: math.unit(200, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/noraly/front.svg",
  33239. extra: 4985/4773,
  33240. bottom: 150/5135
  33241. }
  33242. },
  33243. full: {
  33244. height: math.unit(5 + 2/12, "feet"),
  33245. weight: math.unit(164, "lb"),
  33246. name: "Full",
  33247. image: {
  33248. source: "./media/characters/noraly/full.svg",
  33249. extra: 1114/1059,
  33250. bottom: 35/1149
  33251. }
  33252. },
  33253. fuller: {
  33254. height: math.unit(5 + 2/12, "feet"),
  33255. weight: math.unit(230, "lb"),
  33256. name: "Fuller",
  33257. image: {
  33258. source: "./media/characters/noraly/fuller.svg",
  33259. extra: 1114/1059,
  33260. bottom: 35/1149
  33261. }
  33262. },
  33263. fullest: {
  33264. height: math.unit(5 + 2/12, "feet"),
  33265. weight: math.unit(300, "lb"),
  33266. name: "Fullest",
  33267. image: {
  33268. source: "./media/characters/noraly/fullest.svg",
  33269. extra: 1114/1059,
  33270. bottom: 35/1149
  33271. }
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(5 + 2/12, "feet"),
  33278. default: true
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33284. {
  33285. front: {
  33286. height: math.unit(5 + 2/12, "feet"),
  33287. weight: math.unit(210, "lb"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/pera/front.svg",
  33291. extra: 1560/1531,
  33292. bottom: 165/1725
  33293. }
  33294. },
  33295. back: {
  33296. height: math.unit(5 + 2/12, "feet"),
  33297. weight: math.unit(210, "lb"),
  33298. name: "Back",
  33299. image: {
  33300. source: "./media/characters/pera/back.svg",
  33301. extra: 1523/1493,
  33302. bottom: 152/1675
  33303. }
  33304. },
  33305. dick: {
  33306. height: math.unit(2.4, "feet"),
  33307. name: "Dick",
  33308. image: {
  33309. source: "./media/characters/pera/dick.svg"
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(5 + 2/12, "feet"),
  33317. default: true
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33323. {
  33324. front: {
  33325. height: math.unit(12, "feet"),
  33326. weight: math.unit(3200, "lb"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/julian/front.svg",
  33330. extra: 2962/2701,
  33331. bottom: 184/3146
  33332. }
  33333. },
  33334. maw: {
  33335. height: math.unit(5.35, "feet"),
  33336. name: "Maw",
  33337. image: {
  33338. source: "./media/characters/julian/maw.svg"
  33339. }
  33340. },
  33341. paw: {
  33342. height: math.unit(3.07, "feet"),
  33343. name: "Paw",
  33344. image: {
  33345. source: "./media/characters/julian/paw.svg"
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Default",
  33352. height: math.unit(12, "feet"),
  33353. default: true
  33354. },
  33355. {
  33356. name: "Big",
  33357. height: math.unit(50, "feet")
  33358. },
  33359. {
  33360. name: "Really Big",
  33361. height: math.unit(1, "mile")
  33362. },
  33363. {
  33364. name: "Extremely Big",
  33365. height: math.unit(100, "miles")
  33366. },
  33367. {
  33368. name: "Planet Hugger",
  33369. height: math.unit(200, "megameters")
  33370. },
  33371. {
  33372. name: "Unreasonably Big",
  33373. height: math.unit(1e300, "meters")
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33379. {
  33380. solgooleo: {
  33381. height: math.unit(4, "meters"),
  33382. weight: math.unit(6000*1.5, "kg"),
  33383. volume: math.unit(6000, "liters"),
  33384. name: "Solgooleo",
  33385. image: {
  33386. source: "./media/characters/pi/solgooleo.svg",
  33387. extra: 388/331,
  33388. bottom: 29/417
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(4, "meters"),
  33396. default: true
  33397. },
  33398. ]
  33399. ))
  33400. characterMakers.push(() => makeCharacter(
  33401. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33402. {
  33403. front: {
  33404. height: math.unit(8, "feet"),
  33405. weight: math.unit(4, "tons"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/shaun/front.svg",
  33409. extra: 503/495,
  33410. bottom: 20/523
  33411. }
  33412. },
  33413. back: {
  33414. height: math.unit(8, "feet"),
  33415. weight: math.unit(4, "tons"),
  33416. name: "Back",
  33417. image: {
  33418. source: "./media/characters/shaun/back.svg",
  33419. extra: 487/480,
  33420. bottom: 20/507
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Lorg",
  33427. height: math.unit(8, "feet"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33434. {
  33435. frontAnthro: {
  33436. height: math.unit(7, "feet"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/sini/front-anthro.svg",
  33440. extra: 726/678,
  33441. bottom: 35/761
  33442. },
  33443. form: "anthro",
  33444. default: true
  33445. },
  33446. backAnthro: {
  33447. height: math.unit(7, "feet"),
  33448. name: "Back",
  33449. image: {
  33450. source: "./media/characters/sini/back-anthro.svg",
  33451. extra: 743/701,
  33452. bottom: 12/755
  33453. },
  33454. form: "anthro",
  33455. },
  33456. frontAnthroNsfw: {
  33457. height: math.unit(7, "feet"),
  33458. name: "Front (NSFW)",
  33459. image: {
  33460. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33461. extra: 726/678,
  33462. bottom: 35/761
  33463. },
  33464. form: "anthro"
  33465. },
  33466. backAnthroNsfw: {
  33467. height: math.unit(7, "feet"),
  33468. name: "Back (NSFW)",
  33469. image: {
  33470. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33471. extra: 743/701,
  33472. bottom: 12/755
  33473. },
  33474. form: "anthro",
  33475. },
  33476. mawAnthro: {
  33477. height: math.unit(2.14, "feet"),
  33478. name: "Maw",
  33479. image: {
  33480. source: "./media/characters/sini/maw-anthro.svg"
  33481. },
  33482. form: "anthro"
  33483. },
  33484. dick: {
  33485. height: math.unit(1.45, "feet"),
  33486. name: "Dick",
  33487. image: {
  33488. source: "./media/characters/sini/dick-anthro.svg"
  33489. },
  33490. form: "anthro"
  33491. },
  33492. feral: {
  33493. height: math.unit(16, "feet"),
  33494. name: "Feral",
  33495. image: {
  33496. source: "./media/characters/sini/feral.svg",
  33497. extra: 814/605,
  33498. bottom: 11/825
  33499. },
  33500. form: "feral",
  33501. default: true
  33502. },
  33503. feralNsfw: {
  33504. height: math.unit(16, "feet"),
  33505. name: "Feral (NSFW)",
  33506. image: {
  33507. source: "./media/characters/sini/feral-nsfw.svg",
  33508. extra: 814/605,
  33509. bottom: 11/825
  33510. },
  33511. form: "feral"
  33512. },
  33513. mawFeral: {
  33514. height: math.unit(5.66, "feet"),
  33515. name: "Maw",
  33516. image: {
  33517. source: "./media/characters/sini/maw-feral.svg"
  33518. },
  33519. form: "feral",
  33520. },
  33521. pawFeral: {
  33522. height: math.unit(5.17, "feet"),
  33523. name: "Paw",
  33524. image: {
  33525. source: "./media/characters/sini/paw-feral.svg"
  33526. },
  33527. form: "feral",
  33528. },
  33529. rumpFeral: {
  33530. height: math.unit(13.11, "feet"),
  33531. name: "Rump",
  33532. image: {
  33533. source: "./media/characters/sini/rump-feral.svg"
  33534. },
  33535. form: "feral",
  33536. },
  33537. dickFeral: {
  33538. height: math.unit(1, "feet"),
  33539. name: "Dick",
  33540. image: {
  33541. source: "./media/characters/sini/dick-feral.svg"
  33542. },
  33543. form: "feral",
  33544. },
  33545. eyeFeral: {
  33546. height: math.unit(1.23, "feet"),
  33547. name: "Eye",
  33548. image: {
  33549. source: "./media/characters/sini/eye-feral.svg"
  33550. },
  33551. form: "feral",
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(7, "feet"),
  33558. default: true,
  33559. form: "anthro"
  33560. },
  33561. {
  33562. name: "Normal",
  33563. height: math.unit(16, "feet"),
  33564. default: true,
  33565. form: "feral"
  33566. },
  33567. ],
  33568. {
  33569. "anthro": {
  33570. name: "Anthro",
  33571. default: true
  33572. },
  33573. "feral": {
  33574. name: "Feral",
  33575. }
  33576. }
  33577. ))
  33578. characterMakers.push(() => makeCharacter(
  33579. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33580. {
  33581. side: {
  33582. height: math.unit(13, "meters"),
  33583. weight: math.unit(9072, "kg"),
  33584. name: "Side",
  33585. image: {
  33586. source: "./media/characters/raylldo/side.svg",
  33587. extra: 403/344,
  33588. bottom: 42/445
  33589. }
  33590. },
  33591. leaping: {
  33592. height: math.unit(12.3, "meters"),
  33593. weight: math.unit(9072, "kg"),
  33594. name: "Leaping",
  33595. image: {
  33596. source: "./media/characters/raylldo/leaping.svg",
  33597. extra: 470/249,
  33598. bottom: 13/483
  33599. }
  33600. },
  33601. flying: {
  33602. height: math.unit(18, "meters"),
  33603. weight: math.unit(9072, "kg"),
  33604. name: "Flying",
  33605. image: {
  33606. source: "./media/characters/raylldo/flying.svg"
  33607. }
  33608. },
  33609. head: {
  33610. height: math.unit(5.85, "meters"),
  33611. name: "Head",
  33612. image: {
  33613. source: "./media/characters/raylldo/head.svg"
  33614. }
  33615. },
  33616. maw: {
  33617. height: math.unit(5.32, "meters"),
  33618. name: "Maw",
  33619. image: {
  33620. source: "./media/characters/raylldo/maw.svg"
  33621. }
  33622. },
  33623. eye: {
  33624. height: math.unit(0.54, "meters"),
  33625. name: "Eye",
  33626. image: {
  33627. source: "./media/characters/raylldo/eye.svg"
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(13, "meters"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33641. {
  33642. anthroFront: {
  33643. height: math.unit(9, "feet"),
  33644. weight: math.unit(600, "lb"),
  33645. name: "Anthro (Front)",
  33646. image: {
  33647. source: "./media/characters/glint/anthro-front.svg",
  33648. extra: 1097/1018,
  33649. bottom: 28/1125
  33650. }
  33651. },
  33652. anthroBack: {
  33653. height: math.unit(9, "feet"),
  33654. weight: math.unit(600, "lb"),
  33655. name: "Anthro (Back)",
  33656. image: {
  33657. source: "./media/characters/glint/anthro-back.svg",
  33658. extra: 1154/997,
  33659. bottom: 36/1190
  33660. }
  33661. },
  33662. feral: {
  33663. height: math.unit(11, "feet"),
  33664. weight: math.unit(50000, "lb"),
  33665. name: "Feral",
  33666. image: {
  33667. source: "./media/characters/glint/feral.svg",
  33668. extra: 3035/1585,
  33669. bottom: 1169/4204
  33670. }
  33671. },
  33672. dickAnthro: {
  33673. height: math.unit(0.7, "meters"),
  33674. name: "Dick (Anthro)",
  33675. image: {
  33676. source: "./media/characters/glint/dick-anthro.svg"
  33677. }
  33678. },
  33679. dickFeral: {
  33680. height: math.unit(2.65, "meters"),
  33681. name: "Dick (Feral)",
  33682. image: {
  33683. source: "./media/characters/glint/dick-feral.svg"
  33684. }
  33685. },
  33686. slitHidden: {
  33687. height: math.unit(5.85, "meters"),
  33688. name: "Slit (Hidden)",
  33689. image: {
  33690. source: "./media/characters/glint/slit-hidden.svg"
  33691. }
  33692. },
  33693. slitErect: {
  33694. height: math.unit(5.85, "meters"),
  33695. name: "Slit (Erect)",
  33696. image: {
  33697. source: "./media/characters/glint/slit-erect.svg"
  33698. }
  33699. },
  33700. mawAnthro: {
  33701. height: math.unit(0.63, "meters"),
  33702. name: "Maw (Anthro)",
  33703. image: {
  33704. source: "./media/characters/glint/maw.svg"
  33705. }
  33706. },
  33707. mawFeral: {
  33708. height: math.unit(2.89, "meters"),
  33709. name: "Maw (Feral)",
  33710. image: {
  33711. source: "./media/characters/glint/maw.svg"
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Normal",
  33718. height: math.unit(9, "feet"),
  33719. default: true
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33725. {
  33726. side: {
  33727. height: math.unit(15, "feet"),
  33728. weight: math.unit(5000, "kg"),
  33729. name: "Side",
  33730. image: {
  33731. source: "./media/characters/kairne/side.svg",
  33732. extra: 979/811,
  33733. bottom: 13/992
  33734. }
  33735. },
  33736. front: {
  33737. height: math.unit(15, "feet"),
  33738. weight: math.unit(5000, "kg"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/kairne/front.svg",
  33742. extra: 908/814,
  33743. bottom: 26/934
  33744. }
  33745. },
  33746. sideNsfw: {
  33747. height: math.unit(15, "feet"),
  33748. weight: math.unit(5000, "kg"),
  33749. name: "Side (NSFW)",
  33750. image: {
  33751. source: "./media/characters/kairne/side-nsfw.svg",
  33752. extra: 979/811,
  33753. bottom: 13/992
  33754. }
  33755. },
  33756. frontNsfw: {
  33757. height: math.unit(15, "feet"),
  33758. weight: math.unit(5000, "kg"),
  33759. name: "Front (NSFW)",
  33760. image: {
  33761. source: "./media/characters/kairne/front-nsfw.svg",
  33762. extra: 908/814,
  33763. bottom: 26/934
  33764. }
  33765. },
  33766. dickCaged: {
  33767. height: math.unit(0.65, "meters"),
  33768. name: "Dick-caged",
  33769. image: {
  33770. source: "./media/characters/kairne/dick-caged.svg"
  33771. }
  33772. },
  33773. dick: {
  33774. height: math.unit(0.79, "meters"),
  33775. name: "Dick",
  33776. image: {
  33777. source: "./media/characters/kairne/dick.svg"
  33778. }
  33779. },
  33780. genitals: {
  33781. height: math.unit(1.29, "meters"),
  33782. name: "Genitals",
  33783. image: {
  33784. source: "./media/characters/kairne/genitals.svg"
  33785. }
  33786. },
  33787. maw: {
  33788. height: math.unit(1.73, "meters"),
  33789. name: "Maw",
  33790. image: {
  33791. source: "./media/characters/kairne/maw.svg"
  33792. }
  33793. },
  33794. },
  33795. [
  33796. {
  33797. name: "Normal",
  33798. height: math.unit(15, "feet"),
  33799. default: true
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33805. {
  33806. front: {
  33807. height: math.unit(5 + 8/12, "feet"),
  33808. weight: math.unit(139, "lb"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/biscuit-jackal/front.svg",
  33812. extra: 2106/1961,
  33813. bottom: 58/2164
  33814. }
  33815. },
  33816. back: {
  33817. height: math.unit(5 + 8/12, "feet"),
  33818. weight: math.unit(139, "lb"),
  33819. name: "Back",
  33820. image: {
  33821. source: "./media/characters/biscuit-jackal/back.svg",
  33822. extra: 2132/1976,
  33823. bottom: 57/2189
  33824. }
  33825. },
  33826. werejackal: {
  33827. height: math.unit(6 + 3/12, "feet"),
  33828. weight: math.unit(188, "lb"),
  33829. name: "Werejackal",
  33830. image: {
  33831. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33832. extra: 2373/2178,
  33833. bottom: 53/2426
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(5 + 8/12, "feet"),
  33841. default: true
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(140, "cm"),
  33850. weight: math.unit(45, "kg"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/tayra-white/front.svg",
  33854. extra: 2229/2192,
  33855. bottom: 75/2304
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(140, "cm"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(4 + 5/12, "feet"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/scoop/front.svg",
  33875. extra: 1257/1136,
  33876. bottom: 69/1326
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(4 + 5/12, "feet"),
  33881. name: "Back",
  33882. image: {
  33883. source: "./media/characters/scoop/back.svg",
  33884. extra: 1321/1152,
  33885. bottom: 32/1353
  33886. }
  33887. },
  33888. maw: {
  33889. height: math.unit(0.68, "feet"),
  33890. name: "Maw",
  33891. image: {
  33892. source: "./media/characters/scoop/maw.svg"
  33893. }
  33894. },
  33895. },
  33896. [
  33897. {
  33898. name: "Really Small",
  33899. height: math.unit(1, "mm")
  33900. },
  33901. {
  33902. name: "Micro",
  33903. height: math.unit(1, "inch")
  33904. },
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(4 + 5/12, "feet"),
  33908. default: true
  33909. },
  33910. {
  33911. name: "Macro",
  33912. height: math.unit(200, "feet")
  33913. },
  33914. {
  33915. name: "Megamacro",
  33916. height: math.unit(3240, "feet")
  33917. },
  33918. {
  33919. name: "Teramacro",
  33920. height: math.unit(2500, "miles")
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(15 + 7/12, "feet"),
  33929. weight: math.unit(1150, "tons"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/saphinara/front.svg",
  33933. extra: 1837/1643,
  33934. bottom: 84/1921
  33935. },
  33936. form: "normal",
  33937. default: true
  33938. },
  33939. side: {
  33940. height: math.unit(15 + 7/12, "feet"),
  33941. weight: math.unit(1150, "tons"),
  33942. name: "Side",
  33943. image: {
  33944. source: "./media/characters/saphinara/side.svg",
  33945. extra: 605/547,
  33946. bottom: 6/611
  33947. },
  33948. form: "normal"
  33949. },
  33950. back: {
  33951. height: math.unit(15 + 7/12, "feet"),
  33952. weight: math.unit(1150, "tons"),
  33953. name: "Back",
  33954. image: {
  33955. source: "./media/characters/saphinara/back.svg",
  33956. extra: 591/531,
  33957. bottom: 13/604
  33958. },
  33959. form: "normal"
  33960. },
  33961. frontTail: {
  33962. height: math.unit(15 + 7/12, "feet"),
  33963. weight: math.unit(1150, "tons"),
  33964. name: "Front (Full Tail)",
  33965. image: {
  33966. source: "./media/characters/saphinara/front-tail.svg",
  33967. extra: 2256/1630,
  33968. bottom: 261/2517
  33969. },
  33970. form: "normal"
  33971. },
  33972. insides: {
  33973. height: math.unit(11.92, "feet"),
  33974. name: "Insides",
  33975. image: {
  33976. source: "./media/characters/saphinara/insides.svg"
  33977. },
  33978. form: "normal"
  33979. },
  33980. head: {
  33981. height: math.unit(4.17, "feet"),
  33982. name: "Head",
  33983. image: {
  33984. source: "./media/characters/saphinara/head.svg"
  33985. },
  33986. form: "normal"
  33987. },
  33988. tongue: {
  33989. height: math.unit(4.60, "feet"),
  33990. name: "Tongue",
  33991. image: {
  33992. source: "./media/characters/saphinara/tongue.svg"
  33993. },
  33994. form: "normal"
  33995. },
  33996. headEnraged: {
  33997. height: math.unit(5.55, "feet"),
  33998. name: "Head (Enraged)",
  33999. image: {
  34000. source: "./media/characters/saphinara/head-enraged.svg"
  34001. },
  34002. form: "normal"
  34003. },
  34004. wings: {
  34005. height: math.unit(11.95, "feet"),
  34006. name: "Wings",
  34007. image: {
  34008. source: "./media/characters/saphinara/wings.svg"
  34009. },
  34010. form: "normal"
  34011. },
  34012. feathers: {
  34013. height: math.unit(8.92, "feet"),
  34014. name: "Feathers",
  34015. image: {
  34016. source: "./media/characters/saphinara/feathers.svg"
  34017. },
  34018. form: "normal"
  34019. },
  34020. shackles: {
  34021. height: math.unit(2, "feet"),
  34022. name: "Shackles",
  34023. image: {
  34024. source: "./media/characters/saphinara/shackles.svg"
  34025. },
  34026. form: "normal"
  34027. },
  34028. eyes: {
  34029. height: math.unit(1.331, "feet"),
  34030. name: "Eyes",
  34031. image: {
  34032. source: "./media/characters/saphinara/eyes.svg"
  34033. },
  34034. form: "normal"
  34035. },
  34036. eyesEnraged: {
  34037. height: math.unit(1.331, "feet"),
  34038. name: "Eyes (Enraged)",
  34039. image: {
  34040. source: "./media/characters/saphinara/eyes-enraged.svg"
  34041. },
  34042. form: "normal"
  34043. },
  34044. trueFormSide: {
  34045. height: math.unit(200, "feet"),
  34046. weight: math.unit(1e7, "tons"),
  34047. name: "Side",
  34048. image: {
  34049. source: "./media/characters/saphinara/true-form-side.svg",
  34050. extra: 1399/770,
  34051. bottom: 97/1496
  34052. },
  34053. form: "true-form",
  34054. default: true
  34055. },
  34056. trueFormMaw: {
  34057. height: math.unit(71.5, "feet"),
  34058. name: "Maw",
  34059. image: {
  34060. source: "./media/characters/saphinara/true-form-maw.svg",
  34061. extra: 2302/1453,
  34062. bottom: 0/2302
  34063. },
  34064. form: "true-form"
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(15 + 7/12, "feet"),
  34071. default: true,
  34072. form: "normal"
  34073. },
  34074. {
  34075. name: "Angry",
  34076. height: math.unit(30 + 6/12, "feet"),
  34077. form: "normal"
  34078. },
  34079. {
  34080. name: "Enraged",
  34081. height: math.unit(102 + 1/12, "feet"),
  34082. form: "normal"
  34083. },
  34084. {
  34085. name: "True",
  34086. height: math.unit(200, "feet"),
  34087. default: true,
  34088. form: "true-form"
  34089. }
  34090. ],
  34091. {
  34092. "normal": {
  34093. name: "Normal",
  34094. default: true
  34095. },
  34096. "true-form": {
  34097. name: "True Form"
  34098. }
  34099. }
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34103. {
  34104. front: {
  34105. height: math.unit(6 + 8/12, "feet"),
  34106. weight: math.unit(300, "lb"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/jrain/front.svg",
  34110. extra: 3039/2865,
  34111. bottom: 399/3438
  34112. }
  34113. },
  34114. back: {
  34115. height: math.unit(6 + 8/12, "feet"),
  34116. weight: math.unit(300, "lb"),
  34117. name: "Back",
  34118. image: {
  34119. source: "./media/characters/jrain/back.svg",
  34120. extra: 3089/2938,
  34121. bottom: 172/3261
  34122. }
  34123. },
  34124. head: {
  34125. height: math.unit(2.14, "feet"),
  34126. name: "Head",
  34127. image: {
  34128. source: "./media/characters/jrain/head.svg"
  34129. }
  34130. },
  34131. maw: {
  34132. height: math.unit(1.77, "feet"),
  34133. name: "Maw",
  34134. image: {
  34135. source: "./media/characters/jrain/maw.svg"
  34136. }
  34137. },
  34138. leftHand: {
  34139. height: math.unit(1.1, "feet"),
  34140. name: "Left Hand",
  34141. image: {
  34142. source: "./media/characters/jrain/left-hand.svg"
  34143. }
  34144. },
  34145. rightHand: {
  34146. height: math.unit(1.1, "feet"),
  34147. name: "Right Hand",
  34148. image: {
  34149. source: "./media/characters/jrain/right-hand.svg"
  34150. }
  34151. },
  34152. eye: {
  34153. height: math.unit(0.35, "feet"),
  34154. name: "Eye",
  34155. image: {
  34156. source: "./media/characters/jrain/eye.svg"
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(6 + 8/12, "feet"),
  34164. default: true
  34165. },
  34166. {
  34167. name: "Casually Large",
  34168. height: math.unit(25, "feet")
  34169. },
  34170. {
  34171. name: "Giant",
  34172. height: math.unit(100, "feet")
  34173. },
  34174. {
  34175. name: "Kaiju",
  34176. height: math.unit(300, "feet")
  34177. },
  34178. ]
  34179. ))
  34180. characterMakers.push(() => makeCharacter(
  34181. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34182. {
  34183. dragon: {
  34184. height: math.unit(5, "meters"),
  34185. name: "Dragon",
  34186. image: {
  34187. source: "./media/characters/sabrina/dragon.svg",
  34188. extra: 3670 / 2365,
  34189. bottom: 333 / 4003
  34190. }
  34191. },
  34192. gryphon: {
  34193. height: math.unit(3, "meters"),
  34194. name: "Gryphon",
  34195. image: {
  34196. source: "./media/characters/sabrina/gryphon.svg",
  34197. extra: 1576 / 945,
  34198. bottom: 71 / 1647
  34199. }
  34200. },
  34201. snake: {
  34202. height: math.unit(12, "meters"),
  34203. name: "Snake",
  34204. image: {
  34205. source: "./media/characters/sabrina/snake.svg",
  34206. extra: 1758 / 1320,
  34207. bottom: 186 / 1944
  34208. }
  34209. },
  34210. collar: {
  34211. height: math.unit(1.86, "meters"),
  34212. name: "Collar",
  34213. image: {
  34214. source: "./media/characters/sabrina/collar.svg"
  34215. }
  34216. },
  34217. eye: {
  34218. height: math.unit(0.53, "meters"),
  34219. name: "Eye",
  34220. image: {
  34221. source: "./media/characters/sabrina/eye.svg"
  34222. }
  34223. },
  34224. foot: {
  34225. height: math.unit(1.86, "meters"),
  34226. name: "Foot",
  34227. image: {
  34228. source: "./media/characters/sabrina/foot.svg"
  34229. }
  34230. },
  34231. hand: {
  34232. height: math.unit(1.32, "meters"),
  34233. name: "Hand",
  34234. image: {
  34235. source: "./media/characters/sabrina/hand.svg"
  34236. }
  34237. },
  34238. head: {
  34239. height: math.unit(2.44, "meters"),
  34240. name: "Head",
  34241. image: {
  34242. source: "./media/characters/sabrina/head.svg"
  34243. }
  34244. },
  34245. headAngry: {
  34246. height: math.unit(2.44, "meters"),
  34247. name: "Head (Angry))",
  34248. image: {
  34249. source: "./media/characters/sabrina/head-angry.svg"
  34250. }
  34251. },
  34252. maw: {
  34253. height: math.unit(1.65, "meters"),
  34254. name: "Maw",
  34255. image: {
  34256. source: "./media/characters/sabrina/maw.svg"
  34257. }
  34258. },
  34259. spikes: {
  34260. height: math.unit(1.69, "meters"),
  34261. name: "Spikes",
  34262. image: {
  34263. source: "./media/characters/sabrina/spikes.svg"
  34264. }
  34265. },
  34266. stomach: {
  34267. height: math.unit(1.15, "meters"),
  34268. name: "Stomach",
  34269. image: {
  34270. source: "./media/characters/sabrina/stomach.svg"
  34271. }
  34272. },
  34273. tongue: {
  34274. height: math.unit(1.27, "meters"),
  34275. name: "Tongue",
  34276. image: {
  34277. source: "./media/characters/sabrina/tongue.svg"
  34278. }
  34279. },
  34280. wingDorsal: {
  34281. height: math.unit(4.85, "meters"),
  34282. name: "Wing (Dorsal)",
  34283. image: {
  34284. source: "./media/characters/sabrina/wing-dorsal.svg"
  34285. }
  34286. },
  34287. wingVentral: {
  34288. height: math.unit(4.85, "meters"),
  34289. name: "Wing (Ventral)",
  34290. image: {
  34291. source: "./media/characters/sabrina/wing-ventral.svg"
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(5, "meters"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34305. {
  34306. frontMaid: {
  34307. height: math.unit(5 + 5/12, "feet"),
  34308. weight: math.unit(130, "lb"),
  34309. name: "Front (Maid)",
  34310. image: {
  34311. source: "./media/characters/midnight-tales/front-maid.svg",
  34312. extra: 489/454,
  34313. bottom: 61/550
  34314. }
  34315. },
  34316. frontFormal: {
  34317. height: math.unit(5 + 5/12, "feet"),
  34318. weight: math.unit(130, "lb"),
  34319. name: "Front (Formal)",
  34320. image: {
  34321. source: "./media/characters/midnight-tales/front-formal.svg",
  34322. extra: 489/454,
  34323. bottom: 61/550
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(5 + 5/12, "feet"),
  34328. weight: math.unit(130, "lb"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/midnight-tales/back.svg",
  34332. extra: 498/456,
  34333. bottom: 33/531
  34334. }
  34335. },
  34336. frontBeast: {
  34337. height: math.unit(40, "feet"),
  34338. weight: math.unit(64000, "lb"),
  34339. name: "Front (Beast)",
  34340. image: {
  34341. source: "./media/characters/midnight-tales/front-beast.svg",
  34342. extra: 927/860,
  34343. bottom: 53/980
  34344. }
  34345. },
  34346. backBeast: {
  34347. height: math.unit(40, "feet"),
  34348. weight: math.unit(64000, "lb"),
  34349. name: "Back (Beast)",
  34350. image: {
  34351. source: "./media/characters/midnight-tales/back-beast.svg",
  34352. extra: 929/855,
  34353. bottom: 16/945
  34354. }
  34355. },
  34356. footBeast: {
  34357. height: math.unit(6.7, "feet"),
  34358. name: "Foot (Beast)",
  34359. image: {
  34360. source: "./media/characters/midnight-tales/foot-beast.svg"
  34361. }
  34362. },
  34363. headBeast: {
  34364. height: math.unit(8, "feet"),
  34365. name: "Head (Beast)",
  34366. image: {
  34367. source: "./media/characters/midnight-tales/head-beast.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(5 + 5 / 12, "feet"),
  34375. default: true
  34376. },
  34377. {
  34378. name: "Macro",
  34379. height: math.unit(25, "feet")
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(5 + 10/12, "feet"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/argon/front.svg",
  34391. extra: 2009/1935,
  34392. bottom: 118/2127
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(5 + 10/12, "feet"),
  34397. name: "Back",
  34398. image: {
  34399. source: "./media/characters/argon/back.svg",
  34400. extra: 2047/1992,
  34401. bottom: 20/2067
  34402. }
  34403. },
  34404. frontDressed: {
  34405. height: math.unit(5 + 10/12, "feet"),
  34406. name: "Front (Dressed)",
  34407. image: {
  34408. source: "./media/characters/argon/front-dressed.svg",
  34409. extra: 2009/1935,
  34410. bottom: 118/2127
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(5 + 10/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(8 + 6/12, "feet"),
  34427. weight: math.unit(1150, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/kichi/front.svg",
  34431. extra: 1267/1164,
  34432. bottom: 61/1328
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(8 + 6/12, "feet"),
  34437. weight: math.unit(1150, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/kichi/back.svg",
  34441. extra: 1273/1166,
  34442. bottom: 33/1306
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(8 + 6/12, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(6, "feet"),
  34459. weight: math.unit(210, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/manetel-greyscale/front.svg",
  34463. extra: 350/312,
  34464. bottom: 8/358
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Micro",
  34471. height: math.unit(2, "inches")
  34472. },
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(6, "feet"),
  34476. default: true
  34477. },
  34478. {
  34479. name: "Minimacro",
  34480. height: math.unit(17, "feet")
  34481. },
  34482. {
  34483. name: "Macro",
  34484. height: math.unit(117, "feet")
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34490. {
  34491. side: {
  34492. height: math.unit(5 + 1/12, "feet"),
  34493. weight: math.unit(418, "lb"),
  34494. name: "Side",
  34495. image: {
  34496. source: "./media/characters/softpurr/side.svg",
  34497. extra: 1993/1945,
  34498. bottom: 134/2127
  34499. }
  34500. },
  34501. front: {
  34502. height: math.unit(5 + 1/12, "feet"),
  34503. weight: math.unit(418, "lb"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/softpurr/front.svg",
  34507. extra: 1950/1856,
  34508. bottom: 174/2124
  34509. }
  34510. },
  34511. paw: {
  34512. height: math.unit(1, "feet"),
  34513. name: "Paw",
  34514. image: {
  34515. source: "./media/characters/softpurr/paw.svg"
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(5 + 1/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(260, "meters"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/anahita/front.svg",
  34535. extra: 665/635,
  34536. bottom: 89/754
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Macro",
  34543. height: math.unit(260, "meters"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(4 + 10/12, "feet"),
  34553. weight: math.unit(160, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/chip-mouse/front.svg",
  34557. extra: 3528/3408,
  34558. bottom: 0/3528
  34559. }
  34560. },
  34561. frontNsfw: {
  34562. height: math.unit(4 + 10/12, "feet"),
  34563. weight: math.unit(160, "lb"),
  34564. name: "Front (NSFW)",
  34565. image: {
  34566. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34567. extra: 3528/3408,
  34568. bottom: 0/3528
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(4 + 10/12, "feet"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34582. {
  34583. side: {
  34584. height: math.unit(10, "feet"),
  34585. weight: math.unit(14000, "lb"),
  34586. name: "Side",
  34587. image: {
  34588. source: "./media/characters/kremm/side.svg",
  34589. extra: 1390/1053,
  34590. bottom: 90/1480
  34591. }
  34592. },
  34593. gut: {
  34594. height: math.unit(5.8, "feet"),
  34595. name: "Gut",
  34596. image: {
  34597. source: "./media/characters/kremm/gut.svg"
  34598. }
  34599. },
  34600. ass: {
  34601. height: math.unit(6.1, "feet"),
  34602. name: "Ass",
  34603. image: {
  34604. source: "./media/characters/kremm/ass.svg"
  34605. }
  34606. },
  34607. jaws: {
  34608. height: math.unit(2.2, "feet"),
  34609. name: "Jaws",
  34610. image: {
  34611. source: "./media/characters/kremm/jaws.svg"
  34612. }
  34613. },
  34614. dick: {
  34615. height: math.unit(4.26, "feet"),
  34616. name: "Dick",
  34617. image: {
  34618. source: "./media/characters/kremm/dick.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(10, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(30, "stories"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/kai/front.svg",
  34638. extra: 1892/1718,
  34639. bottom: 162/2054
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Macro",
  34646. height: math.unit(30, "stories"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(6 + 4/12, "feet"),
  34656. weight: math.unit(145, "lb"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/sykes/front.svg",
  34660. extra: 1321 / 1187,
  34661. bottom: 66 / 1387
  34662. }
  34663. },
  34664. back: {
  34665. height: math.unit(6 + 4/12, "feet"),
  34666. weight: math.unit(145, "lb"),
  34667. name: "Back",
  34668. image: {
  34669. source: "./media/characters/sykes/back.svg",
  34670. extra: 1326/1181,
  34671. bottom: 31/1357
  34672. }
  34673. },
  34674. traditionalOutfit: {
  34675. height: math.unit(6 + 4/12, "feet"),
  34676. weight: math.unit(145, "lb"),
  34677. name: "Traditional Outfit",
  34678. image: {
  34679. source: "./media/characters/sykes/traditional-outfit.svg",
  34680. extra: 1321 / 1187,
  34681. bottom: 66 / 1387
  34682. }
  34683. },
  34684. adventureOutfit: {
  34685. height: math.unit(6 + 4/12, "feet"),
  34686. weight: math.unit(145, "lb"),
  34687. name: "Adventure Outfit",
  34688. image: {
  34689. source: "./media/characters/sykes/adventure-outfit.svg",
  34690. extra: 1321 / 1187,
  34691. bottom: 66 / 1387
  34692. }
  34693. },
  34694. handLeft: {
  34695. height: math.unit(0.9, "feet"),
  34696. name: "Hand (Left)",
  34697. image: {
  34698. source: "./media/characters/sykes/hand-left.svg"
  34699. }
  34700. },
  34701. handRight: {
  34702. height: math.unit(0.839, "feet"),
  34703. name: "Hand (Right)",
  34704. image: {
  34705. source: "./media/characters/sykes/hand-right.svg"
  34706. }
  34707. },
  34708. leftFoot: {
  34709. height: math.unit(1.2, "feet"),
  34710. name: "Foot (Left)",
  34711. image: {
  34712. source: "./media/characters/sykes/foot-left.svg"
  34713. }
  34714. },
  34715. rightFoot: {
  34716. height: math.unit(1.2, "feet"),
  34717. name: "Foot (Right)",
  34718. image: {
  34719. source: "./media/characters/sykes/foot-right.svg"
  34720. }
  34721. },
  34722. maw: {
  34723. height: math.unit(1.93, "feet"),
  34724. name: "Maw",
  34725. image: {
  34726. source: "./media/characters/sykes/maw.svg"
  34727. }
  34728. },
  34729. teeth: {
  34730. height: math.unit(0.51, "feet"),
  34731. name: "Teeth",
  34732. image: {
  34733. source: "./media/characters/sykes/teeth.svg"
  34734. }
  34735. },
  34736. tongue: {
  34737. height: math.unit(2.13, "feet"),
  34738. name: "Tongue",
  34739. image: {
  34740. source: "./media/characters/sykes/tongue.svg"
  34741. }
  34742. },
  34743. uvula: {
  34744. height: math.unit(0.16, "feet"),
  34745. name: "Uvula",
  34746. image: {
  34747. source: "./media/characters/sykes/uvula.svg"
  34748. }
  34749. },
  34750. collar: {
  34751. height: math.unit(0.287, "feet"),
  34752. name: "Collar",
  34753. image: {
  34754. source: "./media/characters/sykes/collar.svg"
  34755. }
  34756. },
  34757. tail: {
  34758. height: math.unit(3.8, "feet"),
  34759. name: "Tail",
  34760. image: {
  34761. source: "./media/characters/sykes/tail.svg"
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Shrunken",
  34768. height: math.unit(5, "inches")
  34769. },
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(6 + 4 / 12, "feet"),
  34773. default: true
  34774. },
  34775. {
  34776. name: "Big",
  34777. height: math.unit(15, "feet")
  34778. },
  34779. ]
  34780. ))
  34781. characterMakers.push(() => makeCharacter(
  34782. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34783. {
  34784. front: {
  34785. height: math.unit(5 + 8/12, "feet"),
  34786. weight: math.unit(190, "lb"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/oven-otter/front.svg",
  34790. extra: 1809/1740,
  34791. bottom: 181/1990
  34792. }
  34793. },
  34794. back: {
  34795. height: math.unit(5 + 8/12, "feet"),
  34796. weight: math.unit(190, "lb"),
  34797. name: "Back",
  34798. image: {
  34799. source: "./media/characters/oven-otter/back.svg",
  34800. extra: 1709/1635,
  34801. bottom: 118/1827
  34802. }
  34803. },
  34804. hand: {
  34805. height: math.unit(1.07, "feet"),
  34806. name: "Hand",
  34807. image: {
  34808. source: "./media/characters/oven-otter/hand.svg"
  34809. }
  34810. },
  34811. beans: {
  34812. height: math.unit(1.74, "feet"),
  34813. name: "Beans",
  34814. image: {
  34815. source: "./media/characters/oven-otter/beans.svg"
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Micro",
  34822. height: math.unit(0.5, "inches")
  34823. },
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(5 + 8/12, "feet"),
  34827. default: true
  34828. },
  34829. {
  34830. name: "Macro",
  34831. height: math.unit(250, "feet")
  34832. },
  34833. {
  34834. name: "Really High",
  34835. height: math.unit(420, "feet")
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(5, "meters"),
  34844. weight: math.unit(292000000000000, "kg"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/devourer/front.svg",
  34848. extra: 1800/1733,
  34849. bottom: 211/2011
  34850. }
  34851. },
  34852. maw: {
  34853. height: math.unit(1.1, "meter"),
  34854. name: "Maw",
  34855. image: {
  34856. source: "./media/characters/devourer/maw.svg"
  34857. }
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Small",
  34863. height: math.unit(3, "meters")
  34864. },
  34865. {
  34866. name: "Large",
  34867. height: math.unit(5, "meters"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34874. {
  34875. front: {
  34876. height: math.unit(6, "feet"),
  34877. weight: math.unit(400, "lb"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/ellarby/front.svg",
  34881. extra: 1909/1763,
  34882. bottom: 80/1989
  34883. }
  34884. },
  34885. back: {
  34886. height: math.unit(6, "feet"),
  34887. weight: math.unit(400, "lb"),
  34888. name: "Back",
  34889. image: {
  34890. source: "./media/characters/ellarby/back.svg",
  34891. extra: 1914/1784,
  34892. bottom: 172/2086
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Mischief",
  34899. height: math.unit(18, "inches")
  34900. },
  34901. {
  34902. name: "Trouble",
  34903. height: math.unit(12, "feet")
  34904. },
  34905. {
  34906. name: "Havoc",
  34907. height: math.unit(200, "feet"),
  34908. default: true
  34909. },
  34910. {
  34911. name: "Pandemonium",
  34912. height: math.unit(1, "mile")
  34913. },
  34914. {
  34915. name: "Catastrophe",
  34916. height: math.unit(100, "miles")
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34922. {
  34923. front: {
  34924. height: math.unit(4.7, "meters"),
  34925. weight: math.unit(6500, "kg"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/vex/front.svg",
  34929. extra: 1288/1140,
  34930. bottom: 100/1388
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(4.7, "meters"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34944. {
  34945. normal: {
  34946. height: math.unit(6, "feet"),
  34947. weight: math.unit(350, "lb"),
  34948. name: "Normal",
  34949. image: {
  34950. source: "./media/characters/teshy/normal.svg",
  34951. extra: 1795/1735,
  34952. bottom: 16/1811
  34953. }
  34954. },
  34955. monsterFront: {
  34956. height: math.unit(12, "feet"),
  34957. weight: math.unit(4700, "lb"),
  34958. name: "Monster (Front)",
  34959. image: {
  34960. source: "./media/characters/teshy/monster-front.svg",
  34961. extra: 2042/2034,
  34962. bottom: 128/2170
  34963. }
  34964. },
  34965. monsterSide: {
  34966. height: math.unit(12, "feet"),
  34967. weight: math.unit(4700, "lb"),
  34968. name: "Monster (Side)",
  34969. image: {
  34970. source: "./media/characters/teshy/monster-side.svg",
  34971. extra: 2067/2056,
  34972. bottom: 70/2137
  34973. }
  34974. },
  34975. monsterBack: {
  34976. height: math.unit(12, "feet"),
  34977. weight: math.unit(4700, "lb"),
  34978. name: "Monster (Back)",
  34979. image: {
  34980. source: "./media/characters/teshy/monster-back.svg",
  34981. extra: 1921/1914,
  34982. bottom: 171/2092
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(6, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(6, "feet"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/ramey/front.svg",
  35002. extra: 790/787,
  35003. bottom: 27/817
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Normal",
  35010. height: math.unit(6, "feet"),
  35011. default: true
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35017. {
  35018. front: {
  35019. height: math.unit(5 + 5/12, "feet"),
  35020. weight: math.unit(120, "lb"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/phirae/front.svg",
  35024. extra: 2491/2436,
  35025. bottom: 38/2529
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(5 + 5/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35039. {
  35040. front: {
  35041. height: math.unit(5 + 3/12, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/stagglas/front.svg",
  35045. extra: 962/882,
  35046. bottom: 53/1015
  35047. }
  35048. },
  35049. feral: {
  35050. height: math.unit(335, "cm"),
  35051. name: "Feral",
  35052. image: {
  35053. source: "./media/characters/stagglas/feral.svg",
  35054. extra: 1732/1090,
  35055. bottom: 48/1780
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(5 + 3/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(5 + 4/12, "feet"),
  35072. weight: math.unit(145, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/starra/front.svg",
  35076. extra: 1790/1691,
  35077. bottom: 91/1881
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(5 + 4/12, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(2.2, "meters"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35097. extra: 1194/1005,
  35098. bottom: 25/1219
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(2.2, "meters"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35112. {
  35113. side: {
  35114. height: math.unit(8 + 2/12, "feet"),
  35115. weight: math.unit(1240, "lb"),
  35116. name: "Side",
  35117. image: {
  35118. source: "./media/characters/mika-valentine/side.svg",
  35119. extra: 2670/2501,
  35120. bottom: 250/2920
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(8 + 2/12, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35134. {
  35135. front: {
  35136. height: math.unit(7 + 2/12, "feet"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/xoltol/front.svg",
  35140. extra: 2212/2124,
  35141. bottom: 84/2296
  35142. }
  35143. },
  35144. side: {
  35145. height: math.unit(7 + 2/12, "feet"),
  35146. name: "Side",
  35147. image: {
  35148. source: "./media/characters/xoltol/side.svg",
  35149. extra: 2273/2197,
  35150. bottom: 26/2299
  35151. }
  35152. },
  35153. hand: {
  35154. height: math.unit(2.5, "feet"),
  35155. name: "Hand",
  35156. image: {
  35157. source: "./media/characters/xoltol/hand.svg"
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Small-ish",
  35164. height: math.unit(5 + 11/12, "feet")
  35165. },
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(7 + 2/12, "feet")
  35169. },
  35170. {
  35171. name: "\"Macro\"",
  35172. height: math.unit(14 + 9/12, "feet"),
  35173. default: true
  35174. },
  35175. {
  35176. name: "Alternate Height",
  35177. height: math.unit(20, "feet")
  35178. },
  35179. {
  35180. name: "Actually Macro",
  35181. height: math.unit(100, "feet")
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(5 + 2/12, "feet"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/kotetsu-redwood/front.svg",
  35193. extra: 1053/942,
  35194. bottom: 60/1113
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(5 + 2/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(2.4, "meters"),
  35211. weight: math.unit(125, "kg"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/lilith/front.svg",
  35215. extra: 1590/1513,
  35216. bottom: 203/1793
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Humanoid",
  35223. height: math.unit(2.4, "meters")
  35224. },
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(6, "meters"),
  35228. default: true
  35229. },
  35230. {
  35231. name: "Largest",
  35232. height: math.unit(55, "meters")
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(8 + 4/12, "feet"),
  35241. weight: math.unit(535, "lb"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/beh'kah-bolger/front.svg",
  35245. extra: 1660/1603,
  35246. bottom: 37/1697
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(8 + 4/12, "feet"),
  35254. default: true
  35255. },
  35256. {
  35257. name: "Kaiju",
  35258. height: math.unit(250, "feet")
  35259. },
  35260. {
  35261. name: "Still Growing",
  35262. height: math.unit(10, "miles")
  35263. },
  35264. {
  35265. name: "Continental",
  35266. height: math.unit(5000, "miles")
  35267. },
  35268. {
  35269. name: "Final Form",
  35270. height: math.unit(2500000, "miles")
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(7 + 2/12, "feet"),
  35279. weight: math.unit(230, "kg"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/tatyana-milewska/front.svg",
  35283. extra: 1199/1150,
  35284. bottom: 86/1285
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(7 + 2/12, "feet"),
  35292. default: true
  35293. },
  35294. {
  35295. name: "Big",
  35296. height: math.unit(12, "feet")
  35297. },
  35298. {
  35299. name: "Minimacro",
  35300. height: math.unit(20, "feet")
  35301. },
  35302. {
  35303. name: "Macro",
  35304. height: math.unit(120, "feet")
  35305. },
  35306. ]
  35307. ))
  35308. characterMakers.push(() => makeCharacter(
  35309. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35310. {
  35311. front: {
  35312. height: math.unit(7 + 8/12, "feet"),
  35313. weight: math.unit(152, "kg"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/helen-arri/front.svg",
  35317. extra: 440/423,
  35318. bottom: 14/454
  35319. }
  35320. },
  35321. back: {
  35322. height: math.unit(7 + 8/12, "feet"),
  35323. weight: math.unit(152, "kg"),
  35324. name: "Back",
  35325. image: {
  35326. source: "./media/characters/helen-arri/back.svg",
  35327. extra: 443/426,
  35328. bottom: 8/451
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(7 + 8/12, "feet"),
  35336. default: true
  35337. },
  35338. {
  35339. name: "Big",
  35340. height: math.unit(14, "feet")
  35341. },
  35342. {
  35343. name: "Minimacro",
  35344. height: math.unit(24, "feet")
  35345. },
  35346. {
  35347. name: "Macro",
  35348. height: math.unit(140, "feet")
  35349. },
  35350. ]
  35351. ))
  35352. characterMakers.push(() => makeCharacter(
  35353. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35354. {
  35355. front: {
  35356. height: math.unit(6, "meters"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/ehanu-rehu/front.svg",
  35360. extra: 1800/1800,
  35361. bottom: 59/1859
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(6, "meters"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35375. {
  35376. front: {
  35377. height: math.unit(7 + 3/12, "feet"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/renholder/front.svg",
  35381. extra: 3096/2960,
  35382. bottom: 250/3346
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Normal Bat",
  35389. height: math.unit(7 + 3/12, "feet"),
  35390. default: true
  35391. },
  35392. {
  35393. name: "Slightly Tall Bat",
  35394. height: math.unit(100, "feet")
  35395. },
  35396. {
  35397. name: "Big Bat",
  35398. height: math.unit(1000, "feet")
  35399. },
  35400. {
  35401. name: "City-Sized Bat",
  35402. height: math.unit(200000, "feet")
  35403. },
  35404. {
  35405. name: "Bigger Bat",
  35406. height: math.unit(10000, "miles")
  35407. },
  35408. {
  35409. name: "Solar Sized Bat",
  35410. height: math.unit(100, "AU")
  35411. },
  35412. {
  35413. name: "Galactic Bat",
  35414. height: math.unit(200000, "lightyears")
  35415. },
  35416. {
  35417. name: "Universally Known Bat",
  35418. height: math.unit(1, "universe")
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35424. {
  35425. front: {
  35426. height: math.unit(6 + 11/12, "feet"),
  35427. weight: math.unit(250, "lb"),
  35428. name: "Front",
  35429. image: {
  35430. source: "./media/characters/cookiecat/front.svg",
  35431. extra: 893/827,
  35432. bottom: 14/907
  35433. }
  35434. },
  35435. },
  35436. [
  35437. {
  35438. name: "Micro",
  35439. height: math.unit(3, "inches")
  35440. },
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(6 + 11/12, "feet"),
  35444. default: true
  35445. },
  35446. {
  35447. name: "Macro",
  35448. height: math.unit(100, "feet")
  35449. },
  35450. {
  35451. name: "Macro+",
  35452. height: math.unit(404, "feet")
  35453. },
  35454. {
  35455. name: "Megamacro",
  35456. height: math.unit(165, "miles")
  35457. },
  35458. {
  35459. name: "Planetary",
  35460. height: math.unit(4600, "miles")
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(10 + 3/12, "feet"),
  35469. weight: math.unit(1500, "lb"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/tux-kusanagi/front.svg",
  35473. extra: 944/840,
  35474. bottom: 39/983
  35475. }
  35476. },
  35477. back: {
  35478. height: math.unit(10 + 3/12, "feet"),
  35479. weight: math.unit(1500, "lb"),
  35480. name: "Back",
  35481. image: {
  35482. source: "./media/characters/tux-kusanagi/back.svg",
  35483. extra: 941/842,
  35484. bottom: 28/969
  35485. }
  35486. },
  35487. rump: {
  35488. height: math.unit(5.25, "feet"),
  35489. name: "Rump",
  35490. image: {
  35491. source: "./media/characters/tux-kusanagi/rump.svg"
  35492. }
  35493. },
  35494. beak: {
  35495. height: math.unit(1.54, "feet"),
  35496. name: "Beak",
  35497. image: {
  35498. source: "./media/characters/tux-kusanagi/beak.svg"
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(10 + 3/12, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(58, "feet"),
  35515. weight: math.unit(200, "tons"),
  35516. name: "Front",
  35517. image: {
  35518. source: "./media/characters/uzarmazari/front.svg",
  35519. extra: 1575/1455,
  35520. bottom: 152/1727
  35521. }
  35522. },
  35523. back: {
  35524. height: math.unit(58, "feet"),
  35525. weight: math.unit(200, "tons"),
  35526. name: "Back",
  35527. image: {
  35528. source: "./media/characters/uzarmazari/back.svg",
  35529. extra: 1585/1510,
  35530. bottom: 157/1742
  35531. }
  35532. },
  35533. head: {
  35534. height: math.unit(26, "feet"),
  35535. name: "Head",
  35536. image: {
  35537. source: "./media/characters/uzarmazari/head.svg"
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(58, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35551. {
  35552. side: {
  35553. height: math.unit(15, "feet"),
  35554. name: "Side",
  35555. image: {
  35556. source: "./media/characters/akitu/side.svg",
  35557. extra: 1421/1321,
  35558. bottom: 157/1578
  35559. }
  35560. },
  35561. front: {
  35562. height: math.unit(15, "feet"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/akitu/front.svg",
  35566. extra: 1435/1326,
  35567. bottom: 232/1667
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(15, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(10 + 8/12, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/azalie-croixland/front.svg",
  35587. extra: 1972/1856,
  35588. bottom: 31/2003
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Original Height",
  35595. height: math.unit(5 + 4/12, "feet")
  35596. },
  35597. {
  35598. name: "Normal Height",
  35599. height: math.unit(10 + 8/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35606. {
  35607. side: {
  35608. height: math.unit(7 + 1/12, "feet"),
  35609. weight: math.unit(245, "lb"),
  35610. name: "Side",
  35611. image: {
  35612. source: "./media/characters/kavus-kazian/side.svg",
  35613. extra: 349/342,
  35614. bottom: 15/364
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(7 + 1/12, "feet"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35628. {
  35629. normalFront: {
  35630. height: math.unit(5 + 11/12, "feet"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/moonlight-rose/normal-front.svg",
  35634. extra: 1980/1825,
  35635. bottom: 18/1998
  35636. },
  35637. form: "normal",
  35638. default: true
  35639. },
  35640. normalBack: {
  35641. height: math.unit(5 + 11/12, "feet"),
  35642. name: "Back",
  35643. image: {
  35644. source: "./media/characters/moonlight-rose/normal-back.svg",
  35645. extra: 2010/1839,
  35646. bottom: 10/2020
  35647. },
  35648. form: "normal"
  35649. },
  35650. demonFront: {
  35651. height: math.unit(1.5, "earths"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/moonlight-rose/demon.svg",
  35655. extra: 1400/1294,
  35656. bottom: 45/1445
  35657. },
  35658. form: "demon",
  35659. default: true
  35660. },
  35661. terraFront: {
  35662. height: math.unit(1.5, "earths"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/moonlight-rose/terra.svg"
  35666. },
  35667. form: "terra",
  35668. default: true
  35669. },
  35670. jupiterFront: {
  35671. height: math.unit(69911*2, "km"),
  35672. name: "Front",
  35673. image: {
  35674. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35675. extra: 1367/1286,
  35676. bottom: 55/1422
  35677. },
  35678. form: "jupiter",
  35679. default: true
  35680. },
  35681. neptuneFront: {
  35682. height: math.unit(24622*2, "feet"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35686. extra: 1851/1712,
  35687. bottom: 0/1851
  35688. },
  35689. form: "neptune",
  35690. default: true
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "\"Natural\" Height",
  35696. height: math.unit(5 + 11/12, "feet"),
  35697. form: "normal"
  35698. },
  35699. {
  35700. name: "Smallest comfortable size",
  35701. height: math.unit(40, "meters"),
  35702. form: "normal"
  35703. },
  35704. {
  35705. name: "Common size",
  35706. height: math.unit(50, "km"),
  35707. form: "normal",
  35708. default: true
  35709. },
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(1.5, "earths"),
  35713. form: "demon",
  35714. default: true
  35715. },
  35716. {
  35717. name: "Universal",
  35718. height: math.unit(15, "universes"),
  35719. form: "demon"
  35720. },
  35721. {
  35722. name: "Earth",
  35723. height: math.unit(1.5, "earths"),
  35724. form: "terra",
  35725. default: true
  35726. },
  35727. {
  35728. name: "Super Earth",
  35729. height: math.unit(67.5, "earths"),
  35730. form: "terra"
  35731. },
  35732. {
  35733. name: "Doesn't fit in a solar system...",
  35734. height: math.unit(1, "galaxy"),
  35735. form: "terra"
  35736. },
  35737. {
  35738. name: "Saturn",
  35739. height: math.unit(58232*2, "km"),
  35740. form: "jupiter"
  35741. },
  35742. {
  35743. name: "Jupiter",
  35744. height: math.unit(69911*2, "km"),
  35745. form: "jupiter",
  35746. default: true
  35747. },
  35748. {
  35749. name: "HD 100546 b",
  35750. height: math.unit(482938, "km"),
  35751. form: "jupiter"
  35752. },
  35753. {
  35754. name: "Enceladus",
  35755. height: math.unit(513*2, "km"),
  35756. form: "neptune"
  35757. },
  35758. {
  35759. name: "Europe",
  35760. height: math.unit(1560*2, "km"),
  35761. form: "neptune"
  35762. },
  35763. {
  35764. name: "Neptune",
  35765. height: math.unit(24622*2, "km"),
  35766. form: "neptune",
  35767. default: true
  35768. },
  35769. {
  35770. name: "CoRoT-9b",
  35771. height: math.unit(75067*2, "km"),
  35772. form: "neptune"
  35773. },
  35774. ],
  35775. {
  35776. "normal": {
  35777. name: "Normal",
  35778. default: true
  35779. },
  35780. "demon": {
  35781. name: "Demon"
  35782. },
  35783. "terra": {
  35784. name: "Terra"
  35785. },
  35786. "jupiter": {
  35787. name: "Jupiter"
  35788. },
  35789. "neptune": {
  35790. name: "Neptune"
  35791. }
  35792. }
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(16, "feet"),
  35799. weight: math.unit(610, "kg"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/huckle/front.svg",
  35803. extra: 1731/1625,
  35804. bottom: 33/1764
  35805. }
  35806. },
  35807. back: {
  35808. height: math.unit(16, "feet"),
  35809. weight: math.unit(610, "kg"),
  35810. name: "Back",
  35811. image: {
  35812. source: "./media/characters/huckle/back.svg",
  35813. extra: 1738/1651,
  35814. bottom: 37/1775
  35815. }
  35816. },
  35817. laughing: {
  35818. height: math.unit(3.75, "feet"),
  35819. name: "Laughing",
  35820. image: {
  35821. source: "./media/characters/huckle/laughing.svg"
  35822. }
  35823. },
  35824. angry: {
  35825. height: math.unit(4.15, "feet"),
  35826. name: "Angry",
  35827. image: {
  35828. source: "./media/characters/huckle/angry.svg"
  35829. }
  35830. },
  35831. },
  35832. [
  35833. {
  35834. name: "Normal",
  35835. height: math.unit(16, "feet"),
  35836. default: true
  35837. },
  35838. {
  35839. name: "Mini Macro",
  35840. height: math.unit(463, "feet")
  35841. },
  35842. {
  35843. name: "Macro",
  35844. height: math.unit(1680, "meters")
  35845. },
  35846. {
  35847. name: "Mega Macro",
  35848. height: math.unit(175, "km")
  35849. },
  35850. {
  35851. name: "Terra Macro",
  35852. height: math.unit(32, "gigameters")
  35853. },
  35854. {
  35855. name: "Multiverse+",
  35856. height: math.unit(2.56e23, "yottameters")
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(6 + 9/12, "feet"),
  35865. weight: math.unit(280, "lb"),
  35866. name: "Front",
  35867. image: {
  35868. source: "./media/characters/candy/front.svg",
  35869. extra: 234/217,
  35870. bottom: 11/245
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Really Small",
  35877. height: math.unit(0.1, "nm")
  35878. },
  35879. {
  35880. name: "Micro",
  35881. height: math.unit(2, "inches")
  35882. },
  35883. {
  35884. name: "Normal",
  35885. height: math.unit(6 + 9/12, "feet"),
  35886. default: true
  35887. },
  35888. {
  35889. name: "Small Macro",
  35890. height: math.unit(69, "feet")
  35891. },
  35892. {
  35893. name: "Macro",
  35894. height: math.unit(160, "feet")
  35895. },
  35896. {
  35897. name: "Megamacro",
  35898. height: math.unit(22000, "miles")
  35899. },
  35900. {
  35901. name: "Gigamacro",
  35902. height: math.unit(50000, "miles")
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35908. {
  35909. front: {
  35910. height: math.unit(4, "feet"),
  35911. weight: math.unit(90, "lb"),
  35912. name: "Front",
  35913. image: {
  35914. source: "./media/characters/joey-mcdonald/front.svg",
  35915. extra: 1059/852,
  35916. bottom: 33/1092
  35917. }
  35918. },
  35919. back: {
  35920. height: math.unit(4, "feet"),
  35921. weight: math.unit(90, "lb"),
  35922. name: "Back",
  35923. image: {
  35924. source: "./media/characters/joey-mcdonald/back.svg",
  35925. extra: 1077/879,
  35926. bottom: 5/1082
  35927. }
  35928. },
  35929. frontKobold: {
  35930. height: math.unit(4, "feet"),
  35931. weight: math.unit(100, "lb"),
  35932. name: "Front-kobold",
  35933. image: {
  35934. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35935. extra: 1480/1367,
  35936. bottom: 0/1480
  35937. }
  35938. },
  35939. backKobold: {
  35940. height: math.unit(4, "feet"),
  35941. weight: math.unit(100, "lb"),
  35942. name: "Back-kobold",
  35943. image: {
  35944. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35945. extra: 1449/1361,
  35946. bottom: 0/1449
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(4, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(12 + 6/12, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/kass-lockheed/front.svg",
  35966. extra: 354/343,
  35967. bottom: 9/363
  35968. }
  35969. },
  35970. back: {
  35971. height: math.unit(12 + 6/12, "feet"),
  35972. name: "Back",
  35973. image: {
  35974. source: "./media/characters/kass-lockheed/back.svg",
  35975. extra: 364/352,
  35976. bottom: 3/367
  35977. }
  35978. },
  35979. dick: {
  35980. height: math.unit(3.12, "feet"),
  35981. name: "Dick",
  35982. image: {
  35983. source: "./media/characters/kass-lockheed/dick.svg"
  35984. }
  35985. },
  35986. head: {
  35987. height: math.unit(2.6, "feet"),
  35988. name: "Head",
  35989. image: {
  35990. source: "./media/characters/kass-lockheed/head.svg"
  35991. }
  35992. },
  35993. bleh: {
  35994. height: math.unit(2.85, "feet"),
  35995. name: "Bleh",
  35996. image: {
  35997. source: "./media/characters/kass-lockheed/bleh.svg"
  35998. }
  35999. },
  36000. smug: {
  36001. height: math.unit(2.85, "feet"),
  36002. name: "Smug",
  36003. image: {
  36004. source: "./media/characters/kass-lockheed/smug.svg"
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Normal",
  36011. height: math.unit(12 + 6/12, "feet"),
  36012. default: true
  36013. },
  36014. ]
  36015. ))
  36016. characterMakers.push(() => makeCharacter(
  36017. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36018. {
  36019. front: {
  36020. height: math.unit(6 + 2/12, "feet"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/taylor/front.svg",
  36024. extra: 639/495,
  36025. bottom: 12/651
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(6 + 2/12, "feet"),
  36033. default: true
  36034. },
  36035. {
  36036. name: "Big",
  36037. height: math.unit(15, "feet")
  36038. },
  36039. {
  36040. name: "Lorg",
  36041. height: math.unit(80, "feet")
  36042. },
  36043. {
  36044. name: "Too Lorg",
  36045. height: math.unit(120, "feet")
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(15, "feet"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/kaizer/front.svg",
  36057. extra: 1612/1436,
  36058. bottom: 43/1655
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(15, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(2, "feet"),
  36075. weight: math.unit(30, "lb"),
  36076. name: "Front",
  36077. image: {
  36078. source: "./media/characters/sandy/front.svg",
  36079. extra: 1439/1307,
  36080. bottom: 194/1633
  36081. }
  36082. },
  36083. },
  36084. [
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(2, "feet"),
  36088. default: true
  36089. },
  36090. ]
  36091. ))
  36092. characterMakers.push(() => makeCharacter(
  36093. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36094. {
  36095. front: {
  36096. height: math.unit(3, "feet"),
  36097. name: "Front",
  36098. image: {
  36099. source: "./media/characters/mellvi/front.svg",
  36100. extra: 1831/1630,
  36101. bottom: 58/1889
  36102. }
  36103. },
  36104. },
  36105. [
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(3, "feet"),
  36109. default: true
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(5 + 11/12, "feet"),
  36118. weight: math.unit(200, "lb"),
  36119. name: "Front",
  36120. image: {
  36121. source: "./media/characters/shirou/front.svg",
  36122. extra: 2491/2383,
  36123. bottom: 189/2680
  36124. }
  36125. },
  36126. back: {
  36127. height: math.unit(5 + 11/12, "feet"),
  36128. weight: math.unit(200, "lb"),
  36129. name: "Back",
  36130. image: {
  36131. source: "./media/characters/shirou/back.svg",
  36132. extra: 2554/2450,
  36133. bottom: 76/2630
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(5 + 11/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(6 + 3/12, "feet"),
  36150. weight: math.unit(177, "lb"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/noryu/front.svg",
  36154. extra: 973/885,
  36155. bottom: 10/983
  36156. }
  36157. },
  36158. },
  36159. [
  36160. {
  36161. name: "Normal",
  36162. height: math.unit(6 + 3/12, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36169. {
  36170. front: {
  36171. height: math.unit(5 + 6/12, "feet"),
  36172. weight: math.unit(170, "lb"),
  36173. name: "Front",
  36174. image: {
  36175. source: "./media/characters/mevolas-rubenido/front.svg",
  36176. extra: 2109/1901,
  36177. bottom: 96/2205
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(5 + 6/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(100, "feet"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/dee/front.svg",
  36197. extra: 2153/2036,
  36198. bottom: 59/2212
  36199. }
  36200. },
  36201. back: {
  36202. height: math.unit(100, "feet"),
  36203. name: "Back",
  36204. image: {
  36205. source: "./media/characters/dee/back.svg",
  36206. extra: 2183/2058,
  36207. bottom: 75/2258
  36208. }
  36209. },
  36210. foot: {
  36211. height: math.unit(19.43, "feet"),
  36212. name: "Foot",
  36213. image: {
  36214. source: "./media/characters/dee/foot.svg"
  36215. }
  36216. },
  36217. hoof: {
  36218. height: math.unit(20.6, "feet"),
  36219. name: "Hoof",
  36220. image: {
  36221. source: "./media/characters/dee/hoof.svg"
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Macro",
  36228. height: math.unit(100, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(5 + 6/12, "feet"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/teh/front.svg",
  36241. extra: 1002/847,
  36242. bottom: 62/1064
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(5 + 6/12, "feet"),
  36250. default: true
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36256. {
  36257. side: {
  36258. height: math.unit(6 + 1/12, "feet"),
  36259. weight: math.unit(204, "lb"),
  36260. name: "Side",
  36261. image: {
  36262. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36263. extra: 974/775,
  36264. bottom: 169/1143
  36265. }
  36266. },
  36267. sitting: {
  36268. height: math.unit(6 + 2/12, "feet"),
  36269. weight: math.unit(204, "lb"),
  36270. name: "Sitting",
  36271. image: {
  36272. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36273. extra: 1175/964,
  36274. bottom: 378/1553
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(6 + 1/12, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36288. {
  36289. front: {
  36290. height: math.unit(6, "inches"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/tululi/front.svg",
  36294. extra: 1997/1876,
  36295. bottom: 20/2017
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(6, "inches"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(4 + 1/12, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/star/front.svg",
  36315. extra: 1493/1189,
  36316. bottom: 48/1541
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "Normal",
  36323. height: math.unit(4 + 1/12, "feet"),
  36324. default: true
  36325. },
  36326. ]
  36327. ))
  36328. characterMakers.push(() => makeCharacter(
  36329. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36330. {
  36331. front: {
  36332. height: math.unit(6 + 3/12, "feet"),
  36333. name: "Front",
  36334. image: {
  36335. source: "./media/characters/comet/front.svg",
  36336. extra: 1681/1462,
  36337. bottom: 26/1707
  36338. }
  36339. },
  36340. },
  36341. [
  36342. {
  36343. name: "Normal",
  36344. height: math.unit(6 + 3/12, "feet"),
  36345. default: true
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(950, "feet"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/vortex/front.svg",
  36357. extra: 1497/1434,
  36358. bottom: 56/1553
  36359. }
  36360. },
  36361. maw: {
  36362. height: math.unit(285, "feet"),
  36363. name: "Maw",
  36364. image: {
  36365. source: "./media/characters/vortex/maw.svg"
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Macro",
  36372. height: math.unit(950, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(600, "feet"),
  36382. weight: math.unit(0.02, "grams"),
  36383. name: "Front",
  36384. image: {
  36385. source: "./media/characters/doodle/front.svg",
  36386. extra: 1578/1413,
  36387. bottom: 37/1615
  36388. }
  36389. },
  36390. },
  36391. [
  36392. {
  36393. name: "Macro",
  36394. height: math.unit(600, "feet"),
  36395. default: true
  36396. },
  36397. ]
  36398. ))
  36399. characterMakers.push(() => makeCharacter(
  36400. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36401. {
  36402. front: {
  36403. height: math.unit(6 + 6/12, "feet"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/jai/front.svg",
  36407. extra: 1645/1534,
  36408. bottom: 115/1760
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(6 + 6/12, "feet"),
  36416. default: true
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(6 + 8/12, "feet"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/pixel/front.svg",
  36428. extra: 1900/1735,
  36429. bottom: 63/1963
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(6 + 8/12, "feet"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36443. {
  36444. back: {
  36445. height: math.unit(4 + 1/12, "feet"),
  36446. weight: math.unit(75, "lb"),
  36447. name: "Back",
  36448. image: {
  36449. source: "./media/characters/rhett/back.svg",
  36450. extra: 930/878,
  36451. bottom: 25/955
  36452. }
  36453. },
  36454. front: {
  36455. height: math.unit(4 + 1/12, "feet"),
  36456. weight: math.unit(75, "lb"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/rhett/front.svg",
  36460. extra: 1682/1586,
  36461. bottom: 92/1774
  36462. }
  36463. },
  36464. },
  36465. [
  36466. {
  36467. name: "Micro",
  36468. height: math.unit(8, "inches")
  36469. },
  36470. {
  36471. name: "Tiny",
  36472. height: math.unit(2, "feet")
  36473. },
  36474. {
  36475. name: "Normal",
  36476. height: math.unit(4 + 1/12, "feet"),
  36477. default: true
  36478. },
  36479. ]
  36480. ))
  36481. characterMakers.push(() => makeCharacter(
  36482. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36483. {
  36484. front: {
  36485. height: math.unit(3 + 3/12, "feet"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/penny/front.svg",
  36489. extra: 1406/1311,
  36490. bottom: 26/1432
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(3 + 3/12, "feet"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(4 + 11/12, "feet"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/monty/front.svg",
  36510. extra: 1479/1209,
  36511. bottom: 0/1479
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(4 + 11/12, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(8 + 4/12, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/sterling/front.svg",
  36531. extra: 1420/1236,
  36532. bottom: 27/1447
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(8 + 4/12, "feet"),
  36540. default: true
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(15, "feet"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/marble/front.svg",
  36552. extra: 973/937,
  36553. bottom: 32/1005
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(15, "feet"),
  36561. default: true
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36567. {
  36568. front: {
  36569. height: math.unit(3, "inches"),
  36570. name: "Front",
  36571. image: {
  36572. source: "./media/characters/powder/front.svg",
  36573. extra: 1504/1334,
  36574. bottom: 518/2022
  36575. }
  36576. },
  36577. },
  36578. [
  36579. {
  36580. name: "Normal",
  36581. height: math.unit(3, "inches"),
  36582. default: true
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(4 + 5/12, "feet"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/joey-raccoon/front.svg",
  36594. extra: 1273/1197,
  36595. bottom: 0/1273
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(4 + 5/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(8 + 4/12, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/vick/front.svg",
  36615. extra: 2187/2118,
  36616. bottom: 47/2234
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(8 + 4/12, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(5 + 5/12, "feet"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/mitsy/front.svg",
  36636. extra: 1842/1695,
  36637. bottom: 0/1842
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(5 + 5/12, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36651. {
  36652. front: {
  36653. height: math.unit(6 + 3/12, "feet"),
  36654. name: "Front",
  36655. image: {
  36656. source: "./media/characters/silvy/front.svg",
  36657. extra: 1995/1836,
  36658. bottom: 225/2220
  36659. }
  36660. },
  36661. },
  36662. [
  36663. {
  36664. name: "Normal",
  36665. height: math.unit(6 + 3/12, "feet"),
  36666. default: true
  36667. },
  36668. ]
  36669. ))
  36670. characterMakers.push(() => makeCharacter(
  36671. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36672. {
  36673. front: {
  36674. height: math.unit(3 + 8/12, "feet"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/rodney/front.svg",
  36678. extra: 1956/1747,
  36679. bottom: 31/1987
  36680. }
  36681. },
  36682. frontDressed: {
  36683. height: math.unit(2.9, "feet"),
  36684. name: "Front (Dressed)",
  36685. image: {
  36686. source: "./media/characters/rodney/front-dressed.svg",
  36687. extra: 1382/1241,
  36688. bottom: 385/1767
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(3 + 8/12, "feet"),
  36696. default: true
  36697. },
  36698. ]
  36699. ))
  36700. characterMakers.push(() => makeCharacter(
  36701. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36702. {
  36703. front: {
  36704. height: math.unit(5 + 9/12, "feet"),
  36705. weight: math.unit(194, "lbs"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/zakail-sudekai/front.svg",
  36709. extra: 2696/2533,
  36710. bottom: 248/2944
  36711. }
  36712. },
  36713. maw: {
  36714. height: math.unit(1.35, "feet"),
  36715. name: "Maw",
  36716. image: {
  36717. source: "./media/characters/zakail-sudekai/maw.svg"
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(5 + 9/12, "feet"),
  36725. default: true
  36726. },
  36727. ]
  36728. ))
  36729. characterMakers.push(() => makeCharacter(
  36730. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36731. {
  36732. front: {
  36733. height: math.unit(8 + 4/12, "feet"),
  36734. weight: math.unit(1200, "lb"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/eleanor/front.svg",
  36738. extra: 1226/1192,
  36739. bottom: 52/1278
  36740. }
  36741. },
  36742. back: {
  36743. height: math.unit(8 + 4/12, "feet"),
  36744. weight: math.unit(1200, "lb"),
  36745. name: "Back",
  36746. image: {
  36747. source: "./media/characters/eleanor/back.svg",
  36748. extra: 1242/1184,
  36749. bottom: 60/1302
  36750. }
  36751. },
  36752. head: {
  36753. height: math.unit(2.62, "feet"),
  36754. name: "Head",
  36755. image: {
  36756. source: "./media/characters/eleanor/head.svg"
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(8 + 4/12, "feet"),
  36764. default: true
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(8 + 4/12, "feet"),
  36773. weight: math.unit(750, "lb"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/tanya/front.svg",
  36777. extra: 1749/1615,
  36778. bottom: 33/1782
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(8 + 4/12, "feet"),
  36786. default: true
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36792. {
  36793. front: {
  36794. height: math.unit(5, "feet"),
  36795. weight: math.unit(225, "lb"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/cindy/front.svg",
  36799. extra: 1320/1250,
  36800. bottom: 42/1362
  36801. }
  36802. },
  36803. frontDressed: {
  36804. height: math.unit(5, "feet"),
  36805. weight: math.unit(225, "lb"),
  36806. name: "Front (Dressed)",
  36807. image: {
  36808. source: "./media/characters/cindy/front-dressed.svg",
  36809. extra: 1320/1250,
  36810. bottom: 42/1362
  36811. }
  36812. },
  36813. back: {
  36814. height: math.unit(5, "feet"),
  36815. weight: math.unit(225, "lb"),
  36816. name: "Back",
  36817. image: {
  36818. source: "./media/characters/cindy/back.svg",
  36819. extra: 1384/1346,
  36820. bottom: 14/1398
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(5, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(6 + 9/12, "feet"),
  36837. weight: math.unit(440, "lb"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/wilbur-owen/front.svg",
  36841. extra: 1575/1448,
  36842. bottom: 72/1647
  36843. }
  36844. },
  36845. back: {
  36846. height: math.unit(6 + 9/12, "feet"),
  36847. weight: math.unit(440, "lb"),
  36848. name: "Back",
  36849. image: {
  36850. source: "./media/characters/wilbur-owen/back.svg",
  36851. extra: 1578/1445,
  36852. bottom: 36/1614
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(6 + 9/12, "feet"),
  36860. default: true
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36866. {
  36867. front: {
  36868. height: math.unit(6 + 5/12, "feet"),
  36869. weight: math.unit(650, "lb"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/keegan/front.svg",
  36873. extra: 2387/2198,
  36874. bottom: 33/2420
  36875. }
  36876. },
  36877. side: {
  36878. height: math.unit(6 + 5/12, "feet"),
  36879. weight: math.unit(650, "lb"),
  36880. name: "Side",
  36881. image: {
  36882. source: "./media/characters/keegan/side.svg",
  36883. extra: 2390/2202,
  36884. bottom: 47/2437
  36885. }
  36886. },
  36887. back: {
  36888. height: math.unit(6 + 5/12, "feet"),
  36889. weight: math.unit(650, "lb"),
  36890. name: "Back",
  36891. image: {
  36892. source: "./media/characters/keegan/back.svg",
  36893. extra: 2418/2268,
  36894. bottom: 15/2433
  36895. }
  36896. },
  36897. frontSfw: {
  36898. height: math.unit(6 + 5/12, "feet"),
  36899. weight: math.unit(650, "lb"),
  36900. name: "Front (SFW)",
  36901. image: {
  36902. source: "./media/characters/keegan/front-sfw.svg",
  36903. extra: 2387/2198,
  36904. bottom: 33/2420
  36905. }
  36906. },
  36907. beans: {
  36908. height: math.unit(1.85, "feet"),
  36909. name: "Beans",
  36910. image: {
  36911. source: "./media/characters/keegan/beans.svg"
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Normal",
  36918. height: math.unit(6 + 5/12, "feet"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(9, "feet"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/colton/front.svg",
  36931. extra: 1589/1326,
  36932. bottom: 139/1728
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(9, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(2 + 9/12, "feet"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/bora/front.svg",
  36952. extra: 1265/1250,
  36953. bottom: 24/1289
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(2 + 9/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(8, "feet"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/myu-myu/front.svg",
  36973. extra: 1949/1857,
  36974. bottom: 90/2039
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(8, "feet"),
  36982. default: true
  36983. },
  36984. {
  36985. name: "Big",
  36986. height: math.unit(15, "feet")
  36987. },
  36988. {
  36989. name: "BIG",
  36990. height: math.unit(25, "feet")
  36991. },
  36992. ]
  36993. ))
  36994. characterMakers.push(() => makeCharacter(
  36995. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36996. {
  36997. side: {
  36998. height: math.unit(7 + 5/12, "feet"),
  36999. weight: math.unit(2800, "lb"),
  37000. name: "Side",
  37001. image: {
  37002. source: "./media/characters/haloren/side.svg",
  37003. extra: 1793/409,
  37004. bottom: 59/1852
  37005. }
  37006. },
  37007. frontPaw: {
  37008. height: math.unit(2.36, "feet"),
  37009. name: "Front paw",
  37010. image: {
  37011. source: "./media/characters/haloren/front-paw.svg"
  37012. }
  37013. },
  37014. hindPaw: {
  37015. height: math.unit(3.18, "feet"),
  37016. name: "Hind paw",
  37017. image: {
  37018. source: "./media/characters/haloren/hind-paw.svg"
  37019. }
  37020. },
  37021. maw: {
  37022. height: math.unit(5.05, "feet"),
  37023. name: "Maw",
  37024. image: {
  37025. source: "./media/characters/haloren/maw.svg"
  37026. }
  37027. },
  37028. dick: {
  37029. height: math.unit(2.90, "feet"),
  37030. name: "Dick",
  37031. image: {
  37032. source: "./media/characters/haloren/dick.svg"
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(7 + 5/12, "feet"),
  37040. default: true
  37041. },
  37042. {
  37043. name: "Enhanced",
  37044. height: math.unit(14 + 3/12, "feet")
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(171, "cm"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/kimmy/front.svg",
  37056. extra: 1491/1435,
  37057. bottom: 53/1544
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Small",
  37064. height: math.unit(9, "cm")
  37065. },
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(171, "cm"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(8, "feet"),
  37078. weight: math.unit(300, "lb"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/galeboomer/front.svg",
  37082. extra: 4651/4415,
  37083. bottom: 162/4813
  37084. }
  37085. },
  37086. back: {
  37087. height: math.unit(8, "feet"),
  37088. weight: math.unit(300, "lb"),
  37089. name: "Back",
  37090. image: {
  37091. source: "./media/characters/galeboomer/back.svg",
  37092. extra: 4544/4314,
  37093. bottom: 16/4560
  37094. }
  37095. },
  37096. frontAlt: {
  37097. height: math.unit(8, "feet"),
  37098. weight: math.unit(300, "lb"),
  37099. name: "Front (Alt)",
  37100. image: {
  37101. source: "./media/characters/galeboomer/front-alt.svg",
  37102. extra: 4458/4228,
  37103. bottom: 68/4526
  37104. }
  37105. },
  37106. maw: {
  37107. height: math.unit(1.2, "feet"),
  37108. name: "Maw",
  37109. image: {
  37110. source: "./media/characters/galeboomer/maw.svg"
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(8, "feet"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37124. {
  37125. front: {
  37126. height: math.unit(5 + 9/12, "feet"),
  37127. weight: math.unit(120, "lb"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/chyr/front.svg",
  37131. extra: 1323/1254,
  37132. bottom: 63/1386
  37133. }
  37134. },
  37135. back: {
  37136. height: math.unit(5 + 9/12, "feet"),
  37137. weight: math.unit(120, "lb"),
  37138. name: "Back",
  37139. image: {
  37140. source: "./media/characters/chyr/back.svg",
  37141. extra: 1323/1252,
  37142. bottom: 48/1371
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(5 + 9/12, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(7, "feet"),
  37159. weight: math.unit(310, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/solarus/front.svg",
  37163. extra: 2415/2021,
  37164. bottom: 103/2518
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(7, "feet"),
  37169. weight: math.unit(310, "lb"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/solarus/back.svg",
  37173. extra: 2463/2089,
  37174. bottom: 79/2542
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(7, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(16, "feet"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37194. extra: 1844/1780,
  37195. bottom: 58/1902
  37196. }
  37197. },
  37198. winterCoat: {
  37199. height: math.unit(16, "feet"),
  37200. name: "Winter Coat",
  37201. image: {
  37202. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37203. extra: 1807/1775,
  37204. bottom: 69/1876
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(16, "feet"),
  37212. default: true
  37213. },
  37214. {
  37215. name: "Chicago Size",
  37216. height: math.unit(560, "feet")
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(11 + 6/12, "feet"),
  37225. weight: math.unit(1366, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/lexor/front.svg",
  37229. extra: 1560/1481,
  37230. bottom: 211/1771
  37231. }
  37232. },
  37233. back: {
  37234. height: math.unit(11 + 6/12, "feet"),
  37235. weight: math.unit(1366, "lb"),
  37236. name: "Back",
  37237. image: {
  37238. source: "./media/characters/lexor/back.svg",
  37239. extra: 1614/1533,
  37240. bottom: 76/1690
  37241. }
  37242. },
  37243. maw: {
  37244. height: math.unit(3, "feet"),
  37245. name: "Maw",
  37246. image: {
  37247. source: "./media/characters/lexor/maw.svg"
  37248. }
  37249. },
  37250. dick: {
  37251. height: math.unit(2.59, "feet"),
  37252. name: "Dick",
  37253. image: {
  37254. source: "./media/characters/lexor/dick.svg"
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(11 + 6/12, "feet"),
  37262. default: true
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(5 + 8/12, "feet"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/magnum/front.svg",
  37274. extra: 942/855,
  37275. bottom: 26/968
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(5 + 8/12, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(18 + 4/12, "feet"),
  37292. weight: math.unit(1500, "kg"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/solas-sharpsman/front.svg",
  37296. extra: 1698/1589,
  37297. bottom: 0/1698
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(18 + 4/12, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(5 + 5/12, "feet"),
  37314. weight: math.unit(180, "lb"),
  37315. name: "Front",
  37316. image: {
  37317. source: "./media/characters/october/front.svg",
  37318. extra: 1800/1650,
  37319. bottom: 0/1800
  37320. }
  37321. },
  37322. frontNsfw: {
  37323. height: math.unit(5 + 5/12, "feet"),
  37324. weight: math.unit(180, "lb"),
  37325. name: "Front (NSFW)",
  37326. image: {
  37327. source: "./media/characters/october/front-nsfw.svg",
  37328. extra: 1392/1307,
  37329. bottom: 42/1434
  37330. }
  37331. },
  37332. },
  37333. [
  37334. {
  37335. name: "Normal",
  37336. height: math.unit(5 + 5/12, "feet"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(8 + 6/12, "feet"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/essynkardi/front.svg",
  37349. extra: 1914/1846,
  37350. bottom: 22/1936
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(8 + 6/12, "feet"),
  37358. default: true
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(6 + 6/12, "feet"),
  37367. weight: math.unit(7, "lb"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/icky/front.svg",
  37371. extra: 813/782,
  37372. bottom: 66/879
  37373. }
  37374. },
  37375. back: {
  37376. height: math.unit(6 + 6/12, "feet"),
  37377. weight: math.unit(7, "lb"),
  37378. name: "Back",
  37379. image: {
  37380. source: "./media/characters/icky/back.svg",
  37381. extra: 754/735,
  37382. bottom: 56/810
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(6 + 6/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(15, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/rojas/front.svg",
  37402. extra: 1462/1408,
  37403. bottom: 95/1557
  37404. }
  37405. },
  37406. back: {
  37407. height: math.unit(15, "feet"),
  37408. name: "Back",
  37409. image: {
  37410. source: "./media/characters/rojas/back.svg",
  37411. extra: 1023/954,
  37412. bottom: 28/1051
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(15, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37426. {
  37427. frontHuman: {
  37428. height: math.unit(5 + 7/12, "feet"),
  37429. name: "Front (Human)",
  37430. image: {
  37431. source: "./media/characters/alek-dryagan/front-human.svg",
  37432. extra: 1687/1667,
  37433. bottom: 69/1756
  37434. }
  37435. },
  37436. backHuman: {
  37437. height: math.unit(5 + 7/12, "feet"),
  37438. name: "Back (Human)",
  37439. image: {
  37440. source: "./media/characters/alek-dryagan/back-human.svg",
  37441. extra: 1670/1649,
  37442. bottom: 65/1735
  37443. }
  37444. },
  37445. frontDemi: {
  37446. height: math.unit(65, "feet"),
  37447. name: "Front (Demi)",
  37448. image: {
  37449. source: "./media/characters/alek-dryagan/front-demi.svg",
  37450. extra: 1669/1642,
  37451. bottom: 49/1718
  37452. }
  37453. },
  37454. backDemi: {
  37455. height: math.unit(65, "feet"),
  37456. name: "Back (Demi)",
  37457. image: {
  37458. source: "./media/characters/alek-dryagan/back-demi.svg",
  37459. extra: 1658/1637,
  37460. bottom: 40/1698
  37461. }
  37462. },
  37463. mawHuman: {
  37464. height: math.unit(0.3, "feet"),
  37465. name: "Maw (Human)",
  37466. image: {
  37467. source: "./media/characters/alek-dryagan/maw-human.svg"
  37468. }
  37469. },
  37470. mawDemi: {
  37471. height: math.unit(3.8, "feet"),
  37472. name: "Maw (Demi)",
  37473. image: {
  37474. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37475. }
  37476. },
  37477. },
  37478. [
  37479. {
  37480. name: "Normal",
  37481. height: math.unit(5 + 7/12, "feet"),
  37482. default: true
  37483. },
  37484. ]
  37485. ))
  37486. characterMakers.push(() => makeCharacter(
  37487. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37488. {
  37489. frontHuman: {
  37490. height: math.unit(5 + 2/12, "feet"),
  37491. name: "Front (Human)",
  37492. image: {
  37493. source: "./media/characters/gen/front-human.svg",
  37494. extra: 1627/1538,
  37495. bottom: 71/1698
  37496. }
  37497. },
  37498. backHuman: {
  37499. height: math.unit(5 + 2/12, "feet"),
  37500. name: "Back (Human)",
  37501. image: {
  37502. source: "./media/characters/gen/back-human.svg",
  37503. extra: 1638/1548,
  37504. bottom: 69/1707
  37505. }
  37506. },
  37507. frontDemi: {
  37508. height: math.unit(5 + 2/12, "feet"),
  37509. name: "Front (Demi)",
  37510. image: {
  37511. source: "./media/characters/gen/front-demi.svg",
  37512. extra: 1627/1538,
  37513. bottom: 71/1698
  37514. }
  37515. },
  37516. backDemi: {
  37517. height: math.unit(5 + 2/12, "feet"),
  37518. name: "Back (Demi)",
  37519. image: {
  37520. source: "./media/characters/gen/back-demi.svg",
  37521. extra: 1638/1548,
  37522. bottom: 69/1707
  37523. }
  37524. },
  37525. },
  37526. [
  37527. {
  37528. name: "Normal",
  37529. height: math.unit(5 + 2/12, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37536. {
  37537. frontImp: {
  37538. height: math.unit(1 + 11/12, "feet"),
  37539. name: "Front (Imp)",
  37540. image: {
  37541. source: "./media/characters/max-kobold/front-imp.svg",
  37542. extra: 1238/1134,
  37543. bottom: 81/1319
  37544. }
  37545. },
  37546. backImp: {
  37547. height: math.unit(1 + 11/12, "feet"),
  37548. name: "Back (Imp)",
  37549. image: {
  37550. source: "./media/characters/max-kobold/back-imp.svg",
  37551. extra: 1334/1175,
  37552. bottom: 34/1368
  37553. }
  37554. },
  37555. frontDemi: {
  37556. height: math.unit(5 + 9/12, "feet"),
  37557. name: "Front (Demi)",
  37558. image: {
  37559. source: "./media/characters/max-kobold/front-demi.svg",
  37560. extra: 1715/1685,
  37561. bottom: 54/1769
  37562. }
  37563. },
  37564. backDemi: {
  37565. height: math.unit(5 + 9/12, "feet"),
  37566. name: "Back (Demi)",
  37567. image: {
  37568. source: "./media/characters/max-kobold/back-demi.svg",
  37569. extra: 1752/1729,
  37570. bottom: 41/1793
  37571. }
  37572. },
  37573. handImp: {
  37574. height: math.unit(0.45, "feet"),
  37575. name: "Hand (Imp)",
  37576. image: {
  37577. source: "./media/characters/max-kobold/hand.svg"
  37578. }
  37579. },
  37580. pawImp: {
  37581. height: math.unit(0.46, "feet"),
  37582. name: "Paw (Imp)",
  37583. image: {
  37584. source: "./media/characters/max-kobold/paw.svg"
  37585. }
  37586. },
  37587. handDemi: {
  37588. height: math.unit(0.80, "feet"),
  37589. name: "Hand (Demi)",
  37590. image: {
  37591. source: "./media/characters/max-kobold/hand.svg"
  37592. }
  37593. },
  37594. pawDemi: {
  37595. height: math.unit(1.1, "feet"),
  37596. name: "Paw (Demi)",
  37597. image: {
  37598. source: "./media/characters/max-kobold/paw.svg"
  37599. }
  37600. },
  37601. headImp: {
  37602. height: math.unit(1.33, "feet"),
  37603. name: "Head (Imp)",
  37604. image: {
  37605. source: "./media/characters/max-kobold/head-imp.svg"
  37606. }
  37607. },
  37608. mawImp: {
  37609. height: math.unit(0.75, "feet"),
  37610. name: "Maw (Imp)",
  37611. image: {
  37612. source: "./media/characters/max-kobold/maw-imp.svg"
  37613. }
  37614. },
  37615. mawDemi: {
  37616. height: math.unit(0.42, "feet"),
  37617. name: "Maw (Demi)",
  37618. image: {
  37619. source: "./media/characters/max-kobold/maw-demi.svg"
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(1 + 11/12, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(7 + 5/12, "feet"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/carbon/front.svg",
  37639. extra: 1754/1689,
  37640. bottom: 65/1819
  37641. }
  37642. },
  37643. back: {
  37644. height: math.unit(7 + 5/12, "feet"),
  37645. name: "Back",
  37646. image: {
  37647. source: "./media/characters/carbon/back.svg",
  37648. extra: 1762/1695,
  37649. bottom: 24/1786
  37650. }
  37651. },
  37652. frontGigantamax: {
  37653. height: math.unit(150, "feet"),
  37654. name: "Front (Gigantamax)",
  37655. image: {
  37656. source: "./media/characters/carbon/front-gigantamax.svg",
  37657. extra: 1826/1669,
  37658. bottom: 59/1885
  37659. }
  37660. },
  37661. backGigantamax: {
  37662. height: math.unit(150, "feet"),
  37663. name: "Back (Gigantamax)",
  37664. image: {
  37665. source: "./media/characters/carbon/back-gigantamax.svg",
  37666. extra: 1796/1653,
  37667. bottom: 53/1849
  37668. }
  37669. },
  37670. maw: {
  37671. height: math.unit(0.48, "feet"),
  37672. name: "Maw",
  37673. image: {
  37674. source: "./media/characters/carbon/maw.svg"
  37675. }
  37676. },
  37677. mawGigantamax: {
  37678. height: math.unit(7.5, "feet"),
  37679. name: "Maw (Gigantamax)",
  37680. image: {
  37681. source: "./media/characters/carbon/maw-gigantamax.svg"
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(7 + 5/12, "feet"),
  37689. default: true
  37690. },
  37691. ]
  37692. ))
  37693. characterMakers.push(() => makeCharacter(
  37694. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37695. {
  37696. front: {
  37697. height: math.unit(6, "feet"),
  37698. name: "Front",
  37699. image: {
  37700. source: "./media/characters/maverick/front.svg",
  37701. extra: 1672/1661,
  37702. bottom: 85/1757
  37703. }
  37704. },
  37705. back: {
  37706. height: math.unit(6, "feet"),
  37707. name: "Back",
  37708. image: {
  37709. source: "./media/characters/maverick/back.svg",
  37710. extra: 1642/1631,
  37711. bottom: 38/1680
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(6, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(15, "feet"),
  37728. weight: math.unit(615, "lb"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/grockle/front.svg",
  37732. extra: 1535/1427,
  37733. bottom: 56/1591
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(15, "feet"),
  37741. default: true
  37742. },
  37743. {
  37744. name: "Large",
  37745. height: math.unit(150, "feet")
  37746. },
  37747. {
  37748. name: "Macro",
  37749. height: math.unit(1876, "feet")
  37750. },
  37751. {
  37752. name: "Mega Macro",
  37753. height: math.unit(121940, "feet")
  37754. },
  37755. {
  37756. name: "Giga Macro",
  37757. height: math.unit(750, "km")
  37758. },
  37759. {
  37760. name: "Tera Macro",
  37761. height: math.unit(750000, "km")
  37762. },
  37763. {
  37764. name: "Galactic",
  37765. height: math.unit(1.4e5, "km")
  37766. },
  37767. {
  37768. name: "Godlike",
  37769. height: math.unit(9.8e280, "galaxies")
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(11, "meters"),
  37778. weight: math.unit(20, "tonnes"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/alistair/front.svg",
  37782. extra: 1265/1009,
  37783. bottom: 93/1358
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(11, "meters"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(5 + 8/12, "feet"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/haruka/front.svg",
  37803. extra: 2012/1952,
  37804. bottom: 0/2012
  37805. }
  37806. },
  37807. },
  37808. [
  37809. {
  37810. name: "Normal",
  37811. height: math.unit(5 + 8/12, "feet"),
  37812. default: true
  37813. },
  37814. ]
  37815. ))
  37816. characterMakers.push(() => makeCharacter(
  37817. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37818. {
  37819. back: {
  37820. height: math.unit(9, "feet"),
  37821. name: "Back",
  37822. image: {
  37823. source: "./media/characters/vivian-sylveon/back.svg",
  37824. extra: 1853/1714,
  37825. bottom: 0/1853
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(9, "feet"),
  37833. default: true
  37834. },
  37835. {
  37836. name: "Macro",
  37837. height: math.unit(500, "feet")
  37838. },
  37839. {
  37840. name: "Megamacro",
  37841. height: math.unit(600, "miles")
  37842. },
  37843. {
  37844. name: "Gigamacro",
  37845. height: math.unit(30000, "miles")
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37851. {
  37852. anthro: {
  37853. height: math.unit(5 + 10/12, "feet"),
  37854. weight: math.unit(100, "lb"),
  37855. name: "Anthro",
  37856. image: {
  37857. source: "./media/characters/daiki/anthro.svg",
  37858. extra: 1115/1027,
  37859. bottom: 69/1184
  37860. }
  37861. },
  37862. feral: {
  37863. height: math.unit(200, "feet"),
  37864. name: "Feral",
  37865. image: {
  37866. source: "./media/characters/daiki/feral.svg",
  37867. extra: 1256/313,
  37868. bottom: 39/1295
  37869. }
  37870. },
  37871. feralHead: {
  37872. height: math.unit(171, "feet"),
  37873. name: "Feral Head",
  37874. image: {
  37875. source: "./media/characters/daiki/feral-head.svg"
  37876. }
  37877. },
  37878. manaDragon: {
  37879. height: math.unit(170, "meters"),
  37880. name: "Mana-dragon",
  37881. image: {
  37882. source: "./media/characters/daiki/mana-dragon.svg",
  37883. extra: 763/420,
  37884. bottom: 97/860
  37885. }
  37886. },
  37887. },
  37888. [
  37889. {
  37890. name: "Normal",
  37891. height: math.unit(5 + 10/12, "feet"),
  37892. default: true
  37893. },
  37894. ]
  37895. ))
  37896. characterMakers.push(() => makeCharacter(
  37897. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37898. {
  37899. fullyEquippedFront: {
  37900. height: math.unit(3 + 1/12, "feet"),
  37901. weight: math.unit(24, "lb"),
  37902. name: "Fully Equipped (Front)",
  37903. image: {
  37904. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37905. extra: 687/605,
  37906. bottom: 18/705
  37907. }
  37908. },
  37909. fullyEquippedBack: {
  37910. height: math.unit(3 + 1/12, "feet"),
  37911. weight: math.unit(24, "lb"),
  37912. name: "Fully Equipped (Back)",
  37913. image: {
  37914. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37915. extra: 689/590,
  37916. bottom: 18/707
  37917. }
  37918. },
  37919. dailyWear: {
  37920. height: math.unit(3 + 1/12, "feet"),
  37921. weight: math.unit(24, "lb"),
  37922. name: "Daily Wear",
  37923. image: {
  37924. source: "./media/characters/tea-spot/daily-wear.svg",
  37925. extra: 701/620,
  37926. bottom: 21/722
  37927. }
  37928. },
  37929. maidWork: {
  37930. height: math.unit(3 + 1/12, "feet"),
  37931. weight: math.unit(24, "lb"),
  37932. name: "Maid Work",
  37933. image: {
  37934. source: "./media/characters/tea-spot/maid-work.svg",
  37935. extra: 693/609,
  37936. bottom: 15/708
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(3 + 1/12, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(175, "cm"),
  37953. weight: math.unit(75, "kg"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/chee/front.svg",
  37957. extra: 1796/1740,
  37958. bottom: 40/1836
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Micro-Micro",
  37965. height: math.unit(1, "nm")
  37966. },
  37967. {
  37968. name: "Micro-erst",
  37969. height: math.unit(1, "micrometer")
  37970. },
  37971. {
  37972. name: "Micro-er",
  37973. height: math.unit(1, "cm")
  37974. },
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(175, "cm"),
  37978. default: true
  37979. },
  37980. {
  37981. name: "Macro",
  37982. height: math.unit(100, "m")
  37983. },
  37984. {
  37985. name: "Macro-er",
  37986. height: math.unit(1, "km")
  37987. },
  37988. {
  37989. name: "Macro-erst",
  37990. height: math.unit(10, "km")
  37991. },
  37992. {
  37993. name: "Macro-Macro",
  37994. height: math.unit(100, "km")
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(11 + 9/12, "feet"),
  38003. weight: math.unit(935, "lb"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/kingsley/front.svg",
  38007. extra: 1803/1674,
  38008. bottom: 127/1930
  38009. }
  38010. },
  38011. frontNude: {
  38012. height: math.unit(11 + 9/12, "feet"),
  38013. weight: math.unit(935, "lb"),
  38014. name: "Front (Nude)",
  38015. image: {
  38016. source: "./media/characters/kingsley/front-nude.svg",
  38017. extra: 1803/1674,
  38018. bottom: 127/1930
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(11 + 9/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38032. {
  38033. side: {
  38034. height: math.unit(9, "feet"),
  38035. name: "Side",
  38036. image: {
  38037. source: "./media/characters/rymel/side.svg",
  38038. extra: 792/469,
  38039. bottom: 121/913
  38040. }
  38041. },
  38042. maw: {
  38043. height: math.unit(2.4, "meters"),
  38044. name: "Maw",
  38045. image: {
  38046. source: "./media/characters/rymel/maw.svg"
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "House Drake",
  38053. height: math.unit(2, "feet")
  38054. },
  38055. {
  38056. name: "Reduced",
  38057. height: math.unit(4.5, "feet")
  38058. },
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(9, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(1.74, "meters"),
  38071. weight: math.unit(55, "kg"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/rubus/front.svg",
  38075. extra: 1894/1742,
  38076. bottom: 44/1938
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(1.74, "meters"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(5 + 2/12, "feet"),
  38093. weight: math.unit(112, "lb"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/cassie-kingston/front.svg",
  38097. extra: 1438/1390,
  38098. bottom: 47/1485
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(5 + 2/12, "feet"),
  38106. default: true
  38107. },
  38108. {
  38109. name: "Macro",
  38110. height: math.unit(128, "feet")
  38111. },
  38112. {
  38113. name: "Megamacro",
  38114. height: math.unit(2.56, "miles")
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(7, "feet"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/fox/front.svg",
  38126. extra: 1798/1703,
  38127. bottom: 55/1853
  38128. }
  38129. },
  38130. back: {
  38131. height: math.unit(7, "feet"),
  38132. name: "Back",
  38133. image: {
  38134. source: "./media/characters/fox/back.svg",
  38135. extra: 1748/1649,
  38136. bottom: 32/1780
  38137. }
  38138. },
  38139. head: {
  38140. height: math.unit(1.95, "feet"),
  38141. name: "Head",
  38142. image: {
  38143. source: "./media/characters/fox/head.svg"
  38144. }
  38145. },
  38146. dick: {
  38147. height: math.unit(1.33, "feet"),
  38148. name: "Dick",
  38149. image: {
  38150. source: "./media/characters/fox/dick.svg"
  38151. }
  38152. },
  38153. foot: {
  38154. height: math.unit(1, "feet"),
  38155. name: "Foot",
  38156. image: {
  38157. source: "./media/characters/fox/foot.svg"
  38158. }
  38159. },
  38160. paw: {
  38161. height: math.unit(0.92, "feet"),
  38162. name: "Paw",
  38163. image: {
  38164. source: "./media/characters/fox/paw.svg"
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Small",
  38171. height: math.unit(3, "inches")
  38172. },
  38173. {
  38174. name: "\"Realistic\"",
  38175. height: math.unit(7, "feet")
  38176. },
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(150, "feet"),
  38180. default: true
  38181. },
  38182. {
  38183. name: "BIG",
  38184. height: math.unit(1200, "feet")
  38185. },
  38186. {
  38187. name: "👀",
  38188. height: math.unit(5, "miles")
  38189. },
  38190. {
  38191. name: "👀👀👀",
  38192. height: math.unit(64, "miles")
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(625, "feet"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/asonja-rossa/front.svg",
  38204. extra: 1833/1686,
  38205. bottom: 24/1857
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(625, "feet"),
  38210. name: "Back",
  38211. image: {
  38212. source: "./media/characters/asonja-rossa/back.svg",
  38213. extra: 1852/1753,
  38214. bottom: 26/1878
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Macro",
  38221. height: math.unit(625, "feet"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38228. {
  38229. side: {
  38230. height: math.unit(8, "feet"),
  38231. name: "Side",
  38232. image: {
  38233. source: "./media/characters/rezukii/side.svg",
  38234. extra: 979/542,
  38235. bottom: 87/1066
  38236. }
  38237. },
  38238. sitting: {
  38239. height: math.unit(14.6, "feet"),
  38240. name: "Sitting",
  38241. image: {
  38242. source: "./media/characters/rezukii/sitting.svg",
  38243. extra: 1023/813,
  38244. bottom: 45/1068
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Tiny",
  38251. height: math.unit(2, "feet")
  38252. },
  38253. {
  38254. name: "Smol",
  38255. height: math.unit(4, "feet")
  38256. },
  38257. {
  38258. name: "Normal",
  38259. height: math.unit(8, "feet"),
  38260. default: true
  38261. },
  38262. {
  38263. name: "Big",
  38264. height: math.unit(12, "feet")
  38265. },
  38266. {
  38267. name: "Macro",
  38268. height: math.unit(30, "feet")
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(14, "feet"),
  38277. weight: math.unit(9.5, "tonnes"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/dawnheart/front.svg",
  38281. extra: 2792/2675,
  38282. bottom: 64/2856
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(14, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38296. {
  38297. front: {
  38298. height: math.unit(1.7, "m"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/gladi/front.svg",
  38302. extra: 1460/1362,
  38303. bottom: 19/1479
  38304. }
  38305. },
  38306. back: {
  38307. height: math.unit(1.7, "m"),
  38308. name: "Back",
  38309. image: {
  38310. source: "./media/characters/gladi/back.svg",
  38311. extra: 1459/1357,
  38312. bottom: 12/1471
  38313. }
  38314. },
  38315. feral: {
  38316. height: math.unit(2.05, "m"),
  38317. name: "Feral",
  38318. image: {
  38319. source: "./media/characters/gladi/feral.svg",
  38320. extra: 821/557,
  38321. bottom: 91/912
  38322. }
  38323. },
  38324. },
  38325. [
  38326. {
  38327. name: "Shortest",
  38328. height: math.unit(70, "cm")
  38329. },
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(1.7, "m")
  38333. },
  38334. {
  38335. name: "Macro",
  38336. height: math.unit(10, "m"),
  38337. default: true
  38338. },
  38339. {
  38340. name: "Tallest",
  38341. height: math.unit(200, "m")
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(5 + 7/12, "feet"),
  38350. weight: math.unit(2, "tons"),
  38351. name: "Front",
  38352. image: {
  38353. source: "./media/characters/erdno/front.svg",
  38354. extra: 1234/1129,
  38355. bottom: 35/1269
  38356. }
  38357. },
  38358. angled: {
  38359. height: math.unit(5 + 7/12, "feet"),
  38360. weight: math.unit(2, "tons"),
  38361. name: "Angled",
  38362. image: {
  38363. source: "./media/characters/erdno/angled.svg",
  38364. extra: 1185/1139,
  38365. bottom: 36/1221
  38366. }
  38367. },
  38368. side: {
  38369. height: math.unit(5 + 7/12, "feet"),
  38370. weight: math.unit(2, "tons"),
  38371. name: "Side",
  38372. image: {
  38373. source: "./media/characters/erdno/side.svg",
  38374. extra: 1191/1144,
  38375. bottom: 40/1231
  38376. }
  38377. },
  38378. back: {
  38379. height: math.unit(5 + 7/12, "feet"),
  38380. weight: math.unit(2, "tons"),
  38381. name: "Back",
  38382. image: {
  38383. source: "./media/characters/erdno/back.svg",
  38384. extra: 1202/1146,
  38385. bottom: 17/1219
  38386. }
  38387. },
  38388. frontNsfw: {
  38389. height: math.unit(5 + 7/12, "feet"),
  38390. weight: math.unit(2, "tons"),
  38391. name: "Front (NSFW)",
  38392. image: {
  38393. source: "./media/characters/erdno/front-nsfw.svg",
  38394. extra: 1234/1129,
  38395. bottom: 35/1269
  38396. }
  38397. },
  38398. angledNsfw: {
  38399. height: math.unit(5 + 7/12, "feet"),
  38400. weight: math.unit(2, "tons"),
  38401. name: "Angled (NSFW)",
  38402. image: {
  38403. source: "./media/characters/erdno/angled-nsfw.svg",
  38404. extra: 1185/1139,
  38405. bottom: 36/1221
  38406. }
  38407. },
  38408. sideNsfw: {
  38409. height: math.unit(5 + 7/12, "feet"),
  38410. weight: math.unit(2, "tons"),
  38411. name: "Side (NSFW)",
  38412. image: {
  38413. source: "./media/characters/erdno/side-nsfw.svg",
  38414. extra: 1191/1144,
  38415. bottom: 40/1231
  38416. }
  38417. },
  38418. backNsfw: {
  38419. height: math.unit(5 + 7/12, "feet"),
  38420. weight: math.unit(2, "tons"),
  38421. name: "Back (NSFW)",
  38422. image: {
  38423. source: "./media/characters/erdno/back-nsfw.svg",
  38424. extra: 1202/1146,
  38425. bottom: 17/1219
  38426. }
  38427. },
  38428. frontHyper: {
  38429. height: math.unit(5 + 7/12, "feet"),
  38430. weight: math.unit(2, "tons"),
  38431. name: "Front (Hyper)",
  38432. image: {
  38433. source: "./media/characters/erdno/front-hyper.svg",
  38434. extra: 1298/1136,
  38435. bottom: 35/1333
  38436. }
  38437. },
  38438. },
  38439. [
  38440. {
  38441. name: "Normal",
  38442. height: math.unit(5 + 7/12, "feet"),
  38443. default: true
  38444. },
  38445. {
  38446. name: "Big",
  38447. height: math.unit(5.7, "meters")
  38448. },
  38449. {
  38450. name: "Macro",
  38451. height: math.unit(5.7, "kilometers")
  38452. },
  38453. {
  38454. name: "Megamacro",
  38455. height: math.unit(5.7, "earths")
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(5 + 10/12, "feet"),
  38464. weight: math.unit(150, "lb"),
  38465. name: "Front",
  38466. image: {
  38467. source: "./media/characters/jamie/front.svg",
  38468. extra: 1908/1768,
  38469. bottom: 19/1927
  38470. }
  38471. },
  38472. },
  38473. [
  38474. {
  38475. name: "Minimum",
  38476. height: math.unit(2, "cm")
  38477. },
  38478. {
  38479. name: "Micro",
  38480. height: math.unit(3, "inches")
  38481. },
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(5 + 10/12, "feet"),
  38485. default: true
  38486. },
  38487. {
  38488. name: "Macro",
  38489. height: math.unit(150, "feet")
  38490. },
  38491. {
  38492. name: "Megamacro",
  38493. height: math.unit(10000, "m")
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(2, "meters"),
  38502. weight: math.unit(100, "kg"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/shiron/front.svg",
  38506. extra: 2103/1985,
  38507. bottom: 98/2201
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(2, "meters"),
  38512. weight: math.unit(100, "kg"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/shiron/back.svg",
  38516. extra: 2110/2015,
  38517. bottom: 89/2199
  38518. }
  38519. },
  38520. hand: {
  38521. height: math.unit(0.96, "feet"),
  38522. name: "Hand",
  38523. image: {
  38524. source: "./media/characters/shiron/hand.svg"
  38525. }
  38526. },
  38527. foot: {
  38528. height: math.unit(1.464, "feet"),
  38529. name: "Foot",
  38530. image: {
  38531. source: "./media/characters/shiron/foot.svg"
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Normal",
  38538. height: math.unit(2, "meters")
  38539. },
  38540. {
  38541. name: "Macro",
  38542. height: math.unit(500, "meters"),
  38543. default: true
  38544. },
  38545. {
  38546. name: "Megamacro",
  38547. height: math.unit(20, "km")
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(6, "feet"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/sam/front.svg",
  38559. extra: 849/826,
  38560. bottom: 19/868
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(6, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(8 + 4/12, "feet"),
  38577. weight: math.unit(122, "kg"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/namori-kurogawa/front.svg",
  38581. extra: 1894/1576,
  38582. bottom: 34/1928
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(8 + 4/12, "feet"),
  38590. default: true
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(9, "feet"),
  38599. weight: math.unit(621, "lb"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/unmru/front.svg",
  38603. extra: 1853/1747,
  38604. bottom: 73/1926
  38605. }
  38606. },
  38607. side: {
  38608. height: math.unit(9, "feet"),
  38609. weight: math.unit(621, "lb"),
  38610. name: "Side",
  38611. image: {
  38612. source: "./media/characters/unmru/side.svg",
  38613. extra: 1781/1671,
  38614. bottom: 127/1908
  38615. }
  38616. },
  38617. back: {
  38618. height: math.unit(9, "feet"),
  38619. weight: math.unit(621, "lb"),
  38620. name: "Back",
  38621. image: {
  38622. source: "./media/characters/unmru/back.svg",
  38623. extra: 1894/1765,
  38624. bottom: 75/1969
  38625. }
  38626. },
  38627. dick: {
  38628. height: math.unit(3, "feet"),
  38629. weight: math.unit(35, "lb"),
  38630. name: "Dick",
  38631. image: {
  38632. source: "./media/characters/unmru/dick.svg"
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(9, "feet")
  38640. },
  38641. {
  38642. name: "Natural",
  38643. height: math.unit(27, "feet"),
  38644. default: true
  38645. },
  38646. {
  38647. name: "Giant",
  38648. height: math.unit(90, "feet")
  38649. },
  38650. {
  38651. name: "Kaiju",
  38652. height: math.unit(270, "feet")
  38653. },
  38654. {
  38655. name: "Macro",
  38656. height: math.unit(900, "feet")
  38657. },
  38658. {
  38659. name: "Macro+",
  38660. height: math.unit(2700, "feet")
  38661. },
  38662. {
  38663. name: "Megamacro",
  38664. height: math.unit(9000, "feet")
  38665. },
  38666. {
  38667. name: "City-Crushing",
  38668. height: math.unit(27000, "feet")
  38669. },
  38670. {
  38671. name: "Mountain-Mashing",
  38672. height: math.unit(90000, "feet")
  38673. },
  38674. {
  38675. name: "Earth-Eclipsing",
  38676. height: math.unit(2.7e8, "feet")
  38677. },
  38678. {
  38679. name: "Sol-Swallowing",
  38680. height: math.unit(9e10, "feet")
  38681. },
  38682. {
  38683. name: "Majoris-Munching",
  38684. height: math.unit(2.7e13, "feet")
  38685. },
  38686. ]
  38687. ))
  38688. characterMakers.push(() => makeCharacter(
  38689. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38690. {
  38691. front: {
  38692. height: math.unit(1, "inch"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/squeaks-mouse/front.svg",
  38696. extra: 352/308,
  38697. bottom: 25/377
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Micro",
  38704. height: math.unit(1, "inch"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38711. {
  38712. side: {
  38713. height: math.unit(35, "feet"),
  38714. name: "Side",
  38715. image: {
  38716. source: "./media/characters/sayko/side.svg",
  38717. extra: 1697/1021,
  38718. bottom: 82/1779
  38719. }
  38720. },
  38721. head: {
  38722. height: math.unit(16, "feet"),
  38723. name: "Head",
  38724. image: {
  38725. source: "./media/characters/sayko/head.svg"
  38726. }
  38727. },
  38728. forepaw: {
  38729. height: math.unit(7.85, "feet"),
  38730. name: "Forepaw",
  38731. image: {
  38732. source: "./media/characters/sayko/forepaw.svg"
  38733. }
  38734. },
  38735. hindpaw: {
  38736. height: math.unit(8.8, "feet"),
  38737. name: "Hindpaw",
  38738. image: {
  38739. source: "./media/characters/sayko/hindpaw.svg"
  38740. }
  38741. },
  38742. },
  38743. [
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(35, "feet"),
  38747. default: true
  38748. },
  38749. {
  38750. name: "Colossus",
  38751. height: math.unit(100, "meters")
  38752. },
  38753. {
  38754. name: "\"Small\" Deity",
  38755. height: math.unit(1, "km")
  38756. },
  38757. {
  38758. name: "\"Large\" Deity",
  38759. height: math.unit(15, "km")
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(6, "feet"),
  38768. weight: math.unit(250, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/mukiro/front.svg",
  38772. extra: 1368/1310,
  38773. bottom: 34/1402
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(6, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38787. {
  38788. front: {
  38789. height: math.unit(12 + 4/12, "feet"),
  38790. name: "Front",
  38791. image: {
  38792. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38793. extra: 1346/1311,
  38794. bottom: 65/1411
  38795. }
  38796. },
  38797. },
  38798. [
  38799. {
  38800. name: "Base",
  38801. height: math.unit(12 + 4/12, "feet"),
  38802. default: true
  38803. },
  38804. {
  38805. name: "Macro",
  38806. height: math.unit(150, "feet")
  38807. },
  38808. {
  38809. name: "Mega",
  38810. height: math.unit(2, "miles")
  38811. },
  38812. {
  38813. name: "Demi God",
  38814. height: math.unit(4, "AU")
  38815. },
  38816. {
  38817. name: "God Size",
  38818. height: math.unit(1, "universe")
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38824. {
  38825. front: {
  38826. height: math.unit(3 + 3/12, "feet"),
  38827. weight: math.unit(88, "lb"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/trey/front.svg",
  38831. extra: 1815/1509,
  38832. bottom: 60/1875
  38833. }
  38834. },
  38835. },
  38836. [
  38837. {
  38838. name: "Normal",
  38839. height: math.unit(3 + 3/12, "feet"),
  38840. default: true
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38846. {
  38847. front: {
  38848. height: math.unit(4, "meters"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/adelonda/front.svg",
  38852. extra: 1077/982,
  38853. bottom: 39/1116
  38854. }
  38855. },
  38856. back: {
  38857. height: math.unit(4, "meters"),
  38858. name: "Back",
  38859. image: {
  38860. source: "./media/characters/adelonda/back.svg",
  38861. extra: 1105/1003,
  38862. bottom: 25/1130
  38863. }
  38864. },
  38865. feral: {
  38866. height: math.unit(40/1.5, "meters"),
  38867. name: "Feral",
  38868. image: {
  38869. source: "./media/characters/adelonda/feral.svg",
  38870. extra: 597/271,
  38871. bottom: 387/984
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(4, "meters"),
  38879. default: true
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(8 + 4/12, "feet"),
  38888. weight: math.unit(670, "lb"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/acadiel/front.svg",
  38892. extra: 1901/1595,
  38893. bottom: 142/2043
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(8 + 4/12, "feet"),
  38901. default: true
  38902. },
  38903. {
  38904. name: "Macro",
  38905. height: math.unit(200, "feet")
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38911. {
  38912. front: {
  38913. height: math.unit(6 + 2/12, "feet"),
  38914. weight: math.unit(185, "lb"),
  38915. name: "Front",
  38916. image: {
  38917. source: "./media/characters/kayne-ein/front.svg",
  38918. extra: 1780/1560,
  38919. bottom: 81/1861
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(6 + 2/12, "feet"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Transformation Stage",
  38931. height: math.unit(15, "feet")
  38932. },
  38933. {
  38934. name: "Macro",
  38935. height: math.unit(150, "feet")
  38936. },
  38937. {
  38938. name: "Earth's Shadow",
  38939. height: math.unit(6200, "miles")
  38940. },
  38941. {
  38942. name: "Universal Demon",
  38943. height: math.unit(28e9, "parsecs")
  38944. },
  38945. {
  38946. name: "Multiverse God",
  38947. height: math.unit(3, "multiverses")
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(5 + 5/12, "feet"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/fawn/front.svg",
  38959. extra: 1873/1731,
  38960. bottom: 95/1968
  38961. }
  38962. },
  38963. back: {
  38964. height: math.unit(5 + 5/12, "feet"),
  38965. name: "Back",
  38966. image: {
  38967. source: "./media/characters/fawn/back.svg",
  38968. extra: 1813/1700,
  38969. bottom: 14/1827
  38970. }
  38971. },
  38972. hoof: {
  38973. height: math.unit(1.45, "feet"),
  38974. name: "Hoof",
  38975. image: {
  38976. source: "./media/characters/fawn/hoof.svg"
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Normal",
  38983. height: math.unit(5 + 5/12, "feet"),
  38984. default: true
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(2 + 5/12, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/orion/front.svg",
  38996. extra: 1366/1304,
  38997. bottom: 43/1409
  38998. }
  38999. },
  39000. paw: {
  39001. height: math.unit(0.52, "feet"),
  39002. name: "Paw",
  39003. image: {
  39004. source: "./media/characters/orion/paw.svg"
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(2 + 5/12, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(5 + 10/12, "feet"),
  39021. name: "Front",
  39022. image: {
  39023. source: "./media/characters/vera/front.svg",
  39024. extra: 1680/1575,
  39025. bottom: 49/1729
  39026. }
  39027. },
  39028. back: {
  39029. height: math.unit(5 + 10/12, "feet"),
  39030. name: "Back",
  39031. image: {
  39032. source: "./media/characters/vera/back.svg",
  39033. extra: 1700/1588,
  39034. bottom: 18/1718
  39035. }
  39036. },
  39037. arcanine: {
  39038. height: math.unit(6 + 8/12, "feet"),
  39039. name: "Arcanine",
  39040. image: {
  39041. source: "./media/characters/vera/arcanine.svg",
  39042. extra: 1590/1511,
  39043. bottom: 71/1661
  39044. }
  39045. },
  39046. maw: {
  39047. height: math.unit(0.82, "feet"),
  39048. name: "Maw",
  39049. image: {
  39050. source: "./media/characters/vera/maw.svg"
  39051. }
  39052. },
  39053. mawArcanine: {
  39054. height: math.unit(0.97, "feet"),
  39055. name: "Maw (Arcanine)",
  39056. image: {
  39057. source: "./media/characters/vera/maw-arcanine.svg"
  39058. }
  39059. },
  39060. paw: {
  39061. height: math.unit(0.75, "feet"),
  39062. name: "Paw",
  39063. image: {
  39064. source: "./media/characters/vera/paw.svg"
  39065. }
  39066. },
  39067. pawprint: {
  39068. height: math.unit(0.52, "feet"),
  39069. name: "Pawprint",
  39070. image: {
  39071. source: "./media/characters/vera/pawprint.svg"
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(5 + 10/12, "feet"),
  39079. default: true
  39080. },
  39081. {
  39082. name: "Macro",
  39083. height: math.unit(75, "feet")
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(4, "feet"),
  39092. weight: math.unit(40, "lb"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/orvan-rabbit/front.svg",
  39096. extra: 1896/1642,
  39097. bottom: 29/1925
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(4, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(6, "feet"),
  39114. weight: math.unit(168, "lb"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/lisa/front.svg",
  39118. extra: 2065/1867,
  39119. bottom: 46/2111
  39120. }
  39121. },
  39122. back: {
  39123. height: math.unit(6, "feet"),
  39124. weight: math.unit(168, "lb"),
  39125. name: "Back",
  39126. image: {
  39127. source: "./media/characters/lisa/back.svg",
  39128. extra: 1982/1838,
  39129. bottom: 29/2011
  39130. }
  39131. },
  39132. maw: {
  39133. height: math.unit(0.81, "feet"),
  39134. name: "Maw",
  39135. image: {
  39136. source: "./media/characters/lisa/maw.svg"
  39137. }
  39138. },
  39139. paw: {
  39140. height: math.unit(0.9, "feet"),
  39141. name: "Paw",
  39142. image: {
  39143. source: "./media/characters/lisa/paw.svg"
  39144. }
  39145. },
  39146. caribousune: {
  39147. height: math.unit(7 + 2/12, "feet"),
  39148. weight: math.unit(268, "lb"),
  39149. name: "Caribousune",
  39150. image: {
  39151. source: "./media/characters/lisa/caribousune.svg",
  39152. extra: 1843/1633,
  39153. bottom: 29/1872
  39154. }
  39155. },
  39156. frontCaribousune: {
  39157. height: math.unit(7 + 2/12, "feet"),
  39158. weight: math.unit(268, "lb"),
  39159. name: "Front (Caribousune)",
  39160. image: {
  39161. source: "./media/characters/lisa/front-caribousune.svg",
  39162. extra: 1818/1638,
  39163. bottom: 52/1870
  39164. }
  39165. },
  39166. sideCaribousune: {
  39167. height: math.unit(7 + 2/12, "feet"),
  39168. weight: math.unit(268, "lb"),
  39169. name: "Side (Caribousune)",
  39170. image: {
  39171. source: "./media/characters/lisa/side-caribousune.svg",
  39172. extra: 1851/1635,
  39173. bottom: 16/1867
  39174. }
  39175. },
  39176. backCaribousune: {
  39177. height: math.unit(7 + 2/12, "feet"),
  39178. weight: math.unit(268, "lb"),
  39179. name: "Back (Caribousune)",
  39180. image: {
  39181. source: "./media/characters/lisa/back-caribousune.svg",
  39182. extra: 1801/1604,
  39183. bottom: 44/1845
  39184. }
  39185. },
  39186. caribou: {
  39187. height: math.unit(7 + 2/12, "feet"),
  39188. weight: math.unit(268, "lb"),
  39189. name: "Caribou",
  39190. image: {
  39191. source: "./media/characters/lisa/caribou.svg",
  39192. extra: 1843/1633,
  39193. bottom: 29/1872
  39194. }
  39195. },
  39196. frontCaribou: {
  39197. height: math.unit(7 + 2/12, "feet"),
  39198. weight: math.unit(268, "lb"),
  39199. name: "Front (Caribou)",
  39200. image: {
  39201. source: "./media/characters/lisa/front-caribou.svg",
  39202. extra: 1818/1638,
  39203. bottom: 52/1870
  39204. }
  39205. },
  39206. sideCaribou: {
  39207. height: math.unit(7 + 2/12, "feet"),
  39208. weight: math.unit(268, "lb"),
  39209. name: "Side (Caribou)",
  39210. image: {
  39211. source: "./media/characters/lisa/side-caribou.svg",
  39212. extra: 1851/1635,
  39213. bottom: 16/1867
  39214. }
  39215. },
  39216. backCaribou: {
  39217. height: math.unit(7 + 2/12, "feet"),
  39218. weight: math.unit(268, "lb"),
  39219. name: "Back (Caribou)",
  39220. image: {
  39221. source: "./media/characters/lisa/back-caribou.svg",
  39222. extra: 1801/1604,
  39223. bottom: 44/1845
  39224. }
  39225. },
  39226. mawCaribou: {
  39227. height: math.unit(1.45, "feet"),
  39228. name: "Maw (Caribou)",
  39229. image: {
  39230. source: "./media/characters/lisa/maw-caribou.svg"
  39231. }
  39232. },
  39233. mawCaribousune: {
  39234. height: math.unit(1.45, "feet"),
  39235. name: "Maw (Caribousune)",
  39236. image: {
  39237. source: "./media/characters/lisa/maw-caribousune.svg"
  39238. }
  39239. },
  39240. pawCaribousune: {
  39241. height: math.unit(1.61, "feet"),
  39242. name: "Paw (Caribou)",
  39243. image: {
  39244. source: "./media/characters/lisa/paw-caribousune.svg"
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(6, "feet")
  39252. },
  39253. {
  39254. name: "God Size",
  39255. height: math.unit(72, "feet"),
  39256. default: true
  39257. },
  39258. {
  39259. name: "Towering",
  39260. height: math.unit(288, "feet")
  39261. },
  39262. {
  39263. name: "City Size",
  39264. height: math.unit(48384, "feet")
  39265. },
  39266. {
  39267. name: "Continental",
  39268. height: math.unit(4200, "miles")
  39269. },
  39270. {
  39271. name: "Planet Eater",
  39272. height: math.unit(42, "earths")
  39273. },
  39274. {
  39275. name: "Star Swallower",
  39276. height: math.unit(42, "solarradii")
  39277. },
  39278. {
  39279. name: "System Swallower",
  39280. height: math.unit(84000, "AU")
  39281. },
  39282. {
  39283. name: "Galaxy Gobbler",
  39284. height: math.unit(42, "galaxies")
  39285. },
  39286. {
  39287. name: "Universe Devourer",
  39288. height: math.unit(42, "universes")
  39289. },
  39290. {
  39291. name: "Multiverse Muncher",
  39292. height: math.unit(42, "multiverses")
  39293. },
  39294. ]
  39295. ))
  39296. characterMakers.push(() => makeCharacter(
  39297. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39298. {
  39299. front: {
  39300. height: math.unit(36, "feet"),
  39301. name: "Front",
  39302. image: {
  39303. source: "./media/characters/shadow-rat/front.svg",
  39304. extra: 1845/1758,
  39305. bottom: 83/1928
  39306. }
  39307. },
  39308. },
  39309. [
  39310. {
  39311. name: "Macro",
  39312. height: math.unit(36, "feet"),
  39313. default: true
  39314. },
  39315. ]
  39316. ))
  39317. characterMakers.push(() => makeCharacter(
  39318. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39319. {
  39320. side: {
  39321. height: math.unit(8, "feet"),
  39322. weight: math.unit(2630, "lb"),
  39323. name: "Side",
  39324. image: {
  39325. source: "./media/characters/torallia/side.svg",
  39326. extra: 2164/2021,
  39327. bottom: 371/2535
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Mortal Interaction",
  39334. height: math.unit(8, "feet")
  39335. },
  39336. {
  39337. name: "Natural",
  39338. height: math.unit(24, "feet"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "Giant",
  39343. height: math.unit(80, "feet")
  39344. },
  39345. {
  39346. name: "Kaiju",
  39347. height: math.unit(240, "feet")
  39348. },
  39349. {
  39350. name: "Macro",
  39351. height: math.unit(800, "feet")
  39352. },
  39353. {
  39354. name: "Macro+",
  39355. height: math.unit(2400, "feet")
  39356. },
  39357. {
  39358. name: "Macro++",
  39359. height: math.unit(8000, "feet")
  39360. },
  39361. {
  39362. name: "City-Crushing",
  39363. height: math.unit(24000, "feet")
  39364. },
  39365. {
  39366. name: "Mountain-Mashing",
  39367. height: math.unit(80000, "feet")
  39368. },
  39369. {
  39370. name: "District Demolisher",
  39371. height: math.unit(240000, "feet")
  39372. },
  39373. {
  39374. name: "Tri-County Terror",
  39375. height: math.unit(800000, "feet")
  39376. },
  39377. {
  39378. name: "State Smasher",
  39379. height: math.unit(2.4e6, "feet")
  39380. },
  39381. {
  39382. name: "Nation Nemesis",
  39383. height: math.unit(8e6, "feet")
  39384. },
  39385. {
  39386. name: "Continent Cracker",
  39387. height: math.unit(2.4e7, "feet")
  39388. },
  39389. {
  39390. name: "Planet-Pillaging",
  39391. height: math.unit(8e7, "feet")
  39392. },
  39393. {
  39394. name: "Earth-Eclipsing",
  39395. height: math.unit(2.4e8, "feet")
  39396. },
  39397. {
  39398. name: "Jovian-Jostling",
  39399. height: math.unit(8e8, "feet")
  39400. },
  39401. {
  39402. name: "Gas Giant Gulper",
  39403. height: math.unit(2.4e9, "feet")
  39404. },
  39405. {
  39406. name: "Astral Annihilator",
  39407. height: math.unit(8e9, "feet")
  39408. },
  39409. {
  39410. name: "Celestial Conqueror",
  39411. height: math.unit(2.4e10, "feet")
  39412. },
  39413. {
  39414. name: "Sol-Swallowing",
  39415. height: math.unit(8e10, "feet")
  39416. },
  39417. {
  39418. name: "Hunter of the Heavens",
  39419. height: math.unit(2.4e13, "feet")
  39420. },
  39421. ]
  39422. ))
  39423. characterMakers.push(() => makeCharacter(
  39424. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39425. {
  39426. front: {
  39427. height: math.unit(6 + 8/12, "feet"),
  39428. name: "Front",
  39429. image: {
  39430. source: "./media/characters/rebecca-pawlson/front.svg",
  39431. extra: 1737/1596,
  39432. bottom: 107/1844
  39433. }
  39434. },
  39435. back: {
  39436. height: math.unit(6 + 8/12, "feet"),
  39437. name: "Back",
  39438. image: {
  39439. source: "./media/characters/rebecca-pawlson/back.svg",
  39440. extra: 1702/1523,
  39441. bottom: 86/1788
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(6 + 8/12, "feet")
  39449. },
  39450. {
  39451. name: "Mini Macro",
  39452. height: math.unit(10, "feet"),
  39453. default: true
  39454. },
  39455. {
  39456. name: "Macro",
  39457. height: math.unit(100, "feet")
  39458. },
  39459. {
  39460. name: "Mega Macro",
  39461. height: math.unit(2500, "feet")
  39462. },
  39463. {
  39464. name: "Giga Macro",
  39465. height: math.unit(50, "miles")
  39466. },
  39467. ]
  39468. ))
  39469. characterMakers.push(() => makeCharacter(
  39470. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39471. {
  39472. front: {
  39473. height: math.unit(7 + 6/12, "feet"),
  39474. weight: math.unit(600, "lb"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/moxie-nova/front.svg",
  39478. extra: 1734/1652,
  39479. bottom: 41/1775
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(7 + 6/12, "feet"),
  39487. default: true
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39493. {
  39494. goat: {
  39495. height: math.unit(4, "feet"),
  39496. weight: math.unit(180, "lb"),
  39497. name: "Goat",
  39498. image: {
  39499. source: "./media/characters/tiffany/goat.svg",
  39500. extra: 1845/1595,
  39501. bottom: 106/1951
  39502. }
  39503. },
  39504. front: {
  39505. height: math.unit(5, "feet"),
  39506. weight: math.unit(150, "lb"),
  39507. name: "Foxcoon",
  39508. image: {
  39509. source: "./media/characters/tiffany/foxcoon.svg",
  39510. extra: 1941/1845,
  39511. bottom: 58/1999
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(5, "feet"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39525. {
  39526. front: {
  39527. height: math.unit(8, "feet"),
  39528. weight: math.unit(300, "lb"),
  39529. name: "Front",
  39530. image: {
  39531. source: "./media/characters/raxinath/front.svg",
  39532. extra: 1407/1309,
  39533. bottom: 39/1446
  39534. }
  39535. },
  39536. back: {
  39537. height: math.unit(8, "feet"),
  39538. weight: math.unit(300, "lb"),
  39539. name: "Back",
  39540. image: {
  39541. source: "./media/characters/raxinath/back.svg",
  39542. extra: 1405/1315,
  39543. bottom: 9/1414
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Speck",
  39550. height: math.unit(0.5, "nm")
  39551. },
  39552. {
  39553. name: "Micro",
  39554. height: math.unit(3, "inches")
  39555. },
  39556. {
  39557. name: "Kobold",
  39558. height: math.unit(3, "feet")
  39559. },
  39560. {
  39561. name: "Normal",
  39562. height: math.unit(8, "feet"),
  39563. default: true
  39564. },
  39565. {
  39566. name: "Giant",
  39567. height: math.unit(50, "feet")
  39568. },
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(1000, "feet")
  39572. },
  39573. {
  39574. name: "Megamacro",
  39575. height: math.unit(1, "mile")
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(10, "feet"),
  39584. weight: math.unit(1442, "lb"),
  39585. name: "Front",
  39586. image: {
  39587. source: "./media/characters/mal-dragon/front.svg",
  39588. extra: 1515/1444,
  39589. bottom: 113/1628
  39590. }
  39591. },
  39592. back: {
  39593. height: math.unit(10, "feet"),
  39594. weight: math.unit(1442, "lb"),
  39595. name: "Back",
  39596. image: {
  39597. source: "./media/characters/mal-dragon/back.svg",
  39598. extra: 1527/1434,
  39599. bottom: 25/1552
  39600. }
  39601. },
  39602. },
  39603. [
  39604. {
  39605. name: "Mortal Interaction",
  39606. height: math.unit(10, "feet"),
  39607. default: true
  39608. },
  39609. {
  39610. name: "Large",
  39611. height: math.unit(30, "feet")
  39612. },
  39613. {
  39614. name: "Kaiju",
  39615. height: math.unit(300, "feet")
  39616. },
  39617. {
  39618. name: "Megamacro",
  39619. height: math.unit(10000, "feet")
  39620. },
  39621. {
  39622. name: "Continent Cracker",
  39623. height: math.unit(30000000, "feet")
  39624. },
  39625. {
  39626. name: "Sol-Swallowing",
  39627. height: math.unit(1e11, "feet")
  39628. },
  39629. {
  39630. name: "Light Universal",
  39631. height: math.unit(5, "universes")
  39632. },
  39633. {
  39634. name: "Universe Atoms",
  39635. height: math.unit(1.829e9, "universes")
  39636. },
  39637. {
  39638. name: "Light Multiversal",
  39639. height: math.unit(5, "multiverses")
  39640. },
  39641. {
  39642. name: "Multiverse Atoms",
  39643. height: math.unit(1.829e9, "multiverses")
  39644. },
  39645. {
  39646. name: "Fabric of Time",
  39647. height: math.unit(1e262, "multiverses")
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(9, "feet"),
  39656. weight: math.unit(1050, "lb"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/tabitha/front.svg",
  39660. extra: 2083/1994,
  39661. bottom: 68/2151
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Baseline",
  39668. height: math.unit(9, "feet"),
  39669. default: true
  39670. },
  39671. {
  39672. name: "Giant",
  39673. height: math.unit(90, "feet")
  39674. },
  39675. {
  39676. name: "Macro",
  39677. height: math.unit(900, "feet")
  39678. },
  39679. {
  39680. name: "Megamacro",
  39681. height: math.unit(9000, "feet")
  39682. },
  39683. {
  39684. name: "City-Crushing",
  39685. height: math.unit(27000, "feet")
  39686. },
  39687. {
  39688. name: "Mountain-Mashing",
  39689. height: math.unit(90000, "feet")
  39690. },
  39691. {
  39692. name: "Nation Nemesis",
  39693. height: math.unit(9e6, "feet")
  39694. },
  39695. {
  39696. name: "Continent Cracker",
  39697. height: math.unit(27e6, "feet")
  39698. },
  39699. {
  39700. name: "Earth-Eclipsing",
  39701. height: math.unit(2.7e8, "feet")
  39702. },
  39703. {
  39704. name: "Gas Giant Gulper",
  39705. height: math.unit(2.7e9, "feet")
  39706. },
  39707. {
  39708. name: "Sol-Swallowing",
  39709. height: math.unit(9e10, "feet")
  39710. },
  39711. {
  39712. name: "Galaxy Gulper",
  39713. height: math.unit(9, "galaxies")
  39714. },
  39715. {
  39716. name: "Cosmos Churner",
  39717. height: math.unit(9, "universes")
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(160, "cm"),
  39726. weight: math.unit(55, "kg"),
  39727. name: "Front",
  39728. image: {
  39729. source: "./media/characters/tow/front.svg",
  39730. extra: 1751/1722,
  39731. bottom: 74/1825
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Norm",
  39738. height: math.unit(160, "cm")
  39739. },
  39740. {
  39741. name: "Casual",
  39742. height: math.unit(3200, "m"),
  39743. default: true
  39744. },
  39745. {
  39746. name: "Show-Off",
  39747. height: math.unit(160, "km")
  39748. },
  39749. ]
  39750. ))
  39751. characterMakers.push(() => makeCharacter(
  39752. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39753. {
  39754. front: {
  39755. height: math.unit(7 + 11/12, "feet"),
  39756. weight: math.unit(342.8, "lb"),
  39757. name: "Front",
  39758. image: {
  39759. source: "./media/characters/vivian-orca-dragon/front.svg",
  39760. extra: 1890/1865,
  39761. bottom: 28/1918
  39762. }
  39763. },
  39764. },
  39765. [
  39766. {
  39767. name: "Micro",
  39768. height: math.unit(5, "inches")
  39769. },
  39770. {
  39771. name: "Normal",
  39772. height: math.unit(7 + 11/12, "feet"),
  39773. default: true
  39774. },
  39775. {
  39776. name: "Macro",
  39777. height: math.unit(395 + 7/12, "feet")
  39778. },
  39779. ]
  39780. ))
  39781. characterMakers.push(() => makeCharacter(
  39782. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39783. {
  39784. side: {
  39785. height: math.unit(10, "feet"),
  39786. weight: math.unit(1442, "lb"),
  39787. name: "Side",
  39788. image: {
  39789. source: "./media/characters/lotherakon/side.svg",
  39790. extra: 1604/1497,
  39791. bottom: 89/1693
  39792. }
  39793. },
  39794. },
  39795. [
  39796. {
  39797. name: "Mortal Interaction",
  39798. height: math.unit(10, "feet")
  39799. },
  39800. {
  39801. name: "Large",
  39802. height: math.unit(30, "feet"),
  39803. default: true
  39804. },
  39805. {
  39806. name: "Giant",
  39807. height: math.unit(100, "feet")
  39808. },
  39809. {
  39810. name: "Kaiju",
  39811. height: math.unit(300, "feet")
  39812. },
  39813. {
  39814. name: "Macro",
  39815. height: math.unit(1000, "feet")
  39816. },
  39817. {
  39818. name: "Macro+",
  39819. height: math.unit(3000, "feet")
  39820. },
  39821. {
  39822. name: "Megamacro",
  39823. height: math.unit(10000, "feet")
  39824. },
  39825. {
  39826. name: "City-Crushing",
  39827. height: math.unit(30000, "feet")
  39828. },
  39829. {
  39830. name: "Continent Cracker",
  39831. height: math.unit(30e6, "feet")
  39832. },
  39833. {
  39834. name: "Earth Eclipsing",
  39835. height: math.unit(3e8, "feet")
  39836. },
  39837. {
  39838. name: "Gas Giant Gulper",
  39839. height: math.unit(3e9, "feet")
  39840. },
  39841. {
  39842. name: "Sol-Swallowing",
  39843. height: math.unit(1e11, "feet")
  39844. },
  39845. {
  39846. name: "System Swallower",
  39847. height: math.unit(3e14, "feet")
  39848. },
  39849. {
  39850. name: "Galaxy Gulper",
  39851. height: math.unit(10, "galaxies")
  39852. },
  39853. {
  39854. name: "Light Universal",
  39855. height: math.unit(5, "universes")
  39856. },
  39857. {
  39858. name: "Universe Palm",
  39859. height: math.unit(20, "universes")
  39860. },
  39861. {
  39862. name: "Light Multiversal",
  39863. height: math.unit(5, "multiverses")
  39864. },
  39865. {
  39866. name: "Multiverse Palm",
  39867. height: math.unit(20, "multiverses")
  39868. },
  39869. {
  39870. name: "Inferno Incarnate",
  39871. height: math.unit(1e7, "multiverses")
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(8, "feet"),
  39880. weight: math.unit(1200, "lb"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/malithee/front.svg",
  39884. extra: 1675/1640,
  39885. bottom: 162/1837
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Mortal Interaction",
  39892. height: math.unit(8, "feet"),
  39893. default: true
  39894. },
  39895. {
  39896. name: "Large",
  39897. height: math.unit(24, "feet")
  39898. },
  39899. {
  39900. name: "Kaiju",
  39901. height: math.unit(240, "feet")
  39902. },
  39903. {
  39904. name: "Megamacro",
  39905. height: math.unit(8000, "feet")
  39906. },
  39907. {
  39908. name: "Continent Cracker",
  39909. height: math.unit(24e6, "feet")
  39910. },
  39911. {
  39912. name: "Earth-Eclipsing",
  39913. height: math.unit(2.4e8, "feet")
  39914. },
  39915. {
  39916. name: "Sol-Swallowing",
  39917. height: math.unit(8e10, "feet")
  39918. },
  39919. {
  39920. name: "Galaxy Gulper",
  39921. height: math.unit(8, "galaxies")
  39922. },
  39923. {
  39924. name: "Light Universal",
  39925. height: math.unit(4, "universes")
  39926. },
  39927. {
  39928. name: "Universe Atoms",
  39929. height: math.unit(1.829e9, "universes")
  39930. },
  39931. {
  39932. name: "Light Multiversal",
  39933. height: math.unit(4, "multiverses")
  39934. },
  39935. {
  39936. name: "Multiverse Atoms",
  39937. height: math.unit(1.829e9, "multiverses")
  39938. },
  39939. {
  39940. name: "Nigh-Omnipresence",
  39941. height: math.unit(8e261, "multiverses")
  39942. },
  39943. ]
  39944. ))
  39945. characterMakers.push(() => makeCharacter(
  39946. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39947. {
  39948. front: {
  39949. height: math.unit(10, "feet"),
  39950. weight: math.unit(1500, "lb"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/miles-thestia/front.svg",
  39954. extra: 1812/1727,
  39955. bottom: 86/1898
  39956. }
  39957. },
  39958. back: {
  39959. height: math.unit(10, "feet"),
  39960. weight: math.unit(1500, "lb"),
  39961. name: "Back",
  39962. image: {
  39963. source: "./media/characters/miles-thestia/back.svg",
  39964. extra: 1799/1690,
  39965. bottom: 47/1846
  39966. }
  39967. },
  39968. frontNsfw: {
  39969. height: math.unit(10, "feet"),
  39970. weight: math.unit(1500, "lb"),
  39971. name: "Front (NSFW)",
  39972. image: {
  39973. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39974. extra: 1812/1727,
  39975. bottom: 86/1898
  39976. }
  39977. },
  39978. },
  39979. [
  39980. {
  39981. name: "Mini-Macro",
  39982. height: math.unit(10, "feet"),
  39983. default: true
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(25, "feet"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/titan-s-wulf/front.svg",
  39995. extra: 1560/1484,
  39996. bottom: 76/1636
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Smallest",
  40003. height: math.unit(25, "feet"),
  40004. default: true
  40005. },
  40006. {
  40007. name: "Normal",
  40008. height: math.unit(200, "feet")
  40009. },
  40010. {
  40011. name: "Macro",
  40012. height: math.unit(200000, "feet")
  40013. },
  40014. {
  40015. name: "Multiversal Original",
  40016. height: math.unit(10000, "multiverses")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(8, "feet"),
  40025. weight: math.unit(553, "lb"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/tawendeh/front.svg",
  40029. extra: 2365/2268,
  40030. bottom: 83/2448
  40031. }
  40032. },
  40033. frontClothed: {
  40034. height: math.unit(8, "feet"),
  40035. weight: math.unit(553, "lb"),
  40036. name: "Front (Clothed)",
  40037. image: {
  40038. source: "./media/characters/tawendeh/front-clothed.svg",
  40039. extra: 2365/2268,
  40040. bottom: 83/2448
  40041. }
  40042. },
  40043. back: {
  40044. height: math.unit(8, "feet"),
  40045. weight: math.unit(553, "lb"),
  40046. name: "Back",
  40047. image: {
  40048. source: "./media/characters/tawendeh/back.svg",
  40049. extra: 2397/2294,
  40050. bottom: 42/2439
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Mortal Interaction",
  40057. height: math.unit(8, "feet"),
  40058. default: true
  40059. },
  40060. {
  40061. name: "Giant",
  40062. height: math.unit(80, "feet")
  40063. },
  40064. {
  40065. name: "Macro",
  40066. height: math.unit(800, "feet")
  40067. },
  40068. {
  40069. name: "Megamacro",
  40070. height: math.unit(8000, "feet")
  40071. },
  40072. {
  40073. name: "City-Crushing",
  40074. height: math.unit(24000, "feet")
  40075. },
  40076. {
  40077. name: "Mountain-Mashing",
  40078. height: math.unit(80000, "feet")
  40079. },
  40080. {
  40081. name: "Nation Nemesis",
  40082. height: math.unit(8e6, "feet")
  40083. },
  40084. {
  40085. name: "Continent Cracker",
  40086. height: math.unit(24e6, "feet")
  40087. },
  40088. {
  40089. name: "Earth-Eclipsing",
  40090. height: math.unit(2.4e8, "feet")
  40091. },
  40092. {
  40093. name: "Gas Giant Gulper",
  40094. height: math.unit(2.4e9, "feet")
  40095. },
  40096. {
  40097. name: "Sol-Swallowing",
  40098. height: math.unit(8e10, "feet")
  40099. },
  40100. {
  40101. name: "Galaxy Gulper",
  40102. height: math.unit(8, "galaxies")
  40103. },
  40104. {
  40105. name: "Cosmos Churner",
  40106. height: math.unit(8, "universes")
  40107. },
  40108. {
  40109. name: "Omnipotent Otter",
  40110. height: math.unit(80, "universes")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(2.6, "meters"),
  40119. weight: math.unit(900, "kg"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/neesha/front.svg",
  40123. extra: 1803/1653,
  40124. bottom: 128/1931
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(2.6, "meters"),
  40132. default: true
  40133. },
  40134. {
  40135. name: "Macro",
  40136. height: math.unit(50, "meters")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(5, "feet"),
  40145. weight: math.unit(185, "lb"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/kyera/front.svg",
  40149. extra: 1875/1790,
  40150. bottom: 96/1971
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Normal",
  40157. height: math.unit(5, "feet"),
  40158. default: true
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(7 + 6/12, "feet"),
  40167. weight: math.unit(540, "lb"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/yuko/front.svg",
  40171. extra: 1282/1222,
  40172. bottom: 101/1383
  40173. }
  40174. },
  40175. frontClothed: {
  40176. height: math.unit(7 + 6/12, "feet"),
  40177. weight: math.unit(540, "lb"),
  40178. name: "Front (Clothed)",
  40179. image: {
  40180. source: "./media/characters/yuko/front-clothed.svg",
  40181. extra: 1282/1222,
  40182. bottom: 101/1383
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(7 + 6/12, "feet"),
  40190. default: true
  40191. },
  40192. {
  40193. name: "Macro",
  40194. height: math.unit(26 + 9/12, "feet")
  40195. },
  40196. {
  40197. name: "Megamacro",
  40198. height: math.unit(300, "feet")
  40199. },
  40200. {
  40201. name: "Gigamacro",
  40202. height: math.unit(5000, "feet")
  40203. },
  40204. {
  40205. name: "Planetary",
  40206. height: math.unit(10000, "miles")
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(8 + 2/12, "feet"),
  40215. weight: math.unit(600, "lb"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/deam-nitrel/front.svg",
  40219. extra: 1308/1234,
  40220. bottom: 125/1433
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Normal",
  40227. height: math.unit(8 + 2/12, "feet"),
  40228. default: true
  40229. },
  40230. ]
  40231. ))
  40232. characterMakers.push(() => makeCharacter(
  40233. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40234. {
  40235. front: {
  40236. height: math.unit(6.1, "feet"),
  40237. weight: math.unit(180, "lb"),
  40238. name: "Front",
  40239. image: {
  40240. source: "./media/characters/skyress/front.svg",
  40241. extra: 1045/915,
  40242. bottom: 28/1073
  40243. }
  40244. },
  40245. maw: {
  40246. height: math.unit(1, "feet"),
  40247. name: "Maw",
  40248. image: {
  40249. source: "./media/characters/skyress/maw.svg"
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(6.1, "feet"),
  40257. default: true
  40258. },
  40259. {
  40260. name: "Macro",
  40261. height: math.unit(200, "feet")
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(4 + 2/12, "feet"),
  40270. weight: math.unit(40, "kg"),
  40271. name: "Front",
  40272. image: {
  40273. source: "./media/characters/amethyst-jones/front.svg",
  40274. extra: 1220/1150,
  40275. bottom: 101/1321
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Normal",
  40282. height: math.unit(4 + 2/12, "feet"),
  40283. default: true
  40284. },
  40285. ]
  40286. ))
  40287. characterMakers.push(() => makeCharacter(
  40288. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40289. {
  40290. front: {
  40291. height: math.unit(1.7, "m"),
  40292. weight: math.unit(135, "lb"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/jade/front.svg",
  40296. extra: 1818/1767,
  40297. bottom: 32/1850
  40298. }
  40299. },
  40300. back: {
  40301. height: math.unit(1.7, "m"),
  40302. weight: math.unit(135, "lb"),
  40303. name: "Back",
  40304. image: {
  40305. source: "./media/characters/jade/back.svg",
  40306. extra: 1869/1809,
  40307. bottom: 35/1904
  40308. }
  40309. },
  40310. hand: {
  40311. height: math.unit(0.24, "m"),
  40312. name: "Hand",
  40313. image: {
  40314. source: "./media/characters/jade/hand.svg"
  40315. }
  40316. },
  40317. foot: {
  40318. height: math.unit(0.263, "m"),
  40319. name: "Foot",
  40320. image: {
  40321. source: "./media/characters/jade/foot.svg"
  40322. }
  40323. },
  40324. dick: {
  40325. height: math.unit(0.47, "m"),
  40326. name: "Dick",
  40327. image: {
  40328. source: "./media/characters/jade/dick.svg"
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Micro",
  40335. height: math.unit(22, "cm")
  40336. },
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(1.7, "m"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "Macro",
  40344. height: math.unit(152, "m")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(100, "miles"),
  40353. weight: math.unit(20000, "tons"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/cookie/front.svg",
  40357. extra: 1125/1070,
  40358. bottom: 30/1155
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Big",
  40365. height: math.unit(50, "feet")
  40366. },
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(100, "miles"),
  40370. default: true
  40371. },
  40372. {
  40373. name: "Megamacro",
  40374. height: math.unit(90000, "miles")
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(6, "feet"),
  40383. weight: math.unit(145, "lb"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/farzian/front.svg",
  40387. extra: 1902/1693,
  40388. bottom: 108/2010
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Macro",
  40395. height: math.unit(500, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(3 + 6/12, "feet"),
  40405. weight: math.unit(50, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/kimberly-tilson/front.svg",
  40409. extra: 1400/1322,
  40410. bottom: 36/1436
  40411. }
  40412. },
  40413. back: {
  40414. height: math.unit(3 + 6/12, "feet"),
  40415. weight: math.unit(50, "lb"),
  40416. name: "Back",
  40417. image: {
  40418. source: "./media/characters/kimberly-tilson/back.svg",
  40419. extra: 1370/1307,
  40420. bottom: 20/1390
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(3 + 6/12, "feet"),
  40428. default: true
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(1148, "feet"),
  40437. weight: math.unit(34057, "lb"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/harthos/front.svg",
  40441. extra: 1391/1339,
  40442. bottom: 13/1404
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Macro",
  40449. height: math.unit(1148, "feet"),
  40450. default: true
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(15, "feet"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/hypatia/front.svg",
  40462. extra: 1653/1591,
  40463. bottom: 79/1732
  40464. }
  40465. },
  40466. },
  40467. [
  40468. {
  40469. name: "Normal",
  40470. height: math.unit(15, "feet")
  40471. },
  40472. {
  40473. name: "Small",
  40474. height: math.unit(300, "feet")
  40475. },
  40476. {
  40477. name: "Macro",
  40478. height: math.unit(2500, "feet"),
  40479. default: true
  40480. },
  40481. {
  40482. name: "Mega Macro",
  40483. height: math.unit(1500, "miles")
  40484. },
  40485. {
  40486. name: "Giga Macro",
  40487. height: math.unit(1.5e6, "miles")
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40493. {
  40494. front: {
  40495. height: math.unit(6, "feet"),
  40496. weight: math.unit(200, "lb"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/wulver/front.svg",
  40500. extra: 1724/1632,
  40501. bottom: 130/1854
  40502. }
  40503. },
  40504. frontNsfw: {
  40505. height: math.unit(6, "feet"),
  40506. weight: math.unit(200, "lb"),
  40507. name: "Front (NSFW)",
  40508. image: {
  40509. source: "./media/characters/wulver/front-nsfw.svg",
  40510. extra: 1724/1632,
  40511. bottom: 130/1854
  40512. }
  40513. },
  40514. },
  40515. [
  40516. {
  40517. name: "Human-Sized",
  40518. height: math.unit(6, "feet")
  40519. },
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(4, "meters"),
  40523. default: true
  40524. },
  40525. {
  40526. name: "Large",
  40527. height: math.unit(6, "m")
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40533. {
  40534. front: {
  40535. height: math.unit(7, "feet"),
  40536. name: "Front",
  40537. image: {
  40538. source: "./media/characters/maru/front.svg",
  40539. extra: 1595/1570,
  40540. bottom: 0/1595
  40541. }
  40542. },
  40543. },
  40544. [
  40545. {
  40546. name: "Normal",
  40547. height: math.unit(7, "feet"),
  40548. default: true
  40549. },
  40550. {
  40551. name: "Macro",
  40552. height: math.unit(700, "feet")
  40553. },
  40554. {
  40555. name: "Mega Macro",
  40556. height: math.unit(25, "miles")
  40557. },
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(6, "feet"),
  40565. weight: math.unit(170, "lb"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/xenon/front.svg",
  40569. extra: 1376/1305,
  40570. bottom: 56/1432
  40571. }
  40572. },
  40573. back: {
  40574. height: math.unit(6, "feet"),
  40575. weight: math.unit(170, "lb"),
  40576. name: "Back",
  40577. image: {
  40578. source: "./media/characters/xenon/back.svg",
  40579. extra: 1328/1259,
  40580. bottom: 95/1423
  40581. }
  40582. },
  40583. maw: {
  40584. height: math.unit(0.52, "feet"),
  40585. name: "Maw",
  40586. image: {
  40587. source: "./media/characters/xenon/maw.svg"
  40588. }
  40589. },
  40590. hand: {
  40591. height: math.unit(0.82, "feet"),
  40592. name: "Hand",
  40593. image: {
  40594. source: "./media/characters/xenon/hand.svg"
  40595. }
  40596. },
  40597. foot: {
  40598. height: math.unit(1.13, "feet"),
  40599. name: "Foot",
  40600. image: {
  40601. source: "./media/characters/xenon/foot.svg"
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Micro",
  40608. height: math.unit(0.8, "inches")
  40609. },
  40610. {
  40611. name: "Normal",
  40612. height: math.unit(6, "feet")
  40613. },
  40614. {
  40615. name: "Macro",
  40616. height: math.unit(50, "feet"),
  40617. default: true
  40618. },
  40619. {
  40620. name: "Macro+",
  40621. height: math.unit(250, "feet")
  40622. },
  40623. {
  40624. name: "Megamacro",
  40625. height: math.unit(1500, "feet")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(7 + 5/12, "feet"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/zane/front.svg",
  40637. extra: 1260/1203,
  40638. bottom: 94/1354
  40639. }
  40640. },
  40641. back: {
  40642. height: math.unit(5.05, "feet"),
  40643. name: "Back",
  40644. image: {
  40645. source: "./media/characters/zane/back.svg",
  40646. extra: 893/829,
  40647. bottom: 30/923
  40648. }
  40649. },
  40650. werewolf: {
  40651. height: math.unit(11, "feet"),
  40652. name: "Werewolf",
  40653. image: {
  40654. source: "./media/characters/zane/werewolf.svg",
  40655. extra: 1383/1323,
  40656. bottom: 89/1472
  40657. }
  40658. },
  40659. foot: {
  40660. height: math.unit(1.46, "feet"),
  40661. name: "Foot",
  40662. image: {
  40663. source: "./media/characters/zane/foot.svg"
  40664. }
  40665. },
  40666. footFront: {
  40667. height: math.unit(0.784, "feet"),
  40668. name: "Foot (Front)",
  40669. image: {
  40670. source: "./media/characters/zane/foot-front.svg"
  40671. }
  40672. },
  40673. dick: {
  40674. height: math.unit(1.95, "feet"),
  40675. name: "Dick",
  40676. image: {
  40677. source: "./media/characters/zane/dick.svg"
  40678. }
  40679. },
  40680. dickWerewolf: {
  40681. height: math.unit(3.77, "feet"),
  40682. name: "Dick (Werewolf)",
  40683. image: {
  40684. source: "./media/characters/zane/dick.svg"
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(7 + 5/12, "feet"),
  40692. default: true
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(6 + 2/12, "feet"),
  40701. weight: math.unit(284, "lb"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/benni-desparque/front.svg",
  40705. extra: 1353/1126,
  40706. bottom: 69/1422
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Civilian",
  40713. height: math.unit(6 + 2/12, "feet")
  40714. },
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(98, "feet"),
  40718. default: true
  40719. },
  40720. {
  40721. name: "Kaiju Fighter",
  40722. height: math.unit(268, "feet")
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(5, "feet"),
  40731. weight: math.unit(105, "lb"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/maxine/front.svg",
  40735. extra: 1386/1250,
  40736. bottom: 71/1457
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(5, "feet"),
  40744. default: true
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(11 + 7/12, "feet"),
  40753. weight: math.unit(9576, "lb"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/scaly/front.svg",
  40757. extra: 888/867,
  40758. bottom: 36/924
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(11 + 7/12, "feet"),
  40766. default: true
  40767. },
  40768. ]
  40769. ))
  40770. characterMakers.push(() => makeCharacter(
  40771. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40772. {
  40773. front: {
  40774. height: math.unit(6 + 3/12, "feet"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/saelria/front.svg",
  40778. extra: 1243/1138,
  40779. bottom: 46/1289
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Micro",
  40786. height: math.unit(6, "inches"),
  40787. },
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(6 + 3/12, "feet"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(25, "feet")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(80, "meters"),
  40804. weight: math.unit(7000, "tonnes"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/tef/front.svg",
  40808. extra: 2036/1991,
  40809. bottom: 54/2090
  40810. }
  40811. },
  40812. back: {
  40813. height: math.unit(80, "meters"),
  40814. weight: math.unit(7000, "tonnes"),
  40815. name: "Back",
  40816. image: {
  40817. source: "./media/characters/tef/back.svg",
  40818. extra: 2036/1991,
  40819. bottom: 54/2090
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Macro",
  40826. height: math.unit(80, "meters"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(13, "feet"),
  40836. weight: math.unit(6, "tons"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/rover/front.svg",
  40840. extra: 1233/1156,
  40841. bottom: 50/1283
  40842. }
  40843. },
  40844. back: {
  40845. height: math.unit(13, "feet"),
  40846. weight: math.unit(6, "tons"),
  40847. name: "Back",
  40848. image: {
  40849. source: "./media/characters/rover/back.svg",
  40850. extra: 1327/1258,
  40851. bottom: 39/1366
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(13, "feet"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "Macro",
  40863. height: math.unit(1300, "feet")
  40864. },
  40865. {
  40866. name: "Megamacro",
  40867. height: math.unit(1300, "miles")
  40868. },
  40869. {
  40870. name: "Gigamacro",
  40871. height: math.unit(1300000, "miles")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(6, "feet"),
  40880. weight: math.unit(150, "lb"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/ariz/front.svg",
  40884. extra: 1401/1346,
  40885. bottom: 5/1406
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Normal",
  40892. height: math.unit(10, "feet"),
  40893. default: true
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(6, "feet"),
  40902. weight: math.unit(140, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/sigrun/front.svg",
  40906. extra: 1418/1359,
  40907. bottom: 27/1445
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(35, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(6, "feet"),
  40924. weight: math.unit(150, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/numin/front.svg",
  40928. extra: 1433/1388,
  40929. bottom: 12/1445
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Macro",
  40936. height: math.unit(21.5, "km"),
  40937. default: true
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(6, "feet"),
  40946. weight: math.unit(463, "lb"),
  40947. name: "Front",
  40948. image: {
  40949. source: "./media/characters/melwa/front.svg",
  40950. extra: 1307/1248,
  40951. bottom: 93/1400
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Macro",
  40958. height: math.unit(50, "meters"),
  40959. default: true
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(325, "feet"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/zorkaiju/front.svg",
  40971. extra: 1955/1814,
  40972. bottom: 40/1995
  40973. }
  40974. },
  40975. frontExtended: {
  40976. height: math.unit(325, "feet"),
  40977. name: "Front (Extended)",
  40978. image: {
  40979. source: "./media/characters/zorkaiju/front-extended.svg",
  40980. extra: 1955/1814,
  40981. bottom: 40/1995
  40982. }
  40983. },
  40984. side: {
  40985. height: math.unit(325, "feet"),
  40986. name: "Side",
  40987. image: {
  40988. source: "./media/characters/zorkaiju/side.svg",
  40989. extra: 1495/1396,
  40990. bottom: 17/1512
  40991. }
  40992. },
  40993. sideExtended: {
  40994. height: math.unit(325, "feet"),
  40995. name: "Side (Extended)",
  40996. image: {
  40997. source: "./media/characters/zorkaiju/side-extended.svg",
  40998. extra: 1495/1396,
  40999. bottom: 17/1512
  41000. }
  41001. },
  41002. back: {
  41003. height: math.unit(325, "feet"),
  41004. name: "Back",
  41005. image: {
  41006. source: "./media/characters/zorkaiju/back.svg",
  41007. extra: 1959/1821,
  41008. bottom: 31/1990
  41009. }
  41010. },
  41011. backExtended: {
  41012. height: math.unit(325, "feet"),
  41013. name: "Back (Extended)",
  41014. image: {
  41015. source: "./media/characters/zorkaiju/back-extended.svg",
  41016. extra: 1959/1821,
  41017. bottom: 31/1990
  41018. }
  41019. },
  41020. hand: {
  41021. height: math.unit(58.4, "feet"),
  41022. name: "Hand",
  41023. image: {
  41024. source: "./media/characters/zorkaiju/hand.svg"
  41025. }
  41026. },
  41027. handExtended: {
  41028. height: math.unit(61.4, "feet"),
  41029. name: "Hand (Extended)",
  41030. image: {
  41031. source: "./media/characters/zorkaiju/hand-extended.svg"
  41032. }
  41033. },
  41034. foot: {
  41035. height: math.unit(95, "feet"),
  41036. name: "Foot",
  41037. image: {
  41038. source: "./media/characters/zorkaiju/foot.svg"
  41039. }
  41040. },
  41041. leftArm: {
  41042. height: math.unit(59, "feet"),
  41043. name: "Left Arm",
  41044. image: {
  41045. source: "./media/characters/zorkaiju/left-arm.svg"
  41046. }
  41047. },
  41048. rightArm: {
  41049. height: math.unit(59, "feet"),
  41050. name: "Right Arm",
  41051. image: {
  41052. source: "./media/characters/zorkaiju/right-arm.svg"
  41053. }
  41054. },
  41055. tail: {
  41056. height: math.unit(104, "feet"),
  41057. name: "Tail",
  41058. image: {
  41059. source: "./media/characters/zorkaiju/tail.svg"
  41060. }
  41061. },
  41062. tailExtended: {
  41063. height: math.unit(104, "feet"),
  41064. name: "Tail (Extended)",
  41065. image: {
  41066. source: "./media/characters/zorkaiju/tail-extended.svg"
  41067. }
  41068. },
  41069. tailBottom: {
  41070. height: math.unit(104, "feet"),
  41071. name: "Tail Bottom",
  41072. image: {
  41073. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41074. }
  41075. },
  41076. crystal: {
  41077. height: math.unit(27.54, "feet"),
  41078. name: "Crystal",
  41079. image: {
  41080. source: "./media/characters/zorkaiju/crystal.svg"
  41081. }
  41082. },
  41083. },
  41084. [
  41085. {
  41086. name: "Kaiju",
  41087. height: math.unit(325, "feet"),
  41088. default: true
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(6 + 1/12, "feet"),
  41097. weight: math.unit(115, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/bailey-belfry/front.svg",
  41101. extra: 1240/1121,
  41102. bottom: 101/1341
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(6 + 1/12, "feet"),
  41110. default: true
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41116. {
  41117. side: {
  41118. height: math.unit(4, "meters"),
  41119. weight: math.unit(250, "kg"),
  41120. name: "Side",
  41121. image: {
  41122. source: "./media/characters/blacky/side.svg",
  41123. extra: 1027/919,
  41124. bottom: 43/1070
  41125. }
  41126. },
  41127. maw: {
  41128. height: math.unit(1, "meters"),
  41129. name: "Maw",
  41130. image: {
  41131. source: "./media/characters/blacky/maw.svg"
  41132. }
  41133. },
  41134. paw: {
  41135. height: math.unit(1, "meters"),
  41136. name: "Paw",
  41137. image: {
  41138. source: "./media/characters/blacky/paw.svg"
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(4, "meters"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(170, "cm"),
  41155. weight: math.unit(66, "kg"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/thux-ei/front.svg",
  41159. extra: 1109/1011,
  41160. bottom: 8/1117
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(170, "cm"),
  41168. default: true
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41174. {
  41175. front: {
  41176. height: math.unit(5, "feet"),
  41177. weight: math.unit(120, "lb"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/roxanne-voltaire/front.svg",
  41181. extra: 1901/1779,
  41182. bottom: 53/1954
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(5, "feet"),
  41190. default: true
  41191. },
  41192. {
  41193. name: "Giant",
  41194. height: math.unit(50, "feet")
  41195. },
  41196. {
  41197. name: "Titan",
  41198. height: math.unit(500, "feet")
  41199. },
  41200. {
  41201. name: "Macro",
  41202. height: math.unit(5000, "feet")
  41203. },
  41204. {
  41205. name: "Megamacro",
  41206. height: math.unit(50000, "feet")
  41207. },
  41208. {
  41209. name: "Gigamacro",
  41210. height: math.unit(500000, "feet")
  41211. },
  41212. {
  41213. name: "Teramacro",
  41214. height: math.unit(5e6, "feet")
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(6 + 2/12, "feet"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/squeaks/front.svg",
  41226. extra: 1823/1768,
  41227. bottom: 138/1961
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Micro",
  41234. height: math.unit(0.5, "inches")
  41235. },
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(6 + 2/12, "feet"),
  41239. default: true
  41240. },
  41241. {
  41242. name: "Macro",
  41243. height: math.unit(600, "feet")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(1.72, "meters"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/archinger/front.svg",
  41255. extra: 1861/1675,
  41256. bottom: 125/1986
  41257. }
  41258. },
  41259. back: {
  41260. height: math.unit(1.72, "meters"),
  41261. name: "Back",
  41262. image: {
  41263. source: "./media/characters/archinger/back.svg",
  41264. extra: 1844/1701,
  41265. bottom: 104/1948
  41266. }
  41267. },
  41268. cock: {
  41269. height: math.unit(0.59, "feet"),
  41270. name: "Cock",
  41271. image: {
  41272. source: "./media/characters/archinger/cock.svg"
  41273. }
  41274. },
  41275. },
  41276. [
  41277. {
  41278. name: "Normal",
  41279. height: math.unit(1.72, "meters"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "Macro",
  41284. height: math.unit(84, "meters")
  41285. },
  41286. {
  41287. name: "Macro+",
  41288. height: math.unit(112, "meters")
  41289. },
  41290. {
  41291. name: "Macro++",
  41292. height: math.unit(960, "meters")
  41293. },
  41294. {
  41295. name: "Macro+++",
  41296. height: math.unit(4, "km")
  41297. },
  41298. {
  41299. name: "Macro++++",
  41300. height: math.unit(48, "km")
  41301. },
  41302. {
  41303. name: "Macro+++++",
  41304. height: math.unit(4500, "km")
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(5 + 5/12, "feet"),
  41313. name: "Front",
  41314. image: {
  41315. source: "./media/characters/alsnapz/front.svg",
  41316. extra: 1157/1065,
  41317. bottom: 42/1199
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Normal",
  41324. height: math.unit(5 + 5/12, "feet"),
  41325. default: true
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41331. {
  41332. side: {
  41333. height: math.unit(3.2, "earths"),
  41334. name: "Side",
  41335. image: {
  41336. source: "./media/characters/mag/side.svg",
  41337. extra: 1331/1008,
  41338. bottom: 52/1383
  41339. }
  41340. },
  41341. wing: {
  41342. height: math.unit(1.94, "earths"),
  41343. name: "Wing",
  41344. image: {
  41345. source: "./media/characters/mag/wing.svg"
  41346. }
  41347. },
  41348. dick: {
  41349. height: math.unit(1.8, "earths"),
  41350. name: "Dick",
  41351. image: {
  41352. source: "./media/characters/mag/dick.svg"
  41353. }
  41354. },
  41355. ass: {
  41356. height: math.unit(1.33, "earths"),
  41357. name: "Ass",
  41358. image: {
  41359. source: "./media/characters/mag/ass.svg"
  41360. }
  41361. },
  41362. head: {
  41363. height: math.unit(1.1, "earths"),
  41364. name: "Head",
  41365. image: {
  41366. source: "./media/characters/mag/head.svg"
  41367. }
  41368. },
  41369. maw: {
  41370. height: math.unit(1.62, "earths"),
  41371. name: "Maw",
  41372. image: {
  41373. source: "./media/characters/mag/maw.svg"
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Small",
  41380. height: math.unit(162, "feet")
  41381. },
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(3.2, "earths"),
  41385. default: true
  41386. },
  41387. ]
  41388. ))
  41389. characterMakers.push(() => makeCharacter(
  41390. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41391. {
  41392. front: {
  41393. height: math.unit(512, "feet"),
  41394. weight: math.unit(63509, "tonnes"),
  41395. name: "Front",
  41396. image: {
  41397. source: "./media/characters/vorrel-harroc/front.svg",
  41398. extra: 1075/1063,
  41399. bottom: 62/1137
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(10, "feet")
  41407. },
  41408. {
  41409. name: "Macro",
  41410. height: math.unit(512, "feet"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Megamacro",
  41415. height: math.unit(256, "miles")
  41416. },
  41417. {
  41418. name: "Gigamacro",
  41419. height: math.unit(4096, "miles")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41425. {
  41426. side: {
  41427. height: math.unit(50, "feet"),
  41428. name: "Side",
  41429. image: {
  41430. source: "./media/characters/froimar/side.svg",
  41431. extra: 855/638,
  41432. bottom: 99/954
  41433. }
  41434. },
  41435. },
  41436. [
  41437. {
  41438. name: "Macro",
  41439. height: math.unit(50, "feet"),
  41440. default: true
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41446. {
  41447. front: {
  41448. height: math.unit(210, "miles"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/timothy/front.svg",
  41452. extra: 1007/943,
  41453. bottom: 62/1069
  41454. }
  41455. },
  41456. frontSkirt: {
  41457. height: math.unit(210, "miles"),
  41458. name: "Front (Skirt)",
  41459. image: {
  41460. source: "./media/characters/timothy/front-skirt.svg",
  41461. extra: 1007/943,
  41462. bottom: 62/1069
  41463. }
  41464. },
  41465. frontCoat: {
  41466. height: math.unit(210, "miles"),
  41467. name: "Front (Coat)",
  41468. image: {
  41469. source: "./media/characters/timothy/front-coat.svg",
  41470. extra: 1007/943,
  41471. bottom: 62/1069
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Macro",
  41478. height: math.unit(210, "miles"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Megamacro",
  41483. height: math.unit(210000, "miles")
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(188, "feet"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/pyotr/front.svg",
  41495. extra: 1912/1826,
  41496. bottom: 18/1930
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Macro",
  41503. height: math.unit(188, "feet"),
  41504. default: true
  41505. },
  41506. {
  41507. name: "Megamacro",
  41508. height: math.unit(8, "miles")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41514. {
  41515. side: {
  41516. height: math.unit(10, "feet"),
  41517. weight: math.unit(4500, "lb"),
  41518. name: "Side",
  41519. image: {
  41520. source: "./media/characters/ackart/side.svg",
  41521. extra: 1776/1668,
  41522. bottom: 116/1892
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Normal",
  41529. height: math.unit(10, "feet"),
  41530. default: true
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41536. {
  41537. side: {
  41538. height: math.unit(21, "feet"),
  41539. name: "Side",
  41540. image: {
  41541. source: "./media/characters/nolow/side.svg",
  41542. extra: 1484/1434,
  41543. bottom: 85/1569
  41544. }
  41545. },
  41546. sideErect: {
  41547. height: math.unit(21, "feet"),
  41548. name: "Side-erect",
  41549. image: {
  41550. source: "./media/characters/nolow/side-erect.svg",
  41551. extra: 1484/1434,
  41552. bottom: 85/1569
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Regular",
  41559. height: math.unit(12, "feet")
  41560. },
  41561. {
  41562. name: "Big Chee",
  41563. height: math.unit(21, "feet"),
  41564. default: true
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(7, "feet"),
  41573. weight: math.unit(250, "lb"),
  41574. name: "Front",
  41575. image: {
  41576. source: "./media/characters/nines/front.svg",
  41577. extra: 1741/1607,
  41578. bottom: 41/1782
  41579. }
  41580. },
  41581. side: {
  41582. height: math.unit(7, "feet"),
  41583. weight: math.unit(250, "lb"),
  41584. name: "Side",
  41585. image: {
  41586. source: "./media/characters/nines/side.svg",
  41587. extra: 1854/1735,
  41588. bottom: 93/1947
  41589. }
  41590. },
  41591. back: {
  41592. height: math.unit(7, "feet"),
  41593. weight: math.unit(250, "lb"),
  41594. name: "Back",
  41595. image: {
  41596. source: "./media/characters/nines/back.svg",
  41597. extra: 1748/1615,
  41598. bottom: 20/1768
  41599. }
  41600. },
  41601. },
  41602. [
  41603. {
  41604. name: "Megamacro",
  41605. height: math.unit(99, "km"),
  41606. default: true
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(5 + 10/12, "feet"),
  41615. weight: math.unit(210, "lb"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/zenith/front.svg",
  41619. extra: 1531/1452,
  41620. bottom: 198/1729
  41621. }
  41622. },
  41623. back: {
  41624. height: math.unit(5 + 10/12, "feet"),
  41625. weight: math.unit(210, "lb"),
  41626. name: "Back",
  41627. image: {
  41628. source: "./media/characters/zenith/back.svg",
  41629. extra: 1571/1487,
  41630. bottom: 75/1646
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Normal",
  41637. height: math.unit(5 + 10/12, "feet"),
  41638. default: true
  41639. }
  41640. ]
  41641. ))
  41642. characterMakers.push(() => makeCharacter(
  41643. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41644. {
  41645. front: {
  41646. height: math.unit(4, "feet"),
  41647. weight: math.unit(60, "lb"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/jasper/front.svg",
  41651. extra: 1450/1379,
  41652. bottom: 19/1469
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Normal",
  41659. height: math.unit(4, "feet"),
  41660. default: true
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41666. {
  41667. front: {
  41668. height: math.unit(6 + 5/12, "feet"),
  41669. weight: math.unit(290, "lb"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/tiberius-thyben/front.svg",
  41673. extra: 757/739,
  41674. bottom: 39/796
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Micro",
  41681. height: math.unit(1.5, "inches")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(6 + 5/12, "feet"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(300, "feet")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(5 + 6/12, "feet"),
  41699. weight: math.unit(60, "kg"),
  41700. name: "Front",
  41701. image: {
  41702. source: "./media/characters/sabre/front.svg",
  41703. extra: 738/671,
  41704. bottom: 27/765
  41705. }
  41706. },
  41707. },
  41708. [
  41709. {
  41710. name: "Teeny",
  41711. height: math.unit(2, "inches")
  41712. },
  41713. {
  41714. name: "Smol",
  41715. height: math.unit(8, "inches")
  41716. },
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(5 + 6/12, "feet"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Mini-Macro",
  41724. height: math.unit(15, "feet")
  41725. },
  41726. {
  41727. name: "Macro",
  41728. height: math.unit(50, "feet")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6 + 4/12, "feet"),
  41737. weight: math.unit(170, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/charlie/front.svg",
  41741. extra: 1348/1228,
  41742. bottom: 15/1363
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Macro",
  41749. height: math.unit(1700, "meters"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "MegaMacro",
  41754. height: math.unit(20400, "meters")
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(6 + 3/12, "feet"),
  41763. weight: math.unit(185, "lb"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/susan-grant/front.svg",
  41767. extra: 1351/1327,
  41768. bottom: 26/1377
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(6 + 3/12, "feet"),
  41776. default: true
  41777. },
  41778. {
  41779. name: "Macro",
  41780. height: math.unit(225, "feet")
  41781. },
  41782. {
  41783. name: "Macro+",
  41784. height: math.unit(900, "feet")
  41785. },
  41786. {
  41787. name: "MegaMacro",
  41788. height: math.unit(14400, "feet")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(5 + 4/12, "feet"),
  41797. weight: math.unit(110, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/axel-isanov/front.svg",
  41801. extra: 1096/1065,
  41802. bottom: 13/1109
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Normal",
  41809. height: math.unit(5 + 4/12, "feet"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41816. {
  41817. front: {
  41818. height: math.unit(9, "feet"),
  41819. weight: math.unit(467, "lb"),
  41820. name: "Front",
  41821. image: {
  41822. source: "./media/characters/necahual/front.svg",
  41823. extra: 920/873,
  41824. bottom: 26/946
  41825. }
  41826. },
  41827. back: {
  41828. height: math.unit(9, "feet"),
  41829. weight: math.unit(467, "lb"),
  41830. name: "Back",
  41831. image: {
  41832. source: "./media/characters/necahual/back.svg",
  41833. extra: 930/884,
  41834. bottom: 16/946
  41835. }
  41836. },
  41837. frontUnderwear: {
  41838. height: math.unit(9, "feet"),
  41839. weight: math.unit(467, "lb"),
  41840. name: "Front (Underwear)",
  41841. image: {
  41842. source: "./media/characters/necahual/front-underwear.svg",
  41843. extra: 920/873,
  41844. bottom: 26/946
  41845. }
  41846. },
  41847. frontDressed: {
  41848. height: math.unit(9, "feet"),
  41849. weight: math.unit(467, "lb"),
  41850. name: "Front (Dressed)",
  41851. image: {
  41852. source: "./media/characters/necahual/front-dressed.svg",
  41853. extra: 920/873,
  41854. bottom: 26/946
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Comprsesed",
  41861. height: math.unit(9, "feet")
  41862. },
  41863. {
  41864. name: "Natural",
  41865. height: math.unit(15, "feet"),
  41866. default: true
  41867. },
  41868. {
  41869. name: "Boosted",
  41870. height: math.unit(50, "feet")
  41871. },
  41872. {
  41873. name: "Boosted+",
  41874. height: math.unit(150, "feet")
  41875. },
  41876. {
  41877. name: "Max",
  41878. height: math.unit(500, "feet")
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(22 + 1/12, "feet"),
  41887. weight: math.unit(3200, "lb"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/theo-acacia/front.svg",
  41891. extra: 1796/1741,
  41892. bottom: 83/1879
  41893. }
  41894. },
  41895. frontUnderwear: {
  41896. height: math.unit(22 + 1/12, "feet"),
  41897. weight: math.unit(3200, "lb"),
  41898. name: "Front (Underwear)",
  41899. image: {
  41900. source: "./media/characters/theo-acacia/front-underwear.svg",
  41901. extra: 1796/1741,
  41902. bottom: 83/1879
  41903. }
  41904. },
  41905. frontNude: {
  41906. height: math.unit(22 + 1/12, "feet"),
  41907. weight: math.unit(3200, "lb"),
  41908. name: "Front (Nude)",
  41909. image: {
  41910. source: "./media/characters/theo-acacia/front-nude.svg",
  41911. extra: 1796/1741,
  41912. bottom: 83/1879
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(22 + 1/12, "feet"),
  41920. default: true
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41926. {
  41927. front: {
  41928. height: math.unit(20, "feet"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/astra/front.svg",
  41932. extra: 1850/1714,
  41933. bottom: 106/1956
  41934. }
  41935. },
  41936. frontUndressed: {
  41937. height: math.unit(20, "feet"),
  41938. name: "Front (Undressed)",
  41939. image: {
  41940. source: "./media/characters/astra/front-undressed.svg",
  41941. extra: 1926/1749,
  41942. bottom: 0/1926
  41943. }
  41944. },
  41945. hand: {
  41946. height: math.unit(1.53, "feet"),
  41947. name: "Hand",
  41948. image: {
  41949. source: "./media/characters/astra/hand.svg"
  41950. }
  41951. },
  41952. paw: {
  41953. height: math.unit(1.53, "feet"),
  41954. name: "Paw",
  41955. image: {
  41956. source: "./media/characters/astra/paw.svg"
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Smallest",
  41963. height: math.unit(20, "feet")
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(1e9, "miles"),
  41968. default: true
  41969. },
  41970. {
  41971. name: "Larger",
  41972. height: math.unit(5, "multiverses")
  41973. },
  41974. {
  41975. name: "Largest",
  41976. height: math.unit(1e9, "multiverses")
  41977. },
  41978. ]
  41979. ))
  41980. characterMakers.push(() => makeCharacter(
  41981. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41982. {
  41983. front: {
  41984. height: math.unit(8, "feet"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/breanna/front.svg",
  41988. extra: 1912/1632,
  41989. bottom: 33/1945
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Smallest",
  41996. height: math.unit(8, "feet")
  41997. },
  41998. {
  41999. name: "Normal",
  42000. height: math.unit(1, "mile"),
  42001. default: true
  42002. },
  42003. {
  42004. name: "Maximum",
  42005. height: math.unit(1500000000000, "lightyears")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(5 + 11/12, "feet"),
  42014. weight: math.unit(155, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/cai/front.svg",
  42018. extra: 1823/1702,
  42019. bottom: 32/1855
  42020. }
  42021. },
  42022. back: {
  42023. height: math.unit(5 + 11/12, "feet"),
  42024. weight: math.unit(155, "lb"),
  42025. name: "Back",
  42026. image: {
  42027. source: "./media/characters/cai/back.svg",
  42028. extra: 1809/1708,
  42029. bottom: 31/1840
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(5 + 11/12, "feet"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Big",
  42041. height: math.unit(15, "feet")
  42042. },
  42043. {
  42044. name: "Macro",
  42045. height: math.unit(200, "feet")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(5 + 6/12, "feet"),
  42054. weight: math.unit(160, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42058. extra: 1227/1174,
  42059. bottom: 37/1264
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Macro",
  42066. height: math.unit(444, "meters"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(18 + 7/12, "feet"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/rex/front.svg",
  42079. extra: 1941/1807,
  42080. bottom: 66/2007
  42081. }
  42082. },
  42083. back: {
  42084. height: math.unit(18 + 7/12, "feet"),
  42085. name: "Back",
  42086. image: {
  42087. source: "./media/characters/rex/back.svg",
  42088. extra: 1937/1822,
  42089. bottom: 42/1979
  42090. }
  42091. },
  42092. boot: {
  42093. height: math.unit(3.45, "feet"),
  42094. name: "Boot",
  42095. image: {
  42096. source: "./media/characters/rex/boot.svg"
  42097. }
  42098. },
  42099. paw: {
  42100. height: math.unit(4.17, "feet"),
  42101. name: "Paw",
  42102. image: {
  42103. source: "./media/characters/rex/paw.svg"
  42104. }
  42105. },
  42106. head: {
  42107. height: math.unit(6.728, "feet"),
  42108. name: "Head",
  42109. image: {
  42110. source: "./media/characters/rex/head.svg"
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Nano",
  42117. height: math.unit(18 + 7/12, "feet")
  42118. },
  42119. {
  42120. name: "Micro",
  42121. height: math.unit(1.5, "megameters")
  42122. },
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(440, "megameters"),
  42126. default: true
  42127. },
  42128. {
  42129. name: "Macro",
  42130. height: math.unit(2.5, "gigameters")
  42131. },
  42132. {
  42133. name: "Gigamacro",
  42134. height: math.unit(2, "galaxies")
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42140. {
  42141. side: {
  42142. height: math.unit(32, "feet"),
  42143. weight: math.unit(250000, "lb"),
  42144. name: "Side",
  42145. image: {
  42146. source: "./media/characters/silverwing/side.svg",
  42147. extra: 1100/1019,
  42148. bottom: 204/1304
  42149. }
  42150. },
  42151. },
  42152. [
  42153. {
  42154. name: "Normal",
  42155. height: math.unit(32, "feet"),
  42156. default: true
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(6 + 6/12, "feet"),
  42165. weight: math.unit(350, "lb"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/tristan-hawthorne/front.svg",
  42169. extra: 1159/1124,
  42170. bottom: 37/1196
  42171. },
  42172. form: "labrador",
  42173. default: true
  42174. },
  42175. skunkFront: {
  42176. height: math.unit(4 + 6/12, "feet"),
  42177. weight: math.unit(120, "lb"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42181. extra: 1609/1551,
  42182. bottom: 169/1778
  42183. },
  42184. form: "skunk",
  42185. default: true
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Normal",
  42191. height: math.unit(6 + 6/12, "feet"),
  42192. form: "labrador",
  42193. default: true
  42194. },
  42195. {
  42196. name: "Normal",
  42197. height: math.unit(4 + 6/12, "feet"),
  42198. form: "skunk",
  42199. default: true
  42200. },
  42201. ],
  42202. {
  42203. "labrador": {
  42204. name: "Labrador",
  42205. default: true
  42206. },
  42207. "skunk": {
  42208. name: "Skunk"
  42209. }
  42210. }
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(5 + 11/12, "feet"),
  42217. weight: math.unit(190, "lb"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/mizu/front.svg",
  42221. extra: 1988/1788,
  42222. bottom: 14/2002
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(5 + 11/12, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(1.7, "feet"),
  42239. weight: math.unit(50, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/dechroma/front.svg",
  42243. extra: 1095/859,
  42244. bottom: 64/1159
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(1.7, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42258. {
  42259. side: {
  42260. height: math.unit(30, "feet"),
  42261. name: "Side",
  42262. image: {
  42263. source: "./media/characters/veluren-thanazel/side.svg",
  42264. extra: 1611/633,
  42265. bottom: 118/1729
  42266. }
  42267. },
  42268. front: {
  42269. height: math.unit(30, "feet"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/veluren-thanazel/front.svg",
  42273. extra: 1486/636,
  42274. bottom: 238/1724
  42275. }
  42276. },
  42277. head: {
  42278. height: math.unit(21.4, "feet"),
  42279. name: "Head",
  42280. image: {
  42281. source: "./media/characters/veluren-thanazel/head.svg"
  42282. }
  42283. },
  42284. genitals: {
  42285. height: math.unit(19.4, "feet"),
  42286. name: "Genitals",
  42287. image: {
  42288. source: "./media/characters/veluren-thanazel/genitals.svg"
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Social",
  42295. height: math.unit(6, "feet")
  42296. },
  42297. {
  42298. name: "Play",
  42299. height: math.unit(12, "feet")
  42300. },
  42301. {
  42302. name: "True",
  42303. height: math.unit(30, "feet"),
  42304. default: true
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(7 + 6/12, "feet"),
  42313. weight: math.unit(500, "kg"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/arcturas/front.svg",
  42317. extra: 1700/1500,
  42318. bottom: 145/1845
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Normal",
  42325. height: math.unit(7 + 6/12, "feet"),
  42326. default: true
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42332. {
  42333. side: {
  42334. height: math.unit(6, "feet"),
  42335. weight: math.unit(2, "tons"),
  42336. name: "Side",
  42337. image: {
  42338. source: "./media/characters/vitaen/side.svg",
  42339. extra: 1157/617,
  42340. bottom: 122/1279
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(6, "feet"),
  42348. default: true
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(19, "feet"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/fia-dreamweaver/front.svg",
  42360. extra: 1630/1504,
  42361. bottom: 25/1655
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Normal",
  42368. height: math.unit(19, "feet"),
  42369. default: true
  42370. },
  42371. ]
  42372. ))
  42373. characterMakers.push(() => makeCharacter(
  42374. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42375. {
  42376. front: {
  42377. height: math.unit(5 + 4/12, "feet"),
  42378. name: "Front",
  42379. image: {
  42380. source: "./media/characters/artan/front.svg",
  42381. extra: 1618/1535,
  42382. bottom: 46/1664
  42383. }
  42384. },
  42385. back: {
  42386. height: math.unit(5 + 4/12, "feet"),
  42387. name: "Back",
  42388. image: {
  42389. source: "./media/characters/artan/back.svg",
  42390. extra: 1618/1543,
  42391. bottom: 31/1649
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(5 + 4/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42405. {
  42406. side: {
  42407. height: math.unit(182, "cm"),
  42408. weight: math.unit(1000, "lb"),
  42409. name: "Side",
  42410. image: {
  42411. source: "./media/characters/silver-dragon/side.svg",
  42412. extra: 710/287,
  42413. bottom: 88/798
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(182, "cm"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42427. {
  42428. side: {
  42429. height: math.unit(6 + 6/12, "feet"),
  42430. weight: math.unit(1.5, "tons"),
  42431. name: "Side",
  42432. image: {
  42433. source: "./media/characters/zephyr/side.svg",
  42434. extra: 1433/586,
  42435. bottom: 109/1542
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(6 + 6/12, "feet"),
  42443. default: true
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42449. {
  42450. side: {
  42451. height: math.unit(1, "feet"),
  42452. name: "Side",
  42453. image: {
  42454. source: "./media/characters/vixye/side.svg",
  42455. extra: 632/541,
  42456. bottom: 0/632
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Normal",
  42463. height: math.unit(1, "feet"),
  42464. default: true
  42465. },
  42466. {
  42467. name: "True",
  42468. height: math.unit(1e15, "multiverses")
  42469. },
  42470. ]
  42471. ))
  42472. characterMakers.push(() => makeCharacter(
  42473. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42474. {
  42475. front: {
  42476. height: math.unit(8 + 2/12, "feet"),
  42477. weight: math.unit(650, "lb"),
  42478. name: "Front",
  42479. image: {
  42480. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42481. extra: 1174/1137,
  42482. bottom: 82/1256
  42483. }
  42484. },
  42485. back: {
  42486. height: math.unit(8 + 2/12, "feet"),
  42487. weight: math.unit(650, "lb"),
  42488. name: "Back",
  42489. image: {
  42490. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42491. extra: 1204/1157,
  42492. bottom: 46/1250
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Wildform",
  42499. height: math.unit(8 + 2/12, "feet"),
  42500. default: true
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(18, "feet"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/cyphin/front.svg",
  42512. extra: 970/886,
  42513. bottom: 42/1012
  42514. }
  42515. },
  42516. back: {
  42517. height: math.unit(18, "feet"),
  42518. name: "Back",
  42519. image: {
  42520. source: "./media/characters/cyphin/back.svg",
  42521. extra: 1009/894,
  42522. bottom: 24/1033
  42523. }
  42524. },
  42525. head: {
  42526. height: math.unit(5.05, "feet"),
  42527. name: "Head",
  42528. image: {
  42529. source: "./media/characters/cyphin/head.svg"
  42530. }
  42531. },
  42532. tailbud: {
  42533. height: math.unit(5, "feet"),
  42534. name: "Tailbud",
  42535. image: {
  42536. source: "./media/characters/cyphin/tailbud.svg"
  42537. }
  42538. },
  42539. },
  42540. [
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42545. {
  42546. side: {
  42547. height: math.unit(10, "feet"),
  42548. weight: math.unit(6, "tons"),
  42549. name: "Side",
  42550. image: {
  42551. source: "./media/characters/raijin/side.svg",
  42552. extra: 1529/613,
  42553. bottom: 337/1866
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(10, "feet"),
  42561. default: true
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42567. {
  42568. side: {
  42569. height: math.unit(9, "feet"),
  42570. name: "Side",
  42571. image: {
  42572. source: "./media/characters/nilghais/side.svg",
  42573. extra: 1047/744,
  42574. bottom: 91/1138
  42575. }
  42576. },
  42577. head: {
  42578. height: math.unit(3.14, "feet"),
  42579. name: "Head",
  42580. image: {
  42581. source: "./media/characters/nilghais/head.svg"
  42582. }
  42583. },
  42584. mouth: {
  42585. height: math.unit(4.6, "feet"),
  42586. name: "Mouth",
  42587. image: {
  42588. source: "./media/characters/nilghais/mouth.svg"
  42589. }
  42590. },
  42591. wings: {
  42592. height: math.unit(24, "feet"),
  42593. name: "Wings",
  42594. image: {
  42595. source: "./media/characters/nilghais/wings.svg"
  42596. }
  42597. },
  42598. ass: {
  42599. height: math.unit(6.12, "feet"),
  42600. name: "Ass",
  42601. image: {
  42602. source: "./media/characters/nilghais/ass.svg"
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(9, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42616. {
  42617. regular: {
  42618. height: math.unit(16 + 2/12, "feet"),
  42619. weight: math.unit(2300, "lb"),
  42620. name: "Regular",
  42621. image: {
  42622. source: "./media/characters/zolgar/regular.svg",
  42623. extra: 1246/1004,
  42624. bottom: 124/1370
  42625. }
  42626. },
  42627. boxers: {
  42628. height: math.unit(16 + 2/12, "feet"),
  42629. weight: math.unit(2300, "lb"),
  42630. name: "Boxers",
  42631. image: {
  42632. source: "./media/characters/zolgar/boxers.svg",
  42633. extra: 1246/1004,
  42634. bottom: 124/1370
  42635. }
  42636. },
  42637. armored: {
  42638. height: math.unit(16 + 2/12, "feet"),
  42639. weight: math.unit(2300, "lb"),
  42640. name: "Armored",
  42641. image: {
  42642. source: "./media/characters/zolgar/armored.svg",
  42643. extra: 1246/1004,
  42644. bottom: 124/1370
  42645. }
  42646. },
  42647. goth: {
  42648. height: math.unit(16 + 2/12, "feet"),
  42649. weight: math.unit(2300, "lb"),
  42650. name: "Goth",
  42651. image: {
  42652. source: "./media/characters/zolgar/goth.svg",
  42653. extra: 1246/1004,
  42654. bottom: 124/1370
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Shrunken Down",
  42661. height: math.unit(9 + 2/12, "feet")
  42662. },
  42663. {
  42664. name: "Normal",
  42665. height: math.unit(16 + 2/12, "feet"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(6, "feet"),
  42675. weight: math.unit(168, "lb"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/luca/front.svg",
  42679. extra: 841/667,
  42680. bottom: 102/943
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(6, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42694. {
  42695. side: {
  42696. height: math.unit(7 + 3/12, "feet"),
  42697. weight: math.unit(312, "lb"),
  42698. name: "Side",
  42699. image: {
  42700. source: "./media/characters/zezo/side.svg",
  42701. extra: 1192/1067,
  42702. bottom: 63/1255
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(7 + 3/12, "feet"),
  42710. default: true
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(5 + 5/12, "feet"),
  42719. weight: math.unit(170, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/mayso/front.svg",
  42723. extra: 1215/1108,
  42724. bottom: 16/1231
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(5 + 5/12, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(4 + 3/12, "feet"),
  42741. weight: math.unit(80, "lb"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/hess/front.svg",
  42745. extra: 1200/1123,
  42746. bottom: 16/1216
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(4 + 3/12, "feet"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42760. {
  42761. front: {
  42762. height: math.unit(1.9, "meters"),
  42763. name: "Front",
  42764. image: {
  42765. source: "./media/characters/ashgar/front.svg",
  42766. extra: 1177/1146,
  42767. bottom: 99/1276
  42768. }
  42769. },
  42770. back: {
  42771. height: math.unit(1.9, "meters"),
  42772. name: "Back",
  42773. image: {
  42774. source: "./media/characters/ashgar/back.svg",
  42775. extra: 1201/1183,
  42776. bottom: 53/1254
  42777. }
  42778. },
  42779. feral: {
  42780. height: math.unit(1.4, "meters"),
  42781. name: "Feral",
  42782. image: {
  42783. source: "./media/characters/ashgar/feral.svg",
  42784. extra: 370/345,
  42785. bottom: 45/415
  42786. }
  42787. },
  42788. },
  42789. [
  42790. {
  42791. name: "Normal",
  42792. height: math.unit(1.9, "meters"),
  42793. default: true
  42794. },
  42795. ]
  42796. ))
  42797. characterMakers.push(() => makeCharacter(
  42798. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42799. {
  42800. regular: {
  42801. height: math.unit(6, "feet"),
  42802. weight: math.unit(220, "lb"),
  42803. name: "Regular",
  42804. image: {
  42805. source: "./media/characters/phillip/regular.svg",
  42806. extra: 1373/1277,
  42807. bottom: 75/1448
  42808. }
  42809. },
  42810. dressed: {
  42811. height: math.unit(6, "feet"),
  42812. weight: math.unit(220, "lb"),
  42813. name: "Dressed",
  42814. image: {
  42815. source: "./media/characters/phillip/dressed.svg",
  42816. extra: 1373/1277,
  42817. bottom: 75/1448
  42818. }
  42819. },
  42820. paw: {
  42821. height: math.unit(1.44, "feet"),
  42822. name: "Paw",
  42823. image: {
  42824. source: "./media/characters/phillip/paw.svg"
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(6, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(42, "feet"),
  42841. name: "Side",
  42842. image: {
  42843. source: "./media/characters/uvula/side.svg",
  42844. extra: 683/586,
  42845. bottom: 60/743
  42846. }
  42847. },
  42848. front: {
  42849. height: math.unit(42, "feet"),
  42850. name: "Front",
  42851. image: {
  42852. source: "./media/characters/uvula/front.svg",
  42853. extra: 705/613,
  42854. bottom: 54/759
  42855. }
  42856. },
  42857. maw: {
  42858. height: math.unit(23.5, "feet"),
  42859. name: "Maw",
  42860. image: {
  42861. source: "./media/characters/uvula/maw.svg"
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Original Size",
  42868. height: math.unit(14, "inches")
  42869. },
  42870. {
  42871. name: "Human Size",
  42872. height: math.unit(6, "feet")
  42873. },
  42874. {
  42875. name: "Big",
  42876. height: math.unit(42, "feet"),
  42877. default: true
  42878. },
  42879. {
  42880. name: "Bigger",
  42881. height: math.unit(100, "feet")
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(5 + 11/12, "feet"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/lannah/front.svg",
  42893. extra: 1208/1113,
  42894. bottom: 97/1305
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Normal",
  42901. height: math.unit(5 + 11/12, "feet"),
  42902. default: true
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42908. {
  42909. front: {
  42910. height: math.unit(6 + 3/12, "feet"),
  42911. weight: math.unit(3.5, "tons"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/emberflame/front.svg",
  42915. extra: 1198/672,
  42916. bottom: 82/1280
  42917. }
  42918. },
  42919. side: {
  42920. height: math.unit(6 + 3/12, "feet"),
  42921. weight: math.unit(3.5, "tons"),
  42922. name: "Side",
  42923. image: {
  42924. source: "./media/characters/emberflame/side.svg",
  42925. extra: 938/527,
  42926. bottom: 56/994
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(6 + 3/12, "feet"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42940. {
  42941. side: {
  42942. height: math.unit(17.5, "feet"),
  42943. weight: math.unit(35, "tons"),
  42944. name: "Side",
  42945. image: {
  42946. source: "./media/characters/sophie-ambrose/side.svg",
  42947. extra: 1573/1242,
  42948. bottom: 71/1644
  42949. }
  42950. },
  42951. maw: {
  42952. height: math.unit(7.4, "feet"),
  42953. name: "Maw",
  42954. image: {
  42955. source: "./media/characters/sophie-ambrose/maw.svg"
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(17.5, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(280, "feet"),
  42972. weight: math.unit(550, "tons"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/king-mugi/front.svg",
  42976. extra: 1102/947,
  42977. bottom: 104/1206
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "King Mugi",
  42984. height: math.unit(280, "feet"),
  42985. default: true
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(64, "meters"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/nova-fox/front.svg",
  42997. extra: 1310/1246,
  42998. bottom: 65/1375
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Macro",
  43005. height: math.unit(64, "meters"),
  43006. default: true
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(6 + 3/12, "feet"),
  43015. weight: math.unit(170, "lb"),
  43016. name: "Front",
  43017. image: {
  43018. source: "./media/characters/sam-bat/front.svg",
  43019. extra: 1601/1411,
  43020. bottom: 125/1726
  43021. }
  43022. },
  43023. back: {
  43024. height: math.unit(6 + 3/12, "feet"),
  43025. weight: math.unit(170, "lb"),
  43026. name: "Back",
  43027. image: {
  43028. source: "./media/characters/sam-bat/back.svg",
  43029. extra: 1577/1405,
  43030. bottom: 58/1635
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(6 + 3/12, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43044. {
  43045. front: {
  43046. height: math.unit(59, "feet"),
  43047. weight: math.unit(40000, "lb"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/inari/front.svg",
  43051. extra: 1884/1350,
  43052. bottom: 95/1979
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Gigantamax",
  43059. height: math.unit(59, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(5 + 8/12, "feet"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/elizabeth/front.svg",
  43072. extra: 1395/1298,
  43073. bottom: 54/1449
  43074. }
  43075. },
  43076. mouth: {
  43077. height: math.unit(1.97, "feet"),
  43078. name: "Mouth",
  43079. image: {
  43080. source: "./media/characters/elizabeth/mouth.svg"
  43081. }
  43082. },
  43083. foot: {
  43084. height: math.unit(1.17, "feet"),
  43085. name: "Foot",
  43086. image: {
  43087. source: "./media/characters/elizabeth/foot.svg"
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Normal",
  43094. height: math.unit(5 + 8/12, "feet"),
  43095. default: true
  43096. },
  43097. {
  43098. name: "Minimacro",
  43099. height: math.unit(18, "feet")
  43100. },
  43101. {
  43102. name: "Macro",
  43103. height: math.unit(180, "feet")
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(5 + 2/12, "feet"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/october-gossamer/front.svg",
  43115. extra: 505/454,
  43116. bottom: 7/512
  43117. }
  43118. },
  43119. back: {
  43120. height: math.unit(5 + 2/12, "feet"),
  43121. name: "Back",
  43122. image: {
  43123. source: "./media/characters/october-gossamer/back.svg",
  43124. extra: 501/454,
  43125. bottom: 11/512
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(5 + 2/12, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(5, "feet"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/epiglottis/front.svg",
  43145. extra: 923/849,
  43146. bottom: 17/940
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Original Size",
  43153. height: math.unit(10, "inches")
  43154. },
  43155. {
  43156. name: "Human Size",
  43157. height: math.unit(5, "feet"),
  43158. default: true
  43159. },
  43160. {
  43161. name: "Big",
  43162. height: math.unit(25, "feet")
  43163. },
  43164. {
  43165. name: "Bigger",
  43166. height: math.unit(50, "feet")
  43167. },
  43168. {
  43169. name: "oh lawd",
  43170. height: math.unit(75, "feet")
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(2 + 4/12, "feet"),
  43179. weight: math.unit(60, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/lerm/front.svg",
  43183. extra: 796/790,
  43184. bottom: 79/875
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(2 + 4/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(5.5, "feet"),
  43201. weight: math.unit(130, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/xena-nebadon/front.svg",
  43205. extra: 1828/1730,
  43206. bottom: 79/1907
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Tiny Puppy",
  43213. height: math.unit(3, "inches")
  43214. },
  43215. {
  43216. name: "Normal",
  43217. height: math.unit(5.5, "feet"),
  43218. default: true
  43219. },
  43220. {
  43221. name: "Lotta Lady",
  43222. height: math.unit(12, "feet")
  43223. },
  43224. {
  43225. name: "Pretty Big",
  43226. height: math.unit(100, "feet")
  43227. },
  43228. {
  43229. name: "Big",
  43230. height: math.unit(500, "feet")
  43231. },
  43232. {
  43233. name: "Skyscraper Toys",
  43234. height: math.unit(2500, "feet")
  43235. },
  43236. {
  43237. name: "Plane Catcher",
  43238. height: math.unit(8, "miles")
  43239. },
  43240. {
  43241. name: "Planet Toys",
  43242. height: math.unit(15, "earths")
  43243. },
  43244. {
  43245. name: "Stardust",
  43246. height: math.unit(0.25, "galaxies")
  43247. },
  43248. {
  43249. name: "Snacks",
  43250. height: math.unit(70, "universes")
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(1.6, "meters"),
  43259. weight: math.unit(60, "kg"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/bounty/front.svg",
  43263. extra: 1426/1308,
  43264. bottom: 15/1441
  43265. }
  43266. },
  43267. back: {
  43268. height: math.unit(1.6, "meters"),
  43269. weight: math.unit(60, "kg"),
  43270. name: "Back",
  43271. image: {
  43272. source: "./media/characters/bounty/back.svg",
  43273. extra: 1417/1307,
  43274. bottom: 8/1425
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(1.6, "meters"),
  43282. default: true
  43283. },
  43284. {
  43285. name: "Macro",
  43286. height: math.unit(300, "meters")
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43292. {
  43293. front: {
  43294. height: math.unit(2 + 8/12, "feet"),
  43295. weight: math.unit(15, "lb"),
  43296. name: "Front",
  43297. image: {
  43298. source: "./media/characters/mochi/front.svg",
  43299. extra: 1022/852,
  43300. bottom: 435/1457
  43301. }
  43302. },
  43303. back: {
  43304. height: math.unit(2 + 8/12, "feet"),
  43305. weight: math.unit(15, "lb"),
  43306. name: "Back",
  43307. image: {
  43308. source: "./media/characters/mochi/back.svg",
  43309. extra: 1335/1119,
  43310. bottom: 39/1374
  43311. }
  43312. },
  43313. bird: {
  43314. height: math.unit(2 + 8/12, "feet"),
  43315. weight: math.unit(15, "lb"),
  43316. name: "Bird",
  43317. image: {
  43318. source: "./media/characters/mochi/bird.svg",
  43319. extra: 1251/1113,
  43320. bottom: 178/1429
  43321. }
  43322. },
  43323. kaiju: {
  43324. height: math.unit(154, "feet"),
  43325. weight: math.unit(1e7, "lb"),
  43326. name: "Kaiju",
  43327. image: {
  43328. source: "./media/characters/mochi/kaiju.svg",
  43329. extra: 460/324,
  43330. bottom: 40/500
  43331. }
  43332. },
  43333. head: {
  43334. height: math.unit(1.21, "feet"),
  43335. name: "Head",
  43336. image: {
  43337. source: "./media/characters/mochi/head.svg"
  43338. }
  43339. },
  43340. alternateTail: {
  43341. height: math.unit(2 + 8/12, "feet"),
  43342. weight: math.unit(45, "lb"),
  43343. name: "Alternate Tail",
  43344. image: {
  43345. source: "./media/characters/mochi/alternate-tail.svg",
  43346. extra: 139/76,
  43347. bottom: 45/184
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Micro",
  43354. height: math.unit(2, "inches")
  43355. },
  43356. {
  43357. name: "Normal",
  43358. height: math.unit(2 + 8/12, "feet"),
  43359. default: true
  43360. },
  43361. {
  43362. name: "Macro",
  43363. height: math.unit(106, "feet")
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(5.67, "feet"),
  43372. weight: math.unit(135, "lb"),
  43373. name: "Front",
  43374. image: {
  43375. source: "./media/characters/sarel/front.svg",
  43376. extra: 865/788,
  43377. bottom: 97/962
  43378. }
  43379. },
  43380. back: {
  43381. height: math.unit(5.67, "feet"),
  43382. weight: math.unit(135, "lb"),
  43383. name: "Back",
  43384. image: {
  43385. source: "./media/characters/sarel/back.svg",
  43386. extra: 857/777,
  43387. bottom: 32/889
  43388. }
  43389. },
  43390. chozoan: {
  43391. height: math.unit(5.67, "feet"),
  43392. weight: math.unit(135, "lb"),
  43393. name: "Chozoan",
  43394. image: {
  43395. source: "./media/characters/sarel/chozoan.svg",
  43396. extra: 865/788,
  43397. bottom: 97/962
  43398. }
  43399. },
  43400. current: {
  43401. height: math.unit(5.67, "feet"),
  43402. weight: math.unit(135, "lb"),
  43403. name: "Current",
  43404. image: {
  43405. source: "./media/characters/sarel/current.svg",
  43406. extra: 865/788,
  43407. bottom: 97/962
  43408. }
  43409. },
  43410. head: {
  43411. height: math.unit(1.77, "feet"),
  43412. name: "Head",
  43413. image: {
  43414. source: "./media/characters/sarel/head.svg"
  43415. }
  43416. },
  43417. claws: {
  43418. height: math.unit(1.8, "feet"),
  43419. name: "Claws",
  43420. image: {
  43421. source: "./media/characters/sarel/claws.svg"
  43422. }
  43423. },
  43424. clawsAlt: {
  43425. height: math.unit(1.8, "feet"),
  43426. name: "Claws-alt",
  43427. image: {
  43428. source: "./media/characters/sarel/claws-alt.svg"
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Normal",
  43435. height: math.unit(5.67, "feet"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(5500, "feet"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/alyonia/front.svg",
  43448. extra: 1200/1135,
  43449. bottom: 29/1229
  43450. }
  43451. },
  43452. back: {
  43453. height: math.unit(5500, "feet"),
  43454. name: "Back",
  43455. image: {
  43456. source: "./media/characters/alyonia/back.svg",
  43457. extra: 1205/1138,
  43458. bottom: 10/1215
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Small",
  43465. height: math.unit(10, "feet")
  43466. },
  43467. {
  43468. name: "Macro",
  43469. height: math.unit(500, "feet")
  43470. },
  43471. {
  43472. name: "Mega Macro",
  43473. height: math.unit(5500, "feet"),
  43474. default: true
  43475. },
  43476. {
  43477. name: "Mega Macro+",
  43478. height: math.unit(500000, "feet")
  43479. },
  43480. {
  43481. name: "Giga Macro",
  43482. height: math.unit(3000, "miles")
  43483. },
  43484. {
  43485. name: "Tera Macro",
  43486. height: math.unit(2.8e6, "miles")
  43487. },
  43488. {
  43489. name: "Galactic",
  43490. height: math.unit(120000, "lightyears")
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43496. {
  43497. werewolf: {
  43498. height: math.unit(8, "feet"),
  43499. weight: math.unit(425, "lb"),
  43500. name: "Werewolf",
  43501. image: {
  43502. source: "./media/characters/autumn/werewolf.svg",
  43503. extra: 2154/2031,
  43504. bottom: 160/2314
  43505. }
  43506. },
  43507. human: {
  43508. height: math.unit(5 + 8/12, "feet"),
  43509. weight: math.unit(150, "lb"),
  43510. name: "Human",
  43511. image: {
  43512. source: "./media/characters/autumn/human.svg",
  43513. extra: 1200/1149,
  43514. bottom: 30/1230
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(8, "feet"),
  43522. default: true
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(8 + 5/12, "feet"),
  43531. weight: math.unit(825, "lb"),
  43532. name: "Front",
  43533. image: {
  43534. source: "./media/characters/cobalt-charizard/front.svg",
  43535. extra: 1268/1155,
  43536. bottom: 122/1390
  43537. }
  43538. },
  43539. side: {
  43540. height: math.unit(8 + 5/12, "feet"),
  43541. weight: math.unit(825, "lb"),
  43542. name: "Side",
  43543. image: {
  43544. source: "./media/characters/cobalt-charizard/side.svg",
  43545. extra: 1348/1257,
  43546. bottom: 58/1406
  43547. }
  43548. },
  43549. gMax: {
  43550. height: math.unit(134 + 11/12, "feet"),
  43551. name: "G-Max",
  43552. image: {
  43553. source: "./media/characters/cobalt-charizard/g-max.svg",
  43554. extra: 1835/1541,
  43555. bottom: 151/1986
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(8 + 5/12, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(6 + 3/12, "feet"),
  43572. weight: math.unit(210, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/stella/front.svg",
  43576. extra: 3549/3335,
  43577. bottom: 51/3600
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(6 + 3/12, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(5, "feet"),
  43594. weight: math.unit(90, "lb"),
  43595. name: "Front",
  43596. image: {
  43597. source: "./media/characters/riley-bishop/front.svg",
  43598. extra: 1450/1428,
  43599. bottom: 152/1602
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(5, "feet"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43613. {
  43614. side: {
  43615. height: math.unit(8 + 2/12, "feet"),
  43616. weight: math.unit(500, "kg"),
  43617. name: "Side",
  43618. image: {
  43619. source: "./media/characters/theo-arcanine/side.svg",
  43620. extra: 1342/1074,
  43621. bottom: 111/1453
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Normal",
  43628. height: math.unit(8 + 2/12, "feet"),
  43629. default: true
  43630. },
  43631. ]
  43632. ))
  43633. characterMakers.push(() => makeCharacter(
  43634. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43635. {
  43636. front: {
  43637. height: math.unit(4, "feet"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/kali/front.svg",
  43641. extra: 1921/1357,
  43642. bottom: 70/1991
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Normal",
  43649. height: math.unit(4, "feet"),
  43650. default: true
  43651. },
  43652. {
  43653. name: "Macro",
  43654. height: math.unit(32, "meters")
  43655. },
  43656. {
  43657. name: "Macro+",
  43658. height: math.unit(150, "meters")
  43659. },
  43660. {
  43661. name: "Megamacro",
  43662. height: math.unit(7500, "meters")
  43663. },
  43664. {
  43665. name: "Megamacro+",
  43666. height: math.unit(80, "kilometers")
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43672. {
  43673. side: {
  43674. height: math.unit(5 + 11/12, "feet"),
  43675. weight: math.unit(236, "lb"),
  43676. name: "Side",
  43677. image: {
  43678. source: "./media/characters/gapp/side.svg",
  43679. extra: 775/340,
  43680. bottom: 58/833
  43681. }
  43682. },
  43683. mouth: {
  43684. height: math.unit(2.98, "feet"),
  43685. name: "Mouth",
  43686. image: {
  43687. source: "./media/characters/gapp/mouth.svg"
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(5 + 1/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/persephone/front.svg",
  43707. extra: 1895/1717,
  43708. bottom: 96/1991
  43709. }
  43710. },
  43711. back: {
  43712. height: math.unit(6, "feet"),
  43713. name: "Back",
  43714. image: {
  43715. source: "./media/characters/persephone/back.svg",
  43716. extra: 1868/1679,
  43717. bottom: 26/1894
  43718. }
  43719. },
  43720. casual: {
  43721. height: math.unit(6, "feet"),
  43722. name: "Casual",
  43723. image: {
  43724. source: "./media/characters/persephone/casual.svg",
  43725. extra: 1713/1541,
  43726. bottom: 76/1789
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Human Size",
  43733. height: math.unit(6, "feet")
  43734. },
  43735. {
  43736. name: "Big Steppy",
  43737. height: math.unit(600, "meters"),
  43738. default: true
  43739. },
  43740. {
  43741. name: "Galaxy Brain",
  43742. height: math.unit(1, "zettameter")
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(1.85, "meters"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/riley-foxthing/front.svg",
  43754. extra: 1495/1354,
  43755. bottom: 122/1617
  43756. }
  43757. },
  43758. frontAlt: {
  43759. height: math.unit(1.85, "meters"),
  43760. name: "Front (Alt)",
  43761. image: {
  43762. source: "./media/characters/riley-foxthing/front-alt.svg",
  43763. extra: 1572/1389,
  43764. bottom: 116/1688
  43765. }
  43766. },
  43767. },
  43768. [
  43769. {
  43770. name: "Normal Sized",
  43771. height: math.unit(1.85, "meters"),
  43772. default: true
  43773. },
  43774. {
  43775. name: "Quite Sizable",
  43776. height: math.unit(5, "meters")
  43777. },
  43778. {
  43779. name: "Rather Large",
  43780. height: math.unit(20, "meters")
  43781. },
  43782. {
  43783. name: "Macro",
  43784. height: math.unit(450, "meters")
  43785. },
  43786. {
  43787. name: "Giga",
  43788. height: math.unit(5, "km")
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43794. {
  43795. front: {
  43796. height: math.unit(6, "feet"),
  43797. weight: math.unit(200, "lb"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/blizzard/front.svg",
  43801. extra: 1136/990,
  43802. bottom: 136/1272
  43803. }
  43804. },
  43805. back: {
  43806. height: math.unit(6, "feet"),
  43807. weight: math.unit(200, "lb"),
  43808. name: "Back",
  43809. image: {
  43810. source: "./media/characters/blizzard/back.svg",
  43811. extra: 1175/1034,
  43812. bottom: 97/1272
  43813. }
  43814. },
  43815. sitting: {
  43816. height: math.unit(3.725, "feet"),
  43817. weight: math.unit(200, "lb"),
  43818. name: "Sitting",
  43819. image: {
  43820. source: "./media/characters/blizzard/sitting.svg",
  43821. extra: 581/485,
  43822. bottom: 90/671
  43823. }
  43824. },
  43825. frontWizard: {
  43826. height: math.unit(7.9, "feet"),
  43827. weight: math.unit(200, "lb"),
  43828. name: "Front (Wizard)",
  43829. image: {
  43830. source: "./media/characters/blizzard/front-wizard.svg"
  43831. }
  43832. },
  43833. backWizard: {
  43834. height: math.unit(7.9, "feet"),
  43835. weight: math.unit(200, "lb"),
  43836. name: "Back (Wizard)",
  43837. image: {
  43838. source: "./media/characters/blizzard/back-wizard.svg"
  43839. }
  43840. },
  43841. frontNsfw: {
  43842. height: math.unit(6, "feet"),
  43843. weight: math.unit(200, "lb"),
  43844. name: "Front (NSFW)",
  43845. image: {
  43846. source: "./media/characters/blizzard/front-nsfw.svg",
  43847. extra: 1136/990,
  43848. bottom: 136/1272
  43849. }
  43850. },
  43851. backNsfw: {
  43852. height: math.unit(6, "feet"),
  43853. weight: math.unit(200, "lb"),
  43854. name: "Back (NSFW)",
  43855. image: {
  43856. source: "./media/characters/blizzard/back-nsfw.svg",
  43857. extra: 1175/1034,
  43858. bottom: 97/1272
  43859. }
  43860. },
  43861. sittingNsfw: {
  43862. height: math.unit(3.725, "feet"),
  43863. weight: math.unit(200, "lb"),
  43864. name: "Sitting (NSFW)",
  43865. image: {
  43866. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43867. extra: 581/485,
  43868. bottom: 90/671
  43869. }
  43870. },
  43871. wizardFrontNsfw: {
  43872. height: math.unit(7.9, "feet"),
  43873. weight: math.unit(200, "lb"),
  43874. name: "Wizard (Front, NSFW)",
  43875. image: {
  43876. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43877. }
  43878. },
  43879. },
  43880. [
  43881. {
  43882. name: "Normal",
  43883. height: math.unit(6, "feet"),
  43884. default: true
  43885. },
  43886. ]
  43887. ))
  43888. characterMakers.push(() => makeCharacter(
  43889. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43890. {
  43891. front: {
  43892. height: math.unit(5 + 2/12, "feet"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/lumi/front.svg",
  43896. extra: 1328/1268,
  43897. bottom: 103/1431
  43898. }
  43899. },
  43900. back: {
  43901. height: math.unit(5 + 2/12, "feet"),
  43902. name: "Back",
  43903. image: {
  43904. source: "./media/characters/lumi/back.svg",
  43905. extra: 1381/1327,
  43906. bottom: 43/1424
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(5 + 2/12, "feet"),
  43914. default: true
  43915. },
  43916. ]
  43917. ))
  43918. characterMakers.push(() => makeCharacter(
  43919. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43920. {
  43921. front: {
  43922. height: math.unit(5 + 9/12, "feet"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/aliya-cotton/front.svg",
  43926. extra: 577/564,
  43927. bottom: 29/606
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(5 + 9/12, "feet"),
  43935. default: true
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43941. {
  43942. front: {
  43943. height: math.unit(2.7, "meters"),
  43944. weight: math.unit(25000, "lb"),
  43945. name: "Front",
  43946. image: {
  43947. source: "./media/characters/noah-luxray/front.svg",
  43948. extra: 1644/825,
  43949. bottom: 339/1983
  43950. }
  43951. },
  43952. side: {
  43953. height: math.unit(2.97, "meters"),
  43954. weight: math.unit(25000, "lb"),
  43955. name: "Side",
  43956. image: {
  43957. source: "./media/characters/noah-luxray/side.svg",
  43958. extra: 1319/650,
  43959. bottom: 163/1482
  43960. }
  43961. },
  43962. dick: {
  43963. height: math.unit(7.4, "feet"),
  43964. weight: math.unit(2500, "lb"),
  43965. name: "Dick",
  43966. image: {
  43967. source: "./media/characters/noah-luxray/dick.svg"
  43968. }
  43969. },
  43970. dickAlt: {
  43971. height: math.unit(10.83, "feet"),
  43972. weight: math.unit(2500, "lb"),
  43973. name: "Dick-alt",
  43974. image: {
  43975. source: "./media/characters/noah-luxray/dick-alt.svg"
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "BIG",
  43982. height: math.unit(2.7, "meters"),
  43983. default: true
  43984. },
  43985. ]
  43986. ))
  43987. characterMakers.push(() => makeCharacter(
  43988. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43989. {
  43990. standing: {
  43991. height: math.unit(183, "cm"),
  43992. weight: math.unit(68, "kg"),
  43993. name: "Standing",
  43994. image: {
  43995. source: "./media/characters/arion/standing.svg",
  43996. extra: 1869/1807,
  43997. bottom: 93/1962
  43998. }
  43999. },
  44000. reclining: {
  44001. height: math.unit(70.5, "cm"),
  44002. weight: math.unit(68, "lb"),
  44003. name: "Reclining",
  44004. image: {
  44005. source: "./media/characters/arion/reclining.svg",
  44006. extra: 937/870,
  44007. bottom: 63/1000
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Colossus Size, Low",
  44014. height: math.unit(33, "meters"),
  44015. default: true
  44016. },
  44017. {
  44018. name: "Colossus Size, Mid",
  44019. height: math.unit(52, "meters")
  44020. },
  44021. {
  44022. name: "Colossus Size, High",
  44023. height: math.unit(60, "meters")
  44024. },
  44025. {
  44026. name: "Titan Size, Low",
  44027. height: math.unit(91, "meters"),
  44028. },
  44029. {
  44030. name: "Titan Size, Mid",
  44031. height: math.unit(122, "meters")
  44032. },
  44033. {
  44034. name: "Titan Size, High",
  44035. height: math.unit(162, "meters")
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44041. {
  44042. front: {
  44043. height: math.unit(53, "meters"),
  44044. name: "Front",
  44045. image: {
  44046. source: "./media/characters/stellar-marbey/front.svg",
  44047. extra: 1913/1805,
  44048. bottom: 92/2005
  44049. }
  44050. },
  44051. back: {
  44052. height: math.unit(53, "meters"),
  44053. name: "Back",
  44054. image: {
  44055. source: "./media/characters/stellar-marbey/back.svg",
  44056. extra: 1960/1851,
  44057. bottom: 28/1988
  44058. }
  44059. },
  44060. mouth: {
  44061. height: math.unit(3.5, "meters"),
  44062. name: "Mouth",
  44063. image: {
  44064. source: "./media/characters/stellar-marbey/mouth.svg"
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Macro",
  44071. height: math.unit(53, "meters"),
  44072. default: true
  44073. },
  44074. ]
  44075. ))
  44076. characterMakers.push(() => makeCharacter(
  44077. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44078. {
  44079. front: {
  44080. height: math.unit(8 + 1/12, "feet"),
  44081. weight: math.unit(233, "lb"),
  44082. name: "Front",
  44083. image: {
  44084. source: "./media/characters/matsu/front.svg",
  44085. extra: 832/772,
  44086. bottom: 40/872
  44087. }
  44088. },
  44089. back: {
  44090. height: math.unit(8 + 1/12, "feet"),
  44091. weight: math.unit(233, "lb"),
  44092. name: "Back",
  44093. image: {
  44094. source: "./media/characters/matsu/back.svg",
  44095. extra: 839/780,
  44096. bottom: 47/886
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(8 + 1/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(4, "feet"),
  44113. weight: math.unit(148, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/thiz/front.svg",
  44117. extra: 1913/1748,
  44118. bottom: 62/1975
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Normal",
  44125. height: math.unit(4, "feet"),
  44126. default: true
  44127. },
  44128. ]
  44129. ))
  44130. characterMakers.push(() => makeCharacter(
  44131. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44132. {
  44133. front: {
  44134. height: math.unit(7 + 6/12, "feet"),
  44135. weight: math.unit(267, "lb"),
  44136. name: "Front",
  44137. image: {
  44138. source: "./media/characters/marcel/front.svg",
  44139. extra: 1221/1096,
  44140. bottom: 76/1297
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Normal",
  44147. height: math.unit(7 + 6/12, "feet"),
  44148. default: true
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44154. {
  44155. side: {
  44156. height: math.unit(42, "meters"),
  44157. name: "Side",
  44158. image: {
  44159. source: "./media/characters/flake/side.svg",
  44160. extra: 1525/1306,
  44161. bottom: 209/1734
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Normal",
  44168. height: math.unit(42, "meters"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44175. {
  44176. dressed: {
  44177. height: math.unit(6 + 4/12, "feet"),
  44178. weight: math.unit(520, "lb"),
  44179. name: "Dressed",
  44180. image: {
  44181. source: "./media/characters/someonne/dressed.svg",
  44182. extra: 1020/1010,
  44183. bottom: 178/1198
  44184. }
  44185. },
  44186. undressed: {
  44187. height: math.unit(6 + 4/12, "feet"),
  44188. weight: math.unit(520, "lb"),
  44189. name: "Undressed",
  44190. image: {
  44191. source: "./media/characters/someonne/undressed.svg",
  44192. extra: 1019/1014,
  44193. bottom: 169/1188
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(6 + 4/12, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(3, "feet"),
  44210. weight: math.unit(30, "lb"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/till/front.svg",
  44214. extra: 892/823,
  44215. bottom: 55/947
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(3, "feet"),
  44223. default: true
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44229. {
  44230. front: {
  44231. height: math.unit(9 + 8/12, "feet"),
  44232. weight: math.unit(800, "lb"),
  44233. name: "Front",
  44234. image: {
  44235. source: "./media/characters/sydney-heki/front.svg",
  44236. extra: 1360/1300,
  44237. bottom: 22/1382
  44238. }
  44239. },
  44240. back: {
  44241. height: math.unit(9 + 8/12, "feet"),
  44242. weight: math.unit(800, "lb"),
  44243. name: "Back",
  44244. image: {
  44245. source: "./media/characters/sydney-heki/back.svg",
  44246. extra: 1356/1293,
  44247. bottom: 12/1368
  44248. }
  44249. },
  44250. frontDressed: {
  44251. height: math.unit(9 + 8/12, "feet"),
  44252. weight: math.unit(800, "lb"),
  44253. name: "Front-dressed",
  44254. image: {
  44255. source: "./media/characters/sydney-heki/front-dressed.svg",
  44256. extra: 1360/1300,
  44257. bottom: 22/1382
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(9 + 8/12, "feet"),
  44265. default: true
  44266. },
  44267. {
  44268. name: "Macro",
  44269. height: math.unit(500, "feet")
  44270. },
  44271. {
  44272. name: "Megamacro",
  44273. height: math.unit(3.6, "miles")
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(200, "cm"),
  44282. weight: math.unit(250, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/fowler-karlsson/front.svg",
  44286. extra: 897/845,
  44287. bottom: 123/1020
  44288. }
  44289. },
  44290. back: {
  44291. height: math.unit(200, "cm"),
  44292. weight: math.unit(250, "lb"),
  44293. name: "Back",
  44294. image: {
  44295. source: "./media/characters/fowler-karlsson/back.svg",
  44296. extra: 999/944,
  44297. bottom: 26/1025
  44298. }
  44299. },
  44300. dick: {
  44301. height: math.unit(1.92, "feet"),
  44302. weight: math.unit(150, "lb"),
  44303. name: "Dick",
  44304. image: {
  44305. source: "./media/characters/fowler-karlsson/dick.svg"
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Normal",
  44312. height: math.unit(200, "cm"),
  44313. default: true
  44314. },
  44315. {
  44316. name: "Smaller Macro",
  44317. height: math.unit(90, "m")
  44318. },
  44319. {
  44320. name: "Macro",
  44321. height: math.unit(150, "m")
  44322. },
  44323. {
  44324. name: "Bigger Macro",
  44325. height: math.unit(300, "m")
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44331. {
  44332. side: {
  44333. height: math.unit(8 + 2/12, "feet"),
  44334. weight: math.unit(1, "tonne"),
  44335. name: "Side",
  44336. image: {
  44337. source: "./media/characters/rylide/side.svg",
  44338. extra: 1318/1034,
  44339. bottom: 106/1424
  44340. }
  44341. },
  44342. sitting: {
  44343. height: math.unit(303, "cm"),
  44344. weight: math.unit(1, "tonne"),
  44345. name: "Sitting",
  44346. image: {
  44347. source: "./media/characters/rylide/sitting.svg",
  44348. extra: 1303/1103,
  44349. bottom: 36/1339
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(8 + 2/12, "feet"),
  44357. default: true
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44363. {
  44364. front: {
  44365. height: math.unit(5 + 10/12, "feet"),
  44366. weight: math.unit(160, "lb"),
  44367. name: "Front",
  44368. image: {
  44369. source: "./media/characters/pudask/front.svg",
  44370. extra: 1616/1590,
  44371. bottom: 161/1777
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Ferret Height",
  44378. height: math.unit(2 + 5/12, "feet")
  44379. },
  44380. {
  44381. name: "Canon Height",
  44382. height: math.unit(5 + 10/12, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(3 + 6/12, "feet"),
  44392. weight: math.unit(60, "lb"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/ramita/front.svg",
  44396. extra: 1402/1232,
  44397. bottom: 62/1464
  44398. }
  44399. },
  44400. dressed: {
  44401. height: math.unit(3 + 6/12, "feet"),
  44402. weight: math.unit(60, "lb"),
  44403. name: "Dressed",
  44404. image: {
  44405. source: "./media/characters/ramita/dressed.svg",
  44406. extra: 1534/1249,
  44407. bottom: 50/1584
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Normal",
  44414. height: math.unit(3 + 6/12, "feet"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(8, "feet"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/ark/front.svg",
  44427. extra: 772/693,
  44428. bottom: 45/817
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(8, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(6, "feet"),
  44445. weight: math.unit(250, "lb"),
  44446. volume: math.unit(5/8, "gallons"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/ludwig-horn/front.svg",
  44450. extra: 1782/1635,
  44451. bottom: 96/1878
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(6, "feet"),
  44456. weight: math.unit(250, "lb"),
  44457. volume: math.unit(5/8, "gallons"),
  44458. name: "Back",
  44459. image: {
  44460. source: "./media/characters/ludwig-horn/back.svg",
  44461. extra: 1874/1729,
  44462. bottom: 27/1901
  44463. }
  44464. },
  44465. dick: {
  44466. height: math.unit(1.05, "feet"),
  44467. weight: math.unit(15, "lb"),
  44468. volume: math.unit(5/8, "gallons"),
  44469. name: "Dick",
  44470. image: {
  44471. source: "./media/characters/ludwig-horn/dick.svg"
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Small",
  44478. height: math.unit(6, "feet")
  44479. },
  44480. {
  44481. name: "Typical",
  44482. height: math.unit(12, "feet"),
  44483. default: true
  44484. },
  44485. {
  44486. name: "Building",
  44487. height: math.unit(80, "feet")
  44488. },
  44489. {
  44490. name: "Town",
  44491. height: math.unit(800, "feet")
  44492. },
  44493. {
  44494. name: "Kingdom",
  44495. height: math.unit(80000, "feet")
  44496. },
  44497. {
  44498. name: "Planet",
  44499. height: math.unit(8000000, "feet")
  44500. },
  44501. {
  44502. name: "Universe",
  44503. height: math.unit(8000000000, "feet")
  44504. },
  44505. {
  44506. name: "Transcended",
  44507. height: math.unit(8e27, "feet")
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5, "feet"),
  44516. weight: math.unit(50, "kg"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/biot-avery/front.svg",
  44520. extra: 1295/1232,
  44521. bottom: 86/1381
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(5, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44535. {
  44536. front: {
  44537. height: math.unit(6, "feet"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/kitsune-kiro/front.svg",
  44541. extra: 1270/1158,
  44542. bottom: 42/1312
  44543. }
  44544. },
  44545. frontAlt: {
  44546. height: math.unit(6, "feet"),
  44547. name: "Front-alt",
  44548. image: {
  44549. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44550. extra: 1130/1081,
  44551. bottom: 36/1166
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Smol",
  44558. height: math.unit(3, "feet")
  44559. },
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(6, "feet"),
  44563. default: true
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(6, "feet"),
  44572. weight: math.unit(125, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/jack-thatcher/front.svg",
  44576. extra: 1474/1370,
  44577. bottom: 26/1500
  44578. }
  44579. },
  44580. back: {
  44581. height: math.unit(6, "feet"),
  44582. weight: math.unit(125, "lb"),
  44583. name: "Back",
  44584. image: {
  44585. source: "./media/characters/jack-thatcher/back.svg",
  44586. extra: 1489/1384,
  44587. bottom: 18/1507
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Normal",
  44594. height: math.unit(6, "feet"),
  44595. default: true
  44596. },
  44597. {
  44598. name: "Macro",
  44599. height: math.unit(75, "feet")
  44600. },
  44601. {
  44602. name: "Macro-er",
  44603. height: math.unit(250, "feet")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(7, "feet"),
  44612. weight: math.unit(110, "kg"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/max-hyper/front.svg",
  44616. extra: 1969/1881,
  44617. bottom: 49/2018
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(7, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(5 + 5/12, "feet"),
  44634. weight: math.unit(160, "lb"),
  44635. name: "Front",
  44636. image: {
  44637. source: "./media/characters/spook/front.svg",
  44638. extra: 794/791,
  44639. bottom: 54/848
  44640. }
  44641. },
  44642. back: {
  44643. height: math.unit(5 + 5/12, "feet"),
  44644. weight: math.unit(160, "lb"),
  44645. name: "Back",
  44646. image: {
  44647. source: "./media/characters/spook/back.svg",
  44648. extra: 812/798,
  44649. bottom: 32/844
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(5 + 5/12, "feet"),
  44657. default: true
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(18, "feet"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/xeaduulix/front.svg",
  44669. extra: 1380/1166,
  44670. bottom: 110/1490
  44671. }
  44672. },
  44673. back: {
  44674. height: math.unit(18, "feet"),
  44675. name: "Back",
  44676. image: {
  44677. source: "./media/characters/xeaduulix/back.svg",
  44678. extra: 1592/1170,
  44679. bottom: 128/1720
  44680. }
  44681. },
  44682. frontNsfw: {
  44683. height: math.unit(18, "feet"),
  44684. name: "Front (NSFW)",
  44685. image: {
  44686. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44687. extra: 1380/1166,
  44688. bottom: 110/1490
  44689. }
  44690. },
  44691. backNsfw: {
  44692. height: math.unit(18, "feet"),
  44693. name: "Back (NSFW)",
  44694. image: {
  44695. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44696. extra: 1592/1170,
  44697. bottom: 128/1720
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Normal",
  44704. height: math.unit(18, "feet"),
  44705. default: true
  44706. },
  44707. ]
  44708. ))
  44709. characterMakers.push(() => makeCharacter(
  44710. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44711. {
  44712. spreadWings: {
  44713. height: math.unit(20, "feet"),
  44714. name: "Spread Wings",
  44715. image: {
  44716. source: "./media/characters/fledge/spread-wings.svg",
  44717. extra: 693/635,
  44718. bottom: 26/719
  44719. }
  44720. },
  44721. front: {
  44722. height: math.unit(20, "feet"),
  44723. name: "Front",
  44724. image: {
  44725. source: "./media/characters/fledge/front.svg",
  44726. extra: 684/637,
  44727. bottom: 18/702
  44728. }
  44729. },
  44730. frontAlt: {
  44731. height: math.unit(20, "feet"),
  44732. name: "Front (Alt)",
  44733. image: {
  44734. source: "./media/characters/fledge/front-alt.svg",
  44735. extra: 708/664,
  44736. bottom: 13/721
  44737. }
  44738. },
  44739. back: {
  44740. height: math.unit(20, "feet"),
  44741. name: "Back",
  44742. image: {
  44743. source: "./media/characters/fledge/back.svg",
  44744. extra: 718/634,
  44745. bottom: 22/740
  44746. }
  44747. },
  44748. head: {
  44749. height: math.unit(5.55, "feet"),
  44750. name: "Head",
  44751. image: {
  44752. source: "./media/characters/fledge/head.svg"
  44753. }
  44754. },
  44755. headAlt: {
  44756. height: math.unit(5.1, "feet"),
  44757. name: "Head (Alt)",
  44758. image: {
  44759. source: "./media/characters/fledge/head-alt.svg"
  44760. }
  44761. },
  44762. },
  44763. [
  44764. {
  44765. name: "Small",
  44766. height: math.unit(6 + 2/12, "feet")
  44767. },
  44768. {
  44769. name: "Big",
  44770. height: math.unit(20, "feet"),
  44771. default: true
  44772. },
  44773. {
  44774. name: "Giant",
  44775. height: math.unit(100, "feet")
  44776. },
  44777. {
  44778. name: "Macro",
  44779. height: math.unit(200, "feet")
  44780. },
  44781. ]
  44782. ))
  44783. characterMakers.push(() => makeCharacter(
  44784. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44785. {
  44786. front: {
  44787. height: math.unit(1, "meter"),
  44788. name: "Front",
  44789. image: {
  44790. source: "./media/characters/atlas-morenai/front.svg",
  44791. extra: 1275/1043,
  44792. bottom: 19/1294
  44793. }
  44794. },
  44795. back: {
  44796. height: math.unit(1, "meter"),
  44797. name: "Back",
  44798. image: {
  44799. source: "./media/characters/atlas-morenai/back.svg",
  44800. extra: 1141/1001,
  44801. bottom: 25/1166
  44802. }
  44803. },
  44804. },
  44805. [
  44806. {
  44807. name: "Normal",
  44808. height: math.unit(1, "meter"),
  44809. default: true
  44810. },
  44811. {
  44812. name: "Magic-Infused",
  44813. height: math.unit(5, "meters")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(5, "meters"),
  44822. name: "Front",
  44823. image: {
  44824. source: "./media/characters/cintia/front.svg",
  44825. extra: 1312/1228,
  44826. bottom: 38/1350
  44827. }
  44828. },
  44829. back: {
  44830. height: math.unit(5, "meters"),
  44831. name: "Back",
  44832. image: {
  44833. source: "./media/characters/cintia/back.svg",
  44834. extra: 1260/1166,
  44835. bottom: 98/1358
  44836. }
  44837. },
  44838. frontDick: {
  44839. height: math.unit(5, "meters"),
  44840. name: "Front (Dick)",
  44841. image: {
  44842. source: "./media/characters/cintia/front-dick.svg",
  44843. extra: 1312/1228,
  44844. bottom: 38/1350
  44845. }
  44846. },
  44847. backDick: {
  44848. height: math.unit(5, "meters"),
  44849. name: "Back (Dick)",
  44850. image: {
  44851. source: "./media/characters/cintia/back-dick.svg",
  44852. extra: 1260/1166,
  44853. bottom: 98/1358
  44854. }
  44855. },
  44856. bust: {
  44857. height: math.unit(1.97, "meters"),
  44858. name: "Bust",
  44859. image: {
  44860. source: "./media/characters/cintia/bust.svg",
  44861. extra: 617/565,
  44862. bottom: 0/617
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Normal",
  44869. height: math.unit(5, "meters"),
  44870. default: true
  44871. },
  44872. ]
  44873. ))
  44874. characterMakers.push(() => makeCharacter(
  44875. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44876. {
  44877. side: {
  44878. height: math.unit(100, "feet"),
  44879. name: "Side",
  44880. image: {
  44881. source: "./media/characters/denora/side.svg",
  44882. extra: 875/803,
  44883. bottom: 9/884
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Standard",
  44890. height: math.unit(100, "feet"),
  44891. default: true
  44892. },
  44893. {
  44894. name: "Grand",
  44895. height: math.unit(1000, "feet")
  44896. },
  44897. {
  44898. name: "Conquering",
  44899. height: math.unit(10000, "feet")
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44905. {
  44906. dressed: {
  44907. height: math.unit(8 + 5/12, "feet"),
  44908. weight: math.unit(700, "lb"),
  44909. name: "Dressed",
  44910. image: {
  44911. source: "./media/characters/kiva/dressed.svg",
  44912. extra: 1102/1055,
  44913. bottom: 60/1162
  44914. }
  44915. },
  44916. nude: {
  44917. height: math.unit(8 + 5/12, "feet"),
  44918. weight: math.unit(700, "lb"),
  44919. name: "Nude",
  44920. image: {
  44921. source: "./media/characters/kiva/nude.svg",
  44922. extra: 1102/1055,
  44923. bottom: 60/1162
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Base Height",
  44930. height: math.unit(8 + 5/12, "feet"),
  44931. default: true
  44932. },
  44933. {
  44934. name: "Macro",
  44935. height: math.unit(100, "feet")
  44936. },
  44937. {
  44938. name: "Max",
  44939. height: math.unit(3280, "feet")
  44940. },
  44941. ]
  44942. ))
  44943. characterMakers.push(() => makeCharacter(
  44944. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44945. {
  44946. front: {
  44947. height: math.unit(6 + 8/12, "feet"),
  44948. weight: math.unit(250, "lb"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/ztragon/front.svg",
  44952. extra: 1825/1684,
  44953. bottom: 98/1923
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Normal",
  44960. height: math.unit(6 + 8/12, "feet"),
  44961. default: true
  44962. },
  44963. {
  44964. name: "Macro",
  44965. height: math.unit(80, "feet")
  44966. },
  44967. ]
  44968. ))
  44969. characterMakers.push(() => makeCharacter(
  44970. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44971. {
  44972. front: {
  44973. height: math.unit(10.4, "feet"),
  44974. weight: math.unit(2, "tons"),
  44975. name: "Front",
  44976. image: {
  44977. source: "./media/characters/yesenia/front.svg",
  44978. extra: 1479/1474,
  44979. bottom: 233/1712
  44980. }
  44981. },
  44982. },
  44983. [
  44984. {
  44985. name: "Normal",
  44986. height: math.unit(10.4, "feet"),
  44987. default: true
  44988. },
  44989. ]
  44990. ))
  44991. characterMakers.push(() => makeCharacter(
  44992. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44993. {
  44994. normal: {
  44995. height: math.unit(6 + 1/12, "feet"),
  44996. weight: math.unit(180, "lb"),
  44997. name: "Normal",
  44998. image: {
  44999. source: "./media/characters/leanne-lycheborne/normal.svg",
  45000. extra: 1748/1660,
  45001. bottom: 98/1846
  45002. }
  45003. },
  45004. were: {
  45005. height: math.unit(12, "feet"),
  45006. weight: math.unit(1600, "lb"),
  45007. name: "Were",
  45008. image: {
  45009. source: "./media/characters/leanne-lycheborne/were.svg",
  45010. extra: 1485/1432,
  45011. bottom: 66/1551
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(6 + 1/12, "feet"),
  45019. default: true
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45025. {
  45026. side: {
  45027. height: math.unit(13, "feet"),
  45028. name: "Side",
  45029. image: {
  45030. source: "./media/characters/kira-tyler/side.svg",
  45031. extra: 693/393,
  45032. bottom: 58/751
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(13, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45046. {
  45047. front: {
  45048. height: math.unit(10.3, "feet"),
  45049. weight: math.unit(150, "lb"),
  45050. name: "Front",
  45051. image: {
  45052. source: "./media/characters/blaze/front.svg",
  45053. extra: 1378/1286,
  45054. bottom: 172/1550
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(10.3, "feet"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45068. {
  45069. side: {
  45070. height: math.unit(2, "meters"),
  45071. weight: math.unit(400, "kg"),
  45072. name: "Side",
  45073. image: {
  45074. source: "./media/characters/anu/side.svg",
  45075. extra: 506/394,
  45076. bottom: 18/524
  45077. }
  45078. },
  45079. },
  45080. [
  45081. {
  45082. name: "Humanoid",
  45083. height: math.unit(2, "meters")
  45084. },
  45085. {
  45086. name: "Normal",
  45087. height: math.unit(5, "meters"),
  45088. default: true
  45089. },
  45090. ]
  45091. ))
  45092. characterMakers.push(() => makeCharacter(
  45093. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45094. {
  45095. front: {
  45096. height: math.unit(5 + 5/12, "feet"),
  45097. weight: math.unit(170, "lb"),
  45098. name: "Front",
  45099. image: {
  45100. source: "./media/characters/synx-the-lynx/front.svg",
  45101. extra: 1893/1745,
  45102. bottom: 17/1910
  45103. }
  45104. },
  45105. side: {
  45106. height: math.unit(5 + 5/12, "feet"),
  45107. weight: math.unit(170, "lb"),
  45108. name: "Side",
  45109. image: {
  45110. source: "./media/characters/synx-the-lynx/side.svg",
  45111. extra: 1884/1740,
  45112. bottom: 39/1923
  45113. }
  45114. },
  45115. back: {
  45116. height: math.unit(5 + 5/12, "feet"),
  45117. weight: math.unit(170, "lb"),
  45118. name: "Back",
  45119. image: {
  45120. source: "./media/characters/synx-the-lynx/back.svg",
  45121. extra: 1903/1755,
  45122. bottom: 14/1917
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(5 + 5/12, "feet"),
  45130. default: true
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45136. {
  45137. back: {
  45138. height: math.unit(15, "feet"),
  45139. name: "Back",
  45140. image: {
  45141. source: "./media/characters/nadezda-fex/back.svg",
  45142. extra: 1695/1481,
  45143. bottom: 25/1720
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Normal",
  45150. height: math.unit(15, "feet"),
  45151. default: true
  45152. },
  45153. {
  45154. name: "Macro",
  45155. height: math.unit(2.5, "miles")
  45156. },
  45157. {
  45158. name: "Goddess",
  45159. height: math.unit(2, "multiverses")
  45160. },
  45161. ]
  45162. ))
  45163. characterMakers.push(() => makeCharacter(
  45164. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45165. {
  45166. front: {
  45167. height: math.unit(216, "cm"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/lev/front.svg",
  45171. extra: 1728/1670,
  45172. bottom: 82/1810
  45173. }
  45174. },
  45175. back: {
  45176. height: math.unit(216, "cm"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/lev/back.svg",
  45180. extra: 1738/1675,
  45181. bottom: 24/1762
  45182. }
  45183. },
  45184. dressed: {
  45185. height: math.unit(216, "cm"),
  45186. name: "Dressed",
  45187. image: {
  45188. source: "./media/characters/lev/dressed.svg",
  45189. extra: 1397/1351,
  45190. bottom: 73/1470
  45191. }
  45192. },
  45193. head: {
  45194. height: math.unit(0.51, "meter"),
  45195. name: "Head",
  45196. image: {
  45197. source: "./media/characters/lev/head.svg"
  45198. }
  45199. },
  45200. },
  45201. [
  45202. {
  45203. name: "Normal",
  45204. height: math.unit(216, "cm"),
  45205. default: true
  45206. },
  45207. {
  45208. name: "Relatively Macro",
  45209. height: math.unit(80, "meters")
  45210. },
  45211. {
  45212. name: "Megamacro",
  45213. height: math.unit(21600, "meters")
  45214. },
  45215. {
  45216. name: "Megamacro+",
  45217. height: math.unit(64800, "meters")
  45218. },
  45219. ]
  45220. ))
  45221. characterMakers.push(() => makeCharacter(
  45222. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45223. {
  45224. front: {
  45225. height: math.unit(2, "meters"),
  45226. weight: math.unit(80, "kg"),
  45227. name: "Front",
  45228. image: {
  45229. source: "./media/characters/moka/front.svg",
  45230. extra: 1337/1255,
  45231. bottom: 58/1395
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Micro",
  45238. height: math.unit(15, "cm")
  45239. },
  45240. {
  45241. name: "Normal",
  45242. height: math.unit(2, "meters"),
  45243. default: true
  45244. },
  45245. {
  45246. name: "Macro",
  45247. height: math.unit(20, "meters"),
  45248. },
  45249. ]
  45250. ))
  45251. characterMakers.push(() => makeCharacter(
  45252. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45253. {
  45254. front: {
  45255. height: math.unit(9, "feet"),
  45256. weight: math.unit(240, "lb"),
  45257. name: "Front",
  45258. image: {
  45259. source: "./media/characters/kuzco/front.svg",
  45260. extra: 1593/1487,
  45261. bottom: 32/1625
  45262. }
  45263. },
  45264. side: {
  45265. height: math.unit(9, "feet"),
  45266. weight: math.unit(240, "lb"),
  45267. name: "Side",
  45268. image: {
  45269. source: "./media/characters/kuzco/side.svg",
  45270. extra: 1575/1485,
  45271. bottom: 30/1605
  45272. }
  45273. },
  45274. back: {
  45275. height: math.unit(9, "feet"),
  45276. weight: math.unit(240, "lb"),
  45277. name: "Back",
  45278. image: {
  45279. source: "./media/characters/kuzco/back.svg",
  45280. extra: 1603/1514,
  45281. bottom: 14/1617
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Normal",
  45288. height: math.unit(9, "feet"),
  45289. default: true
  45290. },
  45291. ]
  45292. ))
  45293. characterMakers.push(() => makeCharacter(
  45294. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45295. {
  45296. side: {
  45297. height: math.unit(2, "meters"),
  45298. weight: math.unit(300, "kg"),
  45299. name: "Side",
  45300. image: {
  45301. source: "./media/characters/ceruleus/side.svg",
  45302. extra: 1068/974,
  45303. bottom: 126/1194
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(16, "meters"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(9, "feet"),
  45320. weight: math.unit(500, "kg"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/acouya/front.svg",
  45324. extra: 1660/1473,
  45325. bottom: 28/1688
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Normal",
  45332. height: math.unit(9, "feet"),
  45333. default: true
  45334. },
  45335. ]
  45336. ))
  45337. characterMakers.push(() => makeCharacter(
  45338. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45339. {
  45340. front: {
  45341. height: math.unit(5 + 6/12, "feet"),
  45342. weight: math.unit(195, "lb"),
  45343. name: "Front",
  45344. image: {
  45345. source: "./media/characters/vant/front.svg",
  45346. extra: 1396/1320,
  45347. bottom: 20/1416
  45348. }
  45349. },
  45350. back: {
  45351. height: math.unit(5 + 6/12, "feet"),
  45352. weight: math.unit(195, "lb"),
  45353. name: "Back",
  45354. image: {
  45355. source: "./media/characters/vant/back.svg",
  45356. extra: 1396/1320,
  45357. bottom: 20/1416
  45358. }
  45359. },
  45360. maw: {
  45361. height: math.unit(0.75, "feet"),
  45362. name: "Maw",
  45363. image: {
  45364. source: "./media/characters/vant/maw.svg"
  45365. }
  45366. },
  45367. paw: {
  45368. height: math.unit(1.07, "feet"),
  45369. name: "Paw",
  45370. image: {
  45371. source: "./media/characters/vant/paw.svg"
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Micro",
  45378. height: math.unit(0.25, "inches")
  45379. },
  45380. {
  45381. name: "Normal",
  45382. height: math.unit(5 + 6/12, "feet"),
  45383. default: true
  45384. },
  45385. {
  45386. name: "Macro",
  45387. height: math.unit(75, "feet")
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45393. {
  45394. front: {
  45395. height: math.unit(30, "meters"),
  45396. weight: math.unit(363, "tons"),
  45397. name: "Front",
  45398. image: {
  45399. source: "./media/characters/ahra/front.svg",
  45400. extra: 1914/1814,
  45401. bottom: 46/1960
  45402. }
  45403. },
  45404. },
  45405. [
  45406. {
  45407. name: "Macro",
  45408. height: math.unit(30, "meters"),
  45409. default: true
  45410. },
  45411. ]
  45412. ))
  45413. characterMakers.push(() => makeCharacter(
  45414. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45415. {
  45416. undressed: {
  45417. height: math.unit(2, "m"),
  45418. weight: math.unit(250, "kg"),
  45419. name: "Undressed",
  45420. image: {
  45421. source: "./media/characters/coriander/undressed.svg",
  45422. extra: 1757/1606,
  45423. bottom: 107/1864
  45424. }
  45425. },
  45426. dressed: {
  45427. height: math.unit(2, "m"),
  45428. weight: math.unit(250, "kg"),
  45429. name: "Dressed",
  45430. image: {
  45431. source: "./media/characters/coriander/dressed.svg",
  45432. extra: 1757/1606,
  45433. bottom: 107/1864
  45434. }
  45435. },
  45436. },
  45437. [
  45438. {
  45439. name: "Normal",
  45440. height: math.unit(4, "meters"),
  45441. default: true
  45442. },
  45443. {
  45444. name: "XL",
  45445. height: math.unit(6, "meters")
  45446. },
  45447. {
  45448. name: "XXL",
  45449. height: math.unit(8, "meters")
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(6, "feet"),
  45458. name: "Front",
  45459. image: {
  45460. source: "./media/characters/syrinx/front.svg",
  45461. extra: 1557/1259,
  45462. bottom: 171/1728
  45463. }
  45464. },
  45465. },
  45466. [
  45467. {
  45468. name: "Normal",
  45469. height: math.unit(6 + 3/12, "feet"),
  45470. default: true
  45471. },
  45472. ]
  45473. ))
  45474. characterMakers.push(() => makeCharacter(
  45475. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45476. {
  45477. front: {
  45478. height: math.unit(11 + 6/12, "feet"),
  45479. weight: math.unit(1.5, "tons"),
  45480. name: "Front",
  45481. image: {
  45482. source: "./media/characters/bor/front.svg",
  45483. extra: 1189/1109,
  45484. bottom: 170/1359
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Normal",
  45491. height: math.unit(11 + 6/12, "feet"),
  45492. default: true
  45493. },
  45494. {
  45495. name: "Macro",
  45496. height: math.unit(32 + 9/12, "feet")
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45502. {
  45503. anthro: {
  45504. height: math.unit(9, "feet"),
  45505. weight: math.unit(2076, "lb"),
  45506. name: "Anthro",
  45507. image: {
  45508. source: "./media/characters/abacus/anthro.svg",
  45509. extra: 1540/1494,
  45510. bottom: 233/1773
  45511. }
  45512. },
  45513. pigeon: {
  45514. height: math.unit(1, "feet"),
  45515. name: "Pigeon",
  45516. image: {
  45517. source: "./media/characters/abacus/pigeon.svg",
  45518. extra: 528/525,
  45519. bottom: 46/574
  45520. }
  45521. },
  45522. },
  45523. [
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(9, "feet"),
  45527. default: true
  45528. },
  45529. ]
  45530. ))
  45531. characterMakers.push(() => makeCharacter(
  45532. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45533. {
  45534. side: {
  45535. height: math.unit(6, "feet"),
  45536. name: "Side",
  45537. image: {
  45538. source: "./media/characters/delkhan/side.svg",
  45539. extra: 1884/1786,
  45540. bottom: 308/2192
  45541. }
  45542. },
  45543. head: {
  45544. height: math.unit(3.38, "feet"),
  45545. name: "Head",
  45546. image: {
  45547. source: "./media/characters/delkhan/head.svg"
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(72, "feet"),
  45555. default: true
  45556. },
  45557. {
  45558. name: "Giant",
  45559. height: math.unit(172, "feet")
  45560. },
  45561. ]
  45562. ))
  45563. characterMakers.push(() => makeCharacter(
  45564. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45565. {
  45566. standing: {
  45567. height: math.unit(6, "feet"),
  45568. name: "Standing",
  45569. image: {
  45570. source: "./media/characters/euchidat/standing.svg",
  45571. extra: 1612/1553,
  45572. bottom: 116/1728
  45573. }
  45574. },
  45575. leaning: {
  45576. height: math.unit(6, "feet"),
  45577. name: "Leaning",
  45578. image: {
  45579. source: "./media/characters/euchidat/leaning.svg",
  45580. extra: 1719/1674,
  45581. bottom: 27/1746
  45582. }
  45583. },
  45584. },
  45585. [
  45586. {
  45587. name: "Normal",
  45588. height: math.unit(175, "feet"),
  45589. default: true
  45590. },
  45591. {
  45592. name: "Megamacro",
  45593. height: math.unit(190, "miles")
  45594. },
  45595. {
  45596. name: "Gigamacro",
  45597. height: math.unit(190000, "miles")
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(6, "feet"),
  45606. weight: math.unit(150, "lb"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/rebecca-stack/front.svg",
  45610. extra: 1256/1201,
  45611. bottom: 18/1274
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(5 + 8/12, "feet"),
  45619. default: true
  45620. },
  45621. {
  45622. name: "Demolitionist",
  45623. height: math.unit(200, "feet")
  45624. },
  45625. {
  45626. name: "Out of Control",
  45627. height: math.unit(2, "miles")
  45628. },
  45629. {
  45630. name: "Giga",
  45631. height: math.unit(7200, "miles")
  45632. },
  45633. ]
  45634. ))
  45635. characterMakers.push(() => makeCharacter(
  45636. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45637. {
  45638. front: {
  45639. height: math.unit(6, "feet"),
  45640. weight: math.unit(150, "lb"),
  45641. name: "Front",
  45642. image: {
  45643. source: "./media/characters/jenny-cartwright/front.svg",
  45644. extra: 1384/1376,
  45645. bottom: 58/1442
  45646. }
  45647. },
  45648. },
  45649. [
  45650. {
  45651. name: "Normal",
  45652. height: math.unit(6 + 7/12, "feet"),
  45653. default: true
  45654. },
  45655. {
  45656. name: "Librarian",
  45657. height: math.unit(55, "feet")
  45658. },
  45659. {
  45660. name: "Sightseer",
  45661. height: math.unit(50, "miles")
  45662. },
  45663. {
  45664. name: "Giga",
  45665. height: math.unit(30000, "miles")
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45671. {
  45672. nude: {
  45673. height: math.unit(8, "feet"),
  45674. weight: math.unit(225, "lb"),
  45675. name: "Nude",
  45676. image: {
  45677. source: "./media/characters/marvy/nude.svg",
  45678. extra: 1900/1683,
  45679. bottom: 89/1989
  45680. }
  45681. },
  45682. dressed: {
  45683. height: math.unit(8, "feet"),
  45684. weight: math.unit(225, "lb"),
  45685. name: "Dressed",
  45686. image: {
  45687. source: "./media/characters/marvy/dressed.svg",
  45688. extra: 1900/1683,
  45689. bottom: 89/1989
  45690. }
  45691. },
  45692. head: {
  45693. height: math.unit(2.85, "feet"),
  45694. name: "Head",
  45695. image: {
  45696. source: "./media/characters/marvy/head.svg"
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(8, "feet"),
  45704. default: true
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45710. {
  45711. front: {
  45712. height: math.unit(8, "feet"),
  45713. weight: math.unit(250, "lb"),
  45714. name: "Front",
  45715. image: {
  45716. source: "./media/characters/leah/front.svg",
  45717. extra: 1257/1149,
  45718. bottom: 109/1366
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(8, "feet"),
  45726. default: true
  45727. },
  45728. {
  45729. name: "Minimacro",
  45730. height: math.unit(40, "feet")
  45731. },
  45732. {
  45733. name: "Macro",
  45734. height: math.unit(124, "feet")
  45735. },
  45736. {
  45737. name: "Megamacro",
  45738. height: math.unit(850, "feet")
  45739. },
  45740. ]
  45741. ))
  45742. characterMakers.push(() => makeCharacter(
  45743. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45744. {
  45745. side: {
  45746. height: math.unit(13 + 6/12, "feet"),
  45747. weight: math.unit(3200, "lb"),
  45748. name: "Side",
  45749. image: {
  45750. source: "./media/characters/alvir/side.svg",
  45751. extra: 896/589,
  45752. bottom: 26/922
  45753. }
  45754. },
  45755. },
  45756. [
  45757. {
  45758. name: "Normal",
  45759. height: math.unit(13 + 6/12, "feet"),
  45760. default: true
  45761. },
  45762. ]
  45763. ))
  45764. characterMakers.push(() => makeCharacter(
  45765. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45766. {
  45767. front: {
  45768. height: math.unit(5 + 4/12, "feet"),
  45769. weight: math.unit(236, "lb"),
  45770. name: "Front",
  45771. image: {
  45772. source: "./media/characters/zaina-khalil/front.svg",
  45773. extra: 1533/1485,
  45774. bottom: 94/1627
  45775. }
  45776. },
  45777. side: {
  45778. height: math.unit(5 + 4/12, "feet"),
  45779. weight: math.unit(236, "lb"),
  45780. name: "Side",
  45781. image: {
  45782. source: "./media/characters/zaina-khalil/side.svg",
  45783. extra: 1537/1498,
  45784. bottom: 66/1603
  45785. }
  45786. },
  45787. back: {
  45788. height: math.unit(5 + 4/12, "feet"),
  45789. weight: math.unit(236, "lb"),
  45790. name: "Back",
  45791. image: {
  45792. source: "./media/characters/zaina-khalil/back.svg",
  45793. extra: 1546/1494,
  45794. bottom: 89/1635
  45795. }
  45796. },
  45797. },
  45798. [
  45799. {
  45800. name: "Normal",
  45801. height: math.unit(5 + 4/12, "feet"),
  45802. default: true
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45808. {
  45809. side: {
  45810. height: math.unit(12, "feet"),
  45811. weight: math.unit(4000, "lb"),
  45812. name: "Side",
  45813. image: {
  45814. source: "./media/characters/terry/side.svg",
  45815. extra: 1518/1439,
  45816. bottom: 149/1667
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(12, "feet"),
  45824. default: true
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(12, "feet"),
  45833. weight: math.unit(1500, "lb"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/kahea/front.svg",
  45837. extra: 1722/1617,
  45838. bottom: 179/1901
  45839. }
  45840. },
  45841. },
  45842. [
  45843. {
  45844. name: "Normal",
  45845. height: math.unit(12, "feet"),
  45846. default: true
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45852. {
  45853. demonFront: {
  45854. height: math.unit(36, "feet"),
  45855. name: "Front",
  45856. image: {
  45857. source: "./media/characters/alex-xuria/demon-front.svg",
  45858. extra: 1705/1673,
  45859. bottom: 198/1903
  45860. },
  45861. form: "demon",
  45862. default: true
  45863. },
  45864. demonBack: {
  45865. height: math.unit(36, "feet"),
  45866. name: "Back",
  45867. image: {
  45868. source: "./media/characters/alex-xuria/demon-back.svg",
  45869. extra: 1725/1693,
  45870. bottom: 70/1795
  45871. },
  45872. form: "demon"
  45873. },
  45874. demonHead: {
  45875. height: math.unit(2.14, "meters"),
  45876. name: "Head",
  45877. image: {
  45878. source: "./media/characters/alex-xuria/demon-head.svg"
  45879. },
  45880. form: "demon"
  45881. },
  45882. demonHand: {
  45883. height: math.unit(1.61, "meters"),
  45884. name: "Hand",
  45885. image: {
  45886. source: "./media/characters/alex-xuria/demon-hand.svg"
  45887. },
  45888. form: "demon"
  45889. },
  45890. demonPaw: {
  45891. height: math.unit(1.35, "meters"),
  45892. name: "Paw",
  45893. image: {
  45894. source: "./media/characters/alex-xuria/demon-paw.svg"
  45895. },
  45896. form: "demon"
  45897. },
  45898. demonFoot: {
  45899. height: math.unit(2.2, "meters"),
  45900. name: "Foot",
  45901. image: {
  45902. source: "./media/characters/alex-xuria/demon-foot.svg"
  45903. },
  45904. form: "demon"
  45905. },
  45906. demonCock: {
  45907. height: math.unit(1.74, "meters"),
  45908. name: "Cock",
  45909. image: {
  45910. source: "./media/characters/alex-xuria/demon-cock.svg"
  45911. },
  45912. form: "demon"
  45913. },
  45914. demonTailClosed: {
  45915. height: math.unit(1.47, "meters"),
  45916. name: "Tail (Closed)",
  45917. image: {
  45918. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45919. },
  45920. form: "demon"
  45921. },
  45922. demonTailOpen: {
  45923. height: math.unit(2.85, "meters"),
  45924. name: "Tail (Open)",
  45925. image: {
  45926. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45927. },
  45928. form: "demon"
  45929. },
  45930. incubusFront: {
  45931. height: math.unit(12, "feet"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/alex-xuria/incubus-front.svg",
  45935. extra: 1754/1677,
  45936. bottom: 125/1879
  45937. },
  45938. form: "incubus",
  45939. default: true
  45940. },
  45941. incubusBack: {
  45942. height: math.unit(12, "feet"),
  45943. name: "Back",
  45944. image: {
  45945. source: "./media/characters/alex-xuria/incubus-back.svg",
  45946. extra: 1702/1647,
  45947. bottom: 30/1732
  45948. },
  45949. form: "incubus"
  45950. },
  45951. incubusHead: {
  45952. height: math.unit(3.45, "feet"),
  45953. name: "Head",
  45954. image: {
  45955. source: "./media/characters/alex-xuria/incubus-head.svg"
  45956. },
  45957. form: "incubus"
  45958. },
  45959. rabbitFront: {
  45960. height: math.unit(6, "feet"),
  45961. name: "Front",
  45962. image: {
  45963. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45964. extra: 1369/1349,
  45965. bottom: 45/1414
  45966. },
  45967. form: "rabbit",
  45968. default: true
  45969. },
  45970. rabbitSide: {
  45971. height: math.unit(6, "feet"),
  45972. name: "Side",
  45973. image: {
  45974. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45975. extra: 1370/1356,
  45976. bottom: 37/1407
  45977. },
  45978. form: "rabbit"
  45979. },
  45980. rabbitBack: {
  45981. height: math.unit(6, "feet"),
  45982. name: "Back",
  45983. image: {
  45984. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45985. extra: 1375/1358,
  45986. bottom: 43/1418
  45987. },
  45988. form: "rabbit"
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(6, "feet"),
  45995. default: true,
  45996. form: "rabbit"
  45997. },
  45998. {
  45999. name: "Incubus",
  46000. height: math.unit(12, "feet"),
  46001. default: true,
  46002. form: "incubus"
  46003. },
  46004. {
  46005. name: "Demon",
  46006. height: math.unit(36, "feet"),
  46007. default: true,
  46008. form: "demon"
  46009. }
  46010. ],
  46011. {
  46012. "demon": {
  46013. name: "Demon",
  46014. default: true
  46015. },
  46016. "incubus": {
  46017. name: "Incubus",
  46018. },
  46019. "rabbit": {
  46020. name: "Rabbit"
  46021. }
  46022. }
  46023. ))
  46024. characterMakers.push(() => makeCharacter(
  46025. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46026. {
  46027. front: {
  46028. height: math.unit(7 + 5/12, "feet"),
  46029. weight: math.unit(510, "lb"),
  46030. name: "Front",
  46031. image: {
  46032. source: "./media/characters/syrup/front.svg",
  46033. extra: 932/916,
  46034. bottom: 26/958
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(7 + 5/12, "feet"),
  46042. default: true
  46043. },
  46044. {
  46045. name: "Big",
  46046. height: math.unit(50, "feet")
  46047. },
  46048. {
  46049. name: "Macro",
  46050. height: math.unit(300, "feet")
  46051. },
  46052. {
  46053. name: "Megamacro",
  46054. height: math.unit(1, "mile")
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46060. {
  46061. front: {
  46062. height: math.unit(6 + 9/12, "feet"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/zeimne/front.svg",
  46066. extra: 1969/1806,
  46067. bottom: 53/2022
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(6 + 9/12, "feet"),
  46075. default: true
  46076. },
  46077. {
  46078. name: "Giant",
  46079. height: math.unit(550, "feet")
  46080. },
  46081. {
  46082. name: "Mega",
  46083. height: math.unit(3, "miles")
  46084. },
  46085. {
  46086. name: "Giga",
  46087. height: math.unit(250, "miles")
  46088. },
  46089. {
  46090. name: "Tera",
  46091. height: math.unit(1, "AU")
  46092. },
  46093. ]
  46094. ))
  46095. characterMakers.push(() => makeCharacter(
  46096. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46097. {
  46098. front: {
  46099. height: math.unit(5 + 2/12, "feet"),
  46100. name: "Front",
  46101. image: {
  46102. source: "./media/characters/grar/front.svg",
  46103. extra: 1331/1119,
  46104. bottom: 60/1391
  46105. }
  46106. },
  46107. back: {
  46108. height: math.unit(5 + 2/12, "feet"),
  46109. name: "Back",
  46110. image: {
  46111. source: "./media/characters/grar/back.svg",
  46112. extra: 1385/1169,
  46113. bottom: 23/1408
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Normal",
  46120. height: math.unit(5 + 2/12, "feet"),
  46121. default: true
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46127. {
  46128. front: {
  46129. height: math.unit(13 + 7/12, "feet"),
  46130. weight: math.unit(2200, "lb"),
  46131. name: "Front",
  46132. image: {
  46133. source: "./media/characters/endraya/front.svg",
  46134. extra: 1289/1215,
  46135. bottom: 50/1339
  46136. }
  46137. },
  46138. nude: {
  46139. height: math.unit(13 + 7/12, "feet"),
  46140. weight: math.unit(2200, "lb"),
  46141. name: "Nude",
  46142. image: {
  46143. source: "./media/characters/endraya/nude.svg",
  46144. extra: 1247/1171,
  46145. bottom: 40/1287
  46146. }
  46147. },
  46148. head: {
  46149. height: math.unit(2.6, "feet"),
  46150. name: "Head",
  46151. image: {
  46152. source: "./media/characters/endraya/head.svg"
  46153. }
  46154. },
  46155. slit: {
  46156. height: math.unit(3.4, "feet"),
  46157. name: "Slit",
  46158. image: {
  46159. source: "./media/characters/endraya/slit.svg"
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Normal",
  46166. height: math.unit(13 + 7/12, "feet"),
  46167. default: true
  46168. },
  46169. {
  46170. name: "Macro",
  46171. height: math.unit(200, "feet")
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(1.81, "meters"),
  46180. weight: math.unit(69, "kg"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/rodryana/front.svg",
  46184. extra: 2002/1921,
  46185. bottom: 53/2055
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(1.81, "meters"),
  46190. weight: math.unit(69, "kg"),
  46191. name: "Back",
  46192. image: {
  46193. source: "./media/characters/rodryana/back.svg",
  46194. extra: 1993/1926,
  46195. bottom: 48/2041
  46196. }
  46197. },
  46198. maw: {
  46199. height: math.unit(0.19769417475, "meters"),
  46200. name: "Maw",
  46201. image: {
  46202. source: "./media/characters/rodryana/maw.svg"
  46203. }
  46204. },
  46205. slit: {
  46206. height: math.unit(0.31631067961, "meters"),
  46207. name: "Slit",
  46208. image: {
  46209. source: "./media/characters/rodryana/slit.svg"
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Normal",
  46216. height: math.unit(1.81, "meters")
  46217. },
  46218. {
  46219. name: "Mini Macro",
  46220. height: math.unit(181, "meters")
  46221. },
  46222. {
  46223. name: "Macro",
  46224. height: math.unit(452, "meters"),
  46225. default: true
  46226. },
  46227. {
  46228. name: "Mega Macro",
  46229. height: math.unit(1.375, "km")
  46230. },
  46231. {
  46232. name: "Giga Macro",
  46233. height: math.unit(13.575, "km")
  46234. },
  46235. ]
  46236. ))
  46237. characterMakers.push(() => makeCharacter(
  46238. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46239. {
  46240. front: {
  46241. height: math.unit(6, "feet"),
  46242. weight: math.unit(1000, "lb"),
  46243. name: "Front",
  46244. image: {
  46245. source: "./media/characters/asaya/front.svg",
  46246. extra: 1460/1200,
  46247. bottom: 71/1531
  46248. }
  46249. },
  46250. },
  46251. [
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(8, "km"),
  46255. default: true
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46261. {
  46262. front: {
  46263. height: math.unit(3.5, "meters"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/sarzu-and-israz/front.svg",
  46267. extra: 1570/1558,
  46268. bottom: 150/1720
  46269. },
  46270. },
  46271. back: {
  46272. height: math.unit(3.5, "meters"),
  46273. name: "Back",
  46274. image: {
  46275. source: "./media/characters/sarzu-and-israz/back.svg",
  46276. extra: 1523/1509,
  46277. bottom: 132/1655
  46278. },
  46279. },
  46280. frontFemale: {
  46281. height: math.unit(3.5, "meters"),
  46282. name: "Front (Female)",
  46283. image: {
  46284. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46285. extra: 1570/1558,
  46286. bottom: 150/1720
  46287. },
  46288. },
  46289. frontHerm: {
  46290. height: math.unit(3.5, "meters"),
  46291. name: "Front (Herm)",
  46292. image: {
  46293. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46294. extra: 1570/1558,
  46295. bottom: 150/1720
  46296. },
  46297. },
  46298. },
  46299. [
  46300. {
  46301. name: "Normal",
  46302. height: math.unit(3.5, "meters"),
  46303. default: true,
  46304. },
  46305. {
  46306. name: "Macro",
  46307. height: math.unit(65.5, "meters"),
  46308. },
  46309. ],
  46310. ))
  46311. characterMakers.push(() => makeCharacter(
  46312. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46313. {
  46314. front: {
  46315. height: math.unit(6, "feet"),
  46316. weight: math.unit(250, "lb"),
  46317. name: "Front",
  46318. image: {
  46319. source: "./media/characters/zenimma/front.svg",
  46320. extra: 1346/1320,
  46321. bottom: 58/1404
  46322. }
  46323. },
  46324. back: {
  46325. height: math.unit(6, "feet"),
  46326. weight: math.unit(250, "lb"),
  46327. name: "Back",
  46328. image: {
  46329. source: "./media/characters/zenimma/back.svg",
  46330. extra: 1324/1308,
  46331. bottom: 44/1368
  46332. }
  46333. },
  46334. dick: {
  46335. height: math.unit(1.44, "feet"),
  46336. name: "Dick",
  46337. image: {
  46338. source: "./media/characters/zenimma/dick.svg"
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Canon Height",
  46345. height: math.unit(66, "miles"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46352. {
  46353. nude: {
  46354. height: math.unit(6, "feet"),
  46355. weight: math.unit(150, "lb"),
  46356. name: "Nude",
  46357. image: {
  46358. source: "./media/characters/shavon/nude.svg",
  46359. extra: 1242/1096,
  46360. bottom: 98/1340
  46361. }
  46362. },
  46363. dressed: {
  46364. height: math.unit(6, "feet"),
  46365. weight: math.unit(150, "lb"),
  46366. name: "Dressed",
  46367. image: {
  46368. source: "./media/characters/shavon/dressed.svg",
  46369. extra: 1242/1096,
  46370. bottom: 98/1340
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Macro",
  46377. height: math.unit(255, "feet"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(6, "feet"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/steph/front.svg",
  46390. extra: 1430/1330,
  46391. bottom: 54/1484
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Normal",
  46398. height: math.unit(6, "feet"),
  46399. default: true
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46405. {
  46406. front: {
  46407. height: math.unit(9, "feet"),
  46408. weight: math.unit(400, "lb"),
  46409. name: "Front",
  46410. image: {
  46411. source: "./media/characters/kil'aman/front.svg",
  46412. extra: 1210/1159,
  46413. bottom: 109/1319
  46414. }
  46415. },
  46416. head: {
  46417. height: math.unit(2.14, "feet"),
  46418. name: "Head",
  46419. image: {
  46420. source: "./media/characters/kil'aman/head.svg"
  46421. }
  46422. },
  46423. maw: {
  46424. height: math.unit(1.21, "feet"),
  46425. name: "Maw",
  46426. image: {
  46427. source: "./media/characters/kil'aman/maw.svg"
  46428. }
  46429. },
  46430. foot: {
  46431. height: math.unit(1.7, "feet"),
  46432. name: "Foot",
  46433. image: {
  46434. source: "./media/characters/kil'aman/foot.svg"
  46435. }
  46436. },
  46437. dick: {
  46438. height: math.unit(2.1, "feet"),
  46439. name: "Dick",
  46440. image: {
  46441. source: "./media/characters/kil'aman/dick.svg"
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Normal",
  46448. height: math.unit(9, "feet")
  46449. },
  46450. {
  46451. name: "Canon Height",
  46452. height: math.unit(10, "miles"),
  46453. default: true
  46454. },
  46455. {
  46456. name: "Maximum",
  46457. height: math.unit(6e9, "miles")
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(90, "feet"),
  46466. weight: math.unit(675000, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/qadan/front.svg",
  46470. extra: 1012/1004,
  46471. bottom: 78/1090
  46472. }
  46473. },
  46474. back: {
  46475. height: math.unit(90, "feet"),
  46476. weight: math.unit(675000, "lb"),
  46477. name: "Back",
  46478. image: {
  46479. source: "./media/characters/qadan/back.svg",
  46480. extra: 1042/1031,
  46481. bottom: 55/1097
  46482. }
  46483. },
  46484. armored: {
  46485. height: math.unit(90, "feet"),
  46486. weight: math.unit(675000, "lb"),
  46487. name: "Armored",
  46488. image: {
  46489. source: "./media/characters/qadan/armored.svg",
  46490. extra: 1047/1037,
  46491. bottom: 48/1095
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(90, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46505. {
  46506. front: {
  46507. height: math.unit(6, "feet"),
  46508. weight: math.unit(225, "lb"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/brooke/front.svg",
  46512. extra: 1050/1010,
  46513. bottom: 66/1116
  46514. }
  46515. },
  46516. back: {
  46517. height: math.unit(6, "feet"),
  46518. weight: math.unit(225, "lb"),
  46519. name: "Back",
  46520. image: {
  46521. source: "./media/characters/brooke/back.svg",
  46522. extra: 1053/1013,
  46523. bottom: 41/1094
  46524. }
  46525. },
  46526. dressed: {
  46527. height: math.unit(6, "feet"),
  46528. weight: math.unit(225, "lb"),
  46529. name: "Dressed",
  46530. image: {
  46531. source: "./media/characters/brooke/dressed.svg",
  46532. extra: 1050/1010,
  46533. bottom: 66/1116
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Canon Height",
  46540. height: math.unit(500, "miles"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(6 + 2/12, "feet"),
  46550. weight: math.unit(210, "lb"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/wubs/front.svg",
  46554. extra: 1345/1325,
  46555. bottom: 70/1415
  46556. }
  46557. },
  46558. back: {
  46559. height: math.unit(6 + 2/12, "feet"),
  46560. weight: math.unit(210, "lb"),
  46561. name: "Back",
  46562. image: {
  46563. source: "./media/characters/wubs/back.svg",
  46564. extra: 1296/1275,
  46565. bottom: 58/1354
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Normal",
  46572. height: math.unit(6 + 2/12, "feet"),
  46573. default: true
  46574. },
  46575. {
  46576. name: "Macro",
  46577. height: math.unit(1000, "feet")
  46578. },
  46579. {
  46580. name: "Megamacro",
  46581. height: math.unit(1, "mile")
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46587. {
  46588. front: {
  46589. height: math.unit(4, "feet"),
  46590. weight: math.unit(120, "lb"),
  46591. name: "Front",
  46592. image: {
  46593. source: "./media/characters/blue/front.svg",
  46594. extra: 1636/1525,
  46595. bottom: 43/1679
  46596. }
  46597. },
  46598. back: {
  46599. height: math.unit(4, "feet"),
  46600. weight: math.unit(120, "lb"),
  46601. name: "Back",
  46602. image: {
  46603. source: "./media/characters/blue/back.svg",
  46604. extra: 1660/1560,
  46605. bottom: 57/1717
  46606. }
  46607. },
  46608. paws: {
  46609. height: math.unit(0.826, "feet"),
  46610. name: "Paws",
  46611. image: {
  46612. source: "./media/characters/blue/paws.svg"
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "Micro",
  46619. height: math.unit(3, "inches")
  46620. },
  46621. {
  46622. name: "Normal",
  46623. height: math.unit(4, "feet"),
  46624. default: true
  46625. },
  46626. {
  46627. name: "Femenine Form",
  46628. height: math.unit(14, "feet")
  46629. },
  46630. {
  46631. name: "Werebat Form",
  46632. height: math.unit(18, "feet")
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46638. {
  46639. female: {
  46640. height: math.unit(7 + 4/12, "feet"),
  46641. weight: math.unit(243, "lb"),
  46642. name: "Female",
  46643. image: {
  46644. source: "./media/characters/kaya/female.svg",
  46645. extra: 975/898,
  46646. bottom: 34/1009
  46647. }
  46648. },
  46649. herm: {
  46650. height: math.unit(7 + 4/12, "feet"),
  46651. weight: math.unit(243, "lb"),
  46652. name: "Herm",
  46653. image: {
  46654. source: "./media/characters/kaya/herm.svg",
  46655. extra: 975/898,
  46656. bottom: 34/1009
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(7 + 4/12, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46670. {
  46671. female: {
  46672. height: math.unit(9 + 4/12, "feet"),
  46673. weight: math.unit(398, "lb"),
  46674. name: "Female",
  46675. image: {
  46676. source: "./media/characters/kassandra/female.svg",
  46677. extra: 908/839,
  46678. bottom: 61/969
  46679. }
  46680. },
  46681. intersex: {
  46682. height: math.unit(9 + 4/12, "feet"),
  46683. weight: math.unit(398, "lb"),
  46684. name: "Intersex",
  46685. image: {
  46686. source: "./media/characters/kassandra/intersex.svg",
  46687. extra: 908/839,
  46688. bottom: 61/969
  46689. }
  46690. },
  46691. },
  46692. [
  46693. {
  46694. name: "Normal",
  46695. height: math.unit(9 + 4/12, "feet"),
  46696. default: true
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46702. {
  46703. front: {
  46704. height: math.unit(3, "meters"),
  46705. name: "Front",
  46706. image: {
  46707. source: "./media/characters/amy/front.svg",
  46708. extra: 1380/1343,
  46709. bottom: 70/1450
  46710. }
  46711. },
  46712. back: {
  46713. height: math.unit(3, "meters"),
  46714. name: "Back",
  46715. image: {
  46716. source: "./media/characters/amy/back.svg",
  46717. extra: 1380/1347,
  46718. bottom: 66/1446
  46719. }
  46720. },
  46721. },
  46722. [
  46723. {
  46724. name: "Normal",
  46725. height: math.unit(3, "meters"),
  46726. default: true
  46727. },
  46728. ]
  46729. ))
  46730. characterMakers.push(() => makeCharacter(
  46731. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46732. {
  46733. side: {
  46734. height: math.unit(47, "cm"),
  46735. weight: math.unit(10.8, "kg"),
  46736. name: "Side",
  46737. image: {
  46738. source: "./media/characters/alphaschakal/side.svg",
  46739. extra: 1058/568,
  46740. bottom: 62/1120
  46741. }
  46742. },
  46743. back: {
  46744. height: math.unit(78, "cm"),
  46745. weight: math.unit(10.8, "kg"),
  46746. name: "Back",
  46747. image: {
  46748. source: "./media/characters/alphaschakal/back.svg",
  46749. extra: 1102/942,
  46750. bottom: 185/1287
  46751. }
  46752. },
  46753. head: {
  46754. height: math.unit(28, "cm"),
  46755. name: "Head",
  46756. image: {
  46757. source: "./media/characters/alphaschakal/head.svg",
  46758. extra: 696/508,
  46759. bottom: 0/696
  46760. }
  46761. },
  46762. paw: {
  46763. height: math.unit(16, "cm"),
  46764. name: "Paw",
  46765. image: {
  46766. source: "./media/characters/alphaschakal/paw.svg"
  46767. }
  46768. },
  46769. },
  46770. [
  46771. {
  46772. name: "Normal",
  46773. height: math.unit(47, "cm"),
  46774. default: true
  46775. },
  46776. {
  46777. name: "Macro",
  46778. height: math.unit(340, "cm")
  46779. },
  46780. ]
  46781. ))
  46782. characterMakers.push(() => makeCharacter(
  46783. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46784. {
  46785. front: {
  46786. height: math.unit(36, "earths"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/ecobyss/front.svg",
  46790. extra: 1282/1215,
  46791. bottom: 11/1293
  46792. }
  46793. },
  46794. back: {
  46795. height: math.unit(36, "earths"),
  46796. name: "Back",
  46797. image: {
  46798. source: "./media/characters/ecobyss/back.svg",
  46799. extra: 1291/1222,
  46800. bottom: 8/1299
  46801. }
  46802. },
  46803. },
  46804. [
  46805. {
  46806. name: "Normal",
  46807. height: math.unit(36, "earths"),
  46808. default: true
  46809. },
  46810. ]
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46814. {
  46815. front: {
  46816. height: math.unit(12, "feet"),
  46817. name: "Front",
  46818. image: {
  46819. source: "./media/characters/vasuk/front.svg",
  46820. extra: 1326/1207,
  46821. bottom: 64/1390
  46822. }
  46823. },
  46824. },
  46825. [
  46826. {
  46827. name: "Normal",
  46828. height: math.unit(12, "feet"),
  46829. default: true
  46830. },
  46831. ]
  46832. ))
  46833. characterMakers.push(() => makeCharacter(
  46834. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46835. {
  46836. side: {
  46837. height: math.unit(100, "feet"),
  46838. name: "Side",
  46839. image: {
  46840. source: "./media/characters/linneaus/side.svg",
  46841. extra: 987/807,
  46842. bottom: 47/1034
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Macro",
  46849. height: math.unit(100, "feet"),
  46850. default: true
  46851. },
  46852. ]
  46853. ))
  46854. characterMakers.push(() => makeCharacter(
  46855. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46856. {
  46857. front: {
  46858. height: math.unit(8, "feet"),
  46859. weight: math.unit(1200, "lb"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/nyterious-daligdig/front.svg",
  46863. extra: 1284/1094,
  46864. bottom: 84/1368
  46865. }
  46866. },
  46867. back: {
  46868. height: math.unit(8, "feet"),
  46869. weight: math.unit(1200, "lb"),
  46870. name: "Back",
  46871. image: {
  46872. source: "./media/characters/nyterious-daligdig/back.svg",
  46873. extra: 1301/1121,
  46874. bottom: 129/1430
  46875. }
  46876. },
  46877. mouth: {
  46878. height: math.unit(1.464, "feet"),
  46879. name: "Mouth",
  46880. image: {
  46881. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46882. }
  46883. },
  46884. },
  46885. [
  46886. {
  46887. name: "Small",
  46888. height: math.unit(8, "feet"),
  46889. default: true
  46890. },
  46891. {
  46892. name: "Normal",
  46893. height: math.unit(15, "feet")
  46894. },
  46895. {
  46896. name: "Macro",
  46897. height: math.unit(90, "feet")
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46903. {
  46904. front: {
  46905. height: math.unit(7 + 4/12, "feet"),
  46906. weight: math.unit(252, "lb"),
  46907. name: "Front",
  46908. image: {
  46909. source: "./media/characters/bandel/front.svg",
  46910. extra: 1946/1775,
  46911. bottom: 26/1972
  46912. }
  46913. },
  46914. back: {
  46915. height: math.unit(7 + 4/12, "feet"),
  46916. weight: math.unit(252, "lb"),
  46917. name: "Back",
  46918. image: {
  46919. source: "./media/characters/bandel/back.svg",
  46920. extra: 1940/1770,
  46921. bottom: 25/1965
  46922. }
  46923. },
  46924. maw: {
  46925. height: math.unit(2.15, "feet"),
  46926. name: "Maw",
  46927. image: {
  46928. source: "./media/characters/bandel/maw.svg"
  46929. }
  46930. },
  46931. stomach: {
  46932. height: math.unit(1.95, "feet"),
  46933. name: "Stomach",
  46934. image: {
  46935. source: "./media/characters/bandel/stomach.svg"
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Normal",
  46942. height: math.unit(7 + 4/12, "feet"),
  46943. default: true
  46944. },
  46945. ]
  46946. ))
  46947. characterMakers.push(() => makeCharacter(
  46948. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46949. {
  46950. front: {
  46951. height: math.unit(10 + 5/12, "feet"),
  46952. weight: math.unit(773.5, "kg"),
  46953. name: "Front",
  46954. image: {
  46955. source: "./media/characters/zed/front.svg",
  46956. extra: 987/941,
  46957. bottom: 52/1039
  46958. }
  46959. },
  46960. },
  46961. [
  46962. {
  46963. name: "Short",
  46964. height: math.unit(5 + 4/12, "feet")
  46965. },
  46966. {
  46967. name: "Average",
  46968. height: math.unit(10 + 5/12, "feet"),
  46969. default: true
  46970. },
  46971. {
  46972. name: "Mini-Macro",
  46973. height: math.unit(24 + 9/12, "feet")
  46974. },
  46975. {
  46976. name: "Macro",
  46977. height: math.unit(249, "feet")
  46978. },
  46979. {
  46980. name: "Mega-Macro",
  46981. height: math.unit(12490, "feet")
  46982. },
  46983. {
  46984. name: "Giga-Macro",
  46985. height: math.unit(24.9, "miles")
  46986. },
  46987. {
  46988. name: "Tera-Macro",
  46989. height: math.unit(24900, "miles")
  46990. },
  46991. {
  46992. name: "Cosmic Scale",
  46993. height: math.unit(38.9, "lightyears")
  46994. },
  46995. {
  46996. name: "Universal Scale",
  46997. height: math.unit(138e12, "lightyears")
  46998. },
  46999. ]
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47003. {
  47004. front: {
  47005. height: math.unit(1561, "inches"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/ivan/front.svg",
  47009. extra: 1126/1071,
  47010. bottom: 26/1152
  47011. }
  47012. },
  47013. back: {
  47014. height: math.unit(1561, "inches"),
  47015. name: "Back",
  47016. image: {
  47017. source: "./media/characters/ivan/back.svg",
  47018. extra: 1134/1079,
  47019. bottom: 30/1164
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(1561, "inches"),
  47027. default: true
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(5 + 7/12, "feet"),
  47036. weight: math.unit(150, "lb"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/robin-arctic-hare/front.svg",
  47040. extra: 1148/974,
  47041. bottom: 20/1168
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(5 + 7/12, "feet"),
  47049. default: true
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47055. {
  47056. side: {
  47057. height: math.unit(5, "feet"),
  47058. name: "Side",
  47059. image: {
  47060. source: "./media/characters/birch/side.svg",
  47061. extra: 985/796,
  47062. bottom: 111/1096
  47063. }
  47064. },
  47065. },
  47066. [
  47067. {
  47068. name: "Normal",
  47069. height: math.unit(5, "feet"),
  47070. default: true
  47071. },
  47072. ]
  47073. ))
  47074. characterMakers.push(() => makeCharacter(
  47075. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47076. {
  47077. front: {
  47078. height: math.unit(4, "feet"),
  47079. name: "Front",
  47080. image: {
  47081. source: "./media/characters/rasp/front.svg",
  47082. extra: 561/478,
  47083. bottom: 74/635
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(4, "feet"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47097. {
  47098. front: {
  47099. height: math.unit(4 + 6/12, "feet"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/agatha/front.svg",
  47103. extra: 947/933,
  47104. bottom: 42/989
  47105. }
  47106. },
  47107. back: {
  47108. height: math.unit(4 + 6/12, "feet"),
  47109. name: "Back",
  47110. image: {
  47111. source: "./media/characters/agatha/back.svg",
  47112. extra: 935/922,
  47113. bottom: 48/983
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Normal",
  47120. height: math.unit(4 + 6 /12, "feet"),
  47121. default: true
  47122. },
  47123. {
  47124. name: "Max Size",
  47125. height: math.unit(500, "feet")
  47126. },
  47127. ]
  47128. ))
  47129. characterMakers.push(() => makeCharacter(
  47130. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47131. {
  47132. side: {
  47133. height: math.unit(30, "feet"),
  47134. name: "Side",
  47135. image: {
  47136. source: "./media/characters/roggy/side.svg",
  47137. extra: 909/643,
  47138. bottom: 63/972
  47139. }
  47140. },
  47141. lounging: {
  47142. height: math.unit(20, "feet"),
  47143. name: "Lounging",
  47144. image: {
  47145. source: "./media/characters/roggy/lounging.svg",
  47146. extra: 643/479,
  47147. bottom: 145/788
  47148. }
  47149. },
  47150. handpaw: {
  47151. height: math.unit(13.1, "feet"),
  47152. name: "Handpaw",
  47153. image: {
  47154. source: "./media/characters/roggy/handpaw.svg"
  47155. }
  47156. },
  47157. footpaw: {
  47158. height: math.unit(15.8, "feet"),
  47159. name: "Footpaw",
  47160. image: {
  47161. source: "./media/characters/roggy/footpaw.svg"
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Menacing",
  47168. height: math.unit(30, "feet"),
  47169. default: true
  47170. },
  47171. ]
  47172. ))
  47173. characterMakers.push(() => makeCharacter(
  47174. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47175. {
  47176. front: {
  47177. height: math.unit(5 + 7/12, "feet"),
  47178. weight: math.unit(135, "lb"),
  47179. name: "Front",
  47180. image: {
  47181. source: "./media/characters/naomi/front.svg",
  47182. extra: 1209/1154,
  47183. bottom: 129/1338
  47184. }
  47185. },
  47186. back: {
  47187. height: math.unit(5 + 7/12, "feet"),
  47188. weight: math.unit(135, "lb"),
  47189. name: "Back",
  47190. image: {
  47191. source: "./media/characters/naomi/back.svg",
  47192. extra: 1252/1190,
  47193. bottom: 23/1275
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(5 + 7 /12, "feet"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47207. {
  47208. side: {
  47209. height: math.unit(35, "meters"),
  47210. name: "Side",
  47211. image: {
  47212. source: "./media/characters/kimpi/side.svg",
  47213. extra: 419/382,
  47214. bottom: 63/482
  47215. }
  47216. },
  47217. hand: {
  47218. height: math.unit(8.96, "meters"),
  47219. name: "Hand",
  47220. image: {
  47221. source: "./media/characters/kimpi/hand.svg"
  47222. }
  47223. },
  47224. },
  47225. [
  47226. {
  47227. name: "Normal",
  47228. height: math.unit(35, "meters"),
  47229. default: true
  47230. },
  47231. ]
  47232. ))
  47233. characterMakers.push(() => makeCharacter(
  47234. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47235. {
  47236. front: {
  47237. height: math.unit(4 + 4/12, "feet"),
  47238. name: "Front",
  47239. image: {
  47240. source: "./media/characters/pepper-purrloin/front.svg",
  47241. extra: 1141/1024,
  47242. bottom: 21/1162
  47243. }
  47244. },
  47245. },
  47246. [
  47247. {
  47248. name: "Normal",
  47249. height: math.unit(4 + 4/12, "feet"),
  47250. default: true
  47251. },
  47252. ]
  47253. ))
  47254. characterMakers.push(() => makeCharacter(
  47255. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47256. {
  47257. front: {
  47258. height: math.unit(6 + 2/12, "feet"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/raphael/front.svg",
  47262. extra: 1101/962,
  47263. bottom: 59/1160
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Normal",
  47270. height: math.unit(6 + 2/12, "feet"),
  47271. default: true
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47277. {
  47278. front: {
  47279. height: math.unit(6, "feet"),
  47280. weight: math.unit(150, "lb"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/victor-williams/front.svg",
  47284. extra: 1894/1825,
  47285. bottom: 67/1961
  47286. }
  47287. },
  47288. },
  47289. [
  47290. {
  47291. name: "Normal",
  47292. height: math.unit(6, "feet"),
  47293. default: true
  47294. },
  47295. ]
  47296. ))
  47297. characterMakers.push(() => makeCharacter(
  47298. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47299. {
  47300. front: {
  47301. height: math.unit(5 + 8/12, "feet"),
  47302. weight: math.unit(150, "lb"),
  47303. name: "Front",
  47304. image: {
  47305. source: "./media/characters/rachel/front.svg",
  47306. extra: 1902/1787,
  47307. bottom: 46/1948
  47308. }
  47309. },
  47310. },
  47311. [
  47312. {
  47313. name: "Base Height",
  47314. height: math.unit(5 + 8/12, "feet"),
  47315. default: true
  47316. },
  47317. {
  47318. name: "Macro",
  47319. height: math.unit(200, "feet")
  47320. },
  47321. {
  47322. name: "Mega Macro",
  47323. height: math.unit(1, "mile")
  47324. },
  47325. {
  47326. name: "Giga Macro",
  47327. height: math.unit(1500, "miles")
  47328. },
  47329. {
  47330. name: "Tera Macro",
  47331. height: math.unit(8000, "miles")
  47332. },
  47333. {
  47334. name: "Tera Macro+",
  47335. height: math.unit(2e5, "miles")
  47336. },
  47337. ]
  47338. ))
  47339. characterMakers.push(() => makeCharacter(
  47340. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47341. {
  47342. front: {
  47343. height: math.unit(6.5, "feet"),
  47344. name: "Front",
  47345. image: {
  47346. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47347. extra: 860/819,
  47348. bottom: 307/1167
  47349. }
  47350. },
  47351. back: {
  47352. height: math.unit(6.5, "feet"),
  47353. name: "Back",
  47354. image: {
  47355. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47356. extra: 880/837,
  47357. bottom: 395/1275
  47358. }
  47359. },
  47360. sleeping: {
  47361. height: math.unit(2.79, "feet"),
  47362. name: "Sleeping",
  47363. image: {
  47364. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47365. extra: 465/383,
  47366. bottom: 263/728
  47367. }
  47368. },
  47369. maw: {
  47370. height: math.unit(2.52, "feet"),
  47371. name: "Maw",
  47372. image: {
  47373. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47374. }
  47375. },
  47376. },
  47377. [
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(6.5, "feet"),
  47381. default: true
  47382. },
  47383. ]
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47387. {
  47388. front: {
  47389. height: math.unit(5, "feet"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/nova-nerium/front.svg",
  47393. extra: 1548/1392,
  47394. bottom: 374/1922
  47395. }
  47396. },
  47397. back: {
  47398. height: math.unit(5, "feet"),
  47399. name: "Back",
  47400. image: {
  47401. source: "./media/characters/nova-nerium/back.svg",
  47402. extra: 1658/1468,
  47403. bottom: 257/1915
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(5, "feet"),
  47411. default: true
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(5 + 4/12, "feet"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/ashe-pyriph/front.svg",
  47423. extra: 1935/1747,
  47424. bottom: 60/1995
  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: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47438. {
  47439. front: {
  47440. height: math.unit(8.7, "feet"),
  47441. name: "Front",
  47442. image: {
  47443. source: "./media/characters/flicker-wisp/front.svg",
  47444. extra: 1835/1613,
  47445. bottom: 449/2284
  47446. }
  47447. },
  47448. side: {
  47449. height: math.unit(8.7, "feet"),
  47450. name: "Side",
  47451. image: {
  47452. source: "./media/characters/flicker-wisp/side.svg",
  47453. extra: 1841/1642,
  47454. bottom: 336/2177
  47455. },
  47456. default: true
  47457. },
  47458. maw: {
  47459. height: math.unit(3.35, "feet"),
  47460. name: "Maw",
  47461. image: {
  47462. source: "./media/characters/flicker-wisp/maw.svg",
  47463. extra: 2338/1506,
  47464. bottom: 0/2338
  47465. }
  47466. },
  47467. ovipositor: {
  47468. height: math.unit(4.95, "feet"),
  47469. name: "Ovipositor",
  47470. image: {
  47471. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47472. }
  47473. },
  47474. egg: {
  47475. height: math.unit(0.385, "feet"),
  47476. weight: math.unit(2, "lb"),
  47477. name: "Egg",
  47478. image: {
  47479. source: "./media/characters/flicker-wisp/egg.svg"
  47480. }
  47481. },
  47482. },
  47483. [
  47484. {
  47485. name: "Normal",
  47486. height: math.unit(8.7, "feet"),
  47487. default: true
  47488. },
  47489. ]
  47490. ))
  47491. characterMakers.push(() => makeCharacter(
  47492. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47493. {
  47494. side: {
  47495. height: math.unit(11, "feet"),
  47496. name: "Side",
  47497. image: {
  47498. source: "./media/characters/faefnul/side.svg",
  47499. extra: 1100/1007,
  47500. bottom: 0/1100
  47501. }
  47502. },
  47503. },
  47504. [
  47505. {
  47506. name: "Normal",
  47507. height: math.unit(11, "feet"),
  47508. default: true
  47509. },
  47510. ]
  47511. ))
  47512. characterMakers.push(() => makeCharacter(
  47513. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47514. {
  47515. front: {
  47516. height: math.unit(6 + 2/12, "feet"),
  47517. name: "Front",
  47518. image: {
  47519. source: "./media/characters/shady/front.svg",
  47520. extra: 502/461,
  47521. bottom: 9/511
  47522. }
  47523. },
  47524. kneeling: {
  47525. height: math.unit(4.6, "feet"),
  47526. name: "Kneeling",
  47527. image: {
  47528. source: "./media/characters/shady/kneeling.svg",
  47529. extra: 1328/1219,
  47530. bottom: 117/1445
  47531. }
  47532. },
  47533. maw: {
  47534. height: math.unit(2, "feet"),
  47535. name: "Maw",
  47536. image: {
  47537. source: "./media/characters/shady/maw.svg"
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Nano",
  47544. height: math.unit(1, "mm")
  47545. },
  47546. {
  47547. name: "Micro",
  47548. height: math.unit(12, "mm")
  47549. },
  47550. {
  47551. name: "Tiny",
  47552. height: math.unit(3, "inches")
  47553. },
  47554. {
  47555. name: "Normal",
  47556. height: math.unit(6 + 2/12, "feet"),
  47557. default: true
  47558. },
  47559. {
  47560. name: "Big",
  47561. height: math.unit(15, "feet")
  47562. },
  47563. {
  47564. name: "Macro",
  47565. height: math.unit(150, "feet")
  47566. },
  47567. {
  47568. name: "Titanic",
  47569. height: math.unit(500, "feet")
  47570. },
  47571. ]
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47575. {
  47576. front: {
  47577. height: math.unit(12, "feet"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/fenrir/front.svg",
  47581. extra: 968/875,
  47582. bottom: 22/990
  47583. }
  47584. },
  47585. },
  47586. [
  47587. {
  47588. name: "Big",
  47589. height: math.unit(12, "feet"),
  47590. default: true
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(5 + 4/12, "feet"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/makar/front.svg",
  47602. extra: 1181/1112,
  47603. bottom: 78/1259
  47604. }
  47605. },
  47606. },
  47607. [
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(5 + 4/12, "feet"),
  47611. default: true
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47617. {
  47618. front: {
  47619. height: math.unit(5 + 7/12, "feet"),
  47620. name: "Front",
  47621. image: {
  47622. source: "./media/characters/callow/front.svg",
  47623. extra: 1482/1304,
  47624. bottom: 23/1505
  47625. }
  47626. },
  47627. back: {
  47628. height: math.unit(5 + 7/12, "feet"),
  47629. name: "Back",
  47630. image: {
  47631. source: "./media/characters/callow/back.svg",
  47632. extra: 1484/1296,
  47633. bottom: 25/1509
  47634. }
  47635. },
  47636. },
  47637. [
  47638. {
  47639. name: "Micro",
  47640. height: math.unit(3, "inches"),
  47641. default: true
  47642. },
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(5 + 7/12, "feet")
  47646. },
  47647. ]
  47648. ))
  47649. characterMakers.push(() => makeCharacter(
  47650. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47651. {
  47652. front: {
  47653. height: math.unit(6 + 2/12, "feet"),
  47654. name: "Front",
  47655. image: {
  47656. source: "./media/characters/natel/front.svg",
  47657. extra: 1833/1692,
  47658. bottom: 166/1999
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Normal",
  47665. height: math.unit(6 + 2/12, "feet"),
  47666. default: true
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(1.75, "meters"),
  47675. name: "Front",
  47676. image: {
  47677. source: "./media/characters/misu/front.svg",
  47678. extra: 1690/1558,
  47679. bottom: 234/1924
  47680. }
  47681. },
  47682. back: {
  47683. height: math.unit(1.75, "meters"),
  47684. name: "Back",
  47685. image: {
  47686. source: "./media/characters/misu/back.svg",
  47687. extra: 1762/1618,
  47688. bottom: 146/1908
  47689. }
  47690. },
  47691. frontNude: {
  47692. height: math.unit(1.75, "meters"),
  47693. name: "Front (Nude)",
  47694. image: {
  47695. source: "./media/characters/misu/front-nude.svg",
  47696. extra: 1690/1558,
  47697. bottom: 234/1924
  47698. }
  47699. },
  47700. backNude: {
  47701. height: math.unit(1.75, "meters"),
  47702. name: "Back (Nude)",
  47703. image: {
  47704. source: "./media/characters/misu/back-nude.svg",
  47705. extra: 1762/1618,
  47706. bottom: 146/1908
  47707. }
  47708. },
  47709. frontErect: {
  47710. height: math.unit(1.75, "meters"),
  47711. name: "Front (Erect)",
  47712. image: {
  47713. source: "./media/characters/misu/front-erect.svg",
  47714. extra: 1690/1558,
  47715. bottom: 234/1924
  47716. }
  47717. },
  47718. maw: {
  47719. height: math.unit(0.47, "meters"),
  47720. name: "Maw",
  47721. image: {
  47722. source: "./media/characters/misu/maw.svg"
  47723. }
  47724. },
  47725. head: {
  47726. height: math.unit(0.35, "meters"),
  47727. name: "Head",
  47728. image: {
  47729. source: "./media/characters/misu/head.svg"
  47730. }
  47731. },
  47732. rear: {
  47733. height: math.unit(0.47, "meters"),
  47734. name: "Rear",
  47735. image: {
  47736. source: "./media/characters/misu/rear.svg"
  47737. }
  47738. },
  47739. },
  47740. [
  47741. {
  47742. name: "Normal",
  47743. height: math.unit(1.75, "meters")
  47744. },
  47745. {
  47746. name: "Not good for the people",
  47747. height: math.unit(42, "meters")
  47748. },
  47749. {
  47750. name: "Not good for the neighborhood",
  47751. height: math.unit(135, "meters")
  47752. },
  47753. {
  47754. name: "Bit bigger problem",
  47755. height: math.unit(380, "meters"),
  47756. default: true
  47757. },
  47758. {
  47759. name: "Not good for the city",
  47760. height: math.unit(1.5, "km")
  47761. },
  47762. {
  47763. name: "Not good for the county",
  47764. height: math.unit(5.5, "km")
  47765. },
  47766. {
  47767. name: "Not good for the state",
  47768. height: math.unit(25, "km")
  47769. },
  47770. {
  47771. name: "Not good for the country",
  47772. height: math.unit(125, "km")
  47773. },
  47774. {
  47775. name: "Not good for the continent",
  47776. height: math.unit(2100, "km")
  47777. },
  47778. {
  47779. name: "Not good for the planet",
  47780. height: math.unit(35000, "km")
  47781. },
  47782. {
  47783. name: "Just no",
  47784. height: math.unit(8.5e18, "km")
  47785. },
  47786. ]
  47787. ))
  47788. characterMakers.push(() => makeCharacter(
  47789. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47790. {
  47791. front: {
  47792. height: math.unit(6.5, "feet"),
  47793. name: "Front",
  47794. image: {
  47795. source: "./media/characters/poppy/front.svg",
  47796. extra: 1878/1812,
  47797. bottom: 43/1921
  47798. }
  47799. },
  47800. feet: {
  47801. height: math.unit(1.06, "feet"),
  47802. name: "Feet",
  47803. image: {
  47804. source: "./media/characters/poppy/feet.svg",
  47805. extra: 1083/1083,
  47806. bottom: 87/1170
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Human",
  47813. height: math.unit(6.5, "feet")
  47814. },
  47815. {
  47816. name: "Default",
  47817. height: math.unit(300, "feet"),
  47818. default: true
  47819. },
  47820. {
  47821. name: "Huge",
  47822. height: math.unit(850, "feet")
  47823. },
  47824. {
  47825. name: "Mega",
  47826. height: math.unit(8000, "feet")
  47827. },
  47828. {
  47829. name: "Giga",
  47830. height: math.unit(300, "miles")
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47836. {
  47837. bipedal: {
  47838. height: math.unit(7, "feet"),
  47839. name: "Bipedal",
  47840. image: {
  47841. source: "./media/characters/zener/bipedal.svg",
  47842. extra: 874/805,
  47843. bottom: 109/983
  47844. }
  47845. },
  47846. quadrupedal: {
  47847. height: math.unit(4.64, "feet"),
  47848. name: "Quadrupedal",
  47849. image: {
  47850. source: "./media/characters/zener/quadrupedal.svg",
  47851. extra: 638/507,
  47852. bottom: 190/828
  47853. }
  47854. },
  47855. cock: {
  47856. height: math.unit(18, "inches"),
  47857. name: "Cock",
  47858. image: {
  47859. source: "./media/characters/zener/cock.svg"
  47860. }
  47861. },
  47862. },
  47863. [
  47864. {
  47865. name: "Normal",
  47866. height: math.unit(7, "feet"),
  47867. default: true
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47873. {
  47874. nude: {
  47875. height: math.unit(5 + 6/12, "feet"),
  47876. name: "Nude",
  47877. image: {
  47878. source: "./media/characters/charlie-dog/nude.svg",
  47879. extra: 768/734,
  47880. bottom: 26/794
  47881. }
  47882. },
  47883. dressed: {
  47884. height: math.unit(5 + 6/12, "feet"),
  47885. name: "Dressed",
  47886. image: {
  47887. source: "./media/characters/charlie-dog/dressed.svg",
  47888. extra: 768/734,
  47889. bottom: 26/794
  47890. }
  47891. },
  47892. },
  47893. [
  47894. {
  47895. name: "Normal",
  47896. height: math.unit(5 + 6/12, "feet"),
  47897. default: true
  47898. },
  47899. ]
  47900. ))
  47901. //characters
  47902. function makeCharacters() {
  47903. const results = [];
  47904. characterMakers.forEach(character => {
  47905. results.push(character());
  47906. });
  47907. return results;
  47908. }